/* The Cleaner Doonan: premium commercial cleaning, Doonan & Noosa Hinterland */

:root {
  /* Hybrid UI: light surfaces everywhere for readability; dark only on hero / CTA / footer / accents */
  color-scheme: light;
  --color-forest: #10241c;
  --color-forest-soft: #1b3328;
  --color-cream: #f3efe4;
  --color-stone: #d8cfbd;
  --color-sage: #9aaa8f;
  --color-sage-dark: #5f735f;
  --color-charcoal: #1f211f;
  --color-muted: #4a433b;
  --color-white: #ffffff;
  --color-section-muted: #f7f5ef;

  --color-bg: var(--color-cream);
  --color-bg-white: var(--color-white);
  --color-text: var(--color-charcoal);
  --color-footer: #0d1d16;
  --color-footer-label: var(--color-sage);

  --font-heading: "Playfair Display", Georgia, "Times New Roman", serif;
  --font: "Inter", system-ui, -apple-system, sans-serif;

  --radius: 6px;
  --radius-pill: 999px;
  --shadow-soft: 0 8px 32px rgba(16, 36, 28, 0.09);
  --shadow-card: 0 4px 22px rgba(16, 36, 28, 0.07), 0 1px 3px rgba(16, 36, 28, 0.06);
  --shadow-lift: 0 8px 28px rgba(16, 36, 28, 0.1), 0 16px 48px rgba(16, 36, 28, 0.08);
  --border-card: 1px solid rgba(16, 36, 28, 0.12);
  --color-star: #b8892a;
  --header-h: 72px;
  --topbar-h: 36px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
}

h1, h2, h3 {
  text-wrap: balance;
}

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

a {
  color: var(--color-sage-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

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

a:focus-visible {
  outline: 2px solid var(--color-sage-dark);
  outline-offset: 3px;
  border-radius: 4px;
}

.nav-desktop__list a:focus-visible,
.mobile-menu__list a:focus-visible {
  outline-offset: 4px;
}

.site-footer a:focus-visible {
  outline-color: var(--color-sage);
}

.topbar__link:focus-visible {
  outline-color: var(--color-cream);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-forest);
  color: #fff;
  font-weight: 600;
}

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

.skip-link:focus-visible {
  outline: 2px solid var(--color-cream);
  outline-offset: 3px;
}

.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;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Topbar */
.topbar {
  background: var(--color-forest);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8125rem;
}

.topbar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  justify-content: center;
  align-items: center;
  min-height: var(--topbar-h);
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  text-align: center;
}

@media (min-width: 900px) {
  .topbar__inner {
    justify-content: space-between;
    text-align: left;
  }
}

.topbar__link {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.topbar__link:hover {
  text-decoration: underline;
  color: #fff;
}

.topbar__item--hide-sm {
  display: none;
}

@media (min-width: 640px) {
  .topbar__item--hide-sm {
    display: inline;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-stone);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
}

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

.brand:hover {
  color: var(--color-forest);
}

.brand__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.brand__icon-img {
  width: 32px;
  height: 32px;
  display: block;
}

.icon-brand {
  width: 32px;
  height: 32px;
  stroke-width: 1.8;
  color: var(--color-sage-dark);
  display: block;
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.brand__tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: block;
  }
}

.nav-desktop__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-desktop__list a {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-charcoal);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-desktop__list a:hover {
  color: var(--color-sage-dark);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 8px;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: rgba(16, 36, 28, 0.06);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--color-sage-dark);
  outline-offset: 2px;
}

@media (min-width: 1024px) {
  .menu-toggle {
    display: none;
  }
}

.menu-toggle__bar {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--color-forest);
  margin: 0 auto;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--color-bg);
  border-top: 1px solid var(--color-stone);
  box-shadow: var(--shadow-soft);
  padding: 1rem 0;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0 1.25rem;
}

.mobile-menu__list a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 600;
  color: var(--color-forest);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(16, 36, 28, 0.06);
}

.mobile-menu__list li:last-child a {
  border-bottom: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.65rem 1.25rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 3px;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.btn:focus-visible {
  outline: 2px solid var(--color-sage-dark);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--color-forest);
  color: var(--color-cream);
  text-decoration: none;
  border-color: var(--color-forest);
}

.btn--primary:hover {
  background: var(--color-forest-soft);
  border-color: var(--color-forest-soft);
  color: var(--color-cream);
  box-shadow: 0 10px 26px rgba(16, 36, 28, 0.2);
  transform: translateY(-2px);
}

.btn--secondary {
  background: var(--color-sage-dark);
  color: var(--color-cream);
  text-decoration: none;
}

.btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(16, 36, 28, 0.18);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(243, 239, 228, 0.55);
  text-decoration: none;
}

.btn--ghost:hover {
  background: rgba(243, 239, 228, 0.08);
  color: #fff;
  border-color: rgba(243, 239, 228, 0.9);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.btn--cream {
  background: var(--color-cream);
  color: var(--color-forest);
  border-color: var(--color-cream);
}

.btn--cream:hover {
  background: var(--color-stone);
  border-color: var(--color-stone);
  color: var(--color-forest);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-cream);
  border-color: rgba(243, 239, 228, 0.35);
}

.btn--outline:hover {
  background: rgba(243, 239, 228, 0.08);
  border-color: rgba(243, 239, 228, 0.8);
  color: var(--color-cream);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover,
  .btn:focus-visible {
    transform: none;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 720px);
  display: flex;
  align-items: center;
  padding: 3rem 0 4rem;
  overflow: hidden;
}

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

.hero__video,
.hero__bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 767px) {
  .hero__video,
  .hero__bg {
    object-position: 80% center;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 21, 15, 0.32) 0%, transparent 48%),
    linear-gradient(
      100deg,
      rgba(8, 21, 15, 0.985) 0%,
      rgba(8, 21, 15, 0.93) 42%,
      rgba(8, 21, 15, 0.72) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: min(56rem, 100%);
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.96);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: rgba(243, 239, 228, 0.55);
}

.hero__title {
  margin: 0 0 1.35rem;
  font-family: var(--font-heading);
  line-height: 1.08;
}

.hero__title-line1 {
  display: block;
  font-size: clamp(2.15rem, 5.5vw, 3.85rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  max-width: 18ch;
}

.hero__title-line2 {
  display: block;
  font-size: clamp(1.2rem, 3vw, 1.95rem);
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.97);
  margin-top: 0.55rem;
  max-width: 28ch;
}

.hero__tagline {
  margin: 2rem 0 2.1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero__tagline::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: rgba(243, 239, 228, 0.55);
}

.hero__authority {
  margin: -0.5rem 0 1.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  max-width: 56ch;
}

.hero__experience {
  margin: -1.25rem 0 0.9rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  max-width: 56ch;
}

.hero__statement {
  margin: 0 0 1.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  max-width: 56ch;
}

.hero__services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
}

.hero__services li {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border: 1px solid rgba(154, 170, 143, 0.45);
  border-radius: 2px;
  background: rgba(154, 170, 143, 0.1);
}

.hero__trust {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 0.4rem 2rem;
  list-style: none;
  margin: 0 0 2.25rem;
  padding: 0;
  width: fit-content;
}

@media (min-width: 640px) {
  .hero__trust {
    grid-template-columns: repeat(3, auto);
  }
}

.hero__trust li {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.93);
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.hero__trust li::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-sage);
  flex-shrink: 0;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Sections below hero: fade-up on viewport entry */
.scroll-reveal {
  opacity: 0;
  transform: translateY(1.75rem);
  transition:
    opacity 0.68s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.68s cubic-bezier(0.22, 1, 0.36, 1);
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Sections */
.section {
  padding: 5.25rem 0;
}

@media (max-width: 520px) {
  .section {
    padding: 4.6rem 0;
  }
}

.section--why {
  background: linear-gradient(180deg, var(--color-section-muted) 0%, var(--color-cream) 55%, var(--color-cream) 100%);
}

.section--why .section__intro {
  margin-bottom: 2.75rem;
  color: var(--color-muted);
  max-width: 38rem;
}

.section--services {
  background: var(--color-bg-white);
  border-top: 1px solid rgba(16, 36, 28, 0.06);
  border-bottom: 1px solid rgba(16, 36, 28, 0.06);
}

.section--services .section__intro {
  margin-bottom: 2.85rem;
  color: var(--color-muted);
  max-width: 40rem;
}

.section--areas {
  background: var(--color-bg-white);
}

.section--areas .section__intro {
  margin-bottom: 1.75rem;
}

.section--contact {
  background: var(--color-bg-white);
  border-top: 1px solid rgba(16, 36, 28, 0.07);
}

.section--cards {
  background: var(--color-bg-white);
}

.section__title {
  text-align: center;
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-forest);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.section__title--left {
  text-align: left;
}

.section__intro {
  text-align: center;
  max-width: 38rem;
  margin: 0 auto 2.65rem;
  color: var(--color-muted);
  font-size: 1.0625rem;
  line-height: 1.65;
}

@media (max-width: 520px) {
  body {
    font-size: 1.0625rem;
    line-height: 1.66;
  }

  .section__intro {
    font-size: 1.035rem;
    padding-inline: 0.15rem;
  }
}

/* Cards grid */
.cards-grid {
  display: grid;
  gap: 0;
  border: 1px solid var(--color-stone);
  border-radius: var(--radius);
  overflow: hidden;
}

/* Grid entry (class .is-revealed is applied by JS) */
@keyframes cards-card-in {
  from {
    opacity: 0;
    transform: translateY(1.1rem) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cards-grid--reveal.is-revealed .card {
  animation: cards-card-in 0.68s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.cards-grid--reveal.is-revealed .card:nth-child(1) {
  animation-delay: 0.04s;
}

.cards-grid--reveal.is-revealed .card:nth-child(2) {
  animation-delay: 0.12s;
}

.cards-grid--reveal.is-revealed .card:nth-child(3) {
  animation-delay: 0.2s;
}

.cards-grid--reveal.is-revealed .card:nth-child(4) {
  animation-delay: 0.28s;
}

@media (prefers-reduced-motion: reduce) {
  .cards-grid--reveal.is-revealed .card {
    animation: none;
  }
}

@media (min-width: 768px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  position: relative;
  background: var(--color-bg-white);
  border-radius: 0;
  padding: 2rem 1.75rem;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
  border-right: 1px solid var(--color-stone);
  border-bottom: 1px solid var(--color-stone);
  transition: background 0.22s ease;
}

.card:hover,
.card:focus-within {
  background: var(--color-cream);
}

@media (prefers-reduced-motion: reduce) {
  .card {
    transition: box-shadow 0.2s ease-in-out;
  }

  .card::before {
    transition: opacity 0.2s ease-in-out;
  }

  .card:hover,
  .card:focus-within {
    transform: none;
  }
}

.card__image {
  display: none;
}

@media (min-width: 1024px) {
  .card__image {
    height: 132px;
  }
}

.card__icon {
  color: var(--color-sage-dark);
}

.icon {
  width: 32px;
  height: 32px;
  stroke-width: 1.8;
  color: var(--color-sage-dark);
  margin-bottom: 12px;
}

.icon-small {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  color: var(--color-sage-dark);
  flex-shrink: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-item span {
  min-width: 0;
}

.card__title {
  margin: 0;
  font-size: 1.15rem;
  color: var(--color-forest);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.card__text {
  margin: 0;
  flex-grow: 1;
  font-size: 0.9375rem;
  color: var(--color-muted);
}

.card__link,
.card__arrow {
  display: none;
}

/* Services section refinements */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  border: none;
  border-radius: 0;
  overflow: visible;
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.85rem;
  }

  /* Avoid the odd single card on the last row (7 items). */
  .services-grid .service-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: calc((100% - 1.85rem) / 2);
  }
}

.service-card {
  padding: 1.85rem 1.65rem 1.65rem;
  border: var(--border-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  background: var(--color-bg-white);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-4px);
  border-color: rgba(154, 170, 143, 0.6);
  box-shadow:
    0 16px 40px rgba(16, 36, 28, 0.11),
    0 6px 16px rgba(16, 36, 28, 0.07);
}

.service-card__thumb {
  transform: scale(1.06);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.service-card:hover .service-card__thumb,
.service-card:focus-within .service-card__thumb {
  transform: scale(1.09);
}

@media (prefers-reduced-motion: reduce) {
  .service-card,
  .service-card__thumb {
    transition: none;
  }

  .service-card:hover,
  .service-card:focus-within {
    transform: none;
  }
}
.service-card--thumb {
  overflow: hidden;
}

.service-card__thumb-wrap {
  position: relative;
  aspect-ratio: 3 / 2;
  margin: -1.85rem -1.65rem 1rem;
  overflow: hidden;
  background: rgba(16, 36, 28, 0.06);
}

.service-card__thumb-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(243, 239, 228, 0.12) 0%, transparent 42%, rgba(16, 36, 28, 0.14) 100%);
}

.service-card__thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.93) contrast(0.99);
}

/* Slight softening so mixed JPG tones feel consistent */
.service-card__thumb[src$=".jpg"] {
  filter: saturate(0.92) contrast(1.02);
}

.service-card__icon {
  margin-bottom: 0.35rem;
}

.service-card .icon {
  width: 34px;
  height: 34px;
}

.service-card__title {
  font-weight: 800;
  margin: 0 0 0.75rem;
  font-size: clamp(1.08rem, 2vw, 1.22rem);
  letter-spacing: 0.02em;
  color: var(--color-forest);
  line-height: 1.25;
}

.service-card__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.68;
  color: rgba(31, 33, 31, 0.88);
}

.service-card__list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0.75rem 0 0;
  border-top: 1px solid rgba(16, 36, 28, 0.09);
}

.service-card__list li {
  position: relative;
  padding-left: 1.05rem;
  font-size: 0.9rem;
  line-height: 1.62;
  color: rgba(31, 33, 31, 0.84);
}

.service-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-sage-dark);
}

.service-card__list li + li {
  margin-top: 0.55rem;
}

.service-card__list strong {
  color: var(--color-forest);
}

/* About */
.section--about {
  background: var(--color-bg);
}

.about__copy > p:not(.about__highlight):not(.about__statement) {
  margin: 0 0 1.35rem;
  color: rgba(31, 33, 31, 0.9);
  line-height: 1.68;
  max-width: 62ch;
}

.about__statement {
  margin: 0 0 1.35rem;
  padding: 0.95rem 1rem;
  border-left: 3px solid var(--color-sage-dark);
  background: rgba(154, 170, 143, 0.12);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-forest);
  max-width: 52ch;
}

.about {
  display: grid;
  gap: 2.85rem;
  align-items: start;
}

@media (min-width: 900px) {
  .about {
    grid-template-columns: 1fr 1.05fr;
    gap: 3rem;
    align-items: center;
  }
}

.about__visual {
  order: 2;
}

.about__copy {
  order: 1;
}

@media (min-width: 900px) {
  .about__visual {
    order: 1;
  }

  .about__copy {
    order: 2;
  }
}

.about__figure {
  margin: 0;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  .about__figure {
    margin-left: 0;
    margin-right: 0;
  }
}

.about__profile {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  border: 4px solid var(--color-bg-white);
  box-shadow: var(--shadow-soft);
}

.about__caption {
  font-size: 0.8125rem;
  color: rgba(74, 67, 59, 0.92);
  margin-top: 0.95rem;
  line-height: 1.5;
  text-align: center;
}

@media (min-width: 900px) {
  .about__caption {
    text-align: left;
  }
}

.about__highlight {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-forest-soft);
  font-family: var(--font-heading);
  font-style: italic;
  margin: 0 0 1.35rem;
}

.about__authority {
  margin: 0 0 1rem;
  font-weight: 600;
  color: var(--color-forest-soft);
}

.about__checks {
  list-style: none;
  margin: 2.15rem 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 520px) {
  .about__checks {
    grid-template-columns: 1fr 1fr;
  }
}

.about__checks li {
  position: relative;
  padding: 0.75rem 0.85rem;
  background: var(--color-bg-white);
  border: 1px solid var(--color-stone);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-forest);
  transition:
    background 0.22s ease-in-out,
    box-shadow 0.22s ease-in-out,
    transform 0.22s ease-in-out;
}

.about__checks li:hover,
.about__checks li:focus-within {
  background: var(--color-bg);
  box-shadow: 0 14px 34px rgba(26, 43, 60, 0.1);
  transform: translateY(-2px);
}

/* Service list */
.section--list {
  background: var(--color-bg-white);
}

.service-list {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.service-list__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: start;
  padding: 1.35rem 1rem;
  border-radius: var(--radius);
  border-bottom: none;
  transition:
    background 0.28s ease,
    padding-left 0.28s ease,
    padding-right 0.28s ease,
    box-shadow 0.28s ease;
}

.service-list__item:hover,
.service-list__item:focus-within {
  background: var(--color-bg);
  padding-left: 1.65rem;
  padding-right: 1.65rem;
  box-shadow: var(--shadow-soft);
}

@media (prefers-reduced-motion: reduce) {
  .service-list__item {
    transition: none;
  }
}

.service-list__num {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-muted);
  line-height: 1.2;
}

.service-list__title {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  color: var(--color-forest);
}

.service-list__body p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-muted);
}

.service-list__action {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--color-forest);
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  flex-shrink: 0;
}

.service-list__action:hover {
  background: var(--color-sage-dark);
  color: #fff;
}

/* Steps */
.section--steps {
  background: var(--color-bg);
}

.steps-layout {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .steps-layout {
    grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.95fr);
    gap: 2rem;
  }
}

.steps-grid {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}

.steps-layout .steps-grid {
  margin-top: 0;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-layout .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.steps-grid__item {
  background: var(--color-bg-white);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-soft);
  transition:
    background 0.22s ease-in-out,
    box-shadow 0.22s ease-in-out,
    transform 0.22s ease-in-out;
}

.steps-grid__item:hover,
.steps-grid__item:focus-within {
  background: var(--color-bg);
  box-shadow: 0 16px 44px rgba(26, 43, 60, 0.12);
  transform: translateY(-3px);
}

/* Entry on scroll into the section (class .is-revealed is applied by JS) */
@keyframes steps-card-in {
  from {
    opacity: 0;
    transform: translateY(1.35rem) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.steps-grid--reveal.is-revealed .steps-grid__item {
  animation: steps-card-in 0.72s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.steps-grid--reveal.is-revealed .steps-grid__item:nth-child(1) {
  animation-delay: 0.05s;
}

.steps-grid--reveal.is-revealed .steps-grid__item:nth-child(2) {
  animation-delay: 0.14s;
}

.steps-grid--reveal.is-revealed .steps-grid__item:nth-child(3) {
  animation-delay: 0.23s;
}

.steps-grid--reveal.is-revealed .steps-grid__item:nth-child(4) {
  animation-delay: 0.32s;
}

@media (prefers-reduced-motion: reduce) {
  .steps-grid--reveal.is-revealed .steps-grid__item {
    animation: none;
  }

  .about__checks li,
  .steps-grid__item {
    transition: none;
  }

  .about__checks li:hover,
  .about__checks li:focus-within,
  .steps-grid__item:hover,
  .steps-grid__item:focus-within {
    transform: none;
  }
}

.steps-grid__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-sage-dark);
  margin-bottom: 0.5rem;
}

.steps-grid__title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: var(--color-forest);
}

.steps-grid__item p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-muted);
}

.steps-layout__figure {
  margin: 0;
  min-height: 260px;
}

.steps-layout__image {
  width: 100%;
  height: 100%;
  max-height: 420px;
  min-height: 260px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow-soft);
}

@media (max-width: 480px) {
  .steps-layout__image {
    min-height: 220px;
    max-height: 280px;
  }
}

/* Testimonials placeholder */
.section--testimonials {
  background: var(--color-bg-white);
}

.testimonial-placeholder {
  max-width: 640px;
  margin: 2rem auto 0;
  padding: 2rem;
  background: #faf8f4;
  border-radius: var(--radius);
  border: 1px dashed rgba(26, 43, 60, 0.15);
  text-align: center;
  color: var(--color-muted);
}

.testimonial-placeholder p {
  margin: 0;
}

.testimonial-placeholder__note {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  opacity: 0.92;
}

/* Credibility */
.section--credibility {
  background: var(--color-bg-white);
}

.credibility {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.credibility p {
  margin: 0.75rem auto 1.5rem;
  color: var(--color-muted);
  max-width: 60ch;
}

/* Appointment */
.section--appointment {
  background: var(--color-bg);
}

.section--contact .appointment {
  gap: 2.75rem;
}

.section--contact .appointment__intro p {
  color: rgba(74, 67, 59, 0.95);
  line-height: 1.68;
  max-width: 52ch;
}

.section--contact .appointment__form-wrap {
  padding: 2rem 1.85rem;
  border: var(--border-card);
  box-shadow: var(--shadow-soft);
  background: var(--color-bg-white);
}

.appointment {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .appointment {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.appointment__intro p {
  color: var(--color-muted);
  margin: 0 0 1.5rem;
}

.appointment__form-wrap {
  background: var(--color-bg-white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-stone);
}

.form-lead {
  margin: 0 0 0.65rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-forest);
  line-height: 1.35;
  letter-spacing: 0.01em;
}

.form-caption {
  margin: 0 0 1.5rem;
  font-size: 0.9375rem;
  color: rgba(74, 67, 59, 0.9);
  font-weight: 600;
  line-height: 1.5;
}

.form-status {
  margin: 0 0 1rem;
  padding: 0;
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text);
}

.form-status:not(:empty) {
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-stone);
  background: rgba(216, 207, 189, 0.35);
}

.contact-form__fields {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}

.contact-form__row {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 520px) {
  .contact-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.contact-form__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-forest);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(16, 36, 28, 0.18);
  border-radius: 10px;
  background: #fff;
  color: var(--color-charcoal);
  box-shadow: inset 0 1px 2px rgba(16, 36, 28, 0.04);
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: rgba(16, 36, 28, 0.26);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(74, 67, 59, 0.55);
}

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

.contact-form__hp-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.privacy-note {
  margin: 1rem 0 0;
  font-size: 0.875rem;
  color: rgba(74, 67, 59, 0.88);
  line-height: 1.55;
}

.privacy-note a {
  color: inherit;
  font-weight: 600;
}

.privacy-note a:hover {
  color: var(--color-forest);
}

.map-embed {
  margin: 1.75rem auto 0;
  border: var(--border-card);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-white);
  box-shadow: var(--shadow-card);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
}

@media (min-width: 900px) {
  .map-embed iframe {
    height: 360px;
  }
}

.map-embed__footnote {
  margin: 1.1rem auto 0;
  text-align: center;
  font-size: 0.9rem;
}

.map-embed__external {
  font-weight: 600;
}

.why-grid {
  display: grid;
  gap: 1.35rem;
}

@media (min-width: 720px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
  }
}

.why-item {
  background: var(--color-bg-white);
  border: var(--border-card);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
  box-shadow: var(--shadow-card), var(--shadow-lift);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.why-item:hover,
.why-item:focus-within {
  transform: translateY(-5px);
  border-color: rgba(154, 170, 143, 0.65);
  box-shadow:
    0 16px 40px rgba(16, 36, 28, 0.11),
    0 6px 16px rgba(16, 36, 28, 0.07);
}

.why-item .icon {
  width: 38px;
  height: 38px;
  stroke-width: 1.75;
}

@media (prefers-reduced-motion: reduce) {
  .why-item {
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
  }

  .why-item:hover,
  .why-item:focus-within {
    transform: none;
  }
}

.why-item__title {
  margin: 0 0 0.55rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-forest);
  font-size: 1rem;
}

.why-item__text {
  margin: 0;
  color: rgba(74, 67, 59, 0.95);
  font-size: 0.9375rem;
  line-height: 1.62;
}

.section--testimonials .section__intro {
  margin-bottom: 2.75rem;
}

.testimonials-grid {
  display: grid;
  gap: 1.35rem;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.testimonial {
  margin: 0;
  background: var(--color-bg-white);
  border: var(--border-card);
  border-radius: var(--radius);
  padding: 1.95rem 1.65rem;
  box-shadow: var(--shadow-card), 0 2px 0 rgba(16, 36, 28, 0.04);
}

.testimonial__sector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(154, 170, 143, 0.28), rgba(243, 239, 228, 0.55));
  border: 1px solid rgba(16, 36, 28, 0.07);
}

.testimonial__sector-icon {
  width: 18px;
  height: 18px;
  stroke-width: 2;
  color: var(--color-forest-soft);
}

.testimonial__stars {
  display: flex;
  gap: 0.2rem;
  margin-bottom: 0.85rem;
  font-size: 1.15rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-star);
}

.testimonial blockquote {
  margin: 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 600;
  line-height: 1.48;
  font-size: 1.035rem;
  color: rgba(31, 33, 31, 0.94);
}

.testimonial figcaption {
  margin-top: 1.05rem;
  font-size: 0.92rem;
  color: rgba(74, 67, 59, 0.92);
  font-weight: 600;
}

/* Cookie consent */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  background: rgba(16, 36, 28, 0.96);
  color: rgba(243, 239, 228, 0.92);
  border-top: 1px solid rgba(243, 239, 228, 0.18);
}

.cookie-banner__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 720px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
}

.cookie-banner__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  max-width: 70ch;
}

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

.contact-form input:focus-visible,
.contact-form select:focus-visible,
.contact-form textarea:focus-visible {
  outline: 2px solid var(--color-sage-dark);
  outline-offset: 1px;
  border-color: var(--color-forest-soft);
  box-shadow:
    inset 0 1px 2px rgba(16, 36, 28, 0.04),
    0 0 0 3px rgba(95, 115, 95, 0.22);
}

.contact-form button[type="submit"] {
  margin-top: 0.65rem;
  min-height: 3.15rem;
  box-shadow: 0 12px 34px rgba(16, 36, 28, 0.26);
}

.contact-form button[type="submit"]:hover {
  box-shadow: 0 16px 40px rgba(16, 36, 28, 0.32);
}

.contact-form__submit {
  font-weight: 700;
  letter-spacing: 0.09em;
  padding-inline: 1.85rem;
}

@media (max-width: 520px) {
  .contact-form button[type="submit"] {
    width: 100%;
  }
}

.form-success,
.form-error {
  border-radius: var(--radius);
  padding: 1.25rem;
  border: 1px solid var(--color-stone);
  background: rgba(154, 170, 143, 0.12);
}

.form-error {
  background: rgba(216, 207, 189, 0.2);
}

.form-success__title {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--color-forest);
  font-size: 1.1rem;
}

.form-success--panel .btn {
  margin-top: 1rem;
}

.form-success p,
.form-error p {
  margin: 0;
  color: var(--color-muted);
}

.form-error a {
  color: inherit;
  font-weight: 700;
}

/* Products */
/* Brand strip */
.brand-strip {
  background: var(--color-cream);
  border-top: 1px solid var(--color-stone);
  border-bottom: 1px solid var(--color-stone);
  padding: 0.9rem 0;
}

.brand-strip__inner {
  display: flex;
  align-items: center;
  gap: 1rem 2rem;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

@media (min-width: 768px) {
  .brand-strip__inner {
    justify-content: space-between;
    text-align: left;
  }
}

.brand-strip__left {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-forest);
}

.brand-strip__rule {
  display: none;
  flex: 1;
  height: 1px;
  background: var(--color-stone);
}

@media (min-width: 768px) {
  .brand-strip__rule {
    display: block;
  }
}

.brand-strip__right {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 400;
  color: var(--color-muted);
}

/* Areas */
.section--areas .areas-list {
  margin-bottom: 2rem;
}

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.areas-list li {
  padding: 0.45rem 1.25rem;
  background: var(--color-cream);
  border: 1px solid var(--color-stone);
  border-radius: 2px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-forest);
  transition: background 0.18s ease, border-color 0.18s ease;
}

.areas-list li:hover {
  background: var(--color-forest);
  border-color: var(--color-forest);
  color: var(--color-cream);
}

@media (prefers-reduced-motion: reduce) {
  .areas-list li {
    transition: none;
  }
}

/* CTA section */
.section--cta {
  background: var(--color-forest);
  color: var(--color-cream);
  padding-top: 6rem;
  padding-bottom: 6rem;
}

@media (max-width: 520px) {
  .section--cta {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.cta {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.cta__title {
  margin: 0 0 1.5rem;
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3.6vw, 2.45rem);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0.015em;
  line-height: 1.2;
  color: #fff;
}

.cta__text {
  font-size: 1.08rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto 2.5rem;
  max-width: 46ch;
}

.cta__btn {
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.28);
  font-weight: 700;
  padding-inline: 1.75rem;
}

.cta__btn:hover {
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
  background: var(--color-footer);
  color: rgba(255, 255, 255, 0.9);
  padding-top: 3.5rem;
}

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

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

.site-footer__grid {
  display: grid;
  gap: 2.35rem;
  padding-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .site-footer__grid {
    grid-template-columns: 1.2fr 1.2fr 1fr 1fr;
  }
}

.site-footer__name {
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: #fff;
}

.site-footer__logo {
  width: min(240px, 100%);
  height: auto;
  margin: 0 0 0.85rem;
  opacity: 0.92;
  border-radius: 12px;
}

.site-footer__desc {
  margin: 0.1rem 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.84);
  max-width: 42ch;
}

.site-footer__brand p {
  margin: 0.35rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
}

.site-footer__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-footer-label);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.15rem;
}

.site-footer__contact p {
  margin: 0 0 0.95rem;
  font-size: 0.92rem;
  line-height: 1.55;
}

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

.site-footer__nav a {
  display: inline-block;
  padding: 0.25rem 0;
  font-size: 0.9rem;
}

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

.site-footer__social-list a {
  display: inline-block;
  padding: 0.25rem 0;
  font-size: 0.9rem;
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.35rem 0 1.25rem;
}

.site-footer__bottom-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.site-footer__bottom p {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer__prefs {
  opacity: 0.92;
}

.site-footer__prefs-btn {
  font-family: inherit;
  font-size: inherit;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__prefs-btn:hover {
  opacity: 1;
}

.site-footer__prefs-btn:focus-visible {
  outline: 2px solid var(--color-sage);
  outline-offset: 3px;
}

.privacy-page__prefs {
  margin-top: 2rem;
}

.privacy-page__prefs-btn {
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--color-sage-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-page__prefs-btn:focus-visible {
  outline: 2px solid var(--color-sage-dark);
  outline-offset: 3px;
}

/* Back to top */
.back-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 3px;
  border: none;
  background: var(--color-forest);
  color: var(--color-cream);
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.back-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

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

.back-top:focus-visible {
  outline: 2px solid var(--color-sage-dark);
  outline-offset: 3px;
}

/* Privacy policy page */
.privacy-page__inner {
  max-width: 820px;
}

.privacy-page__title {
  margin-bottom: 1rem;
}

.privacy-page__intro {
  text-align: left;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1.5rem;
}

.privacy-page .privacy-page__subheading {
  margin-top: 2rem;
  margin-bottom: 0.65rem;
  font-size: 1.2rem;
}

.privacy-page__inner > p {
  margin: 0 0 1rem;
  line-height: 1.65;
}

.privacy-page__back {
  margin-top: 2rem;
}

