:root {
  --forest: #6b3e4c;
  --forest-deep: #3f2a32;
  --sage: #8a6b73;
  --sage-soft: #ead6da;
  --gold: #c4a36a;
  --gold-light: #ddc08a;
  --cream: #f8efe6;
  --cream-dark: #f0e0d4;
  --ivory: #fdf8f3;
  --ink: #3a2c30;
  --muted: #7a646c;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(63, 42, 50, 0.10);
  --radius: 18px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

a { color: inherit; text-decoration: none; }

.wrap {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow {
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
}

h1, h2, h3, .serif {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(42px, 6vw, 72px); line-height: 1.05; }
h2 { font-size: clamp(32px, 4vw, 48px); line-height: 1.15; }
h3 { font-size: 28px; line-height: 1.25; }

p + p { margin-top: 1em; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 248, 243, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(27, 58, 47, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  color: var(--forest);
  letter-spacing: 0.12em;
}

.brand img {
  width: 58px;
  height: 40px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
}

.brand span {
  font-size: 9px;
  letter-spacing: 0.12em;
  display: block;
  color: var(--gold);
  margin-top: -2px;
  max-width: 220px;
  line-height: 1.25;
  white-space: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
}

.nav-links a:hover { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  min-height: 48px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}

.btn-gold {
  background: var(--gold);
  color: var(--forest-deep);
}

.btn-gold:hover { background: var(--gold-light); }

.btn-outline {
  border-color: var(--forest);
  color: var(--forest);
  background: transparent;
}

.btn-outline:hover { background: var(--forest); color: var(--cream); }

.btn-light {
  background: var(--cream);
  color: var(--forest);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px;
  height: 44px;
  font-size: 26px;
  color: var(--forest);
  -webkit-tap-highlight-color: transparent;
}

.mobile-cta {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  place-items: center;
  color: var(--cream);
  overflow: hidden;
}

.hero img.bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) saturate(0.9);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px;
  max-width: 820px;
}

.hero h1 { color: var(--ivory); margin: 16px 0 18px; }
.hero p { font-size: 20px; color: var(--cream); max-width: 560px; margin: 0 auto 32px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Sections */
section { padding: 92px 0; }

.section-head {
  max-width: 640px;
  margin-bottom: 48px;
}

.section-head p { color: var(--muted); margin-top: 14px; }

.grid-2 {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--white);
  border: 1px solid rgba(27, 58, 47, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.card h3 { margin: 12px 0 10px; color: var(--forest); }
.card p { color: var(--muted); font-size: 16px; }

.icon-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
}

.photo-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-frame img { width: 100%; height: 100%; object-fit: cover; }

.sage-band {
  background: var(--forest);
  color: var(--cream);
}

.sage-band h2, .sage-band p { color: var(--cream); }
.sage-band .muted { color: var(--sage-soft); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { padding: 8px 0; }
.step .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  color: var(--gold-light);
}
.step h3 { font-size: 22px; margin: 8px 0; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.team-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(27, 58, 47, 0.08);
}

.team-card img {
  width: 100%;
  height: auto;
  max-height: 620px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
}
.team-card .bio { padding: 26px; }
.team-card .role { color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; font-size: 12px; }

.quote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.35;
  color: var(--forest);
}

.form {
  display: grid;
  gap: 14px;
  background: var(--white);
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(27, 58, 47, 0.08);
}

input, select, textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #d8d0c2;
  background: var(--ivory);
  font: inherit;
  font-size: 16px;
  color: var(--ink);
}

textarea { min-height: 140px; resize: vertical; }

label { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }

.page-hero {
  padding: 80px 0 40px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
}

footer {
  background: var(--forest-deep);
  color: var(--sage-soft);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}

footer h3 { color: var(--cream); font-size: 22px; margin-bottom: 12px; }
footer a:hover { color: var(--gold-light); }
.legal { border-top: 1px solid rgba(197, 212, 196, 0.15); padding-top: 18px; font-size: 13px; }

@media (max-width: 430px) {
  h1 { font-size: 34px; }
  .hero-content { padding: 48px 4px 88px; }
  .card { padding: 20px; }
}

@media (max-width: 880px) {
  .wrap { width: min(1120px, calc(100% - 28px)); }
  .nav { min-height: 64px; gap: 12px; }
  .brand { font-size: 22px; gap: 8px; }
  .brand img { width: 38px; height: 38px; }
  .brand span { font-size: 9px; letter-spacing: 0.16em; }
  .nav-cta { display: none; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--ivory);
    padding: 12px 22px 120px;
    z-index: 30;
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid rgba(27, 58, 47, 0.08);
    font-size: 16px;
  }
  .menu-toggle { display: grid; place-items: center; }
  .grid-2, .grid-3, .steps, .team-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    min-height: 72svh;
  }
  .hero-content { padding: 56px 8px 72px; }
  .hero p { font-size: 17px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  section { padding: 56px 0; }
  .section-head { margin-bottom: 28px; }
  h1 { font-size: clamp(34px, 9vw, 52px); }
  h2 { font-size: clamp(28px, 7vw, 40px); }
  h3 { font-size: 24px; }
  .page-hero { padding: 40px 0 20px; }
  .form { padding: 22px; }
  .team-card img { max-height: 520px; }
  .mobile-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 35;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(251, 248, 243, 0.94);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(27, 58, 47, 0.08);
  }
  .mobile-cta .btn { width: 100%; }
  footer { padding: 48px 0 96px; }
}

@media (min-width: 881px) {
  .mobile-cta { display: none !important; }
}
