:root {
  --ink: #1c2a28;
  --ink-soft: #3d4f4b;
  --muted: #5d6e6a;
  --paper: #f6f1e8;
  --paper-2: #efe7d8;
  --white: #fffcf7;
  --teal: #1f6b62;
  --teal-dark: #154d47;
  --teal-soft: #dceae6;
  --gold: #c4a46a;
  --gold-deep: #9a7a3e;
  --line: rgba(28, 42, 40, 0.12);
  --shadow: 0 18px 50px rgba(21, 77, 71, 0.12);
  --radius: 22px;
  --max: 1120px;
  --sans: "Source Sans 3", "Segoe UI", sans-serif;
  --serif: "Fraunces", Georgia, serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1.05rem;
}

img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal-dark); }

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--teal);
  color: white;
  padding: .5rem 1rem;
}
.skip:focus { left: 1rem; z-index: 100; }

/* Header */
.topbar {
  background: var(--teal-dark);
  color: #e8f3f0;
  font-size: .92rem;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .45rem 0;
  flex-wrap: wrap;
}
.topbar a { color: #e8f3f0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 252, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--ink);
}
.mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #e8d7b0, var(--teal));
  display: grid;
  place-items: center;
  color: white;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: .04em;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-text strong { font-family: var(--serif); font-size: 1.12rem; font-weight: 600; }
.brand-text span { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }

nav ul {
  list-style: none;
  display: flex;
  gap: .2rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}
nav a {
  display: block;
  padding: .45rem .7rem;
  color: var(--ink-soft);
  border-radius: 999px;
  font-size: .95rem;
}
nav a:hover, nav a[aria-current="page"] {
  background: var(--teal-soft);
  color: var(--teal-dark);
}

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: .4rem .65rem;
  font: inherit;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  background: var(--teal);
  color: white !important;
  border: 0;
  border-radius: 999px;
  padding: .75rem 1.2rem;
  font-weight: 600;
  letter-spacing: .01em;
  box-shadow: 0 8px 18px rgba(31, 107, 98, 0.22);
}
.btn:hover { background: var(--teal-dark); }
.btn-gold {
  background: var(--gold-deep);
  box-shadow: 0 8px 18px rgba(154, 122, 62, 0.22);
}
.btn-gold:hover { background: #7e632f; }
.btn-outline {
  background: transparent;
  color: var(--teal-dark) !important;
  border: 1.5px solid var(--teal);
  box-shadow: none;
}
.btn-outline:hover { background: var(--teal-soft); }

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(21, 77, 71, 0.88), rgba(28, 42, 40, 0.55)),
    radial-gradient(circle at 80% 20%, #c4a46a 0, transparent 28%),
    linear-gradient(160deg, #1f6b62, #0f2f2c);
  color: white;
  padding: 5.2rem 0 4.4rem;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.12;
  margin: 0 0 .8rem;
  max-width: 14ch;
}
.hero p.lede {
  font-size: 1.18rem;
  max-width: 38rem;
  color: #e8f0ee;
}
.hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.6rem; }
.hero-card {
  margin-top: 2.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.stat {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 1rem 1.1rem;
}
.stat b { display: block; font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.stat span { font-size: .92rem; color: #d7e6e2; }

/* Sections */
section { padding: 4.2rem 0; }
.section-kicker {
  color: var(--gold-deep);
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .78rem;
  font-weight: 700;
  margin: 0 0 .4rem;
}
h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.2;
  margin: 0 0 1rem;
}
h3 {
  font-family: var(--serif);
  font-weight: 550;
  font-size: 1.35rem;
  margin: 0 0 .5rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
}
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.soft-box {
  background: var(--teal-soft);
  border-radius: var(--radius);
  padding: 1.6rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
}
.card .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--teal-soft);
  display: grid;
  place-items: center;
  margin-bottom: .8rem;
  color: var(--teal-dark);
  font-weight: 700;
}

.steps { counter-reset: step; display: grid; gap: 1rem; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  background: var(--white);
  border-radius: 18px;
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
}
.step::before {
  counter-increment: step;
  content: counter(step);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
blockquote {
  margin: 0;
  background: var(--white);
  border-left: 4px solid var(--gold);
  border-radius: 0 16px 16px 0;
  padding: 1.1rem 1.2rem;
  font-size: 1rem;
}
blockquote footer { margin-top: .7rem; color: var(--muted); font-size: .9rem; }

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
.video {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}
.video iframe, .video .frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  background: #123;
}
.video .meta { padding: 1rem 1.1rem 1.2rem; }
.note {
  background: #fff7e8;
  border: 1px solid #ecd7a3;
  border-radius: 14px;
  padding: 1rem 1.1rem;
  color: #5a4718;
}

form {
  display: grid;
  gap: .85rem;
}
label { font-weight: 600; font-size: .95rem; }
input, textarea, select {
  width: 100%;
  font: inherit;
  padding: .75rem .85rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}
textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .85rem; }

.map-frame {
  width: 100%;
  min-height: 280px;
  border: 0;
  border-radius: var(--radius);
}

.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: .4rem 0; border-bottom: 1px solid var(--line); }
.hours td:last-child { text-align: right; color: var(--muted); }

footer {
  background: #122422;
  color: #d6e4e0;
  padding: 2.8rem 0 1.4rem;
  margin-top: 2rem;
}
footer a { color: #e9d7a8; }
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}
.legal {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: .86rem;
  color: #9fb3ae;
}

.page-hero {
  padding: 3.2rem 0 1.2rem;
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  margin: .2rem 0 .6rem;
}

.bio-photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(21,77,71,.08), rgba(21,77,71,.35)),
    repeating-linear-gradient(135deg, #dceae6 0 12px, #d3e3de 12px 24px);
  display: grid;
  place-items: end start;
  padding: 1.2rem;
  color: white;
  font-weight: 600;
}
.placeholder-chip {
  background: rgba(18,36,34,.7);
  padding: .35rem .7rem;
  border-radius: 999px;
  font-size: .82rem;
}

@media (max-width: 860px) {
  .menu-toggle { display: inline-flex; }
  nav { display: none; width: 100%; }
  nav.open { display: block; }
  nav ul { flex-direction: column; padding: .4rem 0 1rem; }
  .hero-card, .cards, .quote-grid, .video-grid, .two-col, .foot-grid, .form-row {
    grid-template-columns: 1fr;
  }
  .hero { padding: 3.4rem 0 3rem; }
}
