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

:root {
  --navy: #0B1C2E;
  --navy-mid: #142640;
  --navy-light: #1e3554;
  --gold: #C9A96E;
  --gold-light: #E2C9A0;
  --gold-pale: #F7F0E4;
  --cream: #FAFAF7;
  --white: #FFFFFF;
  --text: #0B1C2E;
  --text-mid: #2E4057;
  --text-muted: #657080;
  --border: rgba(11,28,46,0.1);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max: 1200px;
  --nav-h: 72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(11,28,46,0.97);
  backdrop-filter: blur(12px);
  display: flex; align-items: center;
  border-bottom: 1px solid rgba(201,169,110,0.15);
  transition: background 0.3s;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; width: 100%;
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: inline-flex; align-items: center;
  text-decoration: none; line-height: 1;
}
.nav-logo svg { height: 38px; width: auto; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 0.875rem; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--navy) !important;
  padding: 0.55rem 1.4rem; border-radius: 2px;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  transition: background 0.2s, opacity 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; opacity: 1 !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: all 0.3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: var(--nav-h);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(201,169,110,0.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(201,169,110,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-inner {
  max-width: var(--max); margin: 0 auto; width: 100%;
  padding: 5rem 2rem 4rem;
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 1.5rem;
}
.hero-tag::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 500; color: var(--white);
  line-height: 1.15; letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-desc {
  color: rgba(255,255,255,0.65); font-size: 1.05rem; line-height: 1.8;
  margin-bottom: 2.5rem; max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-block; background: var(--gold);
  color: var(--navy); text-decoration: none;
  padding: 0.85rem 2rem; border-radius: 2px;
  font-weight: 500; font-size: 0.9rem; letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline {
  display: inline-block;
  color: rgba(255,255,255,0.8); text-decoration: none;
  padding: 0.85rem 2rem; border-radius: 2px;
  font-weight: 400; font-size: 0.9rem; letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-stats {
  display: flex; flex-direction: column; gap: 2rem;
}
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.2);
  border-radius: 4px;
  padding: 1.5rem 2rem;
  position: relative;
}
.stat-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 100%; background: var(--gold);
  border-radius: 4px 0 0 4px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.8rem; font-weight: 600; color: var(--gold);
  line-height: 1;
}
.stat-label { color: rgba(255,255,255,0.6); font-size: 0.875rem; margin-top: 0.3rem; }
.stat-desc { color: rgba(255,255,255,0.4); font-size: 0.8rem; margin-top: 0.5rem; line-height: 1.5; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--gold-pale);
  border-bottom: 1px solid rgba(201,169,110,0.2);
  padding: 1.2rem 2rem;
}
.trust-bar-inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.825rem; color: var(--navy); font-weight: 500; letter-spacing: 0.03em;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }

/* ── SECTIONS ── */
section { padding: 6rem 2rem; }
.section-inner { max-width: var(--max); margin: 0 auto; }
.section-tag {
  font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 0.8rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.section-tag::before { content: ''; display: block; width: 24px; height: 1px; background: var(--gold); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 500;
  line-height: 1.2; color: var(--navy); margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem; color: var(--text-muted); max-width: 560px; line-height: 1.8;
}

/* ── ABOUT ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
  margin-top: 4rem;
}
.about-image-block {
  position: relative;
}
.about-image-placeholder {
  background: var(--navy);
  aspect-ratio: 4/5; border-radius: 2px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1rem; color: rgba(255,255,255,0.4);
  position: relative; overflow: hidden;
}
.about-image-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 70%, rgba(201,169,110,0.12) 0%, transparent 60%);
}
.cpa-badge {
  position: absolute; bottom: -1rem; right: -1rem;
  background: var(--gold);
  width: 120px; height: 120px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 600; color: var(--navy);
  text-align: center; font-size: 0.9rem; line-height: 1.2;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.cpa-badge .big { font-size: 1.6rem; }
.about-content h2 { font-family: var(--font-display); font-size: 2.4rem; font-weight: 500; margin-bottom: 1.5rem; color: var(--navy); }
.about-content p { color: var(--text-muted); line-height: 1.9; margin-bottom: 1.2rem; font-size: 0.975rem; }
.values-list { list-style: none; margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.values-list li {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.25rem; background: var(--white);
  border: 1px solid var(--border); border-radius: 2px;
  border-left: 3px solid var(--gold);
}
.values-list li strong { display: block; font-size: 0.9rem; color: var(--navy); margin-bottom: 0.2rem; }
.values-list li span { font-size: 0.85rem; color: var(--text-muted); }
.value-icon { font-size: 1.2rem; margin-top: 2px; flex-shrink: 0; }

/* ── SERVICES ── */
.services-bg { background: var(--white); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  margin-top: 4rem; border: 1px solid var(--border);
}
.service-card {
  padding: 2.5rem 2rem; background: var(--white);
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden;
  transition: background 0.2s;
}
.service-card:last-child { border-right: none; }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--gold-pale); }
.service-icon {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-pale); border: 1px solid rgba(201,169,110,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 1.5rem;
}
.service-card h3 {
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 500;
  color: var(--navy); margin-bottom: 0.8rem; line-height: 1.3;
}
.service-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.service-list li { font-size: 0.825rem; color: var(--text-muted); display: flex; align-items: flex-start; gap: 0.5rem; }
.service-list li::before { content: '→'; color: var(--gold); flex-shrink: 0; font-size: 0.75rem; margin-top: 2px; }
.service-more { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1.5rem; font-size: 0.825rem; font-weight: 500; color: var(--gold); text-decoration: none; transition: gap 0.2s; }
.service-more:hover { gap: 0.7rem; }
/* service details */
.services-detail { margin-top: 5rem; display: flex; flex-direction: column; gap: 4rem; }
.service-detail-block {
  display: grid; grid-template-columns: 1fr 2fr; gap: 3rem;
  padding: 2.5rem; background: var(--cream);
  border: 1px solid var(--border); border-radius: 2px;
}
.service-detail-block.alt { grid-template-columns: 2fr 1fr; }
.service-detail-block.alt .sd-label { order: 2; }
.service-detail-block.alt .sd-content { order: 1; }
.sd-label {
  display: flex; flex-direction: column; justify-content: flex-start;
}
.sd-number {
  font-family: var(--font-display); font-size: 4rem; font-weight: 600;
  color: rgba(201,169,110,0.25); line-height: 1;
}
.sd-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; color: var(--navy); margin-top: 0.5rem; line-height: 1.3; }
.sd-content h4 { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 0.8rem; }
.sd-content p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; }
.sd-faq { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-q { font-size: 0.875rem; font-weight: 500; color: var(--navy); margin-bottom: 0.3rem; }
.faq-a { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ── PRICING ── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  margin-top: 4rem;
}
.price-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 2px; padding: 2.5rem 2rem;
  position: relative; overflow: hidden;
}
.price-card.featured {
  background: var(--navy);
  border-color: var(--gold);
}
.price-card.featured * { --text-muted: rgba(255,255,255,0.55); }
.popular-badge {
  position: absolute; top: 0; right: 2rem;
  background: var(--gold); color: var(--navy);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 0 0 4px 4px;
}
.price-tier {
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold); font-weight: 500; margin-bottom: 0.5rem;
}
.price-name {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 500;
  margin-bottom: 1rem; line-height: 1.3;
}
.price-card:not(.featured) .price-name { color: var(--navy); }
.price-card.featured .price-name { color: var(--white); }
.price-amount {
  display: flex; align-items: baseline; gap: 0.3rem;
  margin-bottom: 0.3rem;
}
.price-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 600; color: var(--gold); line-height: 1;
}
.price-per { font-size: 0.85rem; color: var(--text-muted); }
.price-note { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 2rem; line-height: 1.5; }
.price-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 1.5rem; }
.price-card.featured .price-divider { border-color: rgba(255,255,255,0.1); }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.price-features li { font-size: 0.875rem; display: flex; align-items: flex-start; gap: 0.6rem; line-height: 1.5; }
.price-features li::before { content: '✓'; color: var(--gold); font-weight: 600; flex-shrink: 0; }
.price-card:not(.featured) .price-features li { color: var(--text-muted); }
.price-card.featured .price-features li { color: rgba(255,255,255,0.75); }
.price-cta {
  display: block; text-align: center; text-decoration: none;
  padding: 0.85rem; border-radius: 2px; font-weight: 500; font-size: 0.875rem;
  transition: all 0.2s;
}
.price-card:not(.featured) .price-cta {
  border: 1px solid var(--gold); color: var(--navy);
}
.price-card:not(.featured) .price-cta:hover { background: var(--gold); }
.price-card.featured .price-cta { background: var(--gold); color: var(--navy); }
.price-card.featured .price-cta:hover { background: var(--gold-light); }
.pricing-note {
  margin-top: 2.5rem; padding: 1.5rem 2rem;
  background: var(--gold-pale); border: 1px solid rgba(201,169,110,0.3);
  border-radius: 2px; font-size: 0.875rem; color: var(--text-muted); line-height: 1.7;
}
.pricing-note strong { color: var(--navy); }

/* ── WHY US ── */
.why-bg { background: var(--navy); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
  margin-top: 4rem;
}
.why-content .section-title { color: var(--white); }
.why-content .section-sub { color: rgba(255,255,255,0.55); }
.reasons-list { list-style: none; margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.5rem; }
.reason {
  display: flex; gap: 1.25rem; align-items: flex-start;
}
.reason-num {
  font-family: var(--font-display); font-size: 1.6rem; font-weight: 600;
  color: var(--gold); line-height: 1; flex-shrink: 0; min-width: 2rem;
}
.reason h4 { font-size: 0.95rem; font-weight: 500; color: var(--white); margin-bottom: 0.3rem; }
.reason p { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.7; }
.why-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.metric-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(201,169,110,0.15);
  border-radius: 4px; padding: 1.75rem 1.5rem;
}
.metric-card.accent { background: rgba(201,169,110,0.08); border-color: rgba(201,169,110,0.3); }
.metric-num {
  font-family: var(--font-display); font-size: 2.4rem; font-weight: 600; color: var(--gold); line-height: 1;
}
.metric-label { font-size: 0.825rem; color: rgba(255,255,255,0.5); margin-top: 0.4rem; line-height: 1.5; }

/* ── FAQ ── */
.faq-list { margin-top: 3.5rem; display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 1.5rem 0; background: none; border: none;
  cursor: pointer; text-align: left; gap: 1rem;
}
.faq-q-btn span { font-size: 1rem; font-weight: 500; color: var(--navy); line-height: 1.4; }
.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--gold-pale); border: 1px solid rgba(201,169,110,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--gold); transition: transform 0.2s, background 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--navy); }
.faq-body {
  display: none; padding-bottom: 1.5rem;
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.85; max-width: 700px;
}
.faq-item.open .faq-body { display: block; }

/* ── CTA ── */
.cta-section {
  background: var(--gold-pale);
  border-top: 1px solid rgba(201,169,110,0.25);
  border-bottom: 1px solid rgba(201,169,110,0.25);
  padding: 5rem 2rem; text-align: center;
}
.cta-section .section-title { margin: 0 auto 1rem; }
.cta-section .section-sub { margin: 0 auto 2.5rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-mid); transform: translateY(-1px); }

/* ── CONTACT ── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  margin-top: 4rem;
}
.contact-info h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 500; color: var(--navy); margin-bottom: 1.5rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.ci-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold-pale); border: 1px solid rgba(201,169,110,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.ci-label { font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.2rem; }
.ci-value { font-size: 0.95rem; color: var(--navy); font-weight: 500; }
.ci-value a { color: inherit; text-decoration: none; }
.ci-value a:hover { color: var(--gold); }
.contact-form-wrap { background: var(--white); border: 1px solid var(--border); padding: 2.5rem; border-radius: 2px; }
.contact-form-wrap h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 500; color: var(--navy); margin-bottom: 0.5rem; }
.contact-form-wrap p { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.8rem; font-weight: 500; color: var(--navy); letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.75rem 1rem; border: 1px solid var(--border);
  border-radius: 2px; font-family: var(--font-body); font-size: 0.9rem;
  color: var(--navy); background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit {
  width: 100%; padding: 0.9rem; background: var(--navy);
  color: var(--white); border: none; border-radius: 2px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  cursor: pointer; letter-spacing: 0.04em;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--navy-mid); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(201,169,110,0.15);
  padding: 4rem 2rem 2rem;
}
.footer-inner { max-width: var(--max); margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .nav-logo { display: inline-flex; margin-bottom: 1.2rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 260px; }
.footer-col h4 { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.85rem; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.cpa-trust { display: flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; color: rgba(255,255,255,0.4); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner, .about-grid, .contact-grid, .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 1px solid var(--border); }
  .pricing-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; }
  .stat-card { flex: 1 1 180px; }
  .why-visual { grid-template-columns: 1fr 1fr; }
  .service-detail-block, .service-detail-block.alt { grid-template-columns: 1fr; }
  .service-detail-block.alt .sd-label { order: 0; }
  .service-detail-block.alt .sd-content { order: 1; }
  .form-row { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .why-visual { grid-template-columns: 1fr; }
}

/* mobile nav open */
nav.open .nav-links {
  display: flex; flex-direction: column;
  position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--navy); padding: 2rem;
  border-bottom: 1px solid rgba(201,169,110,0.15); gap: 1.5rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-tag, .hero h1, .hero-desc, .hero-actions {
  animation: fadeUp 0.7s ease both;
}
.hero h1 { animation-delay: 0.1s; }
.hero-desc { animation-delay: 0.2s; }
.hero-actions { animation-delay: 0.3s; }


/* ── ARTICLE / BLOG PAGES ── */
.article-hero { background: var(--navy); padding: calc(var(--nav-h) + 3.5rem) 2rem 3.5rem; position: relative; overflow: hidden; }
.article-hero::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,169,110,0.08) 0%, transparent 70%); pointer-events:none; }
.article-hero-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; }
.breadcrumb { font-size: 0.75rem; color: rgba(255,255,255,0.5); margin-bottom: 1.5rem; letter-spacing: 0.03em; }
.breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 0.5rem; color: rgba(255,255,255,0.3); }
.article-cat { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 0.8rem; }
.article-hero h1 { font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 500; color: var(--white); line-height: 1.2; letter-spacing: -0.01em; }
.article-byline { margin-top: 1.6rem; display: flex; align-items: center; gap: 0.7rem; font-size: 0.85rem; color: rgba(255,255,255,0.6); flex-wrap: wrap; }
.article-byline strong { color: var(--white); font-weight: 500; }
.article-byline .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.article-wrap { max-width: 760px; margin: 0 auto; padding: 3.5rem 2rem 5rem; }
.back-link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 500; color: var(--gold); text-decoration: none; margin-bottom: 2.5rem; transition: gap 0.2s; }
.back-link:hover { gap: 0.8rem; }
.article-cta { margin-top: 3.5rem; background: var(--navy); border-radius: 4px; padding: 2.75rem 2rem; text-align: center; position: relative; overflow: hidden; }
.article-cta::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse at 30% 30%, rgba(201,169,110,0.12) 0%, transparent 65%); pointer-events:none; }
.article-cta h3 { font-family: var(--font-display); font-size: 1.7rem; font-weight: 500; color: var(--white); margin-bottom: 0.6rem; position: relative; }
.article-cta p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin: 0 auto 1.8rem; max-width: 460px; line-height: 1.7; position: relative; }
.article-cta .cta-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
.disclaimer { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); font-size: 0.78rem; color: var(--text-muted); line-height: 1.7; font-style: italic; }
.related { margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--border); }
.related > h4 { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 1.5rem; }
.related-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

/* blog index + homepage teasers */
.blog-hero { background: var(--navy); padding: calc(var(--nav-h) + 3.5rem) 2rem 3.5rem; position: relative; overflow: hidden; }
.blog-hero::before { content:''; position:absolute; inset:0; background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,169,110,0.08) 0%, transparent 70%); pointer-events:none; }
.blog-hero-inner { max-width: var(--max); margin: 0 auto; position: relative; z-index:1; }
.blog-hero .article-cat { display:flex; align-items:center; gap:0.6rem; }
.blog-hero .article-cat::before { content:''; display:block; width:24px; height:1px; background:var(--gold); }
.blog-hero h1 { font-family: var(--font-display); font-size: clamp(2.2rem,4.5vw,3.2rem); font-weight:500; color: var(--white); line-height:1.15; margin-bottom: 0.8rem; }
.blog-hero p { font-size: 1rem; color: rgba(255,255,255,0.6); max-width: 560px; line-height: 1.8; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.post-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 2rem 1.75rem; text-decoration: none; transition: transform 0.15s, box-shadow 0.2s, border-color 0.2s; }
.post-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(11,28,46,0.08); border-color: rgba(201,169,110,0.4); }
.post-card .cat { font-size: 0.7rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--gold); font-weight: 500; margin-bottom: 0.8rem; }
.post-card h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; color: var(--navy); line-height: 1.3; margin-bottom: 0.7rem; }
.post-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; flex-grow: 1; }
.post-card .read { margin-top: 1.25rem; font-size: 0.8rem; font-weight: 500; color: var(--gold); display: inline-flex; align-items: center; gap: 0.4rem; transition: gap 0.2s; }
.post-card:hover .read { gap: 0.7rem; }
.blog-viewall { margin-top: 2.75rem; text-align: center; }

@media (max-width: 900px) {
  .post-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}


/* ── LANGUAGE SWITCHER ── */
.lang-switch { display:inline-flex; align-items:center; gap:0.45rem; font-size:0.8rem; letter-spacing:0.05em; }
.lang-switch a { color: rgba(255,255,255,0.55); text-decoration:none; transition: color 0.2s; }
.lang-switch a:hover { color: var(--gold); }
.lang-switch .active { color: var(--gold); font-weight:600; }
.lang-switch .divider { color: rgba(255,255,255,0.28); }
