:root {
  
  --navy-900: #060a14;
  --navy-850: #080d1a;
  --navy-800: #0a0f1f;
  --navy-700: #0e152b;
  --navy-600: #141d39;
  --navy-500: #1d2950;

  --gold:     #c9a24b;
  --gold-lt:  #e4c982;
  --gold-dk:  #a8842f;

  --ivory:    #f4efe4;
  --cream:    #d7cfbe;   
  --muted:    #a29a86;   

  
  --teal:     #4bb3c9;
  --teal-dk:  #2b7f92;

  --line:      rgba(201, 162, 75, 0.20);
  --line-soft: rgba(244, 239, 228, 0.10);

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius: 14px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--navy-800);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold-lt); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--ivory); }
h1, h2, h3, h4 {
  font-family: var(--font-display); font-weight: 600; line-height: 1.15; margin: 0 0 .5em;
  
  text-wrap: balance;
}
p { margin: 0 0 1.1em; }
ul { margin: 0 0 1.1em; padding-left: 1.1em; }
li { margin-bottom: .45em; }

a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold-lt);
  outline-offset: 3px;
  border-radius: 4px;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--gold); color: var(--navy-900);
  padding: .7rem 1.2rem; font-weight: 600; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.wrap { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
section { padding: clamp(3.6rem, 8vw, 6.5rem) 0; position: relative; }
.section-alt { background: var(--navy-850); }
.center { text-align: center; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .74rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin: 0 0 1rem;
}
.eyebrow.teal { color: var(--teal); }

h1 { font-size: clamp(2.4rem, 6vw, 4.1rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); }
h3 { font-size: 1.35rem; }
.lede { font-size: clamp(1.05rem, 2vw, 1.22rem); color: var(--cream); max-width: 62ch; text-wrap: pretty; }
.center .lede { margin-inline: auto; }

.rule {
  width: 68px; height: 1px; border: 0; margin: 1.6rem 0;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.center .rule { margin-inline: auto; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 15, 31, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); background: rgba(6, 10, 20, 0.94); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: .85rem 0; }
.brand { display: flex; align-items: center; gap: .7rem; flex-shrink: 0; }
.brand img { height: 40px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display); font-size: 1.18rem; font-weight: 600;
  color: var(--ivory); letter-spacing: .06em;
}
.brand-sub {
  font-size: .58rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--gold); margin-top: .28rem;
}
.nav-links { display: flex; align-items: center; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: var(--cream); font-size: .89rem; font-weight: 400;
  position: relative; padding: .3rem 0; white-space: nowrap;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width .3s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ivory); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { width: 100%; }

.subnav {
  border-top: 1px solid var(--line-soft);
  background: rgba(6, 10, 20, 0.55);
}
.subnav ul {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  list-style: none; margin: 0; padding: .45rem 0;
  justify-content: flex-end;
}
.subnav li { margin: 0; }
.subnav a {
  font-size: .78rem; color: var(--muted); letter-spacing: .04em;
  white-space: nowrap; padding: .2rem 0; display: inline-block;
}
.subnav a:hover { color: var(--gold-lt); }
.subnav a[aria-current="page"] { color: var(--ivory); }

.btn {
  display: inline-block; padding: .8rem 1.6rem; border-radius: 999px;
  font-family: var(--font-body); font-size: .88rem; font-weight: 600;
  letter-spacing: .02em; cursor: pointer; border: 1px solid transparent; white-space: nowrap;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-primary { background: var(--gold); color: var(--navy-900); }
.btn-primary:hover { background: var(--gold-lt); color: var(--navy-900); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(201,162,75,.28); }
.btn-ghost { border-color: var(--line); color: var(--ivory); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-lt); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2.1rem; font-size: .95rem; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  padding: .5rem; color: var(--ivory);
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: currentColor; margin: 5px 0; transition: .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative; overflow: hidden;
  padding: clamp(4rem, 11vw, 8rem) 0 clamp(3.5rem, 8vw, 6rem);
  background:
    radial-gradient(1100px 620px at 70% -5%, rgba(29, 41, 80, .60), transparent 62%),
    radial-gradient(760px 460px at 8% 105%, rgba(201, 162, 75, .10), transparent 60%),
    var(--navy-900);
}
.hero::after {
  content: ''; position: absolute; inset: auto 0 0 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero-mark { justify-self: center; max-width: 350px; width: 100%; opacity: .97; filter: drop-shadow(0 14px 40px rgba(0,0,0,.5)); }
.hero h1 span { color: var(--gold-lt); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-top: 2rem; }

.trust-strip {
  display: flex; flex-wrap: wrap; gap: 1rem 2.4rem;
  margin-top: 2.6rem; padding-top: 1.7rem; border-top: 1px solid var(--line-soft);
  font-size: .84rem; color: var(--muted);
}
.trust-strip span { display: flex; align-items: center; gap: .5rem; }
.trust-strip span::before { content: '✦'; color: var(--gold); font-size: .8em; }

.grid { display: grid; gap: 1.4rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); }

.grid-2w { grid-template-columns: repeat(auto-fit, minmax(430px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }

.card {
  background: linear-gradient(160deg, var(--navy-700), var(--navy-800));
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 2rem 1.8rem; position: relative; overflow: hidden;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0; transition: opacity .35s var(--ease);
}
.card:hover { transform: translateY(-5px); border-color: var(--line); box-shadow: var(--shadow); }
.card:hover::before { opacity: 1; }
.card h3 { color: var(--ivory); margin-bottom: .55rem; }
.card p { color: var(--cream); font-size: .95rem; margin-bottom: .9rem; }
.card ul { color: var(--cream); font-size: .9rem; }
.card-icon {
  color: var(--gold); margin-bottom: 1rem;
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 12px;
  background: rgba(201, 162, 75, .09); border: 1px solid var(--line);
  transition: background .35s var(--ease), border-color .35s var(--ease);
}
.card-icon svg { width: 25px; height: 25px; display: block; }
.card:hover .card-icon { background: rgba(201, 162, 75, .15); border-color: rgba(201, 162, 75, .38); }
.card.teal:hover .card-icon { background: rgba(75, 179, 201, .15); border-color: rgba(75, 179, 201, .38); }
.card.teal .card-icon { color: var(--teal); background: rgba(75, 179, 201, .09); border-color: rgba(75,179,201,.22); }
.card.teal::before { background: linear-gradient(90deg, var(--teal), transparent); }
.card-link { font-size: .86rem; font-weight: 600; letter-spacing: .02em; display: inline-flex; align-items: center; gap: .4rem; }
.card-link::after { content: '→'; transition: transform .25s var(--ease); }
.card-link:hover::after { transform: translateX(4px); }

.card-a { display: block; color: inherit; }
.card-a:hover { color: inherit; }

.steps { counter-reset: step; }
.step { position: relative; padding-left: 4.2rem; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: -.15rem;
  font-family: var(--font-display); font-size: 2.1rem; color: var(--gold); opacity: .55;
}
.step h3 { font-size: 1.15rem; }
.step p { color: var(--cream); font-size: .94rem; }

.chips { display: flex; flex-wrap: wrap; gap: .55rem; list-style: none; padding: 0; margin: 1.6rem 0 0; }
.chips li {
  font-size: .82rem; color: var(--cream); margin: 0;
  padding: .42rem .95rem; border-radius: 999px;
  border: 1px solid var(--line-soft); background: rgba(244,239,228,.03);
}

.areas { display: flex; flex-wrap: wrap; gap: .5rem; list-style: none; padding: 0; margin: 1.8rem 0 0; }
.areas li {
  margin: 0; font-size: .85rem; color: var(--cream);
  padding: .4rem .9rem; border-radius: 8px;
  background: rgba(29,41,80,.5); border: 1px solid var(--line-soft);
}

.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--line-soft); padding: .3rem 0;
}
.faq summary {
  cursor: pointer; list-style: none; padding: 1.15rem 2.2rem 1.15rem 0;
  font-family: var(--font-display); font-size: 1.2rem; color: var(--ivory);
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+'; position: absolute; right: .3rem; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-size: 1.4rem; font-family: var(--font-body); font-weight: 300;
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq details p { color: var(--cream); font-size: .96rem; padding-right: 2rem; margin-bottom: 1.1rem; }

.cta-band {
  background:
    radial-gradient(720px 320px at 50% 0%, rgba(201,162,75,.13), transparent 68%),
    var(--navy-900);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: .8rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: .45rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .85rem 1rem; font-family: var(--font-body); font-size: .95rem;
  color: var(--ivory); background: var(--navy-900);
  border: 1px solid var(--line-soft); border-radius: 10px;
  transition: border-color .25s var(--ease);
}
.field input:hover, .field textarea:hover, .field select:hover { border-color: var(--line); }
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #6f6a5c; }

.contact-detail { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.6rem; }
.contact-detail .ico {
  flex-shrink: 0; width: 42px; height: 42px; border-radius: 10px; display: grid; place-items: center;
  color: var(--gold); background: rgba(201,162,75,.08); border: 1px solid var(--line);
}
.contact-detail .ico svg { width: 20px; height: 20px; display: block; }
.contact-detail h3 { font-size: 1.02rem; margin-bottom: .15rem; }
.contact-detail p { font-size: .93rem; color: var(--cream); margin-bottom: 0; }

.crumbs { font-size: .8rem; color: var(--muted); padding-top: 1.6rem; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--gold-lt); }
.crumbs span { margin: 0 .45rem; opacity: .55; }

.page-hero {
  padding: clamp(2.6rem, 6vw, 4.4rem) 0 clamp(2.4rem, 5vw, 3.6rem);
  background:
    radial-gradient(900px 460px at 78% -20%, rgba(29,41,80,.6), transparent 62%),
    var(--navy-900);
  border-bottom: 1px solid var(--line-soft);
}

.site-footer { background: var(--navy-900); border-top: 1px solid var(--line-soft); padding: 3.4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2.2rem; }
.footer-grid h4 {
  font-family: var(--font-body); font-size: .76rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .55rem; }
.footer-grid a, .footer-grid p { font-size: .89rem; color: var(--cream); }
.footer-brand img { height: 74px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: .88rem; color: var(--muted); max-width: 34ch; }
.footer-bottom {
  margin-top: 2.6rem; padding-top: 1.5rem; border-top: 1px solid var(--line-soft);
  display: flex; flex-wrap: wrap; gap: .8rem; justify-content: space-between;
  font-size: .8rem; color: var(--muted);
}

.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-mark { grid-row: 1; max-width: 230px; }
  .hero .rule, .hero .lede { margin-inline: auto; }
  .hero-actions, .trust-strip { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav { flex-wrap: wrap; }
  .nav-toggle { display: block; }
  
  .nav-links {
    order: 3; width: 100%;
    flex-direction: column; align-items: flex-start; gap: 0;
    max-height: 0; overflow: hidden; transition: max-height .35s var(--ease);
  }
  .nav-links.open { max-height: 640px; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: .8rem 0; width: 100%; border-bottom: 1px solid var(--line-soft); }
  .nav .btn { display: none; }

  .subnav { display: none; }
  .site-header.menu-open .subnav { display: block; }
  .subnav ul { flex-direction: column; align-items: flex-start; gap: 0; padding: 0 0 1rem; justify-content: flex-start; }
  .subnav a { display: block; padding: .75rem 0; width: 100%; border-bottom: 1px solid var(--line-soft); font-size: .85rem; }
}

@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; }
  .step { padding-left: 3.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .js .reveal, .reveal { opacity: 1 !important; transform: none !important; }
}

@media print {
  body { background: #fff; color: #000; }
  .site-header, .nav-toggle, .cta-band, .hero-mark { display: none; }
  a { color: #000; text-decoration: underline; }
}

.qa-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); gap: 1.6rem 2.4rem; }
.qa { border-left: 2px solid var(--line); padding-left: 1.2rem; }
.qa h3 {
  font-family: var(--font-body); font-size: .95rem; font-weight: 600;
  color: var(--gold-lt); margin-bottom: .45rem; line-height: 1.4;
}
.qa p { font-size: .94rem; color: var(--cream); margin-bottom: 0; }

.mail-box {
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 1.3rem 1.4rem; margin-bottom: 1.1rem;
  background: linear-gradient(160deg, var(--navy-700), var(--navy-800));
}
.mail-label {
  font-size: .74rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); margin: 0 0 .9rem;
}
.mail-box .btn { max-width: 100%; overflow-wrap: anywhere; white-space: normal; }

.legal-note {
  font-size: .84rem; color: var(--muted);
  margin-top: 2rem; margin-bottom: 0; max-width: 62ch;
}
.center .legal-note { margin-inline: auto; }
