:root {
  --ink: #1a2420;
  --ink-soft: #3d4a44;
  --muted: #66756e;
  --paper: #eef3f0;
  --paper-deep: #dfe8e3;
  --surface: #f7faf8;
  --accent: #b85c38;
  --accent-deep: #8f4428;
  --grove: #1e4d45;
  --grove-mid: #2f6b60;
  --line: rgba(26, 36, 32, 0.12);
  --shadow: 0 18px 40px rgba(30, 77, 69, 0.08);
  --radius: 4px;
  --font-display: "Syne", sans-serif;
  --font-body: "Figtree", sans-serif;
  --header-h: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(47, 107, 96, 0.14), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(184, 92, 56, 0.1), transparent 50%),
    linear-gradient(180deg, var(--paper) 0%, var(--surface) 40%, var(--paper-deep) 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

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

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

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

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

p {
  margin: 0 0 1rem;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(238, 243, 240, 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);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 0.4rem;
  background:
    linear-gradient(135deg, var(--grove) 0%, var(--grove-mid) 60%),
    var(--grove);
  box-shadow: inset 0 0 0 2px rgba(201, 120, 72, 0.55);
  position: relative;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 28% 35% 22% 35%;
  background: var(--paper);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  cursor: pointer;
}

.nav-toggle-bar {
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  box-shadow: 0 4px 0 var(--ink), 0 -4px 0 var(--ink);
}

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

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

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

.nav-cta {
  background: var(--grove);
  color: #fff !important;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
}

.nav-cta:hover {
  background: var(--accent-deep);
  color: #fff !important;
}

.site-main {
  overflow-x: clip;
}

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

.hero {
  position: relative;
  min-height: min(92vh, 52rem);
  display: grid;
  align-items: end;
  color: #f4f7f5;
}

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

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 36, 32, 0.25) 0%, rgba(26, 36, 32, 0.72) 70%, rgba(26, 36, 32, 0.88) 100%),
    linear-gradient(90deg, rgba(30, 77, 69, 0.45) 0%, transparent 55%);
}

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

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0 0 0.75rem;
  line-height: 0.95;
  animation: rise 0.9s var(--ease) both;
}

.hero-line {
  max-width: 34rem;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: rgba(244, 247, 245, 0.9);
  margin-bottom: 1.75rem;
  animation: rise 0.9s var(--ease) 0.12s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  animation: rise 0.9s var(--ease) 0.22s both;
}

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

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

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

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

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

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

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

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.btn-ghost:hover {
  border-color: var(--grove);
  color: var(--grove);
}

.section {
  padding: 4.5rem 0;
}

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

.section-head {
  max-width: 40rem;
  margin-bottom: 2.25rem;
}

.section-head h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.45rem);
  margin: 0 0 0.75rem;
}

.section-head p {
  color: var(--ink-soft);
  margin: 0;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.65rem;
}

.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-frame {
  position: relative;
  overflow: hidden;
  border-radius: 0.35rem;
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.8s var(--ease);
}

.media-frame:hover img {
  transform: scale(1.06);
}

.offer-list {
  display: grid;
  gap: 1.25rem;
}

.offer-row {
  display: grid;
  grid-template-columns: 7.5rem 1fr auto;
  gap: 1.25rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
}

.offer-row img {
  width: 7.5rem;
  height: 5.25rem;
  object-fit: cover;
  border-radius: var(--radius);
}

.offer-row h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.offer-row p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.offer-row .offer-link {
  font-weight: 600;
  color: var(--grove);
  white-space: nowrap;
}

.offer-row:hover h3 {
  color: var(--accent);
}

.quote-rail {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.5rem;
  background: var(--grove);
  color: #eef3f0;
  padding: 2rem;
  border-radius: 0.35rem;
}

.quote-rail blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.7rem);
  line-height: 1.35;
  font-weight: 600;
}

.quote-rail cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-family: var(--font-body);
  font-size: 0.92rem;
  opacity: 0.8;
}

.quote-aside {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding-left: 1.5rem;
  color: rgba(238, 243, 240, 0.88);
}

.page-hero {
  padding: 4rem 0 2.5rem;
  border-bottom: 1px solid var(--line);
}

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

.page-hero .lede {
  max-width: 38rem;
  color: var(--ink-soft);
  font-size: 1.125rem;
  margin: 0;
}

.page-hero-media {
  margin-top: 2rem;
  border-radius: 0.35rem;
  overflow: hidden;
  max-height: 22rem;
}

.page-hero-media img {
  width: 100%;
  height: 22rem;
  object-fit: cover;
}

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

.service-tile {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.service-tile img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.service-tile h3 {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.service-tile p {
  color: var(--muted);
  margin: 0;
  flex: 1;
}

.service-tile .more {
  margin-top: 0.85rem;
  font-weight: 600;
  color: var(--grove);
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  margin: 2.25rem 0 0.75rem;
  font-size: 1.55rem;
}

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

.prose ul,
.prose ol {
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.prose li {
  margin-bottom: 0.4rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2.5rem;
  align-items: start;
}

.side-panel {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 1.35rem;
  border-radius: var(--radius);
}

.side-panel h2 {
  margin: 0 0 0.75rem;
  font-size: 1.15rem;
}

.side-panel dl {
  margin: 0 0 1.25rem;
}

.side-panel dt {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-top: 0.75rem;
}

.side-panel dd {
  margin: 0.2rem 0 0;
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

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

.rate-table th {
  font-family: var(--font-display);
  font-size: 0.95rem;
}

.rate-note {
  color: var(--muted);
  font-size: 0.95rem;
}

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

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

.review p {
  font-size: 1.05rem;
  color: var(--ink-soft);
}

.review footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 1.75rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.story img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: var(--radius);
}

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

.blog-item {
  display: grid;
  grid-template-columns: 14rem 1fr;
  gap: 1.5rem;
  text-decoration: none;
  color: inherit;
  align-items: start;
}

.blog-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
}

.blog-item h2 {
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
}

.blog-item p {
  margin: 0;
  color: var(--muted);
}

.blog-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.article-hero img {
  width: 100%;
  max-height: 26rem;
  object-fit: cover;
  border-radius: var(--radius);
  margin: 1.5rem 0 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
}

.contact-card {
  background: var(--grove);
  color: #eef3f0;
  padding: 1.75rem;
  border-radius: 0.35rem;
}

.contact-card a {
  color: #fff;
}

.contact-card h2 {
  color: #fff;
  margin-top: 0;
  font-size: 1.35rem;
}

.form {
  display: grid;
  gap: 1rem;
}

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

.form-row label {
  font-weight: 600;
  font-size: 0.92rem;
}

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

.form-row textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(47, 107, 96, 0.35);
  border-color: var(--grove-mid);
}

.field-error {
  color: #9b2c2c;
  font-size: 0.88rem;
  min-height: 1.1em;
}

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

.form-status.is-success {
  display: block;
  background: rgba(47, 107, 96, 0.12);
  color: var(--grove);
}

.form-status.is-error {
  display: block;
  background: rgba(155, 44, 44, 0.1);
  color: #9b2c2c;
}

.script-error {
  margin: 1rem 1.25rem;
  padding: 0.75rem 1rem;
  background: rgba(155, 44, 44, 0.1);
  color: #9b2c2c;
  border-radius: var(--radius);
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 1.25rem;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--accent);
  font-size: 1.25rem;
  line-height: 1;
  padding-top: 0.2rem;
}

.step h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

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

.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;
  text-align: left;
  vertical-align: top;
}

.cookie-table th {
  background: var(--paper-deep);
}

.legal-page .prose {
  max-width: 48rem;
}

.site-footer {
  margin-top: 4rem;
  background: var(--ink);
  color: rgba(238, 243, 240, 0.85);
  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;
  font-weight: 700;
  color: #fff;
  margin: 0 0 0.5rem;
}

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

.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin: 2rem 0;
}

.footer-heading {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(238, 243, 240, 0.55);
  margin: 0 0 0.85rem;
}

.footer-address {
  white-space: pre-line;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

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

.site-footer a:hover {
  color: #e8a07a;
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.25rem;
  font-size: 0.88rem;
  color: rgba(238, 243, 240, 0.55);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 36rem;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 1.15rem 1.25rem;
  border-radius: 0.35rem;
  animation: rise 0.45s var(--ease) both;
}

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

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

.not-found {
  min-height: 60vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 3rem 1.25rem;
}

.not-found h1 {
  font-size: clamp(3rem, 10vw, 6rem);
  margin: 0;
  color: var(--grove);
}

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

.team-member img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 0.85rem;
}

.team-member h3 {
  margin: 0 0 0.25rem;
}

.team-member .role {
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.65rem;
}

.checklist li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--ink-soft);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--accent);
  border-radius: 1px;
  transform: rotate(45deg);
}

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

@media (max-width: 900px) {
  .split,
  .split-reverse,
  .quote-rail,
  .detail-layout,
  .story,
  .contact-grid,
  .card-grid,
  .blog-item,
  .footer-cols,
  .team-grid,
  .offer-row {
    grid-template-columns: 1fr;
  }

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

  .quote-aside {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-left: 0;
    padding-top: 1.25rem;
  }

  .offer-row {
    gap: 0.75rem;
  }

  .offer-row img {
    width: 100%;
    height: 10rem;
  }

  .nav-toggle {
    display: inline-flex;
  }

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

  .site-nav.is-open {
    display: block;
    animation: rise 0.3s var(--ease) both;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-cta {
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
