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

:root {
  --ivory:       #F5F2EC;
  --ivory-dark:  #EDE8DF;
  --navy:        #1C2B3A;
  --navy-mid:    #2C3E52;
  --taupe:       #7A6E5F;
  --taupe-light: #A89E8E;
  --gold:        #C49A28;
  --gold-light:  #E8D48A;
  --gold-pale:   #FAF3DC;
  --white:       #FFFFFF;
  --border:      rgba(28,43,58,0.12);
  --border-gold: rgba(196,154,40,0.35);
  --opt1:        #1C2B3A;
  --opt2:        #2E4A2E;
  --opt3:        #4A3220;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  background: var(--ivory);
  color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  height: 72px;
  display: flex; align-items: center;
}

.nav-inner {
  max-width: 1200px; margin: 0 auto; width: 100%;
  padding: 0 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo img { height: 50px; width: auto; display: block; }

.nav-menu {
  display: flex; align-items: center; gap: 0;
  list-style: none;
}

.nav-menu li { position: relative; }

.nav-menu a {
  display: block;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 1.1rem;
  height: 72px;
  line-height: 72px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active { color: var(--gold); background: rgba(196,154,40,0.08); }

/* Dropdown */
.nav-menu .dropdown { position: relative; }

.nav-menu .dropdown-menu {
  display: none;
  position: absolute;
  top: 72px; left: 0;
  background: var(--navy);
  border-top: 2px solid var(--gold);
  border-bottom: 1px solid var(--border-gold);
  min-width: 240px;
  z-index: 300;
  list-style: none;
}

.nav-menu .dropdown:hover .dropdown-menu { display: block; }

.nav-menu .dropdown-menu a {
  height: auto; line-height: 1.4;
  padding: 0.75rem 1.25rem;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(196,154,40,0.12);
}

.nav-menu .dropdown-menu a:last-child { border-bottom: none; }

.nav-cta-wrap { display: flex; align-items: center; gap: 1.25rem; }

.nav-phone {
  color: var(--gold-light);
  font-size: 0.85rem; font-weight: 500;
  text-decoration: none; letter-spacing: 0.03em;
}

.nav-cta {
  background: var(--gold); color: var(--navy);
  border: none; padding: 9px 20px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-light); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); transition: 0.3s;
}

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  border-top: 2px solid var(--gold);
  padding: 3rem 2.5rem 2rem;
}

.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
}

.footer-brand img { height: 52px; margin-bottom: 1rem; }

.footer-brand p {
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
  line-height: 1.7; max-width: 260px;
}

.footer-col h4 {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  text-decoration: none; font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-col address {
  font-style: normal; font-size: 0.85rem;
  color: rgba(255,255,255,0.55); line-height: 1.8;
}

.footer-col address a { color: var(--gold); text-decoration: none; }

.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(196,154,40,0.2);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}

.footer-bottom p {
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
}

.footer-bottom a { color: var(--gold); text-decoration: none; }

.powered-by {
  font-size: 0.75rem; color: rgba(255,255,255,0.35);
}

/* ── SHARED COMPONENTS ── */
.section-inner { max-width: 1200px; margin: 0 auto; }
section { padding: 6rem 2.5rem; }

.section-eyebrow {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 700; color: var(--navy);
  margin-bottom: 1rem; letter-spacing: -0.02em; line-height: 1.15;
}

.section-title.light { color: var(--white); }

.section-sub {
  font-size: 1.05rem; color: var(--taupe);
  font-weight: 300; max-width: 600px; line-height: 1.8;
}

.section-rule {
  width: 48px; height: 2px;
  background: var(--gold); margin-bottom: 1rem;
}

/* Buttons */
.btn-gold {
  background: var(--gold); color: var(--navy);
  border: none; padding: 14px 30px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline-dark {
  background: transparent; color: var(--navy);
  border: 1.5px solid var(--border);
  padding: 14px 30px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }

.btn-outline-light {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 14px 30px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer; text-decoration: none;
  transition: border-color 0.2s;
  display: inline-block;
}
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }

/* Form */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 2.5rem;
}

.form-group { margin-bottom: 1.25rem; }

.form-label {
  display: block; font-size: 0.78rem; font-weight: 600;
  color: var(--taupe); margin-bottom: 0.45rem;
  text-transform: uppercase; letter-spacing: 0.08em;
}

.form-input, .form-select, .form-textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--border);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.95rem; color: var(--navy);
  background: var(--ivory); outline: none;
  transition: border-color 0.2s;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold); background: var(--white);
}

.form-textarea { resize: vertical; min-height: 90px; }

.form-submit {
  width: 100%; background: var(--gold); color: var(--navy);
  border: none; padding: 15px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  cursor: pointer; transition: background 0.2s; margin-top: 0.5rem;
}
.form-submit:hover { background: var(--gold-light); }

.form-privacy {
  font-size: 0.75rem; color: var(--taupe-light);
  text-align: center; margin-top: 0.75rem;
}

/* Trust bar */
.trust-bar {
  background: var(--navy);
  border-top: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  padding: 0;
}

.trust-bar-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr);
}

.trust-item {
  padding: 2.5rem 1.5rem; text-align: center;
  border-right: 1px solid rgba(196,154,40,0.2);
}
.trust-item:last-child { border-right: none; }

.trust-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 700;
  color: var(--gold); display: block;
  line-height: 1; margin-bottom: 0.4rem;
}

.trust-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.5; }

/* Page hero (interior pages) */
.page-hero {
  background: var(--navy);
  padding: 140px 2.5rem 5rem;
  position: relative; overflow: hidden;
}

.page-hero-texture {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(196,154,40,0.05) 79px, rgba(196,154,40,0.05) 80px),
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(196,154,40,0.04) 79px, rgba(196,154,40,0.04) 80px);
  pointer-events: none;
}

.page-hero-inner {
  max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 1;
  max-width: 780px;
}

.page-hero-eyebrow {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}

.page-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700; color: var(--white);
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.page-hero-title em { font-style: normal; color: var(--gold); }

.page-hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.7);
  font-weight: 300; line-height: 1.8; max-width: 600px;
}

/* Testimonial */
.testimonial {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 1.25rem 1.5rem; margin-top: 1.25rem;
}
.testimonial-text {
  font-size: 0.9rem; color: var(--taupe);
  line-height: 1.7; font-style: italic; margin-bottom: 0.65rem;
}
.testimonial-author { font-size: 0.8rem; font-weight: 600; color: var(--navy); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; border-bottom: 1px solid rgba(196,154,40,0.2); }
  .trust-item:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .nav-menu, .nav-phone { display: none; }
  .nav-hamburger { display: flex; }
  .nav-menu.open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--navy); padding: 2rem;
    overflow-y: auto; gap: 0;
  }
  .nav-menu.open a { height: auto; line-height: 1.4; padding: 1rem 0; font-size: 1rem; border-bottom: 1px solid rgba(196,154,40,0.15); }
  .nav-menu .dropdown-menu { display: block; position: static; border: none; background: transparent; }
  .nav-menu .dropdown-menu a { padding-left: 1.5rem; font-size: 0.9rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  section { padding: 4rem 1.5rem; }
  .page-hero { padding: 120px 1.5rem 3.5rem; }
}
