:root {
  --cream: #f8f3ea;
  --sage-soft: #e5eddf;
  --green: #274a3a;
  --green-dark: #19352a;
  --blue-green: #24445b;
  --gold: #b9874f;
  --ink: #24302b;
  --muted: #5c6861;
  --white: #fffdf8;
  --line: rgba(36, 48, 43, 0.16);
  --shadow: 0 14px 30px rgba(36, 48, 43, 0.10);
  --radius: 18px;
  --max: 1100px;
  --font: Atkinson Hyperlegible, Lexend, Verdana, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
}

a { color: var(--green); text-underline-offset: 0.2em; }

.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--green-dark);
  color: var(--white);
  padding: 0.7rem 1rem;
  border-radius: 0 0 10px 10px;
  z-index: 999;
}
.skip-link:focus { top: 0; }

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

.site-header {
  background: rgba(248, 243, 234, 0.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}
.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 0.82rem;
}
.brand-name {
  display: block;
  font-weight: 800;
  font-size: 1.08rem;
  line-height: 1.1;
}
.brand-tag {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}
.nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.nav a {
  text-decoration: none;
  font-size: 0.92rem;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
}
.nav a:hover,
.nav a:focus { background: var(--sage-soft); }
.nav-button {
  background: var(--green);
  color: var(--white) !important;
}

.hero {
  background: linear-gradient(180deg, #e9efe2 0%, var(--cream) 100%);
  padding-bottom: 3rem;
}
.hero-image-wrap {
  width: 100%;
  height: clamp(240px, 42vw, 500px);
  overflow: hidden;
  background: var(--sage-soft);
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 58%;
  display: block;
}

.hero-image-label {
  position: absolute;
  left: 6%;
  bottom: 14%;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(248, 243, 234, 0.78);
  color: var(--green-dark);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 18px rgba(36, 48, 43, 0.16);
  backdrop-filter: blur(2px);
}

.hero-image-wrap {
  position: relative;
}
.hero-panel {
  margin-top: -3.5rem;
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: 1.2rem;
  align-items: stretch;
  position: relative;
}
.hero-copy,
.origin-card,
.card,
.values-card,
.note-box,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-copy,
.origin-card { padding: clamp(1.25rem, 3vw, 2rem); }

.eyebrow {
  margin: 0 0 0.55rem;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-weight: 800;
  font-size: 0.76rem;
}
h1, h2, h3 {
  color: var(--green-dark);
  line-height: 1.18;
  margin: 0 0 0.85rem;
}
h1 {
  font-size: clamp(2rem, 4.8vw, 3.6rem);
  letter-spacing: -0.035em;
}
h2 {
  font-size: clamp(1.55rem, 3vw, 2.25rem);
  letter-spacing: -0.025em;
}
h3 { font-size: 1.12rem; }
.lead {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: var(--green-dark);
  font-weight: 650;
}
.quote {
  margin: 0.4rem 0 0.9rem;
  font-size: clamp(1.65rem, 4vw, 2.4rem);
  line-height: 1.05;
  font-weight: 900;
  color: var(--blue-green);
}
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.2rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  border: 2px solid var(--green);
}
.button.primary { background: var(--green); color: var(--white); }
.button.secondary { color: var(--green); background: transparent; }
.button.large { border-radius: 12px; }

.intro, .section { padding: clamp(2.4rem, 6vw, 4.6rem) 0; }
.soft { background: rgba(207, 221, 201, 0.38); }
.section-heading {
  max-width: 760px;
  margin-bottom: 1.35rem;
}
.cards {
  display: grid;
  gap: 1rem;
}
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.card,
.values-card,
.note-box { padding: 1.15rem; }
.price {
  display: inline-block;
  background: var(--sage-soft);
  color: var(--green-dark);
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  font-weight: 900;
  margin: 0 0 0.75rem;
  font-size: 0.95rem;
}
.small-note {
  color: var(--muted);
  font-size: 0.95rem;
}
.note-box {
  margin-top: 1rem;
  box-shadow: none;
  background: rgba(255, 253, 248, 0.78);
}
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.listen-panel {
  display: grid;
  gap: 0.55rem;
}
.listen-panel div {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  gap: 0.8rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.65rem;
  box-shadow: 0 8px 16px rgba(36, 48, 43, 0.07);
}
.listen-panel strong {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 1rem;
}
.image-band {
  height: clamp(150px, 26vw, 280px);
  overflow: hidden;
  border-block: 1px solid var(--line);
}
.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
}
.cta-banner,
.contact-card {
  margin-top: 1rem;
  padding: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cta-banner {
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius);
}
.cta-banner h3,
.cta-banner p { color: var(--white); }
.cta-banner .button.primary {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
  flex: 0 0 auto;
}
.values-card ul,
.boundaries ul { padding-left: 1.2rem; }
.values-card li,
.boundaries li { margin-block: 0.35rem; }
.boundaries {
  background: var(--green-dark);
  color: var(--white);
}
.boundaries h2,
.boundaries p,
.boundaries li { color: var(--white); }
.contact-section {
  background: linear-gradient(135deg, rgba(184, 135, 79, 0.16), transparent), var(--cream);
}
.site-footer {
  padding: 2rem 0;
  background: var(--ink);
  color: var(--cream);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.1fr;
  gap: 1.5rem;
}
.footer-brand,
.footer-heading {
  font-weight: 900;
  margin: 0 0 0.5rem;
}
.site-footer a {
  display: block;
  color: var(--cream);
  margin: 0.2rem 0;
}
.small-print {
  font-size: 0.88rem;
  color: rgba(248, 243, 234, 0.75);
}
:focus-visible {
  outline: 4px solid var(--gold);
  outline-offset: 4px;
}
@media (max-width: 880px) {
  body { font-size: 16px; }
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 0.8rem 0;
  }
  .nav { justify-content: flex-start; }
  .hero-panel,
  .split,
  .cards.three,
  .cards.two,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-panel { margin-top: -2rem; }
  .cta-banner,
  .contact-card {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 540px) {
  .hero-image-wrap { height: 250px; }
  .hero-image-label {
    left: 5%;
    bottom: 10%;
    font-size: 1rem;
    padding: 0.3rem 0.6rem;
  }
  .nav a { padding: 0.4rem 0.55rem; }
  .button { width: 100%; }
  .brand-mark {
    width: 44px;
    height: 44px;
  }
  .listen-panel div { border-radius: 14px; }
}
