:root {
  --navy: #0D2B4E;
  --navy-mid: #1A3F6A;
  --navy-light: #2A5580;
  --gold: #C9A84C;
  --gold-light: #E3C97A;
  --gold-pale: #F7EFD8;
  --white: #FFFFFF;
  --off-white: #F8F6F2;
  --gray: #6B7280;
  --gray-light: #E8E6E1;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; -webkit-text-size-adjust:100%; }
body { font-family:'Jost',sans-serif; font-weight:300; color:var(--navy); background:var(--white); line-height:1.7; overflow-x:hidden; padding-top:68px; }

/* ── VIEWS ── */
.view { display:none; min-height:100vh; }
.view.active { display:block; }

/* ── NAV ── */
nav {
  position:fixed; top:0; left:0; right:0; z-index:200;
  display:flex; justify-content:space-between; align-items:center;
  padding:0 5%; height:68px;
  background:rgba(255,255,255,0.97);
  border-bottom:1px solid var(--gray-light);
  backdrop-filter:blur(8px);
  transition:height 0.35s ease, box-shadow 0.35s ease;
}
nav.nav-scrolled { height:82px; box-shadow:0 3px 18px rgba(0,0,0,0.09); }

/* ── NAV BRAND LOGO ── */
.nav-brand {
  display:flex; align-items:center; gap:10px;
  text-decoration:none; cursor:pointer; z-index:201; flex-shrink:0;
}
.nav-logo-svg {
  width:48px; height:48px; flex-shrink:0;
  transition:transform 0.35s ease;
}
nav.nav-scrolled .nav-logo-svg { transform:scale(1.2); }
.nav-brand-text { display:flex; flex-direction:column; line-height:1.25; }
.nav-brand-name {
  font-family:'Cormorant Garamond',serif; font-size:1.05rem; font-weight:700;
  color:#1a1a1a; letter-spacing:0.04em; white-space:nowrap;
}
.nav-brand-tagline {
  font-family:'Jost',sans-serif; font-size:0.52rem; font-weight:600;
  color:#1a1a1a; letter-spacing:0.24em; text-transform:uppercase;
}
.nav-links { display:flex; gap:1.8rem; list-style:none; align-items:center; }
.nav-links > li { position:relative; }
.nav-links a, .nav-links button {
  font-size:0.78rem; font-weight:400; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--navy); text-decoration:none; transition:color 0.2s; white-space:nowrap;
  background:none; border:none; cursor:pointer; font-family:'Jost',sans-serif;
  padding:0; display:flex; align-items:center; gap:4px;
}
.nav-links a:hover, .nav-links button:hover { color:var(--gold); }
.nav-cta {
  color:var(--white) !important; background:var(--navy) !important;
  padding:0.5rem 1.2rem !important; transition:background 0.2s !important;
}
.nav-cta:hover { background:var(--gold) !important; }

/* Dropdown */
.dropdown-arrow { font-size:0.6rem; transition:transform 0.2s; }
.dropdown-arrow.open { transform:rotate(180deg); }
.dropdown {
  display:none; position:absolute; top:calc(100% + 12px); left:0;
  background:var(--white); border:1px solid var(--gray-light);
  border-top:2px solid var(--gold); min-width:240px; z-index:300;
  box-shadow:0 8px 32px rgba(13,43,78,0.1);
}
.dropdown.open { display:block; }
.dropdown a {
  display:block; padding:0.75rem 1.2rem;
  font-size:0.76rem; letter-spacing:0.08em; text-transform:uppercase;
  color:var(--navy); border-bottom:1px solid var(--gray-light);
  transition:background 0.15s, color 0.15s;
}
.dropdown a:last-child { border-bottom:none; }
.dropdown a:hover { background:var(--off-white); color:var(--gold); }

/* Language switcher */
.lang-switcher { display:flex; align-items:center; gap:5px; margin-right:0.8rem; }
.lang-btn {
  background:none; border:2px solid transparent; cursor:pointer; border-radius:3px;
  padding:2px; transition:border-color 0.2s, opacity 0.2s, transform 0.15s;
  opacity:0.5; display:inline-flex; align-items:center; line-height:1;
}
.lang-btn svg { display:block; border-radius:2px; }
.lang-btn.active { border-color:var(--gold); opacity:1; }
.lang-btn:hover { opacity:1; border-color:var(--gold-light); transform:scale(1.08); }

/* Hamburger */
.hamburger {
  display:none; flex-direction:column; justify-content:space-around;
  width:40px; height:40px; cursor:pointer; background:transparent; border:none; padding:8px; z-index:201;
  -webkit-tap-highlight-color:transparent;
}
.hamburger span { display:block; width:100%; height:2px; background:var(--navy); transition:transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display:none; position:fixed; top:68px; left:0; right:0; bottom:0;
  background:var(--white); z-index:199; flex-direction:column;
  padding:1.5rem 5% 2rem; overflow-y:auto; list-style:none;
}
.mobile-menu.open { display:flex; }
.mobile-menu li { border-bottom:1px solid var(--gray-light); }
.mobile-menu li a, .mobile-menu li button {
  display:block; padding:1rem 0; font-size:1rem; font-weight:400;
  color:var(--navy); text-decoration:none; text-transform:uppercase;
  letter-spacing:0.08em; background:none; border:none; cursor:pointer;
  font-family:'Jost',sans-serif; width:100%; text-align:left;
}
.mobile-menu .mob-sub { padding-left:1rem; font-size:0.85rem; color:var(--gray); }
.mob-cta-li { border-top:2px solid var(--gold); margin-top:1rem; border-bottom:none !important; }
.mob-cta-li a { color:var(--navy) !important; font-weight:500 !important; }

/* ── SHARED COMPONENTS ── */
.page-wrap { padding-top:68px; }
.section-pad { padding:5rem 8%; }
.section-label {
  font-size:0.7rem; font-weight:400; letter-spacing:0.2em; text-transform:uppercase;
  color:var(--gold); display:flex; align-items:center; gap:0.8rem; margin-bottom:0.8rem;
}
.section-label::before { content:''; display:inline-block; width:22px; height:1px; background:var(--gold); flex-shrink:0; }
.section-title {
  font-family:'Cormorant Garamond',serif; font-size:clamp(1.8rem,3vw,2.7rem);
  font-weight:400; line-height:1.15; color:var(--navy); margin-bottom:2rem;
}
.btn-primary {
  background:var(--navy); color:var(--white); padding:0.85rem 2.6rem;
  font-size:0.78rem; font-weight:400; letter-spacing:0.1em; text-transform:uppercase;
  text-decoration:none; transition:background 0.2s; display:inline-block; cursor:pointer;
  border:none; font-family:'Jost',sans-serif;
}
.btn-primary:hover { background:var(--gold); }
.btn-outline {
  background:transparent; color:var(--navy); padding:0.85rem 2.6rem;
  font-size:0.78rem; font-weight:400; letter-spacing:0.1em; text-transform:uppercase;
  text-decoration:none; transition:color 0.2s, border-color 0.2s; display:inline-block; cursor:pointer;
  border:1px solid var(--navy); font-family:'Jost',sans-serif;
}
.btn-outline:hover { color:var(--gold); border-color:var(--gold); }

/* ── HOME PAGE ── */
.hero { display:flex; flex-direction:column; margin-top:68px; }

/* Hero top — white */
.hero-top {
  background: url('imigexd.jpg') center/cover no-repeat;
  padding:6rem 8% 5.5rem;
  display:flex; align-items:center; justify-content:center;
  min-height:72vh;
}
.hero-top-inner { width:100%; max-width:1200px; text-align:center; }
.hero-headline {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.6rem, 7.5vw, 7rem);
  font-weight:300; color:var(--navy);
  letter-spacing:0.04em; line-height:1.08;
  margin-bottom:1.4rem;
}
.hero-quote {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(0.95rem, 1.6vw, 1.25rem);
  font-style:italic; color:var(--gold);
  margin-bottom:1.4rem; letter-spacing:0.02em;
}
.hero-name-row {
  display:flex; align-items:center; justify-content:center;
  gap:1.2rem; margin-bottom:5rem;
}
.hero-name-line { flex:1; max-width:120px; height:1px; background:rgba(201,168,76,0.4); }
.hero-name-text {
  font-size:clamp(0.9rem, 1.4vw, 1.1rem);
  letter-spacing:0.22em; text-transform:uppercase;
  color:rgba(5,26,58,0.55);
  white-space:nowrap;
}
.hero-actions { display:flex; gap:4rem; align-items:center; flex-wrap:wrap; justify-content:center; }
.hero-outline {
  color:var(--navy) !important; border-color:rgba(5,26,58,0.3) !important;
}
.hero-outline:hover { color:var(--gold) !important; border-color:var(--gold) !important; }

/* Gold bar divider */
.hero-gold-bar { height:6px; background:var(--gold); flex-shrink:0; }

/* Hero bottom — navy */
.hero-bottom {
  background:var(--navy);
  padding:0;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
}
.hero-bottom-inner { width:100%; max-width:1100px; display:flex; align-items:center; }
.hero-trust-img-wrap {
  flex-shrink:0;
  padding:2.5rem 3rem;
  display:flex; align-items:center; justify-content:center;
}
.hero-trust-img {
  width:260px;
  height:320px;
  object-fit:cover; display:block;
  border:2px solid var(--gold);
  box-shadow:0 8px 32px rgba(0,0,0,0.45);
}
.hero-trust-content {
  flex:1; padding:3rem 4%;
  display:flex; flex-direction:column; justify-content:center;
}
.hero-trust-label {
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(1.4rem, 2.5vw, 2rem);
  font-weight:400; color:var(--white);
  margin-bottom:1.8rem; text-align:left;
}
.hero-trust-list {
  display:flex; flex-direction:column; gap:0.9rem;
}
.trust-item {
  display:flex; align-items:center; gap:1rem;
  font-size:0.92rem; color:rgba(255,255,255,0.88); letter-spacing:0.01em;
}
.trust-check {
  color:var(--gold); font-size:1.05rem; font-weight:700; flex-shrink:0;
}


/* Home services preview */
#home-services { scroll-margin-top:68px; }
.home-services-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--gray-light); margin-top:2rem; }
.home-service-item {
  background:var(--white); padding:3rem 2.5rem; cursor:pointer; transition:background 0.2s;
  display:flex; align-items:flex-start; gap:1.2rem; text-decoration:none;
}
.home-service-item:hover { background:var(--off-white); }
.home-service-item:hover .home-service-arrow { color:var(--gold); transform:translateX(4px); }
.home-service-icon { font-family:'Cormorant Garamond',serif; font-size:2rem; color:var(--gold); flex-shrink:0; line-height:1; margin-top:2px; }
.home-service-text h4 { font-family:'Cormorant Garamond',serif; font-size:1.2rem; font-weight:500; color:var(--navy); margin-bottom:0.4rem; }
.home-service-text p { font-size:0.88rem; color:var(--gray); line-height:1.65; }
.home-service-arrow { margin-left:auto; color:var(--gray-light); font-size:1rem; transition:color 0.2s, transform 0.2s; flex-shrink:0; padding-top:2px; }

/* ── ABOUT PAGE ── */
.about-hero { background:var(--navy); padding:8rem 8% 5rem; position:relative; overflow:hidden; }
.about-hero::after { content:''; position:absolute; right:0; top:0; width:40%; height:100%; background:rgba(201,168,76,0.05); }
.about-hero-eyebrow { font-size:0.7rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); margin-bottom:1rem; display:flex; align-items:center; gap:0.8rem; }
.about-hero-eyebrow::before { content:''; width:22px; height:1px; background:var(--gold); display:inline-block; }
.about-hero h1 { font-family:'Cormorant Garamond',serif; font-size:clamp(2.5rem,5vw,4.5rem); font-weight:400; color:var(--white); line-height:1.1; margin-bottom:1rem; }
.about-hero h1 em { font-style:italic; color:var(--gold-light); }
.about-hero-sub { font-size:0.95rem; color:rgba(255,255,255,0.6); max-width:500px; }

.about-bio-grid { display:grid; grid-template-columns:1fr 1.6fr; gap:5rem; align-items:start; }
.about-sidebar { position:sticky; top:100px; }
.about-photo {
  width:100%; aspect-ratio:3/4; background:linear-gradient(135deg,var(--navy) 0%,var(--navy-mid) 100%);
  display:flex; align-items:center; justify-content:center; margin-bottom:2rem;
}
.about-photo-inner { text-align:center; }
.about-avatar { font-family:'Cormorant Garamond',serif; font-size:6rem; font-weight:300; color:rgba(201,168,76,0.4); }
.about-photo-name { font-size:0.78rem; letter-spacing:0.12em; text-transform:uppercase; color:rgba(255,255,255,0.4); margin-top:0.5rem; }
.about-quick-facts { border-left:3px solid var(--gold); padding-left:1.5rem; }
.about-quick-facts h4 { font-family:'Cormorant Garamond',serif; font-size:1.1rem; font-weight:400; color:var(--navy); margin-bottom:1rem; }
.fact-item { margin-bottom:0.8rem; }
.fact-label { font-size:0.68rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--gold); display:block; margin-bottom:0.1rem; }
.fact-value { font-size:0.88rem; color:var(--navy); }

.about-bio h2 { font-family:'Cormorant Garamond',serif; font-size:1.8rem; font-weight:400; color:var(--navy); margin-bottom:1.5rem; margin-top:2.5rem; }
.about-bio h2:first-child { margin-top:0; }
.about-bio p { font-size:0.95rem; color:var(--gray); margin-bottom:1.2rem; line-height:1.85; }
.about-bio ul { padding-left:0; list-style:none; margin-bottom:1.5rem; }
.about-bio ul li { font-size:0.92rem; color:var(--gray); padding:0.4rem 0; padding-left:1.2rem; position:relative; line-height:1.7; }
.about-bio ul li::before { content:''; position:absolute; left:0; top:0.8rem; width:5px; height:5px; background:var(--gold); border-radius:0; }

/* ── SERVICES ── */
.service-hero {
  background:var(--navy); padding:8rem 8% 5rem; position:relative;
}
.service-hero-eyebrow { font-size:0.7rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); margin-bottom:1rem; display:flex; align-items:center; gap:0.8rem; }
.service-hero-eyebrow::before { content:''; width:22px; height:1px; background:var(--gold); display:inline-block; }
.service-hero h1 { font-family:'Cormorant Garamond',serif; font-size:clamp(2.5rem,5vw,4rem); font-weight:400; color:var(--white); line-height:1.1; margin-bottom:1rem; }
.service-hero p { font-size:0.95rem; color:rgba(255,255,255,0.65); max-width:600px; line-height:1.8; }
.service-content p { font-size:0.95rem; color:var(--gray); margin-bottom:1.2rem; line-height:1.85; }
.service-content h3 { font-family:'Cormorant Garamond',serif; font-size:1.5rem; font-weight:400; color:var(--navy); margin-bottom:1rem; margin-top:2rem; }
.service-content ul { list-style:none; padding-left:0; margin-bottom:1.5rem; }
.service-content ul li { font-size:0.93rem; color:var(--gray); padding:0.5rem 0; padding-left:1.4rem; position:relative; border-bottom:1px solid var(--gray-light); line-height:1.7; }
.service-content ul li:last-child { border-bottom:none; }
.service-content ul li::before { content:''; position:absolute; left:0; top:1rem; width:5px; height:5px; background:var(--gold); flex-shrink:0; }

/* Service navigation arrows */
.service-next-nav {
  border-top:1px solid var(--gray-light); padding:2rem 8%;
  display:flex; justify-content:space-between; align-items:center;
}
.service-next-btn, .service-prev-btn {
  display:flex; align-items:center; gap:1rem; cursor:pointer;
  background:none; border:none; font-family:'Jost',sans-serif;
  transition:gap 0.2s; text-decoration:none;
}
.service-next-btn:hover { gap:1.5rem; }
.service-next-btn:hover .next-arrow-box { background:var(--gold); }
.service-prev-btn:hover { gap:1.5rem; }
.service-prev-btn:hover .prev-arrow-box { background:var(--gold); }
.next-label { text-align:right; }
.prev-label { text-align:left; }
.next-label-small, .prev-label-small { font-size:0.68rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--gray); display:block; margin-bottom:0.2rem; }
.next-label-name, .prev-label-name { font-family:'Cormorant Garamond',serif; font-size:1.2rem; font-weight:400; color:var(--navy); display:block; }
.next-arrow-box, .prev-arrow-box {
  width:52px; height:52px; background:var(--navy); display:flex; align-items:center; justify-content:center;
  color:var(--white); font-size:1.2rem; transition:background 0.2s; flex-shrink:0;
}

/* ── CONTACT PAGE ── */
.contact-hero { background:var(--navy); padding:8rem 8% 4rem; }
.contact-hero-eyebrow { font-size:0.7rem; letter-spacing:0.2em; text-transform:uppercase; color:var(--gold); margin-bottom:1rem; display:flex; align-items:center; gap:0.8rem; }
.contact-hero-eyebrow::before { content:''; width:22px; height:1px; background:var(--gold); display:inline-block; }
.contact-hero h1 { font-family:'Cormorant Garamond',serif; font-size:clamp(2.5rem,5vw,4rem); font-weight:400; color:var(--white); line-height:1.1; }
.contact-hero p { font-size:0.95rem; color:rgba(255,255,255,0.6); margin-top:1rem; max-width:500px; }

.contact-layout { display:grid; grid-template-columns:1fr 1fr; gap:0; }
.contact-info-col { background:var(--off-white); padding:4rem 6% 4rem 8%; }
.contact-info-col h2 { font-family:'Cormorant Garamond',serif; font-size:1.6rem; font-weight:400; color:var(--navy); margin-bottom:2rem; }
.contact-detail { display:flex; gap:1rem; margin-bottom:1.6rem; align-items:flex-start; }
.contact-icon { width:36px; height:36px; border:1px solid var(--gold); display:flex; align-items:center; justify-content:center; flex-shrink:0; color:var(--gold); font-size:0.85rem; }
.contact-detail-text strong { font-size:0.7rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--navy); display:block; margin-bottom:0.25rem; font-weight:500; }
.contact-detail-text span { font-size:0.9rem; color:var(--gray); line-height:1.6; }

.map-placeholder {
  margin-top:2rem; width:100%; height:180px; background:var(--navy);
  display:flex; align-items:center; justify-content:center;
  border-left:3px solid var(--gold);
}
.map-placeholder span { font-size:0.75rem; letter-spacing:0.1em; text-transform:uppercase; color:rgba(255,255,255,0.4); }

.contact-form-col { background:var(--white); padding:4rem 8% 4rem 6%; }
.contact-form-col h2 { font-family:'Cormorant Garamond',serif; font-size:1.6rem; font-weight:400; color:var(--navy); margin-bottom:0.5rem; }
.contact-form-col .form-sub { font-size:0.88rem; color:var(--gray); margin-bottom:2rem; }

.form-group { margin-bottom:1rem; }
.form-group label { font-size:0.68rem; letter-spacing:0.12em; text-transform:uppercase; color:var(--gray); display:block; margin-bottom:0.4rem; }
.form-group input, .form-group textarea, .form-group select {
  width:100%; background:var(--off-white); border:1px solid var(--gray-light);
  border-bottom:2px solid var(--gray-light); padding:0.75rem 1rem;
  font-family:'Jost',sans-serif; font-size:0.9rem; font-weight:300; color:var(--navy);
  outline:none; transition:border-color 0.2s; -webkit-appearance:none; appearance:none; border-radius:0;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-bottom-color:var(--navy); background:var(--white); }
.form-group textarea { min-height:110px; resize:vertical; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.form-submit {
  width:100%; background:var(--navy); color:var(--white); border:none; padding:1rem;
  font-family:'Jost',sans-serif; font-size:0.78rem; font-weight:400; letter-spacing:0.12em;
  text-transform:uppercase; cursor:pointer; transition:background 0.2s; margin-top:0.5rem; border-radius:0;
}
.form-submit:hover { background:var(--gold); }

/* ── FULL-WIDTH CONTACT STRIP (bottom of home) ── */
.contact-strip {
  background:var(--navy); padding:4rem 8%;
  display:flex; justify-content:space-between; align-items:center; gap:2rem; flex-wrap:wrap;
}
.contact-strip-text h2 { font-family:'Cormorant Garamond',serif; font-size:clamp(1.6rem,3vw,2.4rem); font-weight:400; color:var(--white); margin-bottom:0.5rem; }
.contact-strip-text p { font-size:0.9rem; color:rgba(255,255,255,0.6); }
.contact-strip-details { display:flex; gap:3rem; flex-wrap:wrap; }
.strip-detail { }
.strip-detail-label { font-size:0.65rem; letter-spacing:0.15em; text-transform:uppercase; color:var(--gold); display:block; margin-bottom:0.2rem; }
.strip-detail-value { font-size:0.95rem; color:rgba(255,255,255,0.85); }
.contact-strip-cta { flex-shrink:0; }

/* ── FOOTER ── */
footer { background:#071D36; padding:2rem 8%; display:flex; justify-content:space-between; align-items:center; border-top:1px solid rgba(201,168,76,0.2); flex-wrap:wrap; gap:1rem; }
.footer-logo { font-family:'Cormorant Garamond',serif; font-size:1.1rem; font-weight:400; color:var(--white); cursor:pointer; }
.footer-logo span { color:var(--gold); }
.footer-text { font-size:0.76rem; color:rgba(255,255,255,0.4); }
.footer-links { display:flex; gap:1.5rem; list-style:none; flex-wrap:wrap; }
.footer-links a { font-size:0.73rem; letter-spacing:0.08em; text-transform:uppercase; color:rgba(255,255,255,0.5); text-decoration:none; transition:color 0.2s; cursor:pointer; }
.footer-links a:hover { color:var(--gold); }

/* ── ANIMATIONS ── */
.fade-up { opacity:1; transform:none; }
@media (min-width:901px) {
  .fade-up:not(.visible) { opacity:0; transform:translateY(18px); transition:opacity 0.6s ease, transform 0.6s ease; }
  .fade-up.visible { opacity:1; transform:translateY(0); }
}

/* ══════ RESPONSIVE ══════ */
@media (max-width:900px) {
  .nav-links { display:none; }
  .hamburger { display:flex; }
  .hero { grid-template-columns:1fr; }
  .hero-text { padding:3rem 5% 2rem; order:1; }
  .hero-image { order:2; }
  .hero-image-inner { min-height:280px; }
  .home-services-grid { grid-template-columns:1fr; }
  .hero-bottom-inner { flex-direction:column; }
  .hero-trust-img-wrap { padding:2rem 5% 0; }
  .hero-trust-img { width:100%; max-width:300px; height:240px; }
  .hero-trust-content { padding:2rem 5% 2.5rem; }
  .hero-trust-label { text-align:center; }
  .service-next-nav { flex-direction:column; gap:1rem; align-items:stretch; }
  .about-bio-grid { grid-template-columns:1fr; gap:2rem; }
  .about-sidebar { position:static; }
  .contact-layout { grid-template-columns:1fr; }
  .contact-strip { flex-direction:column; align-items:flex-start; }
  .contact-strip-details { gap:1.5rem; }
  footer { flex-direction:column; text-align:center; align-items:center; }
  .footer-links { justify-content:center; }
  .section-pad { padding:3rem 5%; }
  .about-hero, .service-hero, .contact-hero { padding:6rem 5% 3rem; }
  .contact-info-col, .contact-form-col { padding:3rem 5%; }
  .contact-strip { padding:3rem 5%; }
}
@media (max-width:600px) {
  nav { height:60px; }
  nav.nav-scrolled { height:68px; }
  .mobile-menu { top:60px; }
  .nav-brand-tagline { display:none; }
  .nav-logo-svg { width:32px; height:32px; }
  .hero-text { padding:2rem 5% 1.5rem; }
  .hero h1 { font-size:2.1rem; }
  .hero-actions { flex-direction:column; align-items:stretch; }
  .btn-primary, .btn-outline { text-align:center; }
  .avatar-circle { width:100px; height:100px; font-size:2rem; }
  .form-row { grid-template-columns:1fr; }
  .service-next-nav { padding:1.5rem 5%; }
}

/* ── INQUIRY VIEW ── */
.inquiry-wrap {
  min-height: calc(100vh - 68px);
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 5% 4rem;
}
.inquiry-card {
  background: var(--white);
  border-radius: 4px;
  padding: 3rem 3.5rem;
  width: 100%;
  max-width: 680px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}
.inquiry-card .contact-hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}
.inquiry-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.inquiry-desc {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 0;
}
.inquiry-footer {
  width: 100%;
  background: var(--navy) !important;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.inquiry-footer .footer-logo { color: rgba(255,255,255,0.85) !important; }
.inquiry-footer .footer-logo span { color: var(--gold) !important; }
.inquiry-footer .footer-text span { color: rgba(255,255,255,0.4) !important; }
.inquiry-footer .footer-links a { color: rgba(255,255,255,0.5) !important; }
@media (max-width: 600px) {
  .inquiry-card { padding: 2rem 1.2rem; }
  .inquiry-wrap { padding: 88px 4% 3rem; }
}

/* ── LEGAL NAVIGATOR ── */
#view-navigator { background: var(--off-white); }
.nav-tool-wrap {
  padding: 88px 5% 4rem;
  min-height: calc(100vh - 68px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nav-tool-inner { width: 100%; max-width: 920px; }
.nav-screen-header { text-align: center; margin-bottom: 3rem; padding-top: 0.5rem; }
.nav-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
}
.nav-main-title {
  font-family: 'Cormorant Garamond', serif; font-size: 2.1rem; font-weight: 400;
  color: var(--navy); margin-bottom: 0.6rem;
}
.nav-main-sub { font-size: 0.9rem; color: var(--gray); }

/* Category grid */
.nav-categories-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.9rem;
}
.nav-cat-btn {
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  padding: 1.4rem 0.6rem;
  background: var(--white); border: 2px solid transparent; border-radius: 4px;
  cursor: pointer; transition: all 0.18s; font-family: 'Jost', sans-serif;
  color: var(--navy); box-shadow: 0 2px 8px rgba(0,0,0,0.06); text-align: center;
}
.nav-cat-btn:hover {
  border-color: var(--gold); box-shadow: 0 6px 20px rgba(0,0,0,0.11);
  transform: translateY(-3px);
}
.nav-cat-icon { font-size: 1.65rem; color: var(--gold); line-height: 1; }
.nav-cat-name { font-size: 0.72rem; font-weight: 400; letter-spacing: 0.03em; line-height: 1.4; }

/* Questions */
.nav-progress-wrap { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; }
.nav-progress-bar-track {
  flex: 1; height: 3px; background: var(--gray-light); border-radius: 2px; overflow: hidden;
}
.nav-progress-bar-fill {
  height: 100%; background: var(--gold); border-radius: 2px; transition: width 0.35s ease;
}
.nav-progress-text { font-size: 0.75rem; color: var(--gray); white-space: nowrap; }
.nav-q-category {
  font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.1rem;
}
.nav-q-text {
  font-family: 'Cormorant Garamond', serif; font-size: 1.9rem; font-weight: 400;
  color: var(--navy); line-height: 1.4; margin-bottom: 2.5rem; max-width: 640px;
}
.nav-ans-row { display: flex; gap: 1rem; margin-bottom: 2rem; }
.nav-ans-btn {
  padding: 0.9rem 2.5rem; font-size: 0.92rem; font-weight: 400; letter-spacing: 0.06em;
  border-radius: 3px; cursor: pointer; transition: all 0.18s;
  font-family: 'Jost', sans-serif; min-width: 110px;
}
.nav-ans-yes { background: var(--navy); color: var(--white); border: 2px solid var(--navy); }
.nav-ans-yes:hover { background: var(--gold); border-color: var(--gold); }
.nav-ans-no  { background: transparent; color: var(--navy); border: 2px solid var(--gray-light); }
.nav-ans-no:hover { border-color: var(--navy); }
.nav-back-link {
  background: none; border: none; font-size: 0.8rem; color: var(--gray);
  cursor: pointer; font-family: 'Jost', sans-serif; letter-spacing: 0.06em;
  padding: 0; transition: color 0.18s;
}
.nav-back-link:hover { color: var(--navy); }

/* Result */
.nav-result-wrap { text-align: center; max-width: 580px; margin: 2rem auto 0; padding-bottom: 2rem; }
.nav-result-icon { font-size: 2.6rem; margin-bottom: 1rem; line-height: 1; }
.nav-result-icon.urgent   { color: #C0392B; }
.nav-result-icon.standard { color: #1E8449; }
.nav-result-badge {
  display: inline-block; padding: 0.35rem 1.1rem; border-radius: 100px;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.nav-result-badge.urgent   { background: #FDEAEA; color: #C0392B; }
.nav-result-badge.standard { background: #EAFAF1; color: #1E8449; }
.nav-result-category {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.nav-result-text { font-size: 1rem; line-height: 1.85; color: var(--navy); margin-bottom: 2.5rem; }
.nav-cta-btn { display: inline-block; margin-bottom: 1.2rem; padding: 1rem 2.5rem; font-size: 0.85rem; }
.nav-restart-btn { display: block; margin: 0 auto; }

@media (max-width: 720px) {
  .nav-categories-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-q-text { font-size: 1.4rem; }
  .nav-main-title { font-size: 1.7rem; }
  .nav-ans-btn { padding: 0.8rem 1.5rem; min-width: 90px; }
}

/* ── COOKIE BANNER ── */
.cookie-banner {
  display:none;
  position:fixed; bottom:0; left:0; right:0; z-index:9999;
  background:var(--navy); border-top:3px solid var(--gold);
  padding:1rem 5%;
}
.cookie-inner {
  display:flex; align-items:center; justify-content:space-between;
  gap:1.5rem; max-width:1200px; margin:0 auto; flex-wrap:wrap;
}
.cookie-text {
  font-size:0.82rem; color:rgba(255,255,255,0.8);
  line-height:1.6; flex:1; margin:0;
}
.cookie-btns { display:flex; gap:0.75rem; align-items:center; flex-shrink:0; }
.cookie-accept { padding:0.6rem 1.4rem; font-size:0.78rem; }
.cookie-decline {
  background:none; border:1px solid rgba(255,255,255,0.35);
  color:rgba(255,255,255,0.7); font-size:0.78rem; font-family:'Jost',sans-serif;
  padding:0.6rem 1.2rem; cursor:pointer; letter-spacing:0.06em;
  transition:border-color 0.2s, color 0.2s; border-radius:0;
}
.cookie-decline:hover { border-color:var(--gold); color:var(--gold); }
@media (max-width:600px) {
  .cookie-inner { flex-direction:column; align-items:flex-start; }
}

/* ── PRICES PAGE ── */
.prices-body { background:var(--white); padding:3rem 8% 5rem; }
.prices-grid { max-width:900px; margin:0 auto; }
.prices-section { margin-bottom:2.8rem; }
.prices-section-heading {
  display:flex; align-items:center; gap:0.9rem;
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(1.05rem,1.8vw,1.3rem); font-weight:500; color:var(--navy);
  padding-bottom:0.65rem; border-bottom:2px solid var(--gold); margin-bottom:1rem;
}
.prices-num {
  background:var(--gold); color:var(--navy);
  width:1.9rem; height:1.9rem; border-radius:50%;
  display:inline-flex; align-items:center; justify-content:center;
  font-size:0.75rem; font-weight:700; flex-shrink:0; font-family:'Jost',sans-serif;
}
.price-row {
  display:flex; justify-content:space-between; align-items:baseline;
  gap:1.5rem; padding:0.5rem 0;
  border-bottom:1px solid rgba(201,168,76,0.15); font-size:0.88rem;
}
.price-row:last-child { border-bottom:none; }
.price-label { color:var(--navy); flex:1; line-height:1.4; }
.price-amount { color:var(--gold); font-weight:500; white-space:nowrap; min-width:100px; text-align:right; }
.price-note { font-size:0.8rem; color:#666; font-style:italic; padding:0.35rem 0 0.35rem 0; }
.price-sub { padding-left:1.2rem; border-left:2px solid var(--gold-pale); margin:0.4rem 0 0.4rem 0.4rem; }
.price-sub .price-row { font-size:0.83rem; }
.prices-disclaimer {
  margin-top:3rem; padding:1.2rem 1.5rem;
  border-left:4px solid var(--gold); background:var(--gold-pale);
  font-size:0.84rem; color:var(--navy); font-style:italic; line-height:1.75;
}
@media (max-width:600px) {
  .prices-body { padding:2rem 5% 4rem; }
  .price-row { flex-direction:column; gap:0.2rem; }
  .price-amount { text-align:left; color:var(--gold); font-weight:600; }
}
