@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #1A252F;
  --navy-dark: #111a22;
  --navy-mid: #22303d;
  --gold: #D4A84B;
  --gold-light: #e8c06d;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --border: #e5e7eb;
  --radius: 12px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 64px;
  background: rgba(17,26,34,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,168,75,0.15);
}
.nav-logo { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 800; color: var(--white); text-decoration: none; letter-spacing: -0.5px; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.72); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; padding: 8px 18px !important; border-radius: 8px; font-weight: 700 !important; }
.nav-cta:hover { background: var(--gold-light) !important; }

/* PAGE HEADER */
.page-header {
  padding: 130px 40px 70px;
  background: var(--navy-dark);
  position: relative; overflow: hidden;
}
.page-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,75,0.3), transparent);
}
.page-header-inner { max-width: 820px; margin: 0 auto; }
.page-header .eyebrow { display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--gold); margin-bottom: 14px; }
.page-header h1 { font-family: 'Playfair Display', Georgia, serif; font-size: clamp(32px, 5vw, 52px); font-weight: 800; color: var(--white); line-height: 1.1; letter-spacing: -0.5px; margin-bottom: 16px; }
.page-header p { font-size: 17px; color: rgba(255,255,255,0.6); max-width: 560px; line-height: 1.7; }

/* MAIN CONTENT */
.page-content { max-width: 820px; margin: 0 auto; padding: 72px 40px 100px; }
.page-content h2 { font-family: 'Playfair Display', Georgia, serif; font-size: 26px; font-weight: 800; color: var(--navy); margin: 48px 0 16px; }
.page-content h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin: 32px 0 12px; }
.page-content p { font-size: 15.5px; color: #374151; line-height: 1.8; margin-bottom: 18px; }
.page-content ul, .page-content ol { margin: 0 0 18px 22px; }
.page-content li { font-size: 15px; color: #374151; line-height: 1.75; margin-bottom: 6px; }
.page-content a { color: var(--navy); font-weight: 600; }
.page-content a:hover { color: var(--gold); }
.divider-line { width: 56px; height: 3px; background: var(--gold); border-radius: 2px; margin: 6px 0 36px; }

/* ARTICLE STYLES */
.article-img { width: 100%; border-radius: var(--radius); margin: 32px 0; object-fit: cover; max-height: 420px; display: block; }
.article-img-caption { font-size: 13px; color: var(--text-muted); text-align: center; margin-top: -20px; margin-bottom: 32px; font-style: italic; }
.callout { background: #eff6ff; border-left: 4px solid var(--navy); padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 28px 0; }
.callout p { margin: 0; font-size: 15px; color: var(--navy); }
.callout strong { color: var(--navy); }
.warn-box { background: #fff7ed; border-left: 4px solid #c2410c; padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 28px 0; }
.warn-box p { margin: 0; font-size: 15px; color: #7c2d12; }
.tip-box { background: #f0fdf4; border-left: 4px solid #16a34a; padding: 16px 20px; border-radius: 0 8px 8px 0; margin: 28px 0; }
.tip-box p { margin: 0; font-size: 15px; color: #14532d; }
.data-table { width: 100%; border-collapse: collapse; margin: 24px 0 32px; font-size: 14px; }
.data-table th { background: var(--navy); color: white; padding: 10px 14px; text-align: left; font-weight: 600; }
.data-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); color: #374151; }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:nth-child(even) td { background: var(--off-white); }

/* GUIDE CTA BOX */
.guide-cta-box {
  background: var(--navy-dark); border-radius: var(--radius);
  padding: 36px 40px; margin: 48px 0; display: flex;
  align-items: center; gap: 32px; flex-wrap: wrap;
}
.guide-cta-box h4 { font-family: 'Playfair Display', Georgia, serif; font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 6px; }
.guide-cta-box p { font-size: 14px; color: rgba(255,255,255,0.6); margin: 0; }
.guide-cta-box-text { flex: 1; min-width: 200px; }
.btn-primary { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: var(--navy); font-weight: 700; font-size: 14px; padding: 13px 24px; border-radius: 9px; text-decoration: none; transition: all 0.2s; white-space: nowrap; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost-dark { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.8); font-weight: 600; font-size: 14px; padding: 12px 22px; border-radius: 9px; text-decoration: none; transition: all 0.2s; white-space: nowrap; }
.btn-ghost-dark:hover { border-color: var(--gold); color: var(--gold); }

/* CONTACT FORM */
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--navy); }
.form-group input, .form-group textarea, .form-group select {
  padding: 12px 16px; border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 14.5px; font-family: inherit; color: var(--text);
  transition: border-color 0.2s; background: var(--white);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-submit { background: var(--gold); color: var(--navy); font-weight: 700; font-size: 15px; padding: 14px 32px; border: none; border-radius: 10px; cursor: pointer; font-family: inherit; transition: all 0.2s; width: fit-content; }
.form-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

/* FOOTER */
footer { background: var(--navy-dark); color: rgba(255,255,255,0.5); padding: 48px 40px; text-align: center; border-top: 1px solid rgba(255,255,255,0.06); }
footer .footer-logo { font-family: 'Playfair Display', Georgia, serif; font-size: 24px; font-weight: 800; color: var(--white); margin-bottom: 10px; display: block; text-decoration: none; }
footer .footer-logo span { color: var(--gold); }
.footer-nav { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; list-style: none; margin: 20px 0 28px; }
.footer-nav a { color: rgba(255,255,255,0.45); font-size: 13px; text-decoration: none; }
.footer-nav a:hover { color: var(--gold); }
.footer-divider { width: 40px; height: 2px; background: rgba(212,168,75,0.3); margin: 0 auto 24px; }
footer p { font-size: 12.5px; line-height: 1.7; }
footer a { color: var(--gold); text-decoration: none; }

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .page-header { padding: 100px 20px 52px; }
  .page-content { padding: 48px 20px 72px; }
  .guide-cta-box { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 40px 20px; }
}
