:root {
  --color-ink: #10241f;
  --color-ink-soft: #2a433c;
  --color-moss: #1f6b57;
  --color-moss-deep: #0f3d32;
  --color-leaf: #3d9b7a;
  --color-mist: #e8f0ec;
  --color-paper: #f3f7f4;
  --color-fog: #d5e4dc;
  --color-sun: #e8b84a;
  --color-sun-ink: #3a2e0a;
  --color-line: rgba(16, 36, 31, 0.12);
  --color-white: #ffffff;
  --font-display: "Bricolage Grotesque", Georgia, serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4.5rem;
  --space-9: 6.5rem;
  --radius: 0.35rem;
  --shadow-soft: 0 18px 40px rgba(15, 61, 50, 0.12);
  --max: 70rem;
  --header-h: 4.25rem;
  --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.0625rem;
  line-height: 1.65;
  color: var(--color-ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(61, 155, 122, 0.18), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(232, 184, 74, 0.12), transparent 50%),
    linear-gradient(180deg, var(--color-mist) 0%, var(--color-paper) 38%, var(--color-paper) 100%);
  min-height: 100vh;
}

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

a {
  color: var(--color-moss);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

h1,
h2,
h3,
.site-header__brand,
.site-footer__brand {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin: 0 0 var(--space-4);
}

h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin: 0 0 var(--space-4);
}

h3 {
  font-size: 1.35rem;
  margin: 0 0 var(--space-3);
}

p {
  margin: 0 0 var(--space-4);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.section {
  padding: var(--space-8) 0;
}

.section--tight {
  padding: var(--space-7) 0;
}

.section__eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-moss);
  margin-bottom: var(--space-3);
}

.section__lead {
  max-width: 38rem;
  color: var(--color-ink-soft);
  font-size: 1.125rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(243, 247, 244, 0.86);
  border-bottom: 1px solid var(--color-line);
}

.site-header__inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.site-header__brand {
  font-size: 1.35rem;
  color: var(--color-moss-deep);
  text-decoration: none;
  animation: brand-in 0.8s var(--ease) both;
}

.site-header__toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 0.55rem;
  cursor: pointer;
  flex-direction: column;
  gap: 0.28rem;
}

.site-header__toggle-bar {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--color-ink);
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--space-5);
}

.site-nav__link {
  color: var(--color-ink-soft);
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 2px;
  background: var(--color-leaf);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.site-nav__link:hover::after,
.site-nav__link.is-active::after {
  transform: scaleX(1);
}

.site-nav__link.is-active {
  color: var(--color-moss-deep);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-weight: 700;
  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(--color-moss-deep);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-moss);
  color: var(--color-white);
}

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

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

.btn--veve {
  background: var(--color-sun);
  color: var(--color-sun-ink);
  box-shadow: 0 8px 24px rgba(232, 184, 74, 0.35);
}

.btn--veve:hover {
  background: #f0c963;
  color: var(--color-sun-ink);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

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

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

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: hero-zoom 12s var(--ease) both;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 61, 50, 0.35) 0%, rgba(15, 61, 50, 0.72) 55%, rgba(16, 36, 31, 0.9) 100%),
    linear-gradient(90deg, rgba(16, 36, 31, 0.55), transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: var(--space-8) 0 var(--space-7);
  max-width: 40rem;
  margin-left: max(1rem, calc((100% - var(--max)) / 2));
  animation: rise-in 0.9s var(--ease) 0.15s both;
}

.hero__brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 800;
  margin: 0 0 var(--space-4);
  letter-spacing: -0.03em;
}

.hero__title {
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 600;
  margin: 0 0 var(--space-4);
  color: rgba(255, 255, 255, 0.94);
}

.hero__text {
  color: rgba(243, 247, 244, 0.88);
  font-size: 1.1rem;
  margin-bottom: var(--space-5);
}

.hero .btn--primary {
  background: var(--color-leaf);
}

.hero .btn--ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--color-white);
}

.hero .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
  color: var(--color-white);
}

/* Page hero (inner) */
.page-hero {
  position: relative;
  min-height: 42vh;
  display: grid;
  align-items: end;
  color: var(--color-white);
  overflow: hidden;
}

.page-hero__media {
  position: absolute;
  inset: 0;
}

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

.page-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 61, 50, 0.25), rgba(16, 36, 31, 0.88));
}

.page-hero__content {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: var(--space-8) 0 var(--space-6);
  animation: rise-in 0.7s var(--ease) both;
}

.page-hero__content p {
  max-width: 36rem;
  color: rgba(243, 247, 244, 0.9);
}

/* Lists / grids */
.service-grid,
.post-grid,
.faq-list,
.testimonial-list,
.outcome-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-grid,
.post-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-6);
}

.service-item,
.post-item {
  display: grid;
  gap: var(--space-4);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--color-line);
  animation: rise-in 0.7s var(--ease) both;
}

.service-item:nth-child(2),
.post-item:nth-child(2) {
  animation-delay: 0.08s;
}

.service-item:nth-child(3),
.post-item:nth-child(3) {
  animation-delay: 0.16s;
}

.service-item:nth-child(4),
.post-item:nth-child(4) {
  animation-delay: 0.24s;
}

.service-item__image,
.post-item__image,
.article-cover,
.prose-figure {
  overflow: hidden;
  border-radius: var(--radius);
}

.service-item__image img,
.post-item__image img,
.article-cover img,
.prose-figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.service-item:hover img,
.post-item:hover img {
  transform: scale(1.04);
}

.service-item__title a,
.post-item__title a {
  color: var(--color-ink);
  text-decoration: none;
}

.service-item__title a:hover,
.post-item__title a:hover {
  color: var(--color-moss);
}

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

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-7);
  align-items: center;
}

.split--reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.panel {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--color-line);
  border-radius: calc(var(--radius) + 0.15rem);
  padding: var(--space-6);
}

.panel--accent {
  background:
    linear-gradient(145deg, rgba(31, 107, 87, 0.08), rgba(232, 184, 74, 0.1)),
    rgba(255, 255, 255, 0.65);
}

.outcome-list li,
.faq-list details,
.testimonial-list li {
  margin-bottom: var(--space-4);
}

.outcome-list li {
  padding-left: 1.2rem;
  position: relative;
}

.outcome-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--color-leaf);
}

.faq-list details {
  border-top: 1px solid var(--color-line);
  padding: var(--space-4) 0;
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--color-line);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.15rem;
}

.testimonial-list blockquote {
  margin: 0;
  font-size: 1.2rem;
  font-family: var(--font-display);
  line-height: 1.4;
}

.testimonial-list cite {
  display: block;
  margin-top: var(--space-3);
  font-style: normal;
  color: var(--color-ink-soft);
  font-size: 0.95rem;
}

.pricing-note {
  font-size: 0.95rem;
  color: var(--color-ink-soft);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-line);
}

.price-row strong {
  font-family: var(--font-display);
}

.contact-block dt {
  font-weight: 700;
  margin-top: var(--space-4);
}

.contact-block dd {
  margin: var(--space-1) 0 0;
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  margin-top: var(--space-7);
}

.article-meta {
  margin-bottom: var(--space-5);
  color: var(--color-ink-soft);
}

.legal-list {
  padding-left: 1.2rem;
}

.legal-list li {
  margin-bottom: var(--space-2);
}

/* Footer */
.site-footer {
  margin-top: var(--space-8);
  background: var(--color-moss-deep);
  color: rgba(243, 247, 244, 0.9);
  padding: var(--space-8) 0 var(--space-6);
}

.site-footer a {
  color: #d7efe5;
}

.site-footer a:hover {
  color: var(--color-white);
}

.site-footer__inner {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 0.7fr 1.5fr;
  gap: var(--space-7);
}

.site-footer__brand {
  font-size: 1.6rem;
  color: var(--color-white);
  margin: 0 0 var(--space-3);
}

.site-footer__tagline,
.site-footer__contact {
  color: rgba(243, 247, 244, 0.82);
}

.site-footer__heading {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-sun);
  margin: 0 0 var(--space-3);
}

.site-footer__nav-block .site-footer__heading:nth-of-type(2) {
  margin-top: var(--space-5);
}

.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer__links li {
  margin-bottom: var(--space-2);
}

.site-footer__links a {
  text-decoration: none;
  font-weight: 600;
}

.site-footer__disclaimer {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(232, 240, 236, 0.78);
  margin-bottom: var(--space-4);
}

.site-footer__copy {
  font-size: 0.85rem;
  color: rgba(232, 240, 236, 0.65);
  margin: var(--space-5) 0 0;
}

.site-footer__cta-wrap {
  margin-top: var(--space-5);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: var(--space-4);
  pointer-events: none;
}

.cookie-banner__inner {
  pointer-events: auto;
  width: min(100%, 48rem);
  margin: 0 auto;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: calc(var(--radius) + 0.2rem);
  box-shadow: var(--shadow-soft);
  padding: var(--space-5);
  display: grid;
  gap: var(--space-4);
  animation: rise-in 0.45s var(--ease) both;
}

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

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: flex-end;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes brand-in {
  from {
    opacity: 0;
    transform: translateY(-0.4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-zoom {
  from {
    transform: scale(1.08);
  }
  to {
    transform: scale(1.02);
  }
}

@media (max-width: 900px) {
  .site-header__toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: rgba(243, 247, 244, 0.98);
    border-bottom: 1px solid var(--color-line);
    padding: var(--space-4) 1rem var(--space-5);
    display: none;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav__list {
    flex-direction: column;
    gap: var(--space-4);
  }

  .service-grid,
  .post-grid,
  .split,
  .split--reverse,
  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: calc(100svh - var(--header-h));
  }

  .hero__content {
    margin-left: auto;
    margin-right: auto;
  }
}

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