﻿:root {
  --bg: #f5f1e7;
  --section-alt: #eae3d3;
  --heading: #24311e;
  --text: #4e5748;
  --primary: #5f7f2f;
  --primary-hover: #4e6927;
  --border: #d9d3c4;
  --highlight: #b7c97a;
  --surface: #fffcf4;
  --surface-strong: #f0eadc;
  --footer-bg: #202a1a;
  --footer-text: #e6decd;
  --radius-lg: 2.4rem;
  --radius-md: 1.35rem;
  --shadow-soft: 0 16px 42px rgba(36, 49, 30, 0.12);
  --shadow-card: 0 10px 26px rgba(36, 49, 30, 0.11);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.62;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background:
    radial-gradient(circle at 12% 18%, rgba(183, 201, 122, 0.28), transparent 34%),
    radial-gradient(circle at 82% 6%, rgba(95, 127, 47, 0.12), transparent 28%),
    radial-gradient(circle at 86% 88%, rgba(183, 201, 122, 0.22), transparent 33%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image: linear-gradient(
    30deg,
    rgba(36, 49, 30, 0.04) 0%,
    rgba(36, 49, 30, 0.02) 38%,
    transparent 38%,
    transparent 62%,
    rgba(36, 49, 30, 0.03) 62%
  );
  opacity: 0.45;
}

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

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

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

h1,
h2,
h3 {
  margin: 0;
  color: var(--heading);
  line-height: 1.15;
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2rem, 4.4vw, 4.2rem);
}

h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.65rem);
}

h3 {
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
}

p {
  margin: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.container {
  width: min(1180px, calc(100% - 2.8rem));
  margin-inline: auto;
}

section {
  position: relative;
  padding: clamp(4rem, 8vw, 7.5rem) 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: clamp(1.6rem, 3.2vw, 2.7rem);
}

.section-heading p {
  margin-top: 0.85rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.76rem;
  color: var(--heading);
}

.eyebrow::before {
  content: "";
  width: 1.7rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--highlight), var(--primary));
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 2000;
  background: var(--heading);
  color: #fff;
  border-radius: 0.6rem;
  padding: 0.55rem 0.85rem;
}

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

.btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  padding: 0.95rem 1.45rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 220ms ease, background-color 220ms ease, color 220ms ease;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transition: left 420ms ease;
}

.btn:hover::after {
  left: 140%;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(145deg, var(--primary), var(--primary-hover));
  box-shadow: 0 10px 24px rgba(95, 127, 47, 0.34);
}

.btn--primary:hover {
  color: #fff;
  transform: translateY(-2px);
  background: linear-gradient(145deg, #6a8b34, var(--primary-hover));
}

.btn--secondary {
  color: var(--heading);
  border-color: var(--border);
  background: rgba(255, 252, 244, 0.9);
}

.btn--secondary:hover {
  transform: translateY(-2px);
  border-color: var(--primary);
  background: rgba(183, 201, 122, 0.2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(217, 211, 196, 0.92);
  background: rgba(245, 241, 231, 0.84);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 20px rgba(36, 49, 30, 0.12);
}

.site-header__inner {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-logo {
  flex-shrink: 0;
  display: inline-flex;
}

.site-logo img {
  width: clamp(132px, 15vw, 188px);
  height: auto;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.25rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: var(--heading);
  transition: background-color 180ms ease, color 180ms ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: #fff;
  background: var(--primary);
}

.hero {
  isolation: isolate;
  padding-top: clamp(5rem, 8vw, 8rem);
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100%;
  transform: translateX(-50%);
  z-index: -2;
  background:
    linear-gradient(160deg, rgba(234, 227, 211, 0.9), rgba(245, 241, 231, 0.6) 54%, rgba(183, 201, 122, 0.25)),
    radial-gradient(circle at 90% 10%, rgba(95, 127, 47, 0.21), transparent 36%);
}

.hero::after {
  display: none;
}

.hero .container {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(1.6rem, 4vw, 4rem);
}

.hero__lead {
  max-width: 62ch;
  margin-top: 1.2rem;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.hero__actions {
  margin-top: 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero__benefits {
  margin-top: 1.55rem;
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  gap: 1.1rem;
}

.hero__benefits li {
  position: relative;
  padding: 0.15rem 0 0.15rem 1.4rem;
  white-space: nowrap;
}

.hero__benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  transform: translateY(-50%);
  background: var(--primary);
}

.hero__visual {
  position: relative;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: auto -1rem -1rem auto;
  width: 82%;
  height: 36%;
  border-radius: 1.5rem;
  background: linear-gradient(155deg, rgba(183, 201, 122, 0.45), rgba(95, 127, 47, 0.23));
  z-index: -1;
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 10 / 9;
  object-fit: cover;
  border-radius: 1.4rem 3.4rem 1.4rem 1.4rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  animation: hero-float 7s ease-in-out infinite;
}

.intro {
  margin-top: 0;
  padding-top: clamp(4.2rem, 7vw, 6.2rem);
  background:
    linear-gradient(180deg, rgba(234, 227, 211, 0.68) 0%, rgba(234, 227, 211, 0.56) 45%, rgba(234, 227, 211, 0.72) 100%);
}

.intro__content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.1rem, 3.2vw, 2.2rem);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}

.service-card {
  display: grid;
  align-content: start;
  gap: 0.85rem;
  padding: 1.3rem;
  border: 1px solid var(--border);
  border-radius: 1rem 2.2rem 1rem 1rem;
  background: linear-gradient(160deg, rgba(255, 252, 244, 0.95), rgba(234, 227, 211, 0.7));
  box-shadow: var(--shadow-card);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card img {
  width: clamp(7.25rem, 10vw, 9rem);
  height: clamp(7.25rem, 10vw, 9rem);
  margin-inline: auto;
  border-radius: 0;
  object-fit: cover;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(95, 127, 47, 0.56);
  box-shadow: 0 16px 30px rgba(36, 49, 30, 0.16);
}

.service-area,
.locations {
  background: var(--section-alt);
}

.service-area__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  counter-reset: audience;
}

.service-area article {
  position: relative;
  padding: 1.25rem 1rem 1.2rem 1rem;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  background: rgba(255, 252, 244, 0.92);
  box-shadow: 0 8px 20px rgba(36, 49, 30, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-area article::before {
  counter-increment: audience;
  content: counter(audience, decimal-leading-zero);
  position: absolute;
  top: -0.72rem;
  right: 0.78rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--primary);
  border-radius: 999px;
  padding: 0.25rem 0.52rem;
}

.service-area article::after {
  content: "";
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 2.4rem;
  height: 0.25rem;
  border-radius: 999px;
  background: linear-gradient(var(--highlight), var(--primary));
}

.service-area article h3 {
  margin: 0.7rem 0 0.55rem 0;
}

.service-area article:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 26px rgba(36, 49, 30, 0.14);
  border-color: rgba(95, 127, 47, 0.45);
}

.process__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  counter-reset: step;
  position: relative;
}

.process__list::before {
  content: "";
  position: absolute;
  left: 1.2rem;
  right: 1.2rem;
  top: 2rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(95, 127, 47, 0.2), rgba(95, 127, 47, 0.72), rgba(95, 127, 47, 0.2));
  z-index: 0;
}

.process__list li {
  position: relative;
  z-index: 1;
  padding: 2.55rem 1rem 1.15rem 1rem;
  border: 1px solid var(--border);
  border-radius: 1.35rem;
  background: linear-gradient(165deg, rgba(255, 252, 244, 0.96), rgba(234, 227, 211, 0.7));
  box-shadow: 0 10px 24px rgba(36, 49, 30, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.process__list li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 0.85rem;
  left: 1rem;
  font-family: "Fraunces", Georgia, serif;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--primary);
  border-radius: 999px;
  padding: 0.3rem 0.58rem;
  box-shadow: 0 0 0 6px rgba(95, 127, 47, 0.13);
}

.process__list h3 {
  margin-bottom: 0.65rem;
}

.process__list li:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 16px 30px rgba(36, 49, 30, 0.16);
  border-color: rgba(95, 127, 47, 0.48);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.gallery {
  padding-bottom: clamp(2.2rem, 4.2vw, 4rem);
}

.faq {
  padding-top: clamp(2.2rem, 4.2vw, 4rem);
}

.gallery figure {
  margin: 0;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-card);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.gallery figure::before {
  position: absolute;
  top: 0.7rem;
  z-index: 2;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  background: rgba(36, 49, 30, 0.7);
}

.gallery figure:nth-child(odd)::before {
  content: "Pred";
  left: 0.7rem;
}

.gallery figure:nth-child(even)::before {
  content: "Po";
  left: auto;
  right: 0.7rem;
}

.gallery figure:nth-child(odd) {
  transform: translateY(-0.3rem);
}

.gallery figure img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 300ms ease;
}

.gallery figure:hover {
  transform: translateY(-0.45rem);
  box-shadow: 0 16px 28px rgba(36, 49, 30, 0.17);
}

.gallery figure:hover img {
  transform: scale(1.03);
}

.gallery figcaption {
  display: none;
}

.faq__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8rem;
}

.faq-item {
  padding: 1.05rem 1.15rem;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: rgba(255, 252, 244, 0.85);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.faq-item h3 {
  position: relative;
  padding-right: 2.2rem;
  font-size: 1.05rem;
  cursor: pointer;
}

.faq-item:hover {
  border-color: rgba(95, 127, 47, 0.44);
  box-shadow: 0 10px 22px rgba(36, 49, 30, 0.11);
  transform: translateY(-2px);
}

.js .faq-item h3::after {
  content: "+";
  position: absolute;
  top: 0;
  right: 0.1rem;
  color: var(--primary);
  font-size: 1.55rem;
  line-height: 1;
  transition: transform 200ms ease;
}

.faq-item p {
  margin-top: 0.7rem;
}

.js .faq-item p {
  opacity: 0;
  max-height: 0;
  margin-top: 0;
  overflow: hidden;
  transition: max-height 280ms ease, opacity 240ms ease, margin-top 240ms ease;
}

.js .faq-item.is-open p {
  opacity: 1;
  max-height: 18rem;
  margin-top: 0.7rem;
}

.js .faq-item.is-open h3::after {
  content: "-";
  transform: none;
}

.locations__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.locations__content ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
  margin-top: 0.25rem;
}

.locations__content li {
  position: relative;
  padding: 0.25rem 0.2rem 0.25rem 1.2rem;
  border: 0;
  background: transparent;
  color: var(--heading);
  font-weight: 700;
}

.locations__content li::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.44rem;
  height: 0.44rem;
  border-radius: 999px;
  background: var(--primary);
}

.cta {
  isolation: isolate;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(130deg, rgba(95, 127, 47, 0.9), rgba(78, 105, 39, 0.95)),
    radial-gradient(circle at 20% 12%, rgba(183, 201, 122, 0.4), transparent 40%);
}

.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: repeating-linear-gradient(
    -35deg,
    rgba(255, 255, 255, 0.07) 0 14px,
    transparent 14px 30px
  );
  opacity: 0.4;
}

.cta__inner {
  color: #fff;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  align-items: center;
}

.cta .eyebrow,
.cta h2,
.cta p {
  color: #fff;
}

.cta .eyebrow::before {
  background: #fff;
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.65rem;
}

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

.cta__actions .btn--primary:hover {
  color: var(--heading);
  background: #f6f4ee;
}

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

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

.contact__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.3rem, 3.6vw, 2.6rem);
}

.contact__content address {
  margin-top: 1.2rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-style: normal;
  display: grid;
  gap: 0.4rem;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-weight: 700;
}

.contact-link__icon {
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: #fff;
  background: linear-gradient(140deg, var(--primary), var(--primary-hover));
  box-shadow: 0 6px 14px rgba(95, 127, 47, 0.34);
}

.contact-form {
  display: grid;
  gap: 0.88rem;
  border: 1px solid var(--border);
  border-radius: 1.1rem;
  padding: clamp(1rem, 2.4vw, 1.4rem);
  background: rgba(255, 252, 244, 0.9);
  box-shadow: 0 8px 24px rgba(36, 49, 30, 0.1);
}

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

.form-row--hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row label {
  font-weight: 700;
  color: var(--heading);
}

input,
select,
textarea {
  width: 100%;
  border-radius: 0.8rem;
  border: 1px solid var(--border);
  background: #fffdf8;
  color: var(--heading);
  font: inherit;
  padding: 0.75rem 0.8rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  resize: vertical;
  min-height: 8rem;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(95, 127, 47, 0.18);
}

.form-row--checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.form-row--checkbox input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.25rem;
}

.form-status {
  min-height: 1.3rem;
  margin-top: 0.15rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-hover);
}

.form-status.is-success {
  color: var(--primary);
}

.form-status.is-error {
  color: #8b2f1f;
}

.legal-page {
  min-height: 100vh;
}

.legal-main {
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.legal-main .container {
  max-width: 880px;
}

.legal-header {
  margin-bottom: 1.4rem;
}

.legal-header .eyebrow {
  margin-bottom: 0.9rem;
}

.legal-card {
  border: 1px solid var(--border);
  background: rgba(255, 252, 244, 0.92);
  border-radius: 1.2rem;
  padding: clamp(1rem, 2.6vw, 1.6rem);
  box-shadow: 0 8px 20px rgba(36, 49, 30, 0.08);
}

.legal-card h2 {
  margin-top: 1.5rem;
  font-size: clamp(1.2rem, 2.1vw, 1.45rem);
}

.legal-card h2:first-of-type {
  margin-top: 0;
}

.legal-card ul {
  margin-top: 0.45rem;
  padding-left: 1.1rem;
}

.legal-card li + li {
  margin-top: 0.22rem;
}

.legal-meta {
  margin-top: 1rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1100;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(255, 252, 244, 0.98);
  box-shadow: 0 18px 30px rgba(36, 49, 30, 0.18);
  padding: 1rem;
}

.cookie-banner h2 {
  font-size: 1.12rem;
  margin-bottom: 0.45rem;
}

.cookie-banner p {
  font-size: 0.95rem;
}

.cookie-banner__actions {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.cookie-settings-btn {
  position: fixed;
  left: 1rem;
  bottom: 1rem;
  z-index: 1090;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 252, 244, 0.96);
  color: var(--heading);
  font-weight: 700;
  padding: 0.58rem 0.95rem;
  box-shadow: 0 10px 20px rgba(36, 49, 30, 0.14);
}

.cookie-settings-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 1085;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(217, 211, 196, 0.95);
  border-radius: 999px;
  background: rgba(255, 252, 244, 0.95);
  color: var(--heading);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(36, 49, 30, 0.18);
  cursor: pointer;
  opacity: 0;
  transform: translateY(0.5rem);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, border-color 180ms ease, color 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  background: rgba(36, 49, 30, 0.42);
  display: grid;
  place-items: center;
  padding: 1rem;
}

.cookie-modal__panel {
  width: min(680px, 100%);
  max-height: 92vh;
  overflow: auto;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
  box-shadow: 0 20px 36px rgba(36, 49, 30, 0.23);
  padding: 1rem;
}

.cookie-option {
  margin-top: 0.7rem;
  border: 1px solid var(--border);
  border-radius: 0.9rem;
  padding: 0.7rem;
  background: rgba(255, 252, 244, 0.9);
}

.cookie-option__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.cookie-option__title {
  font-weight: 700;
  color: var(--heading);
}

.cookie-switch {
  width: 2.45rem;
  height: 1.4rem;
  border-radius: 999px;
  background: #c9c4b6;
  border: 0;
  position: relative;
}

.cookie-switch::after {
  content: "";
  position: absolute;
  top: 0.15rem;
  left: 0.16rem;
  width: 1.1rem;
  height: 1.1rem;
  background: #fff;
  border-radius: 50%;
  transition: transform 160ms ease;
}

.cookie-switch[aria-pressed="true"] {
  background: var(--primary);
}

.cookie-switch[aria-pressed="true"]::after {
  transform: translateX(1rem);
}

.cookie-switch[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

.cookie-modal__actions {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.is-hidden {
  display: none !important;
}

body.cookie-modal-open {
  overflow: hidden;
}

.site-footer {
  padding: 3rem 0 1.25rem;
  background: var(--footer-bg);
  color: var(--footer-text);
}

.site-footer h2,
.site-footer a,
.site-footer strong {
  color: #f8f3e8;
}

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

.site-footer ul {
  list-style: none;
  display: grid;
  gap: 0.38rem;
}

.site-footer__grid {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: 1.2fr 0.8fr;
}

.site-footer__grid > div {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.footer-contact {
  gap: 0.58rem;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.52rem;
  font-size: 1.14rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.footer-contact a span[aria-hidden="true"] {
  width: 1.45rem;
  height: 1.45rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  color: var(--heading);
  background: #f8f3e8;
}

.footer-contact li:last-child {
  margin-top: 0.2rem;
  font-size: 0.98rem;
  color: rgba(248, 243, 232, 0.9);
}

.site-footer__bottom {
  margin-top: 1.8rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(234, 227, 211, 0.2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.site-footer__bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.reveal {
  --delay: 0ms;
}

.js .reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 620ms ease var(--delay), transform 620ms ease var(--delay);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 1100px) {
  .services__grid,
  .process__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero .container {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    order: -1;
  }

  .hero__benefits {
    gap: 0.9rem;
  }

  .locations__content ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header__inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.75rem 0;
  }

  .header-cta {
    display: none;
  }

  .service-area__grid,
  .cta__inner,
  .contact__grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .intro__content {
    grid-template-columns: 1fr;
  }

  .process__list::before {
    display: none;
  }

  .cta__actions {
    justify-content: flex-start;
  }
}

@media (min-width: 860px) {
  .cookie-banner {
    left: auto;
    width: min(620px, calc(100% - 2rem));
  }
}

@media (max-width: 660px) {
  .container {
    width: min(1180px, calc(100% - 1.4rem));
  }

  section {
    padding: 3.5rem 0;
  }

  .main-nav ul {
    row-gap: 0.2rem;
  }

  .hero::after {
    height: 4rem;
    bottom: -2.2rem;
  }

  .hero__actions .btn,
  .cta__actions .btn {
    width: 100%;
  }

  .services__grid,
  .process__list,
  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .hero__benefits {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }

  .locations__content ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

