/* ============================================
   Design tokens
   ============================================ */
:root{
  --navy: #12233d;
  --navy-deep: #0b1626;
  --gold: #b8862f;
  --gold-soft: #e0b169;
  --cream: #f6f3ec;
  --paper: #fffdf9;
  --ink: #21283a;
  --ink-soft: #55607a;
  --line: #e4ddce;
  --radius: 10px;
  --shadow: 0 12px 30px -12px rgba(18,35,61,0.18);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap{
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

img{ max-width:100%; display:block; }
a{ color: inherit; }

h1,h2,h3{
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.18;
  margin: 0 0 0.5em;
}
h1{ font-size: clamp(2rem, 4.4vw, 3.1rem); font-weight: 600; }
h2{ font-size: clamp(1.5rem, 2.6vw, 2rem); font-weight: 600; margin-top: 0; }
h3{ font-size: clamp(1.1rem, 1.6vw, 1.3rem); font-weight: 600; color: var(--gold); margin-top: 1.6em; }

p{ margin: 0 0 1.1em; color: var(--ink-soft); }

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: 1.5px solid transparent;
}
.btn-primary{
  background: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 10px 24px -10px rgba(184,134,47,0.55);
}
.btn-primary:hover{ transform: translateY(-2px); background: var(--gold-soft); }
.btn-ghost{
  background: transparent;
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}
.btn-ghost:hover{ background: rgba(255,255,255,0.12); }

/* ============================================
   Header
   ============================================ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246,243,236,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
}
.logo{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
}
.logo span{
  display:block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.main-nav{ display:flex; gap: 28px; }
.main-nav a{
  text-decoration:none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
}
.main-nav a:hover{ color: var(--gold); }
.header-phone{
  text-decoration: none;
  font-weight: 700;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  white-space: nowrap;
}
.header-phone:hover{ background: var(--navy); color: #fff; }

.nav-toggle{
  display:none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span{
  display:block;
  height: 2px;
  width: 100%;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}

/* ============================================
   Hero
   ============================================ */
.hero{
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #f3f1ea;
  padding: 88px 0 76px;
  position: relative;
  overflow: hidden;
}
.hero::after{
  content:"";
  position:absolute;
  right:-120px;
  top:-120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(224,177,105,0.18);
}
.hero::before{
  content:"";
  position:absolute;
  right:-40px;
  top:-40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px solid rgba(224,177,105,0.28);
}
.hero-inner{ position: relative; max-width: 760px; }
.eyebrow{
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
  margin-bottom: 18px;
}
.hero h1{ color: #fff; margin-bottom: 20px; }
.hero-lead{ color: #d6d9e4; font-size: 1.08rem; max-width: 600px; }
.hero-cta{ display:flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 40px; }
.hero-facts{
  list-style:none;
  display:flex;
  flex-wrap: wrap;
  gap: 32px;
  margin:0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-facts li{ display:flex; flex-direction:column; gap: 2px; }
.hero-facts strong{ font-family: var(--font-display); font-size: 1.3rem; color: #fff; }
.hero-facts span{ font-size: 0.8rem; color: #9aa3ba; }

/* ============================================
   Article content
   ============================================ */
.content{
  max-width: 780px;
  padding-top: 64px;
  padding-bottom: 20px;
}
.content section{ margin-bottom: 52px; }
.content section:not(:first-child){ padding-top: 8px; border-top: 1px solid var(--line); }
.content a{
  color: var(--gold);
  font-weight: 600;
  text-decoration-thickness: 1.5px;
}

/* ============================================
   FAQ accordion
   ============================================ */
.faq-item{
  border-bottom: 1px solid var(--line);
}
.faq-question{
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 18px 32px 18px 0;
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  position: relative;
}
.faq-question::after{
  content: "+";
  position: absolute;
  right: 0;
  top: 16px;
  font-size: 1.3rem;
  color: var(--gold);
  transition: transform .2s ease;
}
.faq-question[aria-expanded="true"]::after{ transform: rotate(45deg); }
.faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}
.faq-answer p{ padding-bottom: 18px; margin: 0; }

/* ============================================
   Contact
   ============================================ */
.contact-section{
  background: var(--navy);
  color: #f3f1ea;
  padding: 72px 0;
  margin-top: 20px;
}
.contact-section h2{ color: #fff; }
.contact-section p{ color: #c3c8d6; max-width: 520px; }
.contact-details{
  list-style: none;
  margin: 28px 0 34px;
  padding: 0;
  display: grid;
  gap: 14px;
}
.contact-details li{
  display:flex;
  gap: 14px;
  align-items: baseline;
  font-size: 1rem;
}
.contact-details span{
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-soft);
  min-width: 74px;
}
.contact-details a{ color: #fff; text-decoration: none; font-weight: 600; }
.contact-details a:hover{ color: var(--gold-soft); }

/* ============================================
   Footer
   ============================================ */
.site-footer{
  background: var(--navy-deep);
  color: #8992a8;
  padding: 22px 0;
  font-size: 0.85rem;
  text-align: center;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 860px){
  .main-nav{
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--paper);
    flex-direction: column;
    gap: 0;
    padding: 8px 24px 20px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-140%);
    opacity: 0;
    transition: transform .25s ease, opacity .2s ease;
  }
  .main-nav.open{ transform: translateY(0); opacity: 1; }
  .main-nav a{ padding: 12px 0; border-bottom: 1px solid var(--line); }
  .header-phone{ display:none; }
  .nav-toggle{ display:flex; }

  .hero{ padding: 56px 0 48px; }
  .hero-cta{ flex-direction: column; align-items: stretch; }
  .hero-cta .btn{ width: 100%; }

  .content{ padding-top: 44px; }
}

@media (max-width: 520px){
  .hero-facts{ gap: 20px; }
}
