/* ── VARIABLES ── */
:root {
  --forest:     #1e3a2f;
  --forest2:    #152a22;
  --forest3:    #243d32;
  --bronze:     #b8965a;
  --bronze2:    #d4b07a;
  --champagne:  #e8d9b5;
  --linen:      #f8f5f0;
  --linen2:     #f0ebe3;
  --white:      #ffffff;
  --charcoal:   #2d2d2d;
  --slate:      #4a5568;
  --sage:       #8a9e7e;
  --sage2:      #a8b89e;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.1;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(21, 42, 34, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184,150,90,0.2);
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  font-style: italic;
  color: var(--champagne);
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.nav-brand span {
  font-style: normal;
  font-weight: 700;
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 8px 16px;
  border-radius: 1px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--bronze2);
  background: rgba(184,150,90,0.08);
}

.nav-links .nav-cta a {
  background: var(--bronze);
  color: var(--forest2);
  font-weight: 700;
  padding: 9px 22px;
}

.nav-links .nav-cta a:hover {
  background: var(--bronze2);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--bronze);
  transition: 0.3s;
}

/* ── PAGE WRAPPER ── */
.page-wrapper { padding-top: 72px; }

/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, var(--forest2) 0%, var(--forest) 55%, var(--forest3) 100%);
  position: relative;
  overflow: hidden;
  padding: 120px 48px 110px;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(184,150,90,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 90% 100%, rgba(138,158,126,0.08) 0%, transparent 60%);
}

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,150,90,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,150,90,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content { position: relative; max-width: 820px; margin: 0 auto; }

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--sage2);
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.7s 0.1s forwards;
}

.hero h1 {
  font-size: clamp(44px, 6vw, 76px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  opacity: 0;
  animation: fadeUp 0.7s 0.25s forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--champagne);
  font-weight: 300;
}

.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto 44px;
  font-family: 'Raleway', sans-serif;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s 0.55s forwards;
}

/* ── BUTTONS ── */
.btn-gold {
  background: linear-gradient(135deg, var(--bronze) 0%, #9a7a3e 100%);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: 1px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  display: inline-block;
  font-family: 'Raleway', sans-serif;
}

.btn-gold:hover { opacity: 0.88; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--bronze2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: 1px;
  border: 1px solid rgba(184,150,90,0.4);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
  font-family: 'Raleway', sans-serif;
}

.btn-outline:hover {
  border-color: var(--bronze);
  background: rgba(184,150,90,0.07);
}

/* ── SECTIONS ── */
.section { padding: 96px 48px; }
.section-light { background: var(--white); }
.section-cream { background: var(--linen); }
.section-cream2 { background: var(--linen2); }
.section-navy { background: var(--forest); }
.section-navy2 { background: var(--forest2); }

.section-inner { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 14px;
  display: block;
  font-family: 'Raleway', sans-serif;
}

.section-title {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 18px;
}

.section-navy .section-title,
.section-navy2 .section-title { color: var(--white); }

.section-body {
  font-size: 17px;
  color: var(--slate);
  font-weight: 300;
  max-width: 640px;
  line-height: 1.8;
}

.section-navy .section-body,
.section-navy2 .section-body { color: rgba(255,255,255,0.55); }

/* ── DIVIDER ── */
.gold-divider {
  display: flex; align-items: center; gap: 16px;
  margin: 28px 0;
}
.gold-divider .dl { flex:1; max-width:80px; height:1px; background: linear-gradient(90deg, transparent, var(--bronze)); }
.gold-divider .dr { flex:1; max-width:80px; height:1px; background: linear-gradient(90deg, var(--bronze), transparent); }
.gold-divider .dd { width:8px; height:8px; background: var(--bronze); transform: rotate(45deg); flex-shrink:0; }

/* ── CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.card {
  background: var(--white);
  border: 1px solid rgba(30,58,47,0.1);
  padding: 36px 32px;
  border-radius: 1px;
  transition: box-shadow 0.3s, transform 0.3s;
}

.card:hover {
  box-shadow: 0 12px 48px rgba(30,58,47,0.1);
  transform: translateY(-4px);
}

.section-navy .card, .section-navy2 .card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(184,150,90,0.2);
}

.card-icon { display: none; }

.card h3 {
  font-size: 22px;
  color: var(--forest);
  margin-bottom: 10px;
}

.section-navy .card h3,
.section-navy2 .card h3 { color: var(--champagne); }

.card p {
  font-size: 15px;
  color: var(--slate);
  font-weight: 300;
  line-height: 1.7;
}

.section-navy .card p,
.section-navy2 .card p { color: rgba(255,255,255,0.5); }

/* ── STEPS ── */
.steps-list { margin-top: 48px; display: flex; flex-direction: column; gap: 0; }

.step {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(30,58,47,0.08);
}

.step:last-child { border-bottom: none; }

.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--bronze2);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.section-navy .step { border-bottom-color: rgba(255,255,255,0.07); }
.section-navy .step-num { background: rgba(184,150,90,0.15); border: 1px solid rgba(184,150,90,0.3); }

.step-content h3 {
  font-size: 22px;
  color: var(--forest);
  margin-bottom: 6px;
}

.section-navy .step-content h3 { color: var(--champagne); }

.step-content p {
  font-size: 15px;
  color: var(--slate);
  font-weight: 300;
  line-height: 1.7;
}

.section-navy .step-content p { color: rgba(255,255,255,0.5); }

/* ── STATS BAR ── */
.stats-bar {
  background: var(--forest2);
  padding: 56px 48px;
  border-top: 3px solid var(--bronze);
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat {
  text-align: center;
  padding: 20px;
  position: relative;
}

.stat + .stat::before {
  content: '';
  position: absolute; left: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: rgba(184,150,90,0.2);
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--bronze2);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-family: 'Raleway', sans-serif;
}

/* ── CONTACT FORM ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.form-full { grid-column: 1 / -1; }

.form-group { display: flex; flex-direction: column; gap: 8px; }

.form-group label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--bronze2);
  font-family: 'Raleway', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,150,90,0.25);
  border-radius: 1px;
  padding: 14px 18px;
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  color: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--bronze);
}

.form-group select option { background: var(--forest2); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── CONTACT INFO ── */
.contact-info { display: flex; flex-direction: column; gap: 28px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.contact-icon-box {
  width: 48px; height: 48px;
  background: rgba(184,150,90,0.12);
  border: 1px solid rgba(184,150,90,0.4);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--bronze2);
}

.contact-detail-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 4px;
  font-family: 'Raleway', sans-serif;
}

.contact-detail-value {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  line-height: 1.5;
}

/* ── TWO COL ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ── ABOUT VISUAL ── */
.about-visual {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest3) 100%);
  border: 1px solid rgba(184,150,90,0.2);
  padding: 52px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(184,150,90,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184,150,90,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

.about-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  position: relative;
}

.about-role {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 24px;
  position: relative;
  font-family: 'Raleway', sans-serif;
}

.about-bio {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  font-weight: 300;
  line-height: 1.75;
  position: relative;
  font-family: 'Raleway', sans-serif;
}

/* ── AREAS ── */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.area-tag {
  background: var(--forest);
  border: 1px solid var(--forest);
  color: #f8f5f0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 2px;
  font-family: 'Raleway', sans-serif;
}

/* ── FOOTER ── */
footer {
  background: var(--forest2);
  padding: 56px 48px 32px;
  border-top: 3px solid var(--bronze);
}

.footer-inner { max-width: 1100px; margin: 0 auto; }

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 32px;
}

.footer-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  color: var(--champagne);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
  line-height: 1.65;
  max-width: 280px;
}

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 18px;
  font-family: 'Raleway', sans-serif;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--bronze2); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy { font-size: 12px; color: rgba(255,255,255,0.2); font-family: 'Raleway', sans-serif; }
.footer-reg { font-size: 12px; color: rgba(255,255,255,0.15); font-style: italic; font-family: 'Raleway', sans-serif; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(160deg, var(--forest2) 0%, var(--forest) 100%);
  padding: 88px 48px 76px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(184,150,90,0.1) 0%, transparent 70%);
}

.page-hero-content { position: relative; max-width: 700px; margin: 0 auto; }

.page-hero h1 {
  font-size: clamp(38px, 5vw, 60px);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero h1 em { color: var(--champagne); font-style: italic; font-weight: 300; }

.page-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.55);
  font-weight: 300;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 48px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--forest2); padding: 20px; gap: 4px; border-bottom: 1px solid rgba(184,150,90,0.15); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .section { padding: 64px 24px; }
  .hero { padding: 88px 24px 76px; }
  .page-hero { padding: 64px 24px 52px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat + .stat::before { display: none; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner, footer { padding-left: 24px; padding-right: 24px; }
  .stats-bar { padding: 44px 24px; }
}
