/* ============================================================
   NRI Property Advisor — Premium Corporate Stylesheet
   Palette: Maroon #6E0F1E · Gold #C9973C · Ivory #FAF7F1
   ============================================================ */

:root {
  --maroon: #6E0F1E;
  --maroon-dark: #4E0A15;
  --maroon-deep: #35060D;
  --gold: #C9973C;
  --gold-light: #E3C27E;
  --gold-pale: #F4E8CF;
  --ivory: #FAF7F1;
  --cream: #F3EDE2;
  --white: #FFFFFF;
  --ink: #2C2225;
  --muted: #6E6165;
  --line: #E7DFD2;
  --shadow-sm: 0 2px 10px rgba(53, 6, 13, 0.07);
  --shadow-md: 0 10px 34px rgba(53, 6, 13, 0.12);
  --shadow-lg: 0 24px 60px rgba(53, 6, 13, 0.18);
  --radius: 14px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Segoe UI", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1180px, 92%); margin: 0 auto; }

h1, h2, h3, .display { font-family: var(--font-display); font-weight: 600; line-height: 1.15; color: var(--maroon-deep); }

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 13px; letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold); font-weight: 500;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); }
.eyebrow.centered::after { content: ""; width: 34px; height: 1px; background: var(--gold); }

.section { padding: 96px 0; }
.section.tinted { background: var(--ivory); }
.section.dark { background: linear-gradient(150deg, var(--maroon-deep) 0%, var(--maroon-dark) 55%, #5B0C19 100%); color: #F3E9DC; }
.section.dark h2, .section.dark h3 { color: var(--white); }
.section.dark .card h3 { color: var(--maroon-deep); }
.section.dark .card p { color: var(--muted); }

.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); margin: 14px 0 16px; }
.section-head p { color: var(--muted); font-size: 17.5px; }
.section.dark .section-head p { color: #D9C6B0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 32px; border-radius: 60px; font-weight: 500; font-size: 15.5px;
  letter-spacing: .4px; transition: all .3s ease; border: 1.5px solid transparent;
  cursor: pointer; font-family: var(--font-body);
}
.btn-primary { background: var(--maroon); color: var(--white); box-shadow: 0 8px 22px rgba(110, 15, 30, .28); }
.btn-primary:hover { background: var(--maroon-dark); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(110, 15, 30, .36); }
.btn-gold { background: linear-gradient(120deg, var(--gold) 0%, #B9852D 100%); color: var(--white); box-shadow: 0 8px 22px rgba(201, 151, 60, .35); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201, 151, 60, .45); }
.btn-outline { border-color: var(--maroon); color: var(--maroon); background: transparent; }
.btn-outline:hover { background: var(--maroon); color: var(--white); }
.btn-outline-light { border-color: rgba(255,255,255,.55); color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--maroon); }

/* ---------- Top bar ---------- */
.topbar { background: var(--maroon-deep); color: #E8D9C4; font-size: 13.5px; }
.topbar-inner { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; gap: 16px; flex-wrap: wrap; }
.topbar a { color: #F0E3CE; transition: color .2s; }
.topbar a:hover { color: var(--gold-light); }
.topbar .tb-group { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar .flags { letter-spacing: 2px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 255, 255, .96); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 24px; }
.brand img { height: 68px; width: auto; border-radius: 10px; }

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links > li { position: relative; }
.nav-links a.nav-link {
  font-size: 15px; font-weight: 500; letter-spacing: .5px; color: var(--ink);
  padding: 8px 0; position: relative; transition: color .25s;
}
.nav-links a.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold); transition: width .3s ease;
}
.nav-links a.nav-link:hover, .nav-links a.nav-link.active { color: var(--maroon); }
.nav-links a.nav-link:hover::after, .nav-links a.nav-link.active::after { width: 100%; }

.dropdown .drop-menu {
  position: absolute; top: calc(100% + 14px); left: -20px; min-width: 280px;
  background: var(--white); border-radius: 12px; box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--gold);
  padding: 12px 0; opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .28s ease;
}
.dropdown:hover .drop-menu, .dropdown:focus-within .drop-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.drop-menu a { display: block; padding: 11px 24px; font-size: 14.5px; color: var(--ink); transition: all .2s; }
.drop-menu a:hover { background: var(--ivory); color: var(--maroon); padding-left: 30px; }

.nav-cta { white-space: nowrap; padding: 12px 26px; font-size: 14.5px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2.5px; background: var(--maroon); margin: 5.5px 0; border-radius: 2px; transition: all .3s; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: var(--white);
  background:
    radial-gradient(900px 480px at 85% -10%, rgba(201, 151, 60, .28), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(201, 151, 60, .16), transparent 55%),
    linear-gradient(135deg, #2E050C 0%, var(--maroon-dark) 45%, #7A1223 100%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .05; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cpath d='M20 100 V55 a40 40 0 0 1 80 0 V100' fill='none' stroke='%23ffffff' stroke-width='2'/%3E%3C/svg%3E");
  background-size: 120px;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; padding: 110px 0 120px; }
.hero .eyebrow { color: var(--gold-light); }
.hero h1 { font-size: clamp(38px, 5.2vw, 62px); color: var(--white); margin: 18px 0 22px; }
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero p.lead { font-size: 18.5px; color: #EBD9C2; max-width: 560px; margin-bottom: 38px; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }
.hero-note { margin-top: 34px; display: flex; gap: 28px; flex-wrap: wrap; font-size: 14px; color: #D9BF9C; }
.hero-note span { display: inline-flex; align-items: center; gap: 8px; }
.hero-note b { color: var(--white); font-weight: 600; }

.hero-card {
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(227, 194, 126, .35);
  border-radius: 20px; padding: 38px 34px; backdrop-filter: blur(8px);
  box-shadow: var(--shadow-lg);
}
.hero-card h3 { color: var(--gold-light); font-size: 24px; margin-bottom: 20px; }
.hero-card ul li {
  padding: 12px 0; border-bottom: 1px dashed rgba(227, 194, 126, .25);
  display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: #F0E3CE;
}
.hero-card ul li:last-child { border-bottom: none; }
.hero-card .tick { color: var(--gold-light); font-weight: 700; }

/* ---------- Stats strip ---------- */
.stats-strip { background: var(--white); box-shadow: var(--shadow-md); border-radius: var(--radius); position: relative; z-index: 5; margin-top: -58px; display: grid; grid-template-columns: repeat(4, 1fr); overflow: hidden; }
.stat { padding: 34px 20px; text-align: center; border-right: 1px solid var(--line); }
.stat:last-child { border-right: none; }
.stat .num { font-family: var(--font-display); font-size: 40px; font-weight: 700; color: var(--maroon); }
.stat .num span { color: var(--gold); }
.stat .num .globe { font-size: 38px; line-height: 1.25; display: inline-block; }
.stat .lbl { font-size: 13.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 28px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px 30px; transition: all .35s ease; position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--maroon), var(--gold)); opacity: 0; transition: opacity .35s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::before { opacity: 1; }
.card .icon {
  width: 60px; height: 60px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-pale), #EDD9AE); color: var(--maroon);
  font-size: 26px; margin-bottom: 22px;
}
.card h3 { font-size: 22px; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 15.5px; }
.card .card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--maroon); font-weight: 500; font-size: 14.5px; letter-spacing: .5px; }
.card .card-link:hover { gap: 14px; color: var(--gold); }

/* numbered service rows */
.svc-row {
  display: grid; grid-template-columns: 84px 1fr; gap: 26px; padding: 34px 0;
  border-bottom: 1px solid var(--line); align-items: flex-start;
}
.svc-row:last-child { border-bottom: none; }
.svc-num {
  font-family: var(--font-display); font-size: 44px; font-weight: 700;
  color: transparent; -webkit-text-stroke: 1.5px var(--gold); line-height: 1;
  padding-top: 4px;
}
.svc-row h3 { font-size: 24px; margin-bottom: 8px; }
.svc-row p { color: var(--muted); }
.svc-row .svc-tags { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 10px; }
.tag {
  font-size: 12.5px; letter-spacing: .8px; padding: 6px 14px; border-radius: 40px;
  background: var(--ivory); border: 1px solid var(--line); color: var(--maroon); text-transform: uppercase;
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.steps.three { grid-template-columns: repeat(3, 1fr); }
.step { background: var(--white); border-radius: var(--radius); padding: 36px 26px; border: 1px solid var(--line); position: relative; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-display); font-size: 52px; font-weight: 700; color: var(--gold-pale);
  position: absolute; top: 16px; right: 22px; line-height: 1;
}
.step h3 { font-size: 20px; margin: 16px 0 10px; }
.step p { font-size: 14.5px; color: var(--muted); }
.step .dot { width: 46px; height: 46px; border-radius: 50%; background: var(--maroon); color: var(--gold-light); display: grid; place-items: center; font-size: 20px; }

/* ---------- Split / feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split .visual {
  border-radius: 20px; min-height: 440px; position: relative; overflow: hidden;
  background:
    radial-gradient(500px 300px at 80% 20%, rgba(201, 151, 60, .35), transparent 60%),
    linear-gradient(160deg, var(--maroon-deep), var(--maroon) 70%, #8A1628 100%);
  display: grid; place-items: center; box-shadow: var(--shadow-lg);
}
.split .visual img { width: 70%; filter: drop-shadow(0 20px 40px rgba(0,0,0,.35)); }
.checklist li { display: flex; gap: 14px; padding: 10px 0; font-size: 16px; }
.checklist .tick {
  flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--gold-pale);
  color: var(--maroon); display: grid; place-items: center; font-size: 13px; font-weight: 700; margin-top: 2px;
}

/* ---------- Country cards ---------- */
.country-card { text-align: center; padding: 44px 28px; }
.country-card .flag {
  width: 74px; height: 74px; margin: 0 auto 20px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--gold-pale), #EDD9AE);
  color: var(--maroon); font-family: var(--font-display);
  font-size: 26px; font-weight: 700; letter-spacing: 1px;
  border: 2px solid var(--gold);
}
.country-card h3 { font-size: 23px; }
.country-card p { margin-top: 10px; }
.country-card .tz { margin-top: 16px; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); }

/* ---------- Testimonials ---------- */
.testimonial { background: var(--white); border-radius: var(--radius); padding: 38px 32px; border: 1px solid var(--line); position: relative; }
.testimonial::before { content: "\201C"; font-family: var(--font-display); font-size: 90px; color: var(--gold-pale); position: absolute; top: 6px; left: 24px; line-height: 1; }
.testimonial p { position: relative; color: var(--ink); font-size: 15.5px; font-style: italic; margin-top: 26px; }
.testimonial .who { margin-top: 22px; display: flex; align-items: center; gap: 14px; }
.testimonial .avatar { width: 48px; height: 48px; border-radius: 50%; background: var(--maroon); color: var(--gold-light); display: grid; place-items: center; font-weight: 600; font-family: var(--font-display); font-size: 20px; }
.testimonial .who b { display: block; font-size: 15px; }
.testimonial .who span { font-size: 13px; color: var(--muted); }
.stars { color: var(--gold); letter-spacing: 3px; font-size: 14px; }

/* ---------- CTA band ---------- */
.cta-band {
  background:
    radial-gradient(600px 300px at 15% 0%, rgba(201, 151, 60, .3), transparent 60%),
    linear-gradient(120deg, var(--maroon-deep), var(--maroon) 80%);
  border-radius: 24px; padding: 70px 60px; color: var(--white);
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: var(--white); font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 10px; }
.cta-band p { color: #E4CFB2; max-width: 520px; }
.cta-band .actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq-item { border: 1px solid var(--line); border-radius: 12px; margin-bottom: 16px; background: var(--white); overflow: hidden; transition: box-shadow .3s; }
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--gold-light); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 26px; font-family: var(--font-body); font-size: 16.5px; font-weight: 500; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq-q .chev { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--gold); color: var(--gold); display: grid; place-items: center; font-size: 14px; transition: all .3s; }
.faq-item.open .faq-q .chev { background: var(--gold); color: var(--white); transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a-inner { padding: 0 26px 24px; color: var(--muted); font-size: 15.5px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative; color: var(--white); padding: 90px 0 80px; overflow: hidden;
  background:
    radial-gradient(700px 380px at 90% -20%, rgba(201, 151, 60, .3), transparent 60%),
    linear-gradient(135deg, #2E050C 0%, var(--maroon-dark) 50%, #7A1223 100%);
}
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero h1 { color: var(--white); font-size: clamp(34px, 4.5vw, 54px); margin: 16px 0 14px; }
.page-hero p { color: #E8D5BB; max-width: 640px; font-size: 17.5px; }
.crumbs { margin-top: 28px; font-size: 13.5px; letter-spacing: 1px; color: #C9A97F; text-transform: uppercase; }
.crumbs a:hover { color: var(--gold-light); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 50px; align-items: flex-start; }
.info-tile { display: flex; gap: 20px; padding: 26px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 18px; transition: all .3s; }
.info-tile:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.info-tile .icon { flex: none; width: 52px; height: 52px; border-radius: 12px; background: linear-gradient(135deg, var(--gold-pale), #EDD9AE); display: grid; place-items: center; font-size: 22px; color: var(--maroon); }
.info-tile h3 { font-size: 19px; margin-bottom: 4px; }
.info-tile p, .info-tile a { color: var(--muted); font-size: 15px; }
.info-tile a:hover { color: var(--maroon); }

.form-card { background: var(--white); border-radius: 18px; box-shadow: var(--shadow-md); border: 1px solid var(--line); padding: 44px; }
.form-card h3 { font-size: 26px; margin-bottom: 6px; }
.form-card .sub { color: var(--muted); font-size: 15px; margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 500; letter-spacing: .8px; text-transform: uppercase; color: var(--maroon); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15.5px; color: var(--ink);
  padding: 13px 16px; border: 1.5px solid var(--line); border-radius: 10px; background: var(--ivory);
  transition: border-color .25s, box-shadow .25s; width: 100%;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201, 151, 60, .15); background: var(--white);
}
.field textarea { min-height: 130px; resize: vertical; }

/* ---------- Footer ---------- */
.site-footer { background: var(--maroon-deep); color: #D9C6B0; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; padding: 76px 0 56px; }
.footer-top img { height: 110px; width: auto; margin-bottom: 20px; border-radius: 12px; }
.footer-top p { font-size: 14.5px; line-height: 1.7; }
.footer-top h4 { color: var(--gold-light); font-family: var(--font-display); font-size: 20px; margin-bottom: 20px; letter-spacing: .5px; }
.footer-top ul li { margin-bottom: 11px; }
.footer-top ul a { font-size: 14.5px; color: #D9C6B0; transition: all .25s; }
.footer-top ul a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-contact li { display: flex; gap: 12px; font-size: 14.5px; margin-bottom: 14px; align-items: flex-start; }
.footer-contact .fi { color: var(--gold); flex: none; }
.footer-bottom { border-top: 1px solid rgba(227, 194, 126, .18); padding: 22px 0; font-size: 13.5px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer-bottom a { color: #D9C6B0; }
.footer-bottom a:hover { color: var(--gold-light); }

/* WhatsApp float */
.wa-float {
  position: fixed; right: 26px; bottom: 26px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 28px rgba(37, 211, 102, .45);
  transition: transform .3s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Notice / disclaimer */
.notice { background: var(--gold-pale); border-left: 4px solid var(--gold); border-radius: 8px; padding: 20px 24px; font-size: 14.5px; color: #6B5320; }

/* Two-tone heading em */
h2 em, h1 em { font-style: italic; color: var(--gold); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; padding: 80px 0 100px; }
  .grid.cols-3, .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .steps, .steps.three { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 44px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .section { padding: 68px 0; }
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
  .steps, .steps.three { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: repeat(2, 1fr); margin-top: -40px; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .form-grid { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 1fr; gap: 8px; }
  .cta-band { padding: 48px 30px; }
  .topbar .tb-hide-m { display: none; }

  /* Mobile nav */
  /* backdrop-filter would make the header the containing block for the
     fixed-position drawer, clipping it to the header's height */
  .site-header { backdrop-filter: none; background: var(--white); }
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(340px, 85vw); background: var(--white);
    flex-direction: column; align-items: flex-start; gap: 6px; padding: 96px 34px 40px;
    box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .38s ease; z-index: 1001;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links > li { width: 100%; border-bottom: 1px solid var(--line); }
  .nav-links a.nav-link { display: block; padding: 14px 0; font-size: 16px; }
  .dropdown .drop-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 10px 14px; min-width: 0; }
  .drop-menu a { padding: 8px 0; color: var(--muted); }
  .nav-cta { display: none; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .nav-overlay { position: fixed; inset: 0; background: rgba(44, 8, 15, .5); z-index: 999; opacity: 0; visibility: hidden; transition: opacity .3s; }
  .nav-overlay.show { opacity: 1; visibility: visible; }
}
