:root {
  --grove: #1f4d3a;
  --grove-deep: #143528;
  --grove-soft: #d7e4dc;
  --copper: #c4783a;
  --copper-deep: #9a5a28;
  --ink: #1c2420;
  --ink-soft: #3d4a43;
  --paper: #e9ebe6;
  --paper-lift: #f4f5f1;
  --line: rgba(28, 36, 32, 0.12);
  --shadow: 0 18px 40px rgba(20, 53, 40, 0.12);
  --radius: 4px;
  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
  --max: 1120px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(31, 77, 58, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(196, 120, 58, 0.08), transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, #dde2db 100%);
  min-height: 100vh;
}

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

a {
  color: var(--grove);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--copper-deep);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 650;
  color: var(--grove-deep);
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--grove);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(233, 235, 230, 0.88);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--grove-deep);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.logo-mark {
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  background:
    linear-gradient(145deg, var(--grove) 55%, var(--copper) 55%);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

.logo-text {
  max-width: 12rem;
  line-height: 1.2;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 550;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--grove);
}

.nav-cta {
  background: var(--grove);
  color: #fff !important;
  padding: 0.55rem 0.95rem;
  border-radius: var(--radius);
  transition: transform 0.25s var(--ease), background 0.25s var(--ease);
}

.nav-cta:hover {
  background: var(--grove-deep);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--line);
  background: var(--paper-lift);
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-toggle-bar {
  top: 50%;
  margin-top: -1px;
}

.nav-toggle-bar::before {
  top: -6px;
}

.nav-toggle-bar::after {
  top: 6px;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper-lift);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1.25rem 1.25rem;
    display: none;
  }

  .site-nav.is-open {
    display: block;
    animation: dropIn 0.35s var(--ease);
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
}

@keyframes dropIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drift {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}

.reveal {
  animation: rise 0.8s var(--ease) both;
}

.reveal-delay {
  animation-delay: 0.15s;
}

.reveal-delay-2 {
  animation-delay: 0.3s;
}

/* Layout */
main {
  overflow-x: clip;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 4.5rem 0;
}

.section-tight {
  padding: 3rem 0;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--copper-deep);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 42rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 650;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

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

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

.btn-primary:hover {
  background: var(--copper-deep);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  border-color: var(--grove);
  color: var(--grove);
}

.btn-secondary:hover {
  background: var(--grove);
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost:hover {
  background: #fff;
  color: var(--grove-deep);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Hero — full-bleed brand composition */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: drift 12s var(--ease) both;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(20, 53, 40, 0.88) 0%, rgba(20, 53, 40, 0.55) 48%, rgba(20, 53, 40, 0.28) 100%),
    linear-gradient(0deg, rgba(20, 53, 40, 0.65) 0%, transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  padding: 4rem 1.25rem 4.5rem;
  width: 100%;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 0 0 1.25rem;
  max-width: 12ch;
  color: #fff;
  text-wrap: balance;
}

.hero-line {
  width: 4rem;
  height: 3px;
  background: var(--copper);
  margin-bottom: 1.25rem;
  transform-origin: left;
  animation: rise 0.7s 0.2s var(--ease) both;
}

.hero-support {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/* Page hero (inner pages) */
.page-hero {
  padding: 3.5rem 0 2rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(31, 77, 58, 0.06), transparent);
}

.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin: 0 0 0.85rem;
  max-width: 18ch;
}

.page-hero .lead {
  margin-bottom: 0;
}

/* Offer grid */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 860px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }
}

.offer-item {
  display: grid;
  gap: 0.85rem;
}

.offer-item figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4 / 3;
  background: var(--grove-soft);
}

.offer-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.offer-item:hover img {
  transform: scale(1.04);
}

.offer-item h3 {
  margin: 0;
  font-size: 1.35rem;
}

.offer-item p {
  margin: 0;
  color: var(--ink-soft);
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.split-reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split-reverse .split-copy {
  order: 2;
}

@media (max-width: 860px) {
  .split,
  .split-reverse {
    grid-template-columns: 1fr;
  }

  .split-reverse .split-copy {
    order: 0;
  }
}

.split figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 5 / 4;
  box-shadow: var(--shadow);
}

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

/* Quote / evidence */
.quote-band {
  background: var(--grove-deep);
  color: rgba(255, 255, 255, 0.92);
  padding: 3.5rem 0;
}

.quote-band blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.35;
  max-width: 40rem;
  letter-spacing: -0.02em;
}

.quote-band cite {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Pricing list */
.rate-list {
  display: grid;
  gap: 1rem;
}

.rate-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.rate-row h3 {
  margin: 0 0 0.35rem;
  font-size: 1.25rem;
}

.rate-row p {
  margin: 0;
  color: var(--ink-soft);
  max-width: 40rem;
}

.rate-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--grove);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .rate-row {
    grid-template-columns: 1fr;
  }
}

/* Reviews */
.review-stack {
  display: grid;
  gap: 1.5rem;
}

.review {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
}

.review h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.review .meta {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-bottom: 0.75rem;
}

.story {
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--paper-lift);
  border-left: 4px solid var(--copper);
}

.story h3 {
  margin-top: 0;
}

/* Blog */
.blog-list {
  display: grid;
  gap: 2rem;
}

.blog-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}

.blog-card:hover h2 {
  color: var(--copper-deep);
}

.blog-card figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
}

.blog-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card h2 {
  margin: 0 0 0.5rem;
  font-size: 1.4rem;
}

.blog-card .meta {
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}

@media (max-width: 700px) {
  .blog-card {
    grid-template-columns: 1fr;
  }
}

.article-body {
  max-width: 42rem;
}

.article-body h2 {
  margin-top: 2rem;
  font-size: 1.5rem;
}

.article-hero {
  margin: 0 0 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 21 / 9;
}

.article-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Schedule */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper-lift);
}

.schedule-table th,
.schedule-table td {
  text-align: left;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.schedule-table th {
  font-family: var(--font-display);
  font-size: 0.95rem;
  background: var(--grove);
  color: #fff;
}

.schedule-table tr:hover td {
  background: rgba(31, 77, 58, 0.04);
}

@media (max-width: 700px) {
  .schedule-table,
  .schedule-table thead,
  .schedule-table tbody,
  .schedule-table th,
  .schedule-table td,
  .schedule-table tr {
    display: block;
  }

  .schedule-table thead {
    display: none;
  }

  .schedule-table tr {
    padding: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .schedule-table td {
    border: 0;
    padding: 0.25rem 0;
  }

  .schedule-table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 700;
    color: var(--grove);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
}

/* Forms */
.form-grid {
  display: grid;
  gap: 1rem;
  max-width: 36rem;
}

.form-row {
  display: grid;
  gap: 0.4rem;
}

.form-row label {
  font-weight: 650;
  font-size: 0.95rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  font: inherit;
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-lift);
  color: var(--ink);
  width: 100%;
}

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

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid var(--grove);
  outline-offset: 1px;
}

.field-error {
  color: #8b2e2e;
  font-size: 0.88rem;
  min-height: 1.2em;
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  display: none;
}

.form-status.is-success {
  display: block;
  background: var(--grove-soft);
  color: var(--grove-deep);
}

.form-status.is-error {
  display: block;
  background: #f3d9d9;
  color: #6e1f1f;
}

.contact-aside {
  display: grid;
  gap: 1rem;
}

.contact-block {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-block h2 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
}

@media (max-width: 800px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* Legal */
.legal {
  max-width: 46rem;
}

.legal h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  margin: 1.25rem 0;
}

.cookie-table th,
.cookie-table td {
  border: 1px solid var(--line);
  padding: 0.7rem 0.8rem;
  text-align: left;
  vertical-align: top;
  background: var(--paper-lift);
}

.cookie-table th {
  background: var(--grove-soft);
}

/* 404 */
.error-page {
  min-height: 60vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 4rem 1.25rem;
}

.error-page h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  margin: 0;
}

/* Footer */
.site-footer {
  background: var(--grove-deep);
  color: rgba(255, 255, 255, 0.85);
  margin-top: 3rem;
  padding: 3.5rem 0 2rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: #fff;
  margin: 0 0 0.5rem;
}

.footer-tag {
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2.5rem;
}

.footer-heading {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--copper);
  margin: 0 0 0.85rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-copy {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 860px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-cols {
    grid-template-columns: 1fr;
  }
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 420px;
  margin-left: auto;
  background: var(--paper-lift);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.25rem;
  border-radius: var(--radius);
  display: none;
}

.cookie-banner.is-visible {
  display: block;
  animation: rise 0.45s var(--ease);
}

.cookie-banner p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.inline-error {
  background: #f3d9d9;
  color: #6e1f1f;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  margin: 1rem 0;
}

.feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.feature-list li {
  padding-left: 1.4rem;
  position: relative;
}

.feature-list li::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 1px;
  background: var(--copper);
  position: absolute;
  left: 0;
  top: 0.55rem;
}

.prose-narrow {
  max-width: 40rem;
}

.stat-note {
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 1rem;
  margin-top: 1.5rem;
}

.cta-band {
  background:
    linear-gradient(120deg, var(--grove) 0%, #2a5f48 55%, #3a6b3f 100%);
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
}

.cta-band h2 {
  color: #fff;
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.cta-band p {
  margin: 0 auto 1.5rem;
  max-width: 32rem;
  color: rgba(255, 255, 255, 0.88);
}
