:root {
  --green: #1a4a38;
  --green-dark: #0d2b21;
  --green-mid: #2f6b52;
  --green-light: #3d8a68;
  --gold: #c4a35a;
  --gold-soft: #e8d7a8;
  --cream: #f6f1e6;
  --cream-dark: #ece4d4;
  --ink: #17201c;
  --muted: #5b675f;
  --line: #d9d0c0;
  --white: #fffcf7;
  --card: #fffdf9;
  --shadow: 0 18px 40px rgba(13, 43, 33, 0.12);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  min-height: 100vh;
}

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

a {
  color: var(--green-mid);
  text-decoration: none;
}

a:hover {
  color: var(--green);
}

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

.skip {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--gold);
  color: var(--green-dark);
  padding: 8px 12px;
  z-index: 1000;
}

.skip:focus {
  left: 8px;
}

/* Header */
.topbar {
  background: var(--green-dark);
  color: var(--gold-soft);
  font-size: 0.92rem;
}

.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  flex-wrap: wrap;
}

.topbar a {
  color: var(--gold-soft);
}

.topbar a:hover {
  color: #fff;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-dark);
}

.brand:hover {
  color: var(--green);
}

.mark {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.brand-tag {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

nav a {
  color: var(--ink);
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 999px;
}

nav a:hover,
nav a.active {
  background: var(--cream);
  color: var(--green);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  font-family: inherit;
}

.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
}

.btn-gold:hover {
  background: #d4b56c;
  color: var(--green-dark);
}

.btn-green {
  background: var(--green);
  color: #fff;
}

.btn-green:hover {
  background: var(--green-mid);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--green-dark);
  border: 1.5px solid var(--green);
}

.btn-outline:hover {
  background: var(--green);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--green-dark);
}

.btn-white:hover {
  background: var(--cream);
  color: var(--green-dark);
}

.header-cta {
  display: flex;
  gap: 8px;
  align-items: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 1.4rem;
  color: var(--green-dark);
  cursor: pointer;
}

/* Hero */
.hero {
  background:
    radial-gradient(circle at 80% 10%, rgba(196, 163, 90, 0.18), transparent 28%),
    linear-gradient(160deg, var(--green-dark) 0%, var(--green) 62%, #245844 100%);
  color: #fff;
  padding: 64px 0 72px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 12px;
}

.hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  line-height: 1.05;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero p.lead {
  font-size: 1.15rem;
  color: #e7efe9;
  max-width: 36rem;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--gold-soft);
  font-size: 0.95rem;
}

.portrait-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.portrait-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: 50% 18%;
  border-radius: 16px;
}

.portrait-caption {
  padding: 14px 8px 6px;
}

.portrait-caption strong {
  display: block;
  font-size: 1.05rem;
}

.portrait-caption span {
  color: var(--gold-soft);
  font-size: 0.92rem;
}

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

.section-kicker {
  color: var(--green-mid);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.76rem;
  margin-bottom: 8px;
}

h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.15;
  color: var(--green-dark);
  margin-bottom: 14px;
}

.intro {
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.08rem;
  margin-bottom: 32px;
}

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

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(13, 43, 33, 0.05);
}

.card h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  color: var(--green-dark);
  margin: 10px 0 8px;
}

.icon-pill {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--cream);
  color: var(--green);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.panel {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 28px;
}

.list {
  list-style: none;
}

.list li {
  padding: 10px 0 10px 26px;
  position: relative;
  border-bottom: 1px solid var(--cream-dark);
}

.list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 4px;
  top: 18px;
}

/* Quote band */
.quote-band {
  background: var(--green-dark);
  color: #fff;
  padding: 64px 0;
}

.quote-band h2 {
  color: #fff;
}

.quote-band .intro {
  color: #d5e4db;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.prog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.note {
  margin-top: 16px;
  color: var(--gold-soft);
  font-size: 0.95rem;
}

.code-chip {
  display: inline-block;
  background: rgba(196, 163, 90, 0.16);
  color: var(--gold);
  border: 1px solid rgba(196, 163, 90, 0.35);
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 0.92rem;
}

.code-chip-ink {
  background: #f3ead4;
  color: var(--green-dark);
  border-color: #e0d0a4;
}

/* Hours / contact bits */
.hours {
  display: grid;
  gap: 8px;
}

.hours div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--cream-dark);
  padding: 7px 0;
}

.map-frame {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 16px;
}

.photo-frame {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(13, 43, 33, 0.05);
}

.photo-frame img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: 45% 42%;
}

.photo-frame figcaption {
  padding: 12px 16px 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.photo-frame figcaption strong {
  display: block;
  color: var(--green-dark);
}

.photo-pair {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 18px;
  margin-top: 8px;
}

.photo-frame.teddy img {
  height: 380px;
  object-position: center 28%;
}

@media (max-width: 720px) {
  .photo-pair {
    grid-template-columns: 1fr;
  }
}

form {
  display: grid;
  gap: 12px;
}

label {
  font-weight: 700;
  font-size: 0.88rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  font: inherit;
  background: #fff;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.muted {
  color: var(--muted);
}

.page-hero {
  background: linear-gradient(160deg, var(--green-dark), var(--green));
  color: #fff;
  padding: 48px 0;
}

.page-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.page-hero p {
  color: #dce8e1;
  max-width: 40rem;
  margin-top: 8px;
}

.notice {
  background: #fff7e6;
  border: 1px solid #ead7a2;
  color: #5a4714;
  border-radius: 14px;
  padding: 14px 16px;
  margin: 20px 0;
}

footer {
  background: var(--green-dark);
  color: #d5e0da;
  padding: 40px 0 24px;
}

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

footer a {
  color: var(--gold-soft);
}

footer h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 10px;
}

.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
  font-size: 0.82rem;
  color: #9aada3;
}

.thanks {
  min-height: 50vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 20px;
}

@media (max-width: 880px) {
  .hero-grid,
  .cards,
  .split,
  .quote-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--line);
  }

  nav.open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta .btn-outline {
    display: none;
  }

  .portrait-card img {
    height: 340px;
  }

  .hero {
    padding: 40px 0 48px;
  }
}
