@font-face {
  font-family: "Amatic SC";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/fonts/amatic-sc-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Amatic SC";
  font-style: normal;
  font-weight: 700;
  font-display: block;
  src: url("/fonts/amatic-sc-latin-700-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url("/fonts/inter-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: block;
  src: url("/fonts/inter-latin-500-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: block;
  src: url("/fonts/inter-latin-600-normal.woff2") format("woff2");
}

:root {
  --font-heading: "Amatic SC", cursive;
  --font-body: "Inter", system-ui, sans-serif;
  --color-ink: #1a1a1a;
  --color-white: #ffffff;
  --color-bg: #e6e6e6;
  --header-height: 80px;
  --why-choose-w: 1428;
  --why-choose-h: 742;
  /* Same hover reveal brush diameter everywhere (matches banners) */
  --reveal-brush-size: 520px;
  /* Slightly smaller brush for compact grids (gallery, ways to reach) */
  --reveal-brush-size-sm: 450px;
}

html.is-loading {
  overflow-y: scroll;
  overscroll-behavior: none;
  scrollbar-gutter: stable;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  font-family: var(--font-heading);
  color: var(--color-ink);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ── Sketch SVG buttons ───────────────────────────────── */

.btn-sketch {
  --btn-sketch-h: 3.5rem;
  --btn-sketch-pad-x: 32px;
  --btn-sketch-font: 26px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  height: var(--btn-sketch-h);
  min-height: var(--btn-sketch-h);
  padding: 0;
  line-height: 0;
  color: #1d1d1b;
  background: none;
  border: none;
  box-shadow: none;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  overflow: visible;
  transition: transform 0.2s ease;
}

.btn-sketch--sm {
  --btn-sketch-h: clamp(2.5rem, 4.5vw, 3.25rem);
  --btn-sketch-pad-x: 32px;
  --btn-sketch-font: clamp(1.125rem, 2vw, 1.375rem);
}

.btn-sketch--lg {
  --btn-sketch-h: clamp(3rem, 6vw, 4.25rem);
  --btn-sketch-pad-x: 32px;
  --btn-sketch-font: clamp(1.5rem, 2.4vw, 2rem);
}

.btn-sketch__bg {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  max-height: none;
  display: block;
  object-fit: fill;
  object-position: center;
  pointer-events: none;
  transition: filter 0.2s ease;
}

.btn-sketch:hover,
.btn-sketch:focus-visible {
  transform: translateY(-1px);
}

.btn-sketch:hover .btn-sketch__bg,
.btn-sketch:focus-visible .btn-sketch__bg {
  filter: invert(1);
}

.btn-sketch__label {
  position: relative;
  z-index: 1;
  padding: 0 var(--btn-sketch-pad-x);
  font-family: "Amatic SC", var(--font-heading);
  font-weight: 700;
  font-style: normal;
  font-size: var(--btn-sketch-font);
  line-height: 1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  color: #1d1d1b;
  pointer-events: none;
  transition: color 0.2s ease;
}

.btn-sketch:hover .btn-sketch__label,
.btn-sketch:focus-visible .btn-sketch__label {
  color: #fff;
}

/* Legacy alias — prefer .btn-sketch */
.btn-image {
  display: inline-block;
  line-height: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.btn-image:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.btn-image--sm img {
  height: clamp(40px, 4.5vw, 52px);
}

.btn-image--lg img {
  height: clamp(48px, 6vw, 76px);
}

/* ── Header ───────────────────────────────────────────── */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: transparent;
  transition:
    background-color 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 240px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(255, 255, 255, 0.82) 22%,
    rgba(255, 255, 255, 0.52) 48%,
    rgba(255, 255, 255, 0.28) 68%,
    rgba(255, 255, 255, 0.12) 84%,
    rgba(255, 255, 255, 0) 100%
  );
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.site-header.is-scrolled::before {
  opacity: 0;
}

/* Inner pages: always use solid scrolled header (no top fade blend) */
body:not(.page-home) .site-header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

body:not(.page-home) .site-header::before {
  opacity: 0;
}

.site-header__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: 1400px;
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem);
}

.site-header__logo {
  justify-self: start;
  display: inline-block;
  line-height: 0;
  background: transparent;
}

.site-header__logo img {
  display: block;
  width: auto;
  height: 44px;
  max-width: 126px;
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2.25rem);
}

.site-header__link {
  font-family: var(--font-heading);
  font-size: 28.73px;
  font-weight: 700;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--color-ink);
  text-decoration: none;
  transition: opacity 0.25s ease;
}

.site-header__link:hover {
  opacity: 0.55;
}

.site-header__link.is-active {
  opacity: 1;
  color: var(--color-ink);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.28em;
}

.site-header__link.is-active:hover {
  opacity: 1;
}

.site-header__actions {
  justify-self: end;
}

.site-header__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.site-header__menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-ink);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header__mobile-cta {
  display: none;
}

@media (max-width: 1024px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .hero__content {
    left: 50%;
  }

  .site-header__nav {
    grid-column: 1 / -1;
  }

  .site-header__actions {
    display: none;
  }

  .site-header__mobile-cta {
    display: inline-flex;
    margin-top: 0.75rem;
  }
}

@media (max-width: 768px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
  }

  .site-header__menu-toggle {
    display: flex;
  }

  .site-header__nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 0.35s ease,
      opacity 0.35s ease;
  }

  .site-header__nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

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

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

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

/* ── Page scroll reveal ─────────────────────────────────── */

.page-home main > section.scroll-reveal,
.page-about-us main > section.scroll-reveal,
.page-amenities main > section.scroll-reveal,
.page-amenities .am-feature.scroll-reveal,
.page-house-rules main > section.scroll-reveal,
.page-house-rules .hr-rule.scroll-reveal,
.page-contact-us main > section.scroll-reveal,
.page-legal main > section.scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 1.75rem, 0);
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.page-home main > section.scroll-reveal.is-inview,
.page-about-us main > section.scroll-reveal.is-inview,
.page-amenities main > section.scroll-reveal.is-inview,
.page-amenities .am-feature.scroll-reveal.is-inview,
.page-house-rules main > section.scroll-reveal.is-inview,
.page-house-rules .hr-rule.scroll-reveal.is-inview,
.page-contact-us main > section.scroll-reveal.is-inview,
.page-legal main > section.scroll-reveal.is-inview {
  opacity: 1;
  transform: none;
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .page-home main > section.scroll-reveal,
  .page-about-us main > section.scroll-reveal,
  .page-amenities main > section.scroll-reveal,
  .page-amenities .am-feature.scroll-reveal,
  .page-house-rules main > section.scroll-reveal,
  .page-house-rules .hr-rule.scroll-reveal,
  .page-contact-us main > section.scroll-reveal,
  .page-legal main > section.scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* House Rules — Important to Remember card reveal */
.page-house-rules .hr-note.scroll-reveal {
  opacity: 1;
  transform: none;
}

.page-house-rules .hr-note.scroll-reveal .hr-note__inner {
  opacity: 0;
  transform: translate3d(0, 1.75rem, 0);
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.page-house-rules .hr-note.scroll-reveal.is-inview .hr-note__inner {
  opacity: 1;
  transform: none;
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .page-house-rules .hr-note.scroll-reveal .hr-note__inner {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* How It Began — image from left, copy from right */
.page-about-us .about-burnout.scroll-reveal {
  opacity: 1;
  transform: none;
}

.page-about-us .about-burnout.scroll-reveal .about-burnout__media,
.page-about-us .about-burnout.scroll-reveal .about-burnout__content {
  opacity: 0;
  transition:
    opacity 1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.page-about-us .about-burnout.scroll-reveal .about-burnout__media {
  transform: translate3d(-1rem, 0, 0);
}

.page-about-us .about-burnout.scroll-reveal .about-burnout__content {
  transform: translate3d(1rem, 0, 0);
  transition-delay: 0.06s;
}

.page-about-us .about-burnout.scroll-reveal.is-inview .about-burnout__media,
.page-about-us .about-burnout.scroll-reveal.is-inview .about-burnout__content {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

@media (prefers-reduced-motion: reduce) {
  .page-about-us .about-burnout.scroll-reveal .about-burnout__media,
  .page-about-us .about-burnout.scroll-reveal .about-burnout__content {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Hero ─────────────────────────────────────────────── */

@property --reveal-size {
  syntax: "<length>";
  inherits: true;
  initial-value: 520px;
}

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 1440 / 990;
  overflow: hidden;
  background: var(--color-bg);
}

/* Large screens: banners fill the viewport; tablet/mobile keep aspect + min-heights */
@media (min-width: 901px) {
  .hero {
    aspect-ratio: auto;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hr-banner,
  .am-banner,
  .about-banner {
    aspect-ratio: auto;
    height: calc(100vh - var(--header-height));
    height: calc(100dvh - var(--header-height));
    min-height: calc(100vh - var(--header-height));
    min-height: calc(100dvh - var(--header-height));
  }

  /* Home hero copy + CTA: optical center of the full viewport */
  .hero__content {
    top: 50%;
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -42%);
    gap: clamp(1.5rem, 3.5vh, 2.5rem);
  }

  /* Inner page banners: keep content centered in the taller frame */
  .hr-banner__content,
  .am-banner__content,
  .about-banner__content {
    padding-top: clamp(2rem, 6vh, 4rem);
    padding-bottom: clamp(2rem, 6vh, 4rem);
  }

  .am-banner__content {
    gap: clamp(1.25rem, 3vh, 2rem);
  }

  .about-banner__content {
    gap: clamp(1rem, 2.5vh, 1.5rem);
  }
}

.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  --reveal-x: 50%;
  --reveal-y: 50%;
  --reveal-size: var(--reveal-brush-size);
  --bg-position: center center;
}

.hero__layer {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-size: 108% 108%;
  background-position: 46% 42%;
  animation: hero-camera-drift 15s ease-in-out infinite alternate;
  will-change: background-size, background-position;
}

@keyframes hero-camera-drift {
  from {
    background-size: 108% 108%;
    background-position: 46% 42%;
  }

  to {
    background-size: 100% 100%;
    background-position: 54% 58%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__layer {
    animation: none !important;
    background-size: 100% 100% !important;
    background-position: center center !important;
  }
}

.hero__layer--sketch {
  z-index: 0;
  background-image: url("/images/slowliffe-banner-sketch.webp");
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero__layer--color {
  z-index: 1;
  background-image: url("/images/slowliffe-banner-original.webp");
  opacity: 0;
  pointer-events: none;
  clip-path: none;
  -webkit-mask-image: none;
  mask-image: none;
  transition: none;
}

.hero__media.is-revealing:not(.is-full-color) .hero__layer--color {
  opacity: 1;
  clip-path: none;
  transition: opacity 0.2s ease;
  -webkit-mask-image: radial-gradient(
    circle var(--reveal-size) at var(--reveal-x) var(--reveal-y),
    #000 0%,
    #000 42%,
    rgba(0, 0, 0, 0.75) 54%,
    rgba(0, 0, 0, 0.3) 66%,
    transparent 74%
  );
  mask-image: radial-gradient(
    circle var(--reveal-size) at var(--reveal-x) var(--reveal-y),
    #000 0%,
    #000 42%,
    rgba(0, 0, 0, 0.75) 54%,
    rgba(0, 0, 0, 0.3) 66%,
    transparent 74%
  );
}

.hero__media.is-color-transitioning .hero__layer {
  animation-play-state: paused;
}

.hero__media.is-full-color .hero__layer--color {
  opacity: 1;
  -webkit-mask-image: none;
  mask-image: none;
  transition: opacity 0.35s ease;
}

.hero__media.is-full-color.is-opening .hero__layer--color,
.hero__media.is-full-color.is-closing .hero__layer--color {
  transition: none;
}

.hero__media.is-full-color.is-expanded:not(.is-closing) .hero__layer--color {
  clip-path: inset(0 0 0 0);
}

.hero__media.is-full-color.is-opening .hero__layer--sketch {
  opacity: 1;
  transition: none;
}

.hero__media.is-full-color.is-expanded:not(.is-closing) .hero__layer--sketch {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.15s;
}

.hero__media.is-full-color.is-closing .hero__layer--sketch {
  opacity: 1;
  pointer-events: none;
  transition: none;
}

.hero__mode-toggle,
.hero__audio-toggle {
  position: fixed;
  z-index: 95;
  bottom: clamp(1.25rem, 3vh, 2rem);
  width: 46px;
  height: 46px;
  padding: 3px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  backdrop-filter: blur(6px);
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.hero__mode-toggle {
  right: clamp(1rem, 2vw, 1.5rem);
}

.hero__audio-toggle {
  left: clamp(1rem, 2vw, 1.5rem);
  color: var(--color-ink);
}

.hero__mode-toggle:hover,
.hero__audio-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
  border-color: var(--color-white);
}

.hero__mode-toggle:focus-visible,
.hero__audio-toggle:focus-visible {
  outline: 2px solid var(--color-ink);
  outline-offset: 3px;
}

.hero__mode-toggle__preview {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero__mode-toggle__preview--color {
  background-image: url("/images/slowliffe-banner-original.webp");
}

.hero__mode-toggle__preview--sketch {
  background-image: url("/images/slowliffe-banner-sketch.webp");
}

/* Per-image sketch/color toggle */
.why-choose__image--reveal,
.what-we-offer__media--reveal,
.gallery__item--reveal,
.hr-rule__media--reveal,
.contact-hero__media--reveal,
.am-media--reveal,
.about-media--reveal {
  position: relative;
}

.hero__media .reveal-local-toggle {
  z-index: 4;
}

/* Home hero sits under the fixed header — push toggle below it */
.page-home .hero__media .reveal-local-toggle {
  top: calc(var(--header-height) + 0.65rem);
}

.reveal-local-toggle {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  bottom: auto;
  z-index: 6;
  width: 34px;
  height: 34px;
  padding: 2px;
  border: 1.5px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  pointer-events: auto;
  backdrop-filter: blur(4px);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease,
    border-color 0.2s ease;
}

.reveal-local-toggle:hover {
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.24);
}

.reveal-local-toggle:focus-visible {
  outline: 2px solid var(--color-ink);
  outline-offset: 2px;
}

.reveal-local-toggle__preview {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: #d9d9d9;
}

.reveal-local-toggle__tooltip {
  position: absolute;
  top: calc(100% + 8px);
  bottom: auto;
  right: 0;
  left: auto;
  transform: translateY(-4px);
  padding: 0.28rem 0.55rem;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: #fff;
  background: rgba(10, 12, 18, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.18s ease,
    visibility 0.18s ease,
    transform 0.18s ease;
}

.reveal-local-toggle:hover .reveal-local-toggle__tooltip,
.reveal-local-toggle:focus-visible .reveal-local-toggle__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Hide per-image toggles during why-choose scroll stack popup */
.why-choose__image--reveal.is-stack-mode .reveal-local-toggle,
.why-choose__image-slides.is-stack-mode .reveal-local-toggle,
.why-choose__image-slides.is-stack-entering .reveal-local-toggle,
.why-choose__image-slides.is-stack-opening .reveal-local-toggle {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@media (pointer: coarse) {
  .reveal-local-toggle {
    width: 38px;
    height: 38px;
  }

  .reveal-local-toggle__tooltip {
    display: none;
  }
}

.hero__mode-toggle__tooltip,
.hero__audio-toggle__tooltip {
  position: absolute;
  top: auto;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  padding: 0.35rem 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 2px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

@media (hover: hover) {
  .hero__mode-toggle:hover .hero__mode-toggle__tooltip,
  .hero__mode-toggle:focus-visible .hero__mode-toggle__tooltip,
  .hero__audio-toggle:hover .hero__audio-toggle__tooltip,
  .hero__audio-toggle:focus-visible .hero__audio-toggle__tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.hero__mode-toggle[aria-pressed="true"],
.hero__audio-toggle[aria-pressed="true"] {
  border-color: rgba(26, 26, 26, 0.35);
  background: rgba(26, 26, 26, 0.88);
  color: var(--color-white);
}

.hero__audio-toggle__icon {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.hero__audio-toggle__svg {
  grid-area: 1 / 1;
}

.hero__audio-toggle__svg--off {
  display: none;
}

.hero__audio-toggle[aria-pressed="true"] .hero__audio-toggle__svg--on {
  display: none;
}

.hero__audio-toggle[aria-pressed="true"] .hero__audio-toggle__svg--off {
  display: block;
}

.home-background-audio {
  display: none;
}

.hero__content {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: clamp(16rem, 40vh, 22rem);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  padding: 0 1.5rem;
  text-align: center;
  pointer-events: none;
}

.hero__content a {
  pointer-events: auto;
}

.hero__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.hero__title-line {
  font-family: var(--font-heading);
  font-size: 58px;
  font-weight: 700;
  font-style: normal;
  line-height: 100px;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--color-white);
  text-shadow:
    0 2px 16px rgba(0, 0, 0, 0.35),
    0 1px 4px rgba(0, 0, 0, 0.25);
}

.hero__title-line--lg {
  font-size: 76px;
  line-height: 100px;
  text-transform: uppercase;
  white-space: nowrap;
}

.section-placeholder {
  min-height: 50vh;
  background: var(--color-white);
}

/* ── Why Choose (Figma Group 12 — 1428×742) ───────────── */

.why-choose {
  background: var(--color-white);
  overflow: hidden;
  scroll-margin-top: clamp(4rem, 12vw, 5.5rem);
}

.why-choose__wrap {
  position: relative;
  max-width: calc(var(--why-choose-w) * 1px);
  margin: 0 auto;
  --why-choose-gap: clamp(8rem, 15vw, 13rem);
  --why-choose-content-left: calc(130 / var(--why-choose-w) * 100%);
  padding: var(--why-choose-gap) clamp(1rem, 3vw, 3rem) clamp(3rem, 6vw, 5rem);
}

.why-choose__heading {
  position: absolute;
  left: var(--why-choose-content-left);
  top: 0;
  transform: translateY(calc(-50% - clamp(0.75rem, 2vw, 1.5rem)));
  z-index: 3;
  margin: 0;
  font-family: "Amatic SC", var(--font-heading);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(2.5rem, 5.08vw, 72.62px);
  line-height: clamp(3.75rem, 8.15vw, 116.44px);
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
  white-space: nowrap;
  color: #000;
}

.why-choose__canvas {
  position: relative;
  width: 100%;
  aspect-ratio: var(--why-choose-w) / var(--why-choose-h);
}

/* Rectangle 30 — right panel */
.why-choose__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(493 / var(--why-choose-w) * 100%);
  height: 100%;
  background: #1e1e1e;
  opacity: 0.1;
}

/* Rectangle 31 — image backdrop */
.why-choose__image-bg {
  position: absolute;
  left: calc(563.5 / var(--why-choose-w) * 100%);
  top: calc(129 / var(--why-choose-h) * 100%);
  width: calc(512 / var(--why-choose-w) * 100%);
  height: calc(464 / var(--why-choose-h) * 100%);
  background: #d9d9d9;
  opacity: 1;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-choose__canvas:has(.why-choose__image-media.is-opening) .why-choose__image-bg,
.why-choose__canvas:has(.why-choose__image-media.is-closing) .why-choose__image-bg {
  opacity: 0;
  transition-delay: 0s;
}

.why-choose__canvas:has(.why-choose__image-media.is-expanded) .why-choose__image-bg {
  opacity: 1;
  transition-delay: 0.1s;
}

.why-choose__canvas:not(:has(.why-choose__image-media.is-full-color)) .why-choose__image-bg {
  opacity: 1;
  transition-delay: 0.12s;
}

/* 3 2 — main image */
.why-choose__image {
  position: absolute;
  left: calc(564 / var(--why-choose-w) * 100%);
  top: calc(93 / var(--why-choose-h) * 100%);
  width: calc(680 / var(--why-choose-w) * 100%);
  height: calc(553 / var(--why-choose-h) * 100%);
}

.why-choose__image:not(.why-choose__image--reveal) img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.why-choose__image--reveal .why-choose__image-layer {
  object-fit: cover;
  object-position: center;
}

.why-choose__image--reveal {
  z-index: 1;
}

.why-choose__image-slides {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.why-choose__image-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
  transform-style: preserve-3d;
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-choose__image-slide.is-active,
.why-choose__image-slide.is-leaving {
  visibility: visible;
}

.why-choose__image-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
  transform: none;
  filter: none;
}

.why-choose__image-slide.is-leaving {
  opacity: 0;
  z-index: 2;
  pointer-events: none;
}

/* 3D stack mode — desktop only (wheel while hovering) */
@media (hover: hover) and (pointer: fine) {
  .why-choose__image--reveal.is-stack-mode {
    z-index: 4;
    overflow: visible;
    perspective: 1800px;
    perspective-origin: 50% 48%;
  }

  #why-choose:has(.why-choose__image--reveal.is-stack-mode),
  #modern-comfort:has(.why-choose__image--reveal.is-stack-mode),
  #digital-detox:has(.why-choose__image--reveal.is-stack-mode),
  #natures-feast:has(.why-choose__image--reveal.is-stack-mode) {
    overflow: visible;
    position: relative;
    z-index: 2;
  }

  #why-choose:has(.why-choose__image--reveal.is-stack-mode) .why-choose__canvas,
  #modern-comfort:has(.why-choose__image--reveal.is-stack-mode) .why-choose__canvas,
  #digital-detox:has(.why-choose__image--reveal.is-stack-mode) .why-choose__canvas,
  #natures-feast:has(.why-choose__image--reveal.is-stack-mode) .why-choose__canvas {
    overflow: visible;
  }

  .why-choose__canvas:has(.why-choose__image--reveal.is-stack-mode) .why-choose__image-bg {
    opacity: 0;
    transition-delay: 0s;
  }

  .why-choose__image-slides.is-stack-mode {
    transform-style: preserve-3d;
  }

  .why-choose__image-slides.is-stack-entering .why-choose__image-slide {
    transition: none !important;
    visibility: visible;
    pointer-events: none;
    filter: none;
    transform-origin: 50% 85%;
  }

  .why-choose__image-slides.is-stack-entering .why-choose__image-slide[data-stack-slot="front"] {
    z-index: 20;
    opacity: 1;
    transform: translate3d(0, 10px, 0) scale(1);
  }

  .why-choose__image-slides.is-stack-entering .why-choose__image-slide[data-stack-slot="right"] {
    z-index: 12;
    opacity: 0;
    transform: translate3d(12%, 16px, -48px) scale(0.94) rotateY(-6deg);
  }

  .why-choose__image-slides.is-stack-entering .why-choose__image-slide[data-stack-slot="left"] {
    z-index: 12;
    opacity: 0;
    transform: translate3d(-12%, 16px, -48px) scale(0.94) rotateY(6deg);
  }

  .why-choose__image-slides.is-stack-entering .why-choose__image-slide[data-stack-hidden] {
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .why-choose__image-slides.is-stack-mode .why-choose__image-slide {
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    filter: none;
    transform-origin: 50% 85%;
    transition:
      transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .why-choose__image-slides.is-stack-opening .why-choose__image-slide[data-stack-slot="front"] {
    transition:
      transform 0.65s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.44s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0s;
  }

  .why-choose__image-slides.is-stack-opening .why-choose__image-slide[data-stack-slot="right"] {
    transition:
      transform 0.57s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.52s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.07s;
  }

  .why-choose__image-slides.is-stack-opening .why-choose__image-slide[data-stack-slot="left"] {
    transition:
      transform 0.57s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.52s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: 0.09s;
  }

  .why-choose__image-slides.is-stack-mode .why-choose__image-slide[data-stack-hidden] {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .why-choose__image-slides.is-stack-mode .why-choose__image-slide[data-stack-slot="front"] {
    z-index: 20;
    pointer-events: auto;
    transform: translate3d(0, -14px, 72px) scale(1.045);
    opacity: 1;
  }

  .why-choose__image-slides.is-stack-mode .why-choose__image-slide[data-stack-slot="right"] {
    z-index: 14;
    transform: translate3d(30%, 18px, -24px) scale(0.9) rotateY(-16deg);
    opacity: 0.94;
  }

  .why-choose__image-slides.is-stack-mode .why-choose__image-slide[data-stack-slot="left"] {
    z-index: 14;
    transform: translate3d(-30%, 18px, -24px) scale(0.9) rotateY(16deg);
    opacity: 0.94;
  }

  .why-choose__image-slides.is-stack-mode .why-choose__image-slide[data-stack-slot="back"] {
    z-index: 8;
    transform: translate3d(0, 28px, -80px) scale(0.82) rotateX(8deg);
    opacity: 0.78;
  }

  .why-choose__image-slides.is-stack-mode[data-stack-count="2"]
    .why-choose__image-slide[data-stack-slot="right"] {
    transform: translate3d(34%, 14px, -18px) scale(0.91) rotateY(-18deg);
  }

  .why-choose__image-slides.is-stack-mode[data-stack-count="3"]
    .why-choose__image-slide[data-stack-slot="right"] {
    transform: translate3d(32%, 16px, -20px) scale(0.9) rotateY(-17deg);
  }

  .why-choose__image-slides.is-stack-mode[data-stack-count="3"]
    .why-choose__image-slide[data-stack-slot="left"] {
    transform: translate3d(-32%, 16px, -20px) scale(0.9) rotateY(17deg);
  }

  .why-choose__image-slides.is-stack-mode .why-choose__image-media {
    border-radius: 2px;
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    backface-visibility: hidden;
  }

  .why-choose__image-slides.is-stack-entering
    .why-choose__image-slide[data-stack-slot="front"]
    .why-choose__image-media {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
  }

  .why-choose__image-slides.is-stack-opening
    .why-choose__image-slide[data-stack-slot="front"]
    .why-choose__image-media {
    transition: box-shadow 0.65s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .why-choose__image-slides.is-stack-mode
    .why-choose__image-slide[data-stack-slot="front"]
    .why-choose__image-media {
    box-shadow: 0 40px 70px rgba(0, 0, 0, 0.32);
  }
}

@media (prefers-reduced-motion: reduce) {
  .why-choose__image-slide {
    transition: none;
  }

  .why-choose__image-slides.is-stack-mode {
    transform: none !important;
  }

  .why-choose__image-slides.is-stack-mode .why-choose__image-slide {
    transform: none !important;
    filter: none !important;
  }
}

.why-choose__image-media {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 680 / 553;
  --reveal-x: 50%;
  --reveal-y: 50%;
  --reveal-size: var(--reveal-brush-size);
}

.why-choose__image-layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.why-choose__image-layer--sketch {
  z-index: 0;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-choose__image-color-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  clip-path: none;
  -webkit-mask-image: none;
  mask-image: none;
  transition: none;
}

.why-choose__image-layer--color {
  opacity: 1;
}

.why-choose__image-media.is-revealing:not(.is-full-color) .why-choose__image-color-wrap {
  opacity: 1;
  -webkit-mask-image: radial-gradient(
    circle var(--reveal-size) at var(--reveal-x) var(--reveal-y),
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.8) 52%,
    rgba(0, 0, 0, 0.35) 64%,
    transparent 76%
  );
  mask-image: radial-gradient(
    circle var(--reveal-size) at var(--reveal-x) var(--reveal-y),
    #000 0%,
    #000 38%,
    rgba(0, 0, 0, 0.8) 52%,
    rgba(0, 0, 0, 0.35) 64%,
    transparent 76%
  );
}

.why-choose__image-media.is-full-color .why-choose__image-color-wrap {
  opacity: 1;
  -webkit-mask-image: none;
  mask-image: none;
  transition: opacity 0.35s ease;
}

.why-choose__image-media.is-full-color.is-opening .why-choose__image-color-wrap,
.why-choose__image-media.is-full-color.is-closing .why-choose__image-color-wrap {
  transition: none;
}

.why-choose__image-media.is-full-color.is-expanded:not(.is-closing) .why-choose__image-color-wrap {
  clip-path: inset(0 0 0 0);
}

.why-choose__image-media.is-full-color.is-opening .why-choose__image-layer--sketch {
  opacity: 1;
  transition: none;
}

.why-choose__image-media.is-full-color.is-expanded:not(.is-closing) .why-choose__image-layer--sketch {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.15s;
}

.why-choose__image-media.is-full-color.is-closing .why-choose__image-layer--sketch {
  opacity: 1;
  pointer-events: none;
  transition: none;
}

@media (hover: hover) {
  .why-choose__image--reveal {
    cursor: crosshair;
  }
}

/* Natural Serenity */
.why-choose__title {
  position: absolute;
  left: var(--why-choose-content-left);
  top: calc(132 / var(--why-choose-h) * 100%);
  width: calc(887 / var(--why-choose-w) * 100%);
  margin: 0;
  z-index: 3;
  pointer-events: none;
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 700;
  font-size: clamp(2.25rem, 6.3vw, 5.625rem);
  line-height: 1.11;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
}

.why-choose__title-line {
  display: block;
}

/* Body copy */
.why-choose__text {
  position: absolute;
  left: var(--why-choose-content-left);
  top: calc(365 / var(--why-choose-h) * 100%);
  width: calc(343 / var(--why-choose-w) * 100%);
  margin: 0;
  pointer-events: none;
  font-family: "Inter", var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1rem, 1.54vw, 22px);
  line-height: clamp(1.625rem, 2.52vw, 36px);
  letter-spacing: 0;
  color: #000;
  opacity: 0.7;
}

/* Learn More button */
.why-choose__cta {
  position: absolute;
  left: var(--why-choose-content-left);
  top: calc(505 / var(--why-choose-h) * 100%);
  width: auto;
  max-width: calc(280 / var(--why-choose-w) * 100%);
  line-height: 0;
}

/* Hatch decorations (Group 9 / Group 12) */
.why-choose__hatch {
  position: absolute;
  z-index: 2;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 8px,
    #d3d3d3 8px,
    #d3d3d3 10px
  );
  pointer-events: none;
}

.why-choose__hatch--tl {
  left: 0;
  top: calc(82.5 / var(--why-choose-h) * 100%);
  width: calc(106.5 / var(--why-choose-w) * 100%);
  height: calc(104 / var(--why-choose-h) * 100%);
}

.why-choose__hatch--br {
  left: calc(1193 / var(--why-choose-w) * 100%);
  top: calc(581.5 / var(--why-choose-h) * 100%);
  width: calc(104.5 / var(--why-choose-w) * 100%);
  height: calc(103.5 / var(--why-choose-h) * 100%);
}

/* Pager (Group 11) */
.why-choose__pager {
  position: absolute;
  left: calc(1282 / var(--why-choose-w) * 100%);
  top: calc(228 / var(--why-choose-h) * 100%);
  width: calc(25 / var(--why-choose-w) * 100%);
  height: calc(270 / var(--why-choose-h) * 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.why-choose__pager-arrow {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  line-height: 0;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.why-choose__pager-arrow:hover {
  opacity: 1;
}

.why-choose__pager-arrow img {
  display: block;
  width: clamp(18px, 2vw, 28px);
  height: auto;
}

.why-choose__pager-dots {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: center;
}

.why-choose__pager-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: #686868;
  opacity: 0.3;
  cursor: pointer;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.why-choose__pager-dots button[aria-selected="true"] {
  background: #383535;
  opacity: 1;
}

/* Follow section (no banner gap) */
.why-choose__wrap--follow {
  padding-top: clamp(2rem, 4vw, 3.5rem);
}

/* Reversed slide — image left, content right */
.why-choose__canvas--reversed {
  --why-choose-content-right: calc(130 / var(--why-choose-w) * 100%);
  --why-choose-content-width: calc(343 / var(--why-choose-w) * 100%);
}

.why-choose__canvas--reversed .why-choose__panel {
  left: 0;
  right: auto;
}

.why-choose__canvas--reversed .why-choose__image-bg {
  left: calc(352.5 / var(--why-choose-w) * 100%);
}

.why-choose__canvas--reversed .why-choose__image {
  left: calc(184 / var(--why-choose-w) * 100%);
}

.why-choose__canvas--reversed .why-choose__title {
  left: auto;
  right: var(--why-choose-content-right);
  width: var(--why-choose-content-width);
  text-align: right;
}

.why-choose__canvas--reversed .why-choose__text {
  left: auto;
  right: var(--why-choose-content-right);
  width: var(--why-choose-content-width);
  text-align: right;
}

.why-choose__canvas--reversed .why-choose__cta {
  left: auto;
  right: var(--why-choose-content-right);
  width: auto;
  max-width: calc(280 / var(--why-choose-w) * 100%);
}

#natures-feast .why-choose__cta {
  top: calc(660 / var(--why-choose-h) * 100%);
}

#digital-detox .why-choose__cta {
  top: calc(545 / var(--why-choose-h) * 100%);
}

.why-choose__canvas--reversed .why-choose__pager {
  left: calc(121 / var(--why-choose-w) * 100%);
}

.why-choose__canvas--reversed .why-choose__hatch--tl {
  left: calc(130.5 / var(--why-choose-w) * 100%);
  top: calc(581.5 / var(--why-choose-h) * 100%);
  width: calc(104.5 / var(--why-choose-w) * 100%);
  height: calc(103.5 / var(--why-choose-h) * 100%);
}

.why-choose__canvas--reversed .why-choose__hatch--br {
  left: calc(1250 / var(--why-choose-w) * 100%);
  right: auto;
  top: calc(82.5 / var(--why-choose-h) * 100%);
  width: calc(106.5 / var(--why-choose-w) * 100%);
  height: calc(104 / var(--why-choose-h) * 100%);
}

/* Laptop screens — bleed grey panel/bg to viewport edge */
@media (min-width: 901px) and (max-width: 1440px) {
  .why-choose__panel {
    right: calc((100vw - 100%) / -2);
    width: calc(493 / var(--why-choose-w) * 100% + (100vw - 100%) / 2);
  }

  .why-choose__image-bg {
    width: calc(512 / var(--why-choose-w) * 100% + (100vw - 100%) / 2);
  }

  .why-choose__canvas--reversed .why-choose__panel {
    left: calc((100vw - 100%) / -2);
    right: auto;
    width: calc(493 / var(--why-choose-w) * 100% + (100vw - 100%) / 2);
  }

  .why-choose__canvas--reversed .why-choose__image-bg {
    left: calc(352.5 / var(--why-choose-w) * 100% - (100vw - 100%) / 2);
    width: calc(512 / var(--why-choose-w) * 100% + (100vw - 100%) / 2);
  }
}

@media (max-width: 900px) {
  .why-choose__wrap {
    padding-top: clamp(2.5rem, 6vw, 4rem);
  }

  .why-choose__wrap--follow {
    padding-top: clamp(1.5rem, 4vw, 2.5rem);
  }

  .why-choose__heading {
    position: static;
    transform: none;
    grid-area: heading;
    margin: 0 0 1.5rem;
    left: auto;
    font-size: clamp(2.25rem, 10vw, 72.62px);
    line-height: clamp(3.25rem, 14vw, 116.44px);
    white-space: normal;
  }

  .why-choose__canvas {
    aspect-ratio: auto;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
      "heading heading"
      "hatch title"
      "text text"
      "cta cta"
      "image image"
      "pager pager";
    column-gap: 0.75rem;
    row-gap: 1.25rem;
    padding-bottom: 1rem;
  }

  .why-choose__canvas--reversed {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "title hatch"
      "text text"
      "cta cta"
      "image image"
      "pager pager";
  }

  .why-choose--follow .why-choose__canvas:not(.why-choose__canvas--reversed) {
    grid-template-areas:
      "hatch title"
      "text text"
      "cta cta"
      "image image"
      "pager pager";
  }

  .why-choose__panel,
  .why-choose__image-bg,
  .why-choose__hatch--br {
    display: none;
  }

  .why-choose__pager {
    position: static;
    grid-area: pager;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    width: 100%;
    height: auto;
    margin-top: 0.75rem;
  }

  .why-choose__pager-arrow:first-child img {
    transform: rotate(-90deg);
  }

  .why-choose__pager-arrow:last-child img {
    transform: rotate(-90deg);
  }

  .why-choose__pager-dots {
    flex-direction: row;
    flex: 0;
    gap: 14px;
  }

  .why-choose__hatch--tl {
    position: relative;
    left: auto;
    top: auto;
    grid-area: hatch;
    width: 72px;
    height: 70px;
  }

  .why-choose__title {
    position: static;
    grid-area: title;
    width: 100%;
    height: auto;
    align-self: center;
    font-size: clamp(2.5rem, 10vw, 3.75rem);
    line-height: 1.05;
  }

  .why-choose__text {
    position: static;
    grid-area: text;
    width: 100%;
    height: auto;
    margin-top: 0.75rem;
    margin-bottom: 0.5rem;
    font-family: "Inter", var(--font-body);
    font-size: clamp(1rem, 4vw, 22px);
    line-height: clamp(1.625rem, 6.5vw, 36px);
    letter-spacing: 0;
    max-width: 22rem;
  }

  .why-choose__cta {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    grid-area: cta;
    width: max-content;
    max-width: 100%;
    height: var(--btn-sketch-h);
    min-height: var(--btn-sketch-h);
    justify-self: start;
    z-index: 2;
  }

  #natures-feast .why-choose__cta,
  #digital-detox .why-choose__cta {
    top: auto;
  }

  .why-choose__cta.btn-sketch--lg {
    --btn-sketch-h: clamp(2.75rem, 9vw, 3.5rem);
    --btn-sketch-font: clamp(1.25rem, 4.8vw, 1.625rem);
  }

  .why-choose__image {
    position: static;
    grid-area: image;
    width: 100%;
    height: auto;
    margin-top: 0.5rem;
  }

  .why-choose__image-slides {
    position: relative;
    width: 100%;
    aspect-ratio: 680 / 553;
    height: auto;
  }

  .why-choose__image-media {
    width: 100%;
    height: 100%;
    aspect-ratio: 680 / 553;
  }

  .why-choose__image-layer {
    object-fit: cover;
  }

  .why-choose__image--reveal {
    touch-action: pan-y;
  }

  /* Modern Comfort — mirrored mobile layout */
  .why-choose__canvas--reversed .why-choose__hatch--tl {
    display: none;
  }

  .why-choose__canvas--reversed .why-choose__hatch--br {
    display: block;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    grid-area: hatch;
    width: 72px;
    height: 70px;
    justify-self: end;
    align-self: start;
  }

  .why-choose__canvas--reversed .why-choose__title {
    left: auto;
    right: auto;
    width: 100%;
    text-align: right;
    justify-self: end;
    align-self: start;
  }

  .why-choose__canvas--reversed .why-choose__text {
    left: auto;
    right: auto;
    width: 100%;
    max-width: 22rem;
    text-align: right;
    margin-left: auto;
    margin-right: 0;
  }

  .why-choose__canvas--reversed .why-choose__cta {
    left: auto;
    right: auto;
    top: auto;
    width: max-content;
    max-width: 100%;
    margin-left: auto;
    justify-self: end;
  }
}

@media (max-width: 768px) {
  .hero__content {
    left: 50%;
    bottom: clamp(3.5rem, 10vh, 6rem);
    gap: 1.25rem;
  }

  .hero__title-line {
    font-size: clamp(32px, 8vw, 58px);
    line-height: 1.15;
  }

  .hero__title-line--lg {
    font-size: clamp(40px, 10vw, 76px);
    line-height: 1.1;
    white-space: nowrap;
  }

  .site-header__logo img {
    height: 36px;
  }
}

@media (max-width: 480px) {
  .hero__content {
    top: calc(var(--header-height) + (100% - var(--header-height)) / 2);
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -50%);
    gap: 0.85rem;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
  }

  .hero__title-line {
    font-size: clamp(28px, 7.2vw, 36px);
    line-height: 1.1;
  }

  .hero__title-line--lg {
    font-size: clamp(32px, 8.5vw, 42px);
    line-height: 1.05;
  }

  .hero__mode-toggle__tooltip,
  .hero__audio-toggle__tooltip {
    left: auto;
    right: 0;
    bottom: calc(100% + 8px);
    padding: 0.22rem 0.4rem;
    font-size: clamp(0.62rem, 2.9vw, 0.72rem);
    letter-spacing: 0.02em;
    transform: translateY(6px);
    max-width: min(9.5rem, calc(100vw - 2rem));
    white-space: nowrap;
    text-align: center;
  }

  .hero__audio-toggle__tooltip {
    left: 0;
    right: auto;
  }
}

@media (max-width: 480px) and (hover: hover) {
  .hero__mode-toggle:hover .hero__mode-toggle__tooltip,
  .hero__mode-toggle:focus-visible .hero__mode-toggle__tooltip,
  .hero__audio-toggle:hover .hero__audio-toggle__tooltip,
  .hero__audio-toggle:focus-visible .hero__audio-toggle__tooltip {
    transform: translateY(0);
  }
}

@media (max-width: 480px) and (hover: none) {
  .hero__mode-toggle:focus-visible .hero__mode-toggle__tooltip,
  .hero__mode-toggle:active .hero__mode-toggle__tooltip,
  .hero__audio-toggle:focus-visible .hero__audio-toggle__tooltip,
  .hero__audio-toggle:active .hero__audio-toggle__tooltip {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── What We Offer ─────────────────────────────────────── */

.what-we-offer {
  --offer-w: 1428;
  --offer-image-w: 776;
  --offer-image-h: 613;
  --offer-image-left: -55;
  background: #f9f8f8;
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 3rem);
}

.what-we-offer__inner {
  max-width: calc(var(--why-choose-w) * 1px);
  margin: 0 auto;
}

.what-we-offer__header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.what-we-offer__header-badge {
  margin-bottom: 1.25rem;
}

.house-rules .what-we-offer__tab {
  flex-basis: 7.25rem;
}

.what-we-offer__heading {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
}

.what-we-offer__subheading {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.65);
}

.what-we-offer__tablist {
  display: flex;
  align-items: stretch;
  gap: 0;
  width: 100%;
  max-width: 90%;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  padding: 0.35rem;
  background: var(--color-white);
  border-radius: 14px;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.08);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.what-we-offer__tablist::-webkit-scrollbar {
  display: none;
}

.what-we-offer__tab {
  position: relative;
  flex: 1 0 8.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 7.5rem;
  padding: 1rem 0.6rem 1.25rem;
  border: none;
  background: transparent;
  color: #8a8a8a;
  cursor: pointer;
  border-radius: 10px;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease;
}

.what-we-offer__tab:not(:last-child)::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 75%;
  background: #e8e8e8;
  pointer-events: none;
}

.what-we-offer__tab:not(.is-active):hover {
  background: rgba(0, 0, 0, 0.04);
  color: #5a5a5a;
}

.what-we-offer__tab:not(.is-active):hover .what-we-offer__tab-icon::after {
  transform: scale(1.06);
  opacity: 0.9;
}

.what-we-offer__tab:last-child {
  border-right: none;
}

.what-we-offer__tab.is-active {
  border-radius: 10px;
  background: #1a1a1a;
  color: var(--color-white);
}

.what-we-offer__tab.is-active::before,
.what-we-offer__tab:has(+ .what-we-offer__tab.is-active)::before {
  display: none;
}

.what-we-offer__tab.is-active + .what-we-offer__tab {
  border-left: none;
}

.what-we-offer__tab.is-active::after {
  content: "";
  position: absolute;
  bottom: 0.55rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2rem;
  height: 3px;
  border-radius: 2px;
  background: var(--color-white);
}

.what-we-offer__tab-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
}

.what-we-offer__tab-icon img {
  opacity: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.what-we-offer__tab-icon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: currentColor;
  mask: var(--tab-icon) center / contain no-repeat;
  -webkit-mask: var(--tab-icon) center / contain no-repeat;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease,
    background-color 0.25s ease;
}

.what-we-offer__tab.is-active .what-we-offer__tab-icon::after {
  background: var(--color-white);
}

.house-rules [data-rules-tab="environmental"] .what-we-offer__tab-icon::after,
.house-rules [data-rules-tab="pet-policy"] .what-we-offer__tab-icon::after {
  transform: scale(0.86);
}

.house-rules [data-rules-tab="smoking"] .what-we-offer__tab-icon::after {
  transform: scale(1.08);
}

.house-rules [data-rules-tab="environmental"]:not(.is-active):hover .what-we-offer__tab-icon::after,
.house-rules [data-rules-tab="pet-policy"]:not(.is-active):hover .what-we-offer__tab-icon::after {
  transform: scale(0.91);
}

.house-rules [data-rules-tab="smoking"]:not(.is-active):hover .what-we-offer__tab-icon::after {
  transform: scale(1.12);
}

.house-rules [data-rules-tab="environmental"].is-active .what-we-offer__tab-icon::after,
.house-rules [data-rules-tab="pet-policy"].is-active .what-we-offer__tab-icon::after {
  transform: scale(0.86);
}

.house-rules [data-rules-tab="smoking"].is-active .what-we-offer__tab-icon::after {
  transform: scale(1.08);
}

.what-we-offer__tab-label {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 1.15vw, 0.875rem);
  line-height: 1.3;
  text-align: center;
}

.what-we-offer__panels {
  position: relative;
  display: grid;
  overflow: visible;
}

.what-we-offer__panel {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: calc(var(--offer-image-w) / var(--offer-w) * 100%) minmax(0, 1fr);
  gap: 0;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 0;
  transition:
    opacity 0.72s cubic-bezier(0.45, 0, 0.55, 1),
    visibility 0.72s cubic-bezier(0.45, 0, 0.55, 1);
}

.what-we-offer__panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.what-we-offer__panel.is-active .what-we-offer__content {
  animation: offer-panel-rise 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.08s;
}

@keyframes offer-panel-rise {
  from {
    opacity: 0.35;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .what-we-offer__panel {
    transition: none;
  }

  .what-we-offer__panel.is-active .what-we-offer__content {
    animation: none;
  }
}

.what-we-offer__media {
  width: 100%;
  aspect-ratio: var(--offer-image-w) / var(--offer-image-h);
  margin-left: calc(var(--offer-image-left) / var(--offer-image-w) * 100%);
}

.what-we-offer__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.what-we-offer__media--reveal {
  position: relative;
  overflow: hidden;
  will-change: opacity;
}

.what-we-offer__media--reveal .why-choose__image-media {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  --reveal-size: var(--reveal-brush-size);
}

.what-we-offer__media--reveal .why-choose__image-layer {
  object-fit: contain;
  object-position: left center;
  backface-visibility: hidden;
}

@media (hover: hover) {
  .what-we-offer__media--reveal {
    cursor: crosshair;
  }
}

.what-we-offer__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0;
  padding-left: clamp(1rem, 2vw, 2rem);
}

.what-we-offer__badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: #e8f3e6;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #3d6b4f;
}

.what-we-offer__title {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #000;
}

.what-we-offer__desc {
  margin: 0 0 1.5rem;
  max-width: 28rem;
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.4vw, 1.0625rem);
  line-height: 1.65;
  color: rgba(0, 0, 0, 0.7);
}

.what-we-offer__features {
  list-style: none;
  margin: 0 0 1.75rem;
  padding: 0;
  width: 100%;
  max-width: 28rem;
  border: 1px solid #ececec;
  border-radius: 12px;
  background: #fafafa;
  overflow: hidden;
}

.what-we-offer__feature {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
}

.what-we-offer__feature:not(:last-child) {
  border-bottom: 1px solid #ececec;
}

.what-we-offer__feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  margin-top: 0;
  color: #666;
}

.what-we-offer__feature-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.what-we-offer__feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.4;
  color: rgba(0, 0, 0, 0.55);
}

.what-we-offer__feature-text strong {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #000;
}

/* Large screens — panel offset matches Nature's Feast grey box + slight right nudge */
@media (min-width: 1441px) {
  .what-we-offer {
    --offer-panel-offset: 10;
    padding-left: 0;
    padding-right: 0;
  }

  .what-we-offer__inner {
    padding-inline: clamp(1rem, 3vw, 3rem);
  }

  .what-we-offer__panel {
    grid-template-columns:
      calc(var(--offer-panel-offset) / var(--why-choose-w) * 100%)
      calc(var(--offer-image-w) / var(--offer-w) * 100%)
      minmax(0, 1fr);
    padding-left: 0;
  }

  .what-we-offer__media {
    grid-column: 2;
    margin-left: 0;
    width: 100%;
  }

  .what-we-offer__content {
    grid-column: 3;
    padding-left: clamp(2.5rem, 4vw, 4rem);
  }
}

@media (max-width: 900px) {
  .what-we-offer__tablist {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: none;
    touch-action: pan-x;
  }

  .what-we-offer__tab {
    /* ~3 full tabs + half of the next so scroll is discoverable */
    flex: 0 0 calc(100% / 3.5);
    min-width: 5.5rem;
    scroll-snap-align: none;
    min-height: 6.25rem;
    padding: 0.75rem 0.45rem 1rem;
    gap: 0.5rem;
  }

  .what-we-offer__tab-icon {
    width: 2.75rem;
    height: 2.75rem;
  }

  .what-we-offer__tab-label {
    font-size: 0.6875rem;
    line-height: 1.2;
  }

  .what-we-offer__panel {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .what-we-offer__media,
  .what-we-offer__media--reveal {
    width: 100%;
    margin-left: 0;
    aspect-ratio: var(--offer-image-w) / var(--offer-image-h);
  }

  .what-we-offer__media--reveal .why-choose__image-media {
    width: 100%;
    height: 100%;
    aspect-ratio: var(--offer-image-w) / var(--offer-image-h);
  }

  .what-we-offer__media img,
  .what-we-offer__media--reveal .why-choose__image-layer {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .what-we-offer__content {
    padding-left: 0;
  }
}

@media (max-width: 600px) {
  .what-we-offer__tab {
    flex: 0 0 calc(100% / 3.5);
    min-width: 5rem;
    min-height: 5.5rem;
    padding: 0.6rem 0.35rem 0.85rem;
    gap: 0.35rem;
  }

  .what-we-offer__tab-icon {
    width: 2.35rem;
    height: 2.35rem;
  }

  .what-we-offer__tab-label {
    font-size: 0.625rem;
  }

  .what-we-offer__tab.is-active::after {
    width: 1.5rem;
    bottom: 0.35rem;
  }
}

/* ── Testimonials ───────────────────────────────────────── */

.testimonials {
  --testimonial-accent: #9a4538;
  --testimonial-card: #141414;
  --testimonial-nav-size: 3.25rem;
  --testimonial-nav-offset: clamp(4.25rem, 9vw, 5.75rem);
  --testimonial-rule-h: clamp(11rem, 26vw, 15rem);
  --testimonial-rule-shift: clamp(7.75rem, 12vw, 10rem);
  background: var(--color-white);
  padding: clamp(3.5rem, 7vw, 5.5rem) clamp(1rem, 4vw, 3rem);
  overflow: hidden;
  scroll-margin-top: clamp(4rem, 12vw, 5.5rem);
}

.testimonials__wrap {
  position: relative;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: start;
  gap: clamp(1rem, 3vw, 2.5rem);
  max-width: 1180px;
  margin: 0 auto;
}

.testimonials__label {
  margin: clamp(1.45rem, 2.8vw, 2rem) 0 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 3.125rem);
  line-height: 1;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  color: #000;
}

.testimonials__rule {
  width: 1px;
  align-self: start;
  height: var(--testimonial-rule-h);
  margin: calc(
      var(--testimonial-nav-offset) + (var(--testimonial-nav-size) * 0.5) -
        (var(--testimonial-rule-h) * 0.5) + var(--testimonial-rule-shift)
    )
    0 0 0.75rem;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0),
    rgba(180, 180, 180, 0.55) 12%,
    rgba(180, 180, 180, 0.55) 88%,
    rgba(0, 0, 0, 0)
  );
  box-shadow: 1px 0 0 rgba(255, 255, 255, 0.85);
}

.testimonials__canvas {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, min(100%, 50rem)) auto;
  grid-template-areas:
    ". eyebrow ."
    "prev slides next"
    ". dots .";
  justify-content: center;
  align-items: center;
  column-gap: 0;
  min-width: 0;
  width: 100%;
}

.testimonials__canvas:focus {
  outline: none;
}

.testimonials__eyebrow {
  grid-area: eyebrow;
  justify-self: center;
  margin: 0 0 0.65rem;
  font-family: var(--font-body);
  font-size: clamp(0.7rem, 1.1vw, 0.8125rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--testimonial-accent);
}

.testimonials__slides {
  grid-area: slides;
  position: relative;
  width: 100%;
  min-width: 0;
}

.testimonials__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(0);
  transition:
    opacity 1s ease,
    transform 1s ease,
    visibility 1s ease;
}

.testimonials__slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  z-index: 1;
}

.testimonials__slide.is-exit-next:not(.is-active) {
  transform: translateX(-1.1rem);
}

.testimonials__slide.is-exit-prev:not(.is-active) {
  transform: translateX(1.1rem);
}

.testimonials__slide.is-enter-next:not(.is-active) {
  transform: translateX(1.1rem);
}

.testimonials__slide.is-enter-prev:not(.is-active) {
  transform: translateX(-1.1rem);
}

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

.testimonials__name {
  margin: 0 0 clamp(1.35rem, 3vw, 1.85rem);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  line-height: 0.95;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #111;
}

.testimonials__quote {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.35rem, 3vw, 2.15rem)
    clamp(1.35rem, 2.5vw, 1.75rem);
  border-radius: 1.75rem;
  background: var(--testimonial-card);
  color: var(--color-white);
  text-align: left;
}

.testimonials__mark {
  display: block;
  width: clamp(1.75rem, 3vw, 2.25rem);
  height: auto;
  margin: 0 0 clamp(0.85rem, 2vw, 1.15rem);
  flex-shrink: 0;
}

.testimonials__quote-scroll {
  height: calc(1.7em * 5);
  font-size: clamp(0.9375rem, 1.35vw, 1.0625rem);
  line-height: 1.7;
}

.testimonials__quote-body {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.45) var(--testimonial-card);
  font-size: inherit;
  line-height: inherit;
}

.testimonials__quote-body::-webkit-scrollbar {
  width: 4px;
  background: var(--testimonial-card);
}

.testimonials__quote-body::-webkit-scrollbar-track {
  background: var(--testimonial-card);
}

.testimonials__quote-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.45);
  border-radius: 999px;
}

.testimonials__quote-body::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

.testimonials__quote-body p {
  margin: 0;
  font-family: var(--font-body);
  font-size: inherit;
  font-style: italic;
  font-weight: 400;
  line-height: inherit;
  color: rgba(255, 255, 255, 0.92);
}

.testimonials__meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(1.15rem, 2.4vw, 1.5rem);
  flex-shrink: 0;
}

.testimonials__meta-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
  min-width: 0;
}

.testimonials__stars {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.testimonials__google {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  flex-shrink: 0;
  box-sizing: border-box;
  min-height: 2.25rem;
  padding: 0.4rem 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.testimonials__google:hover,
.testimonials__google:focus-visible {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.testimonials__google:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.55);
  outline-offset: 3px;
}

.testimonials__google img {
  display: block;
  width: 1.1rem;
  height: 1.1rem;
}

.testimonials__stars svg {
  width: 0.9rem;
  height: 0.9rem;
  fill: var(--testimonial-accent);
}

.testimonials__verified {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.78);
}

.testimonials__pin {
  width: 0.85rem;
  height: 0.85rem;
  flex-shrink: 0;
  fill: rgba(255, 255, 255, 0.78);
}

.testimonials__nav {
  z-index: 2;
  display: grid;
  place-items: center;
  width: var(--testimonial-nav-size);
  height: var(--testimonial-nav-size);
  margin: var(--testimonial-nav-offset) 0 0;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--color-white);
  color: #1a1a1a;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: box-shadow 0.2s ease;
}

.testimonials__nav svg {
  display: block;
  width: 1.15rem;
  height: 1.15rem;
}

.testimonials__nav--prev {
  grid-area: prev;
  position: relative;
  z-index: 3;
  margin-right: 2.5rem;
}

.testimonials__nav--next {
  grid-area: next;
  position: relative;
  z-index: 3;
  margin-left: 2.5rem;
}

.testimonials__nav:hover {
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.16);
}

.testimonials__nav:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 3px;
}

.testimonials__dots {
  grid-area: dots;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  margin-top: clamp(1.35rem, 3vw, 1.85rem);
}

.testimonials__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #d5d5d5;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.testimonials__dot.is-active {
  background: var(--testimonial-accent);
  transform: scale(1.15);
}

.testimonials__dot:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 3px;
}

@media (max-width: 700px) {
  .testimonials {
    --testimonial-nav-size: 2.75rem;
    padding: clamp(2.75rem, 8vw, 3.5rem) clamp(1rem, 4vw, 1.25rem);
  }

  .testimonials__wrap {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .testimonials__label {
    writing-mode: horizontal-tb;
    transform: none;
    text-align: center;
    font-size: clamp(2rem, 7vw, 2.75rem);
    letter-spacing: 0.2em;
    margin: 0;
  }

  .testimonials__rule {
    display: none;
  }

  .testimonials__canvas {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
  }

  .testimonials__eyebrow {
    text-align: center;
  }

  .testimonials__slides {
    width: 100%;
  }

  .testimonials__name {
    font-size: clamp(2.25rem, 10vw, 3rem);
    letter-spacing: 0.1em;
  }

  .testimonials__quote {
    border-radius: 1.35rem;
    padding: 1.35rem 1.25rem 1.25rem;
  }

  .testimonials__nav {
    display: none;
  }

  .testimonials__dots {
    margin-top: 1.35rem;
  }
}

/* ── Gallery ────────────────────────────────────────────── */

.gallery {
  --gallery-gap: clamp(0.75rem, 1.5vw, 1.25rem);
  background: var(--color-white);
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 3vw, 3rem)
    clamp(1.5rem, 3vw, 2.5rem);
  scroll-margin-top: clamp(4rem, 12vw, 5.5rem);
}

.gallery__inner {
  max-width: calc(var(--why-choose-w) * 1px);
  margin: 0 auto;
}

.gallery__heading {
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
  color: #000;
}

.gallery__rows {
  display: flex;
  flex-direction: column;
  gap: var(--gallery-gap);
}

.gallery__row--top {
  display: flex;
  align-items: stretch;
  gap: var(--gallery-gap);
}

.gallery__row-top-side {
  display: flex;
  flex: 401 1 0;
  flex-direction: column;
  gap: var(--gallery-gap);
  min-width: 0;
}

.gallery__row--bottom {
  display: flex;
  align-items: stretch;
  gap: var(--gallery-gap);
}

.gallery__item {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  min-height: 0;
  transition:
    box-shadow 0.35s ease,
    transform 0.35s ease;
}

.gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transition:
    transform 0.55s ease,
    filter 0.35s ease;
}

.gallery__item--reveal .why-choose__image-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  --reveal-size: var(--reveal-brush-size-sm);
}

.gallery__item--reveal .why-choose__image-layer {
  object-fit: cover;
  object-position: center;
  transition:
    transform 0.55s ease,
    filter 0.35s ease,
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) {
  .gallery__item:hover {
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.14);
    transform: translateY(-3px);
  }

  .gallery__item:hover img,
  .gallery__item--reveal:hover .why-choose__image-layer {
    transform: scale(1.06);
    filter: brightness(1.04);
  }

  .gallery__item--reveal {
    cursor: pointer;
  }
}

.gallery__item--1 {
  flex: 876 1 0;
  min-width: 0;
  /* Figma: 876 × 619 */
  aspect-ratio: 876 / 619;
  height: auto;
}

.gallery__item--2,
.gallery__item--3 {
  flex: 1 1 0;
  min-height: 0;
}

.gallery__item--4,
.gallery__item--5 {
  flex: 257 1 0;
  min-width: 0;
  /* Figma: 257 × 386 */
  aspect-ratio: 257 / 386;
  min-height: 0;
  height: auto;
}

.gallery__item--6 {
  flex: 785 1 0;
  min-width: 0;
  min-height: 0;
  height: auto;
  align-self: stretch;
}

@media (max-width: 900px) {
  .gallery {
    --gallery-gap: clamp(0.45rem, 1.1vw, 0.75rem);
    padding: clamp(2.5rem, 5vw, 4rem) clamp(0.85rem, 2.5vw, 2rem)
      clamp(1.25rem, 2.5vw, 2rem);
  }

  .gallery__heading {
    margin-bottom: clamp(1.5rem, 3.5vw, 2.5rem);
    font-size: clamp(2.25rem, 5vw, 3.5rem);
  }
}

@media (max-width: 640px) {
  .gallery {
    --gallery-gap: 0.35rem;
    padding: clamp(2rem, 7vw, 3rem) clamp(0.65rem, 3vw, 1rem)
      clamp(1rem, 3vw, 1.5rem);
  }

  .gallery__heading {
    margin-bottom: clamp(1rem, 4vw, 1.5rem);
    font-size: clamp(2rem, 8vw, 2.75rem);
    letter-spacing: 0.06em;
  }

  .gallery__item--1 {
    aspect-ratio: 876 / 619;
  }

  .gallery__item {
    border-radius: 6px;
  }
}

/* ── Gallery lightbox ───────────────────────────────────── */

body.has-gallery-lightbox {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.5rem, 1.5vw, 1.25rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.gallery-lightbox[hidden] {
  display: none;
}

.gallery-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox.is-open[hidden] {
  display: flex;
}

.gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 10, 8, 0.88);
  cursor: pointer;
}

.gallery-lightbox__dialog {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100%, 1480px);
  max-height: min(96vh, 1100px);
  padding: 2.75rem 2.5rem 0.5rem;
  outline: none;
}

.gallery-lightbox__close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.gallery-lightbox__close:hover,
.gallery-lightbox__close:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.gallery-lightbox__stage {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-height: min(88vh, 980px);
  min-height: 0;
  touch-action: pan-y;
}

.gallery-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: min(88vh, 980px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 1rem;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  opacity: 1;
  transition: opacity 0.2s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.gallery-lightbox__image.is-fading {
  opacity: 0;
}

.gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.gallery-lightbox__nav svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.gallery-lightbox__nav--prev {
  left: 0;
}

.gallery-lightbox__nav--next {
  right: 0;
}

.gallery-lightbox__nav:hover,
.gallery-lightbox__nav:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.32);
  outline: none;
}

.gallery-lightbox__counter {
  margin: 1rem 0 0;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 700px) {
  .gallery-lightbox {
    padding: 0.5rem;
  }

  .gallery-lightbox__dialog {
    width: 100%;
    max-height: 98vh;
    padding: 2.75rem 0.25rem 0.5rem;
  }

  .gallery-lightbox__stage {
    max-height: min(82vh, 820px);
  }

  .gallery-lightbox__image {
    max-height: min(82vh, 820px);
    border-radius: 1rem;
  }

  .gallery-lightbox__nav--prev {
    left: 0.15rem;
  }

  .gallery-lightbox__nav--next {
    right: 0.15rem;
  }

  .gallery-lightbox__counter {
    margin-top: 0.75rem;
  }
}

/* ── Ready to Slowdown ──────────────────────────────────── */

.slowdown {
  background: #000000;
  scroll-margin-top: clamp(4rem, 12vw, 5.5rem);
}

.slowdown__inner {
  display: grid;
}

.slowdown__scene,
.slowdown__content {
  grid-area: 1 / 1;
}

.slowdown__scene {
  position: relative;
  width: 100%;
  line-height: 0;
}

.slowdown__image {
  display: block;
  width: 100%;
  height: auto;
  min-height: clamp(16rem, 42vw, 32rem);
  object-fit: cover;
  object-position: center bottom;
}

.slowdown__fade {
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.slowdown__fade--overlay {
  inset: 0;
  background: linear-gradient(360deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.slowdown__fade--top {
  top: 0;
  height: 50%;
  background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.slowdown__content {
  z-index: 1;
  align-self: center;
  justify-self: center;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: clamp(1rem, 2.5vw, 1.75rem);
  padding: 0 clamp(1rem, 3vw, 3rem);
  pointer-events: none;
}

.slowdown__content a {
  pointer-events: auto;
}

.slowdown__heading {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 5.75vw, 82.57px);
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-transform: capitalize;
  white-space: nowrap;
  color: #fff;
}

.slowdown__text {
  margin: 0;
  max-width: 42rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.5vw, 32px);
  line-height: 42px;
  letter-spacing: 0;
  text-align: center;
  text-transform: capitalize;
  color: #fff;
}

@media (max-width: 640px) {
  .slowdown__content {
    gap: clamp(0.85rem, 4vw, 1.25rem);
  }

  .slowdown__heading {
    font-size: clamp(2rem, 9.5vw, 82.57px);
  }

  .slowdown__text {
    line-height: 1.31;
    padding-inline: 0.5rem;
  }
}

/* ── Coming Soon modal ──────────────────────────────────── */

body.has-coming-soon {
  overflow: hidden;
}

.coming-soon {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.coming-soon[hidden] {
  display: none;
}

.coming-soon.is-open {
  opacity: 1;
  visibility: visible;
}

.coming-soon.is-open[hidden] {
  display: flex;
}

.coming-soon__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.48);
  cursor: pointer;
}

.coming-soon__dialog {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: min(100%, 420px);
  padding: clamp(2rem, 4vw, 2.75rem) clamp(1.5rem, 4vw, 2.25rem)
    clamp(1.75rem, 3.5vw, 2.25rem);
  border: 1px solid #e4e4e4;
  border-radius: 12px;
  background: #fff;
  text-align: center;
  box-shadow: 0 18px 48px rgba(26, 26, 26, 0.12);
  outline: none;
  transform: translateY(10px) scale(0.98);
  transition: transform 0.22s ease;
}

.coming-soon.is-open .coming-soon__dialog {
  transform: translateY(0) scale(1);
}

.coming-soon__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #666;
  font-family: var(--font-body);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}

.coming-soon__close:hover,
.coming-soon__close:focus-visible {
  color: #1a1a1a;
  background: #f8f8f8;
}

.coming-soon__eyebrow {
  margin: 0 0 0.65rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9a9a;
}

.coming-soon__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 3.25rem);
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
}

.coming-soon__text {
  margin: 0 0 1.35rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #555;
}

.coming-soon__contacts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.coming-soon__link {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  padding-bottom: 0.1rem;
  transition: opacity 0.15s ease;
}

.coming-soon__link:hover,
.coming-soon__link:focus-visible {
  opacity: 0.7;
}

/* ── Footer ─────────────────────────────────────────────── */

.site-footer {
  --footer-pad-x: clamp(1.5rem, 4vw, 3rem);
  --footer-col-gap: clamp(2rem, 5vw, 4rem);
  background: #000000;
  color: #fff;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--footer-col-gap);
  max-width: calc(var(--why-choose-w) * 1px);
  margin: 0 auto;
  padding: clamp(2rem, 4.5vw, 3.25rem) var(--footer-pad-x)
    clamp(1.75rem, 3.5vw, 2.5rem);
}

.site-footer__col {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-footer__col-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  width: max-content;
  max-width: 100%;
}

.site-footer__col--contact .site-footer__col-inner {
  min-width: min(100%, 20rem);
}

.site-footer__heading {
  margin: 0 0 clamp(1.25rem, 2.5vw, 2rem);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}

.site-footer__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.site-footer__list--contact {
  width: 0;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.site-footer__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 100%;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.45;
  color: #8a8a8a;
  transition: color 0.2s ease;
}

a.site-footer__item:hover {
  color: rgba(255, 255, 255, 0.88);
}

a.site-footer__item:hover .site-footer__icon {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.site-footer__item--static {
  cursor: default;
  align-items: flex-start;
}

.site-footer__icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: #8a8a8a;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.site-footer__item--static .site-footer__icon {
  margin-top: 0.05rem;
}

.site-footer__icon svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}

.site-footer__item-text {
  min-width: 0;
  overflow-wrap: break-word;
}

.site-footer__link,
.site-footer__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0;
  color: #8a8a8a;
}

.site-footer__link {
  display: inline-block;
  padding-block: 0.35rem;
  transition: color 0.2s ease;
}

.site-footer__link:hover {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer__social {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem;
}

.site-footer__social-link {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: #8a8a8a;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.site-footer__social-link svg {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}

.site-footer__social-link:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.site-footer__bottom {
  background: #0a0c12;
}

.site-footer__bottom-inner {
  box-sizing: border-box;
  position: relative;
  width: 100%;
  max-width: calc(var(--why-choose-w) * 1px);
  margin: 0 auto;
  padding: 1rem var(--footer-pad-x) 1.35rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--footer-col-gap);
  align-items: start;
}

.site-footer__bottom-inner::before {
  display: none;
}

.site-footer__heading--sizer {
  display: block;
  height: 0;
  margin: 0;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
}

.site-footer__col-inner--connect-bottom {
  align-items: stretch;
}

.site-footer__col-inner--connect-bottom .site-footer__legal {
  /* Size to CONNECT heading width; right-align so "Conditions" ends with "CT" */
  width: 0;
  min-width: 100%;
  justify-content: flex-end;
  flex-wrap: nowrap;
  overflow: visible;
}

.site-footer__legal-link,
.site-footer__legal-sep {
  flex: 0 0 auto;
}

.site-footer__copy {
  margin: 0;
  /* Stay within Contact column width so the left edge matches CONTACT */
  width: 0;
  min-width: 100%;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #8a8a8a;
}

.site-footer__powered {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1;
  color: #8a8a8a;
  white-space: nowrap;
}

.site-footer__powered-link {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.site-footer__powered-logo {
  display: block;
  height: 18px;
  width: auto;
  filter: grayscale(1) brightness(0.85);
  opacity: 0.82;
  transition:
    filter 0.2s ease,
    opacity 0.2s ease;
}

.site-footer__powered-link:hover .site-footer__powered-logo {
  opacity: 1;
  filter: grayscale(1) brightness(1);
}

.site-footer__legal {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.55rem;
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.4;
  text-align: right;
  white-space: nowrap;
}

.site-footer__legal-link {
  color: #8a8a8a;
  transition: color 0.2s ease;
}

.site-footer__legal-link:hover {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer__legal-sep {
  color: #5a5a5a;
}

@media (max-width: 768px) {
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: clamp(2rem, 6vw, 2.75rem);
    padding-block: clamp(2rem, 5vw, 2.75rem);
  }

  .site-footer__col {
    align-items: flex-start;
  }

  .site-footer__col-inner {
    width: 100%;
  }

  .site-footer__list--contact {
    width: auto;
    min-width: 0;
  }

  .site-footer__link,
  .site-footer__text {
    line-height: 1.45;
  }

  .site-footer__bottom-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 0.85rem;
  }

  .site-footer__bottom-inner .site-footer__col {
    align-items: center;
  }

  .site-footer__bottom-inner .site-footer__col-inner {
    width: max-content;
    max-width: 100%;
    align-items: center;
  }

  .site-footer__col--contact .site-footer__col-inner {
    min-width: 0;
  }

  .site-footer__heading--sizer {
    display: none;
  }

  .site-footer__copy {
    width: auto;
    min-width: 0;
  }

  .site-footer__col-inner--connect-bottom .site-footer__legal {
    width: auto;
    min-width: 0;
  }

  .site-footer__legal {
    justify-content: center;
    width: auto;
    white-space: normal;
  }
}

/* ── House Rules page ───────────────────────────────────── */

.page-house-rules {
  background: #fff;
}

.page-house-rules .slowdown__fade {
  display: none;
}

.hr-banner {
  position: relative;
  margin-top: var(--header-height);
  width: 100%;
  aspect-ratio: 1440 / 600;
  min-height: 22rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}

.hr-banner__media {
  position: absolute;
  inset: 0;
}

.page-house-rules .hr-banner__media .hero__layer--sketch {
  background-image: url("/images/house-rules/house-rules-banner-sketch.webp");
}

.page-house-rules .hr-banner__media .hero__layer--color {
  background-image: url("/images/house-rules/house-rules-banner-color.webp");
}

.page-house-rules .hr-banner__media .hero__layer {
  background-size: cover;
  background-position: center center;
  animation: none;
}

.page-house-rules .hero__mode-toggle__preview--color {
  background-image: url("/images/house-rules/house-rules-banner-color.webp");
}

.page-house-rules .hero__mode-toggle__preview--sketch {
  background-image: url("/images/house-rules/house-rules-banner-sketch.webp");
}

.hr-banner__content {
  position: relative;
  z-index: 1;
  width: min(100%, 48rem);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 4vw, 2rem) clamp(2rem, 5vw, 3.25rem);
  text-align: center;
}

.hr-banner__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(3.25rem, 9vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hr-banner__subtitle {
  margin: 0 auto;
  max-width: none;
  width: max-content;
  max-width: min(100%, 42rem);
  font-family: var(--font-body);
  font-size: clamp(0.8rem, 1.55vw, 1.125rem);
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
  white-space: nowrap;
}

.hr-intro {
  display: flex;
  justify-content: center;
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
  padding-bottom: 56px;
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.hr-intro__inner {
  box-sizing: border-box;
  width: min(100%, 1180px);
  min-height: 212px;
  margin: 0 auto;
  padding: 0 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hr-intro__heading {
  margin: 0 0 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.85rem, 4.2vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
  white-space: nowrap;
}

.hr-intro__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.6vw, 1.125rem);
  line-height: 1.75;
  color: #4a4a4a;
}

.hr-rules {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.hr-rule {
  box-sizing: border-box;
  width: min(100%, 1180px);
  min-height: 493px;
  margin: 0 auto;
  padding: 56px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
  border-top: 1px solid #e7e9ef;
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.hr-rule--flip .hr-rule__media {
  order: 2;
}

.hr-rule--flip .hr-rule__content {
  order: 1;
}

.hr-rule__media {
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #e8e8e8;
  height: 100%;
  max-height: calc(493px - 112px);
}

.hr-rule__media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  aspect-ratio: 720 / 560;
  object-fit: cover;
  display: block;
}

.hr-rule__media--reveal {
  cursor: crosshair;
}

.hr-rule__media--reveal .why-choose__image-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
  aspect-ratio: 720 / 560;
  --reveal-size: var(--reveal-brush-size);
}

.hr-rule__media--reveal .why-choose__image-layer {
  min-height: 320px;
}

.hr-rule__content {
  padding-inline: 0;
}

.hr-rule__title {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0 0 1.35rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
}

.hr-rule__icon {
  flex: 0 0 auto;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  border: 1px solid #cfcfcf;
  background:
    no-repeat center / 55% var(--rule-icon),
    #fff;
}

.hr-rule__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hr-rule__list li {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hr-rule__list strong {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: #1a1a1a;
}

.hr-rule__list span {
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  line-height: 1.7;
  color: #555;
}

.hr-hours {
  display: inline;
  padding: 0.1em 0.35em;
  margin: 0 0.05em;
  border-radius: 2px;
  background: #e8e8e8;
  color: inherit;
  font-style: normal;
  font-weight: 500;
}

.hr-note {
  box-sizing: border-box;
  width: min(100% - 2.5rem, 1180px);
  margin: 0 auto;
  padding: 56px 0 clamp(3rem, 6vw, 4rem);
  border-top: 1px solid #e7e9ef;
}

.hr-note__inner {
  box-sizing: border-box;
  width: 100%;
  min-height: 196px;
  display: flex;
  align-items: center;
  padding: 44px 48px;
  background: #f2f4f7;
}

.hr-note__body {
  min-width: 0;
  width: 100%;
}

.hr-note__header {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 0.85rem;
}

.hr-note__quote {
  flex: 0 0 auto;
  display: block;
  width: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 0;
}

.hr-note__quote img {
  display: block;
  width: 100%;
  height: auto;
}

.hr-note__heading {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #2f2f2f;
}

.hr-note__text {
  margin: 0;
  padding-left: calc(clamp(2rem, 3.2vw, 2.75rem) + 28px);
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.45vw, 1.0625rem);
  line-height: 1.7;
  color: #4a4a4a;
}

.hr-accommodation {
  box-sizing: border-box;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) 0 0;
}

.hr-accommodation__header {
  box-sizing: border-box;
  width: min(100%, 1180px);
  min-height: 132.4px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15.4px;
  text-align: center;
}

.hr-accommodation__heading {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
}

.hr-accommodation__subheading {
  margin: 0;
  max-width: 36rem;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  color: #4a4a4a;
}

.hr-accommodation__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 578px));
  gap: 24px;
  justify-content: center;
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
}

.hr-accommodation__card {
  box-sizing: border-box;
  width: 100%;
  min-height: 227.59px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 36px 40px;
  background: #f2f4f7;
}

.hr-accommodation__card--wide {
  grid-column: 1 / -1;
  min-height: 227.59px;
}

.hr-accommodation__icon {
  flex: 0 0 auto;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background:
    no-repeat center / 52% var(--acc-icon),
    #e6e8ec;
}

.hr-accommodation__title {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
}

.hr-accommodation__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.35vw, 1.0625rem);
  line-height: 1.65;
  color: #555;
}

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

.hr-accommodation__split-item {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.hr-accommodation__label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.35vw, 1.0625rem);
  color: #1a1a1a;
}

.hr-accommodation__split .hr-accommodation__text {
  color: #555;
}

.hr-cancel {
  box-sizing: border-box;
  width: min(100%, 1100px);
  margin: clamp(5rem, 10vw, 8rem) auto;
  padding: 0;
}

.hr-cancel__header {
  box-sizing: border-box;
  width: min(100%, 840px);
  min-height: 132.4px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15.4px;
  text-align: center;
}

.hr-cancel__heading {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4.2vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
}

.hr-cancel__subheading {
  margin: 0;
  max-width: 36rem;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.6;
  color: #4a4a4a;
}

.hr-cancel__list {
  box-sizing: border-box;
  width: min(100%, 840px);
  min-height: 332.5px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #e7e9ef;
}

.hr-cancel__row {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 0;
  border-bottom: 1px solid #e7e9ef;
}

.hr-cancel__copy {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.hr-cancel__title {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.35;
  color: #1a1a1a;
}

.hr-cancel__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.35vw, 1.0625rem);
  line-height: 1.6;
  color: #777;
}

.hr-cancel__badge {
  flex: 0 0 auto;
  box-sizing: border-box;
  min-width: 6.5rem;
  padding: 0.55rem 1rem;
  border: 1px solid #cfcfcf;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 1;
  text-align: center;
  color: #555;
  background: #fff;
}

.hr-cancel__note {
  box-sizing: border-box;
  width: min(100%, 840px);
  margin: 1.75rem auto 0;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  line-height: 1.65;
  color: #8a8a8a;
}

@media (max-width: 1180px) {
  .hr-intro {
    padding-bottom: clamp(2.5rem, 5vw, 56px);
  }

  .hr-intro__inner {
    min-height: auto;
    padding: clamp(3rem, 7vw, 4.5rem) clamp(1.25rem, 6vw, 5rem);
  }

  .hr-rule {
    min-height: 0;
    padding: clamp(2.5rem, 5vw, 56px) 0;
    gap: clamp(1.5rem, 4vw, 72px);
  }

  .hr-rule__media {
    max-height: none;
  }

  .hr-accommodation,
  .hr-cancel {
    padding-left: clamp(1.25rem, 4vw, 3rem);
    padding-right: clamp(1.25rem, 4vw, 3rem);
  }

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

@media (max-width: 900px) {
  .hr-banner {
    min-height: 20rem;
  }

  .hr-rule,
  .hr-rule--flip {
    grid-template-columns: 1fr;
    gap: 1.35rem;
    min-height: 0;
  }

  .hr-rule--flip .hr-rule__media,
  .hr-rule--flip .hr-rule__content {
    order: initial;
  }

  .hr-rule__media img {
    min-height: 0;
  }

  .hr-rule__content {
    padding-inline: 0;
  }

  .hr-note__inner {
    min-height: 0;
    padding: clamp(1.5rem, 4vw, 44px) clamp(1.25rem, 4vw, 48px);
  }

  .hr-note__header {
    gap: 1rem;
  }

  .hr-note__text {
    padding-left: 0;
  }

  .hr-accommodation__header {
    min-height: 0;
  }

  .hr-accommodation__grid {
    grid-template-columns: 1fr;
  }

  .hr-accommodation__card {
    min-height: 0;
  }

  .hr-accommodation__split {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .hr-cancel__header {
    min-height: 0;
  }

  .hr-cancel__row {
    flex: none;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem 0;
  }
}

@media (max-width: 600px) {
  .hr-intro__heading {
    font-size: clamp(1.2rem, 5.6vw, 1.75rem);
    letter-spacing: 0.04em;
  }

  .hr-intro__inner {
    padding: clamp(2.5rem, 8vw, 3.5rem) 1.25rem;
  }

  .hr-intro {
    padding-bottom: clamp(2rem, 6vw, 2.5rem);
  }

  .hr-banner__subtitle {
    font-size: clamp(0.7rem, 3.1vw, 0.85rem);
  }

  .hr-banner__content {
    padding-bottom: clamp(1.75rem, 8vw, 2.75rem);
  }

  .hr-rule__title {
    align-items: flex-start;
  }

  .hr-rule__icon {
    width: 2rem;
    height: 2rem;
    margin-top: 0.15rem;
  }

  .hr-accommodation__card {
    padding: 1.5rem 1.35rem;
    gap: 1rem;
  }

  .hr-accommodation__heading,
  .hr-cancel__heading {
    font-size: clamp(1.6rem, 7vw, 2.25rem);
  }

  .hr-cancel__list {
    min-height: 0;
    margin-top: clamp(2rem, 5vw, 3rem);
  }

  .hr-cancel__row {
    flex-direction: column;
    align-items: stretch;
  }

  .hr-cancel__badge {
    align-self: flex-start;
  }
}

/* ── Amenities page ─────────────────────────────────────── */

.page-amenities {
  background: #fff;
}

.page-amenities .slowdown__fade {
  display: none;
}

.am-banner {
  position: relative;
  margin-top: var(--header-height);
  width: 100%;
  aspect-ratio: 1440 / 600;
  min-height: 24rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}

.am-banner__media {
  position: absolute;
  inset: 0;
}

.page-amenities .am-banner__media .hero__layer--sketch {
  background-image: url("/images/amenities/amenities-banner-sketch.webp");
}

.page-amenities .am-banner__media .hero__layer--color {
  background-image: url("/images/amenities/amenities-banner-color.webp");
}

.page-amenities .am-banner__media .hero__layer {
  background-size: cover;
  background-position: center center;
  animation: none;
}

.page-amenities .hero__mode-toggle__preview--color {
  background-image: url("/images/amenities/amenities-banner-color.webp");
}

.page-amenities .hero__mode-toggle__preview--sketch {
  background-image: url("/images/amenities/amenities-banner-sketch.webp");
}

.am-banner__content {
  position: relative;
  z-index: 2;
  width: min(100%, 42rem);
  padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 4vw, 2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.35rem;
}

.am-banner__eyebrow {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-style: normal;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 1.82px;
  text-align: center;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.am-banner__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15em;
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: normal;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.am-banner__title-line {
  display: block;
  font-size: 60px;
  line-height: 60px;
  letter-spacing: 6px;
}

.am-banner__title-line--lg {
  font-size: 100px;
  line-height: 105px;
  letter-spacing: 10px;
  white-space: nowrap;
}

.am-eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9a9a;
}

.am-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 2.85rem;
  padding: 0.7rem 1.75rem;
  border: 1px solid #1a1a1a;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: transparent;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.am-btn:hover {
  background: #1a1a1a;
  color: #fff;
}

.am-btn--solid {
  border-color: #fff;
  background: #fff;
  color: #1a1a1a;
}

.am-btn--solid:hover {
  background: transparent;
  color: #fff;
}

.am-intro {
  box-sizing: border-box;
  width: min(100%, 900px);
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 5rem) clamp(1.25rem, 4vw, 2rem) clamp(3rem, 6vw, 4.5rem);
  text-align: center;
}

.am-intro__heading {
  margin: 0 0 1.25rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #111;
}

.am-intro__text {
  margin: 0 auto 2.5rem;
  max-width: 36rem;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.75;
  color: #4a4a4a;
}

.am-intro__media {
  box-sizing: border-box;
  width: min(100%, 720px);
  height: 360px;
  margin: 0 auto 1.75rem;
  overflow: hidden;
  border-radius: 2px;
}

.am-intro__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.am-intro__media.am-media--reveal {
  cursor: crosshair;
}

.am-intro__media.am-media--reveal .why-choose__image-media {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  --reveal-size: var(--reveal-brush-size);
}

.am-intro__note {
  margin: 0 auto;
  max-width: 34rem;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  line-height: 1.7;
  color: #777;
}

.am-features {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem) clamp(3rem, 7vw, 5rem);
}

.am-feature {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
  padding: clamp(2.75rem, 5vw, 4.5rem) 0;
  border-top: 1px solid #e7e9ef;
  scroll-margin-top: clamp(4rem, 12vw, 5.5rem);
}

.am-feature__media {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
  background: #e8e8e8;
}

.am-feature__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  aspect-ratio: 720 / 560;
  object-fit: cover;
  display: block;
}

.am-feature__media.am-media--reveal {
  cursor: crosshair;
}

.am-feature__media.am-media--reveal .why-choose__image-media {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 280px;
  aspect-ratio: 720 / 560;
  --reveal-size: var(--reveal-brush-size);
}

.am-feature__media.am-media--reveal .why-choose__image-layer {
  min-height: 280px;
}

.am-feature__content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.am-feature__title {
  margin: 0 0 1.15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
  text-align: left;
}

.am-feature__title::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 1px;
  margin-top: 0.85rem;
  background: #d0d0d0;
}

.am-feature__text {
  margin: 0 0 1.35rem;
  font-family: var(--font-body);
  font-size: clamp(0.95rem, 1.4vw, 1.0625rem);
  line-height: 1.7;
  color: #555;
  text-align: left;
}

.am-feature__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.am-feature__tags li {
  box-sizing: border-box;
  padding: 0.45rem 0.9rem;
  border: 1px solid #d5d5d5;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.3;
  color: #444;
  background: #fff;
}

@media (max-width: 900px) {
  .am-banner {
    min-height: 22rem;
  }

  .am-feature {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .am-feature__media img {
    min-height: 0;
  }
}

@media (max-width: 600px) {
  .am-intro__media {
    height: auto;
    aspect-ratio: 720 / 360;
  }

  .am-banner__title-line {
    font-size: clamp(1.5rem, 7vw, 2.25rem);
    line-height: 1.05;
    letter-spacing: 0.08em;
  }

  .am-banner__title-line--lg {
    font-size: clamp(1.85rem, 9vw, 2.75rem);
    line-height: 1.05;
    letter-spacing: 0.1em;
  }

  .am-intro__heading,
  .am-feature__title {
    font-size: clamp(1.5rem, 7vw, 2.1rem);
  }

  .am-feature__tags {
    gap: 0.5rem 1rem;
  }
}

/* ── Amenities: Perfect Day timeline ───────────────────── */

.am-day {
  background: #eef0f4;
  padding: clamp(4rem, 9vw, 6.5rem) clamp(1.25rem, 4vw, 3rem);
}

.am-day__header {
  text-align: center;
  margin: 0 auto clamp(2.75rem, 6vw, 4rem);
}

.am-day__header .am-eyebrow {
  margin-bottom: 0.85rem;
}

.am-day__heading {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
}

.am-day__timeline {
  --day-time-w: 6.25rem;
  --day-mark: 0.75rem;
  --day-gap: 1.15rem;
  --day-row-gap: clamp(1.75rem, 3.5vw, 2.35rem);
  box-sizing: border-box;
  width: min(100%, 720px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--day-row-gap);
}

.am-day__item {
  display: grid;
  grid-template-columns: var(--day-time-w) var(--day-mark) minmax(0, 1fr);
  column-gap: var(--day-gap);
  align-items: start;
  position: relative;
}

.am-day__item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: calc(var(--day-time-w) + var(--day-gap) + (var(--day-mark) / 2) - 0.5px);
  top: 1rem;
  bottom: calc(-1 * var(--day-row-gap));
  width: 1px;
  background: #c9ced8;
}

.am-day__time {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.4vw, 1.65rem);
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-align: right;
  color: #222;
  padding-top: 0.1rem;
  white-space: nowrap;
}

.am-day__marker {
  width: 0.65rem;
  height: 0.65rem;
  margin-top: 0.4rem;
  justify-self: center;
  border: 1.5px solid #a8b0bc;
  border-radius: 50%;
  background: #eef0f4;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}

.am-day__body {
  min-width: 0;
}

.am-day__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.35;
  color: #1a1a1a;
}

.am-day__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  line-height: 1.65;
  color: #555;
}

@media (max-width: 600px) {
  .am-day__timeline {
    --day-time-w: 4.5rem;
    --day-gap: 0.85rem;
  }

  .am-day__time {
    font-size: 1.1rem;
  }
}

/* ── Amenities: What's Included ────────────────────────── */

.am-include {
  background: #fff;
  padding: clamp(3.5rem, 8vw, 5.5rem) clamp(1.25rem, 4vw, 3rem)
    clamp(1.75rem, 3.5vw, 2.5rem);
}

.am-include__header {
  text-align: center;
  margin: 0 auto clamp(2.25rem, 5vw, 3.25rem);
}

.am-include__header .am-eyebrow {
  margin-bottom: 0.85rem;
}

.am-include__heading {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
}

.am-include__grid {
  box-sizing: border-box;
  width: min(100%, calc(380px * 3 + 16px * 2));
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 380px);
  gap: 16px;
  justify-content: center;
}

.am-include__card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 380px;
  height: 127px;
  padding: 28px 30px;
  border-radius: 10px;
  background: #f8f8f8;
}

.am-include__top {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}

.am-include__icon {
  flex: 0 0 auto;
  display: inline-flex;
  width: 1.35rem;
  height: 1.35rem;
  margin-top: 0.1rem;
  color: #4a4a4a;
}

.am-include__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.am-include__title {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.3vw, 1.05rem);
  line-height: 1.3;
  color: #1a1a1a;
}

.am-include__text {
  margin: 0;
  padding-left: calc(1.35rem + 0.7rem);
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.2vw, 0.9375rem);
  line-height: 1.45;
  color: #666;
}

@media (max-width: 1200px) {
  .am-include__grid {
    width: min(100%, calc(380px * 2 + 16px));
    grid-template-columns: repeat(2, minmax(0, 380px));
  }
}

@media (max-width: 820px) {
  .am-include__grid {
    width: 100%;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .am-include__card {
    width: min(100%, 380px);
    height: auto;
    min-height: 127px;
  }

  .am-include__text {
    padding-left: 0;
  }
}

/* ── Amenities: Why Guests Love It ─────────────────────── */

.am-guests {
  background: #fff;
  padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.25rem, 4vw, 3rem)
    clamp(4rem, 9vw, 6.5rem);
}

.am-guests__header {
  text-align: center;
  margin: 0 auto clamp(2.25rem, 5vw, 3.25rem);
}

.am-guests__header .am-eyebrow {
  margin-bottom: 0.85rem;
}

.am-guests__heading {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
}

.am-guests__grid {
  box-sizing: border-box;
  width: min(100%, calc(380px * 3 + 16px * 2));
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 380px);
  gap: 16px;
  justify-content: center;
}

.am-guests__card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 380px;
  padding: 28px 30px;
  border-radius: 10px;
  background: #f8f8f8;
}

.am-guests__stars {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #1a1a1a;
}

.am-guests__stars svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  display: block;
}

.am-guests__quote {
  margin: 0;
  flex: 1 1 auto;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.9rem, 1.25vw, 0.975rem);
  line-height: 1.55;
  color: #333;
}

.am-guests__author {
  margin: 0;
}

.am-guests__name {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a1a;
}

.am-guests__meta {
  margin: 0.25rem 0 0;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.35;
  color: #888;
}

@media (max-width: 1200px) {
  .am-guests__grid {
    width: min(100%, calc(380px * 2 + 16px));
    grid-template-columns: repeat(2, minmax(0, 380px));
  }
}

@media (max-width: 820px) {
  .am-guests__grid {
    width: 100%;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .am-guests__card {
    width: min(100%, 380px);
  }
}

/* ── About Us ───────────────────────────────────────────── */

.page-about-us {
  background: #fff;
}

.page-about-us .slowdown__fade {
  display: none;
}

.about-banner {
  position: relative;
  margin-top: var(--header-height);
  width: 100%;
  aspect-ratio: 1440 / 620;
  min-height: 24rem;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}

.about-banner__media {
  position: absolute;
  inset: 0;
}

.page-about-us .about-banner__media .hero__layer--sketch {
  background-image: url("/images/about-us/about-us-banner-sketch.webp");
}

.page-about-us .about-banner__media .hero__layer--color {
  background-image: url("/images/about-us/about-us-banner-color.webp");
}

.page-about-us .about-banner__media .hero__layer {
  background-size: cover;
  background-position: center center;
  animation: none;
}

.page-about-us .hero__mode-toggle__preview--color {
  background-image: url("/images/about-us/about-us-banner-color.webp");
}

.page-about-us .hero__mode-toggle__preview--sketch {
  background-image: url("/images/about-us/about-us-banner-sketch.webp");
}

.about-banner__media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.42) 0%,
    rgba(0, 0, 0, 0.28) 45%,
    rgba(0, 0, 0, 0.18) 70%,
    rgba(0, 0, 0, 0.12) 100%
  );
}

.about-banner__content {
  position: relative;
  z-index: 3;
  width: min(100%, 44rem);
  padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 4vw, 2rem)
    clamp(4rem, 10vw, 6.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.1rem;
}

.about-banner__eyebrow {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.about-banner__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.08em;
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}

.about-banner__title-line {
  display: block;
  font-size: clamp(2.5rem, 6.5vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0.08em;
}

.about-banner__title-line--lg {
  font-size: clamp(2.85rem, 8vw, 5.25rem);
  letter-spacing: 0.1em;
}

.about-banner__text {
  margin: 0.15rem 0 0;
  max-width: 34rem;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.28);
}

.about-burnout {
  background: #fff;
  padding: clamp(3.5rem, 8vw, 6rem) clamp(1.25rem, 4vw, 3rem)
    clamp(4rem, 9vw, 7rem);
}

.about-burnout__inner {
  box-sizing: border-box;
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about-burnout__media {
  margin: 0;
  width: 100%;
  max-width: 521px;
  overflow: hidden;
  border-radius: 2px;
}

.about-burnout__media img {
  width: 100%;
  height: auto;
  display: block;
}

.about-burnout__media.about-media--reveal {
  cursor: crosshair;
}

.about-burnout__media.about-media--reveal .why-choose__image-media {
  position: relative;
  width: 100%;
  aspect-ratio: 521 / 540;
  --reveal-size: var(--reveal-brush-size);
}

.about-burnout__media.about-media--reveal .why-choose__image-layer {
  object-fit: cover;
  /* Keep hover reveal only — no zoom competing with curtain */
  transform: none !important;
  filter: none !important;
}

.about-burnout__eyebrow {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9a9a;
}

.about-burnout__heading {
  margin: 0 0 1.35rem;
  display: flex;
  flex-direction: column;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.35rem, 4.8vw, 3.65rem);
  line-height: 1.05;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #111;
}

.about-burnout__heading-line {
  display: block;
}

.about-burnout__copy {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  margin: 0 0 1.75rem;
}

.about-burnout__copy p {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.25vw, 1rem);
  line-height: 1.7;
  color: #555;
}

.about-burnout__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-burnout__tags li {
  box-sizing: border-box;
  padding: 0.45rem 0.9rem;
  border: 1px solid #d5d5d5;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.3;
  color: #444;
  background: #fff;
}

@media (max-width: 900px) {
  .about-burnout__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-burnout__media {
    max-width: 420px;
    margin-inline: auto;
  }
}

@media (max-width: 600px) {
  .about-banner {
    min-height: 22rem;
  }

  .about-banner__content {
    padding-bottom: clamp(3rem, 12vw, 4.5rem);
  }
}

/* ── About Us: founders quote ─────────────────────────── */

.about-quote {
  background: #020a00;
  color: #fff;
  padding: clamp(4.5rem, 10vw, 7.5rem) clamp(1.25rem, 4vw, 3rem);
}

.about-quote__inner {
  width: min(100%, 920px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-quote__mark {
  width: clamp(3.25rem, 6vw, 4.5rem);
  height: auto;
  margin: 0 0 clamp(1.5rem, 3vw, 2.25rem);
  opacity: 0.28;
  filter: brightness(0) invert(1);
}

.about-quote__text {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15em;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.65rem, 3.6vw, 2.65rem);
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
}

.about-quote__line {
  display: block;
}

.about-quote__attr {
  margin: clamp(1.5rem, 3vw, 2.25rem) 0 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #8a8a8a;
}

@media (max-width: 700px) {
  .about-quote__text {
    font-size: clamp(1.45rem, 5.5vw, 1.85rem);
  }
}

/* ── About Us: Four Quiet Principles ──────────────────── */

.about-principles {
  background: #fff;
  padding: clamp(4rem, 9vw, 6.5rem) clamp(1.25rem, 4vw, 3rem)
    clamp(2.5rem, 5vw, 3.5rem);
}

.about-principles__header {
  text-align: center;
  margin: 0 auto clamp(2.25rem, 5vw, 3.25rem);
}

.about-principles__eyebrow {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9a9a;
}

.about-principles__heading {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
}

.about-principles__grid {
  box-sizing: border-box;
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.about-principles__card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  min-height: 100%;
  padding: 1.5rem 1.35rem 1.6rem;
  border-radius: 12px;
  background: #f8f8f8;
  box-shadow: 0 6px 20px rgba(26, 26, 26, 0.04);
}

.about-principles__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #ececec;
}

.about-principles__icon img {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  object-fit: contain;
}

.about-principles__title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.45rem, 2vw, 1.75rem);
  line-height: 1.1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
}

.about-principles__text {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.85rem, 1.15vw, 0.9375rem);
  line-height: 1.55;
  color: #555;
}

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

@media (max-width: 600px) {
  .about-principles__grid {
    grid-template-columns: 1fr;
  }
}

/* ── About Us: Meet the team ──────────────────────────── */

.about-team {
  background: #fff;
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 3rem)
    clamp(4rem, 9vw, 6.5rem);
}

.about-team__header {
  text-align: center;
  margin: 0 auto clamp(2.5rem, 5.5vw, 3.5rem);
}

.about-team__eyebrow {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9a9a;
}

.about-team__heading {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
}

.about-team__grid {
  box-sizing: border-box;
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.about-team__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.about-team__media {
  margin: 0 0 1.15rem;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f8f8f8;
}

.about-team__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.about-team__name {
  margin: 0 0 0.35rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: normal;
  font-size: 36px;
  line-height: 36px;
  letter-spacing: 1.08px;
  text-transform: uppercase;
  color: #1a1a1a;
  vertical-align: middle;
}

.about-team__role {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #9a9a9a;
}

.about-team__bio {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.2vw, 0.9375rem);
  line-height: 1.6;
  color: #555;
}

@media (max-width: 800px) {
  .about-team__grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

/* ── About Us: stats strip ────────────────────────────── */

.about-stats {
  background: #eef0f4;
  margin-top: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 3rem);
}

.about-stats__grid {
  box-sizing: border-box;
  width: min(100%, 960px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
}

.about-stats__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.45rem;
  padding: 0.35rem 1rem;
  position: relative;
}

.about-stats__item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 15%;
  bottom: 15%;
  right: 0;
  width: 1px;
  background: #c9ced8;
}

.about-stats__value {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.75rem, 5.5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: #1a1a1a;
}

.about-stats__star {
  width: 0.42em;
  height: 0.42em;
  margin-top: 0.12em;
  fill: currentColor;
  display: block;
  flex-shrink: 0;
}

.about-stats__label {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.8rem, 1.15vw, 0.9375rem);
  line-height: 1.35;
  color: #777;
}

/* ── About Us: featured review ────────────────────────── */

.about-review {
  background: #fff;
  padding: clamp(4rem, 9vw, 6.5rem) clamp(1.25rem, 4vw, 3rem);
}

.about-review__inner {
  width: min(100%, 820px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-review__stars {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 clamp(1.25rem, 2.5vw, 1.75rem);
  color: #1a1a1a;
}

.about-review__stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  display: block;
}

.about-review__quote {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.65rem, 3.4vw, 2.5rem);
  line-height: 1.25;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a1a;
}

.about-review__attr {
  margin: clamp(1.25rem, 2.5vw, 1.75rem) 0 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.4;
  color: #888;
}

@media (max-width: 700px) {
  .about-stats__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    width: min(100%, 20rem);
  }

  .about-stats__item:not(:last-child)::after {
    display: none;
  }
}

/* ── Contact Us ─────────────────────────────────────────── */

.page-contact-us {
  background: #fff;
}

.page-contact-us .slowdown__fade {
  display: none;
}

.contact-hero {
  margin-top: var(--header-height);
  padding: clamp(3rem, 7vw, 5rem) clamp(1.25rem, 4vw, 3rem)
    clamp(3.5rem, 8vw, 5.5rem);
  background: #fff;
}

.contact-hero__inner {
  box-sizing: border-box;
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.contact-hero__eyebrow {
  margin: 0 0 0.85rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9a9a;
}

.contact-hero__heading {
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.75rem, 5.5vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
}

.contact-hero__heading-line {
  display: block;
}

.contact-hero__text {
  margin: 0 0 clamp(1.75rem, 3.5vw, 2.5rem);
  max-width: 34rem;
  font-family: var(--font-body);
  font-size: clamp(0.9375rem, 1.3vw, 1.0625rem);
  line-height: 1.7;
  color: #555;
}

.contact-hero__text strong {
  font-weight: 600;
  color: #1a1a1a;
}

.contact-hero__stats {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.contact-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0 1rem;
  position: relative;
}

.contact-hero__stat:first-child {
  padding-left: 0;
}

.contact-hero__stat:last-child {
  padding-right: 0;
}

.contact-hero__stat:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0.15rem;
  bottom: 0.15rem;
  right: 0;
  width: 1px;
  background: #d5d5d5;
}

.contact-hero__stat-value {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.9rem, 1.25vw, 1rem);
  line-height: 1.3;
  color: #1a1a1a;
}

.contact-hero__stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #1a1a1a;
}

.contact-hero__stars svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
  display: block;
}

.contact-hero__stat-label {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.35;
  color: #888;
}

.contact-hero__media {
  margin: 0;
  width: 100%;
  max-width: 495px;
  justify-self: end;
}

.contact-hero__media img {
  width: 100%;
  height: auto;
  display: block;
}

.contact-hero__media--reveal {
  overflow: hidden;
  border-radius: 4px;
  cursor: crosshair;
}

.contact-hero__media--reveal .why-choose__image-media {
  position: relative;
  width: 100%;
  aspect-ratio: 495 / 420;
  --reveal-size: var(--reveal-brush-size);
}

.contact-hero__media--reveal .why-choose__image-layer {
  object-fit: cover;
}

.page-contact-us .hero__mode-toggle__preview--color {
  background-image: url("/images/contact-us/lets-plan-your-slowscape-color.webp");
}

.page-contact-us .hero__mode-toggle__preview--sketch {
  background-image: url("/images/contact-us/lets-plan-your-slowscape-sketch.webp");
}

.page-location .hero__mode-toggle__preview--color {
  background-image: url("/images/location/via-delhi-color.webp");
}

.page-location .hero__mode-toggle__preview--sketch {
  background-image: url("/images/location/via-delhi-sketch.webp");
}

@media (max-width: 900px) {
  .contact-hero__inner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .contact-hero__media {
    max-width: 420px;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .contact-hero__stats {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .contact-hero__stat {
    padding: 0;
  }

  .contact-hero__stat:not(:last-child)::after {
    display: none;
  }
}

/* ── Contact Us: enquiry form ───────────────────────────── */

.contact-note {
  background: #fff;
  padding: 0 clamp(1.25rem, 4vw, 3rem) clamp(3.5rem, 8vw, 5.5rem);
}

.contact-note__inner {
  box-sizing: border-box;
  width: min(100%, 1120px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3.5vw, 2.5rem);
  align-items: start;
}

.contact-note__form-card {
  box-sizing: border-box;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  border-radius: 12px;
  background: #f8f8f8;
}

.contact-note__heading {
  margin: 0 0 0.65rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-style: normal;
  font-size: 56px;
  line-height: 56px;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  color: #111;
  vertical-align: middle;
}

.contact-note__intro {
  margin: 0 0 1.75rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #666;
  max-width: 36rem;
}

.contact-note__form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

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

.contact-note__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.contact-note__label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
}

.contact-note__input {
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 0.85rem 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.4;
  color: #1a1a1a;
  outline: none;
  transition: border-color 0.15s ease;
}

.contact-note__input::placeholder {
  color: #b0b0b0;
}

.contact-note__input:focus {
  border-color: #999;
}

.contact-note__input.is-invalid {
  border-color: #b4473a;
}

.contact-note__input.is-invalid:focus {
  border-color: #91372d;
  box-shadow: 0 0 0 2px rgba(180, 71, 58, 0.12);
}

.contact-note__error {
  min-height: 1em;
  margin: -0.15rem 0 0;
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1.35;
  color: #a13f34;
}

.contact-note__error:empty {
  display: none;
}

.contact-note__textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.contact-note__submit {
  align-self: flex-start;
  margin-top: 0.35rem;
}

.contact-note__submit:disabled {
  opacity: 0.65;
  pointer-events: none;
}

.contact-note__sending-dots {
  display: inline-flex;
  margin-left: 0.05em;
  letter-spacing: 0.02em;
}

.contact-note__sending-dots span {
  display: inline-block;
  animation: contact-sending-dot 1.05s ease-in-out infinite;
}

.contact-note__sending-dots span:nth-child(2) {
  animation-delay: 0.18s;
}

.contact-note__sending-dots span:nth-child(3) {
  animation-delay: 0.36s;
}

@keyframes contact-sending-dot {
  0%,
  80%,
  100% {
    opacity: 0.25;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-0.08em);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-note__sending-dots span {
    animation: none;
    opacity: 1;
  }
}

.contact-note__status {
  margin: 0.5rem 0 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.45;
}

.contact-note__status.is-success {
  margin-top: 0.85rem;
  padding: 0.85rem 1rem;
  border: 1px solid #b9d0be;
  border-left: 3px solid #2f5d3a;
  background: #eef5f0;
  color: #1f3d28;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  animation: contact-status-in 0.35s ease-out;
}

.contact-note__status.is-error {
  margin-top: 0.85rem;
  padding: 0.85rem 1rem;
  border: 1px solid #e2b8b2;
  border-left: 3px solid #a13f34;
  background: #faf0ee;
  color: #8a342b;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.5;
  animation: contact-status-in 0.35s ease-out;
}

@keyframes contact-status-in {
  from {
    opacity: 0;
    transform: translateY(0.35rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-note__status.is-success,
  .contact-note__status.is-error {
    animation: none;
  }
}

.contact-note__submit:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 4px;
}

.contact-note__privacy {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #888;
  max-width: 36rem;
}

.contact-note__consent {
  margin: 0.15rem 0 0.35rem;
}

.contact-note__consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.55;
  color: #555;
  cursor: pointer;
}

.contact-note__consent-label a {
  color: #1a1a1a;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.contact-note__consent-label a:hover {
  color: #000;
}

.contact-note__checkbox {
  box-sizing: border-box;
  flex-shrink: 0;
  width: 1.05rem;
  height: 1.05rem;
  margin: 0.2rem 0 0;
  appearance: none;
  -webkit-appearance: none;
  border: 1.5px solid #b0b0b0;
  border-radius: 3px;
  background: #fff;
  cursor: pointer;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}

.contact-note__checkbox:checked {
  border-color: #1a1a1a;
  background-color: #1a1a1a;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='1.75' stroke-linecap='round' stroke-linejoin='round' d='M2.5 6.2l2.4 2.3 4.6-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.75rem 0.75rem;
}

.contact-note__checkbox:focus-visible {
  outline: none;
  border-color: #1a1a1a;
}

.contact-note__checkbox.is-invalid {
  border-color: #b42318;
}

.contact-note__consent .contact-note__error {
  margin: 0.45rem 0 0 1.75rem;
}

.contact-note__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}

.contact-note__aside-label {
  margin: 0 0 0.15rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9a9a;
}

.contact-note__channels {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-note__channel {
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 1rem 1.05rem;
  border-radius: 10px;
  background: #f8f8f8;
  transition: background 0.15s ease;
}

.contact-note__channel:hover {
  background: #f1f1f1;
}

.contact-note__channel-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: #e6e6e6;
  color: #333;
}

.contact-note__channel-icon svg {
  width: 1.15rem;
  height: 1.15rem;
  display: block;
}

.contact-note__channel-body {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
  padding-top: 0.1rem;
}

.contact-note__channel-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  line-height: 1.3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a1a;
}

.contact-note__channel-text {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.4;
  color: #777;
}

.contact-note__quote {
  box-sizing: border-box;
  margin: 0.35rem 0 0;
  padding: 1.25rem 1.15rem 1.35rem;
  border-radius: 10px;
  background: #eef0f4;
}

.contact-note__quote-mark {
  width: 28px;
  height: auto;
  margin: 0 0 0.75rem;
  opacity: 0.65;
}

.contact-note__quote-text {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #444;
}

.contact-note__quote-attr {
  margin: 0;
}

.contact-note__quote-name {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a1a1a;
}

.contact-note__quote-meta {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: #888;
}

.contact-note__availability {
  margin: 0.25rem 0 0;
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #777;
}

.contact-note__availability-icon {
  flex: 0 0 auto;
  display: inline-flex;
  margin-top: 0.1rem;
  color: #666;
}

.contact-note__availability-icon svg {
  width: 1rem;
  height: 1rem;
  display: block;
}

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

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

/* ── Contact Us: map ────────────────────────────────────── */

.contact-reach {
  background: #f6f6f6;
  padding: clamp(2.75rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 3rem);
}

.contact-reach__header {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.25rem;
}

.contact-reach__eyebrow {
  margin: 0 0 0.65rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9a9a;
}

.contact-reach__heading {
  margin: 0 0 0.85rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
}

.contact-reach__location {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.45;
  color: #666;
}

.contact-reach__pin {
  display: inline-flex;
  flex-shrink: 0;
  color: #1a1a1a;
}

.contact-reach__pin svg {
  width: 1.05rem;
  height: 1.05rem;
}

.contact-reach__routes {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: min(100%, 1120px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.contact-reach__route {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.15rem 1.15rem 1.25rem;
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 14px;
}

.contact-reach__route-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.65rem;
}

.contact-reach__route-icon {
  width: 2.65rem;
  height: 2.65rem;
  display: block;
  flex-shrink: 0;
}

.contact-reach__route-titles {
  min-width: 0;
}

.contact-reach__route-title {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.35rem, 2vw, 1.55rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111;
}

.contact-reach__route-sub {
  margin: 0.15rem 0 0;
  font-family: var(--font-body);
  font-size: 0.75rem;
  line-height: 1.3;
  color: #888;
}

.contact-reach__route-badge {
  align-self: flex-start;
  margin-top: 0.15rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: #ececec;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.02em;
  color: #333;
  white-space: nowrap;
}

.contact-reach__route-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  background: #cfcfcf;
  overflow: hidden;
}

.contact-reach__route-media.am-media--reveal {
  cursor: crosshair;
}

.contact-reach__route-media.am-media--reveal .why-choose__image-media {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 10;
  --reveal-size: var(--reveal-brush-size-sm);
}

.contact-reach__route-media.am-media--reveal .why-choose__image-layer {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
}

.contact-reach__route-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.35rem;
  margin: 0;
  padding: 0.75rem 0.45rem;
  background: #efefef;
  border-radius: 6px;
}

.contact-reach__route-stat {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  text-align: center;
  gap: 0.2rem;
  margin: 0;
  min-width: 0;
}

.contact-reach__route-stat-value {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.28rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(0.7rem, 1.4vw, 0.8125rem);
  line-height: 1.2;
  color: #111;
}

.contact-reach__route-stat-icon {
  display: grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  color: #555;
}

.contact-reach__route-stat-icon--rupee {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  color: #555;
}

.contact-reach__route-stat-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-reach__route-stat-label {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.625rem;
  line-height: 1.2;
  color: #777;
}

.contact-reach__route-perks {
  list-style: none;
  margin: 0.45rem 0 0.55rem;
  padding: 0.15rem 0.1rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 0.75rem;
}

.contact-reach__route-perks li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.35;
  color: #444;
}

.contact-reach__perk-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.05rem;
  color: #555;
}

.contact-reach__perk-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-reach__route-btn {
  margin-top: auto;
  margin-right: auto;
  margin-left: 0;
  align-self: flex-start;
}

.contact-reach__cta {
  margin: 1.75rem auto 0;
  max-width: 28rem;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #666;
}

.contact-reach__cta a {
  color: #1a1a1a;
  font-weight: 500;
  border-bottom: 1px solid #1a1a1a;
  transition: opacity 0.15s ease;
}

.contact-reach__cta a:hover {
  opacity: 0.7;
}

@media (max-width: 960px) {
  .contact-reach__routes {
    grid-template-columns: 1fr;
    max-width: 26rem;
  }
}

.contact-map {
  background: #fff;
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 3rem)
    clamp(3rem, 7vw, 5rem);
}

.page-location .contact-map {
  padding-top: clamp(6.5rem, 14vw, 8rem);
}

.contact-map__header {
  text-align: center;
  margin: 0 auto 1.75rem;
}

.contact-map__eyebrow {
  margin: 0 0 0.65rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9a9a;
}

.contact-map__heading {
  margin: 0 0 0.4rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
}

.contact-map__address {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #777;
}

.contact-map__viewport {
  position: relative;
  box-sizing: border-box;
  width: min(100%, 1120px);
  margin: 0 auto;
  aspect-ratio: 16 / 7;
  min-height: 260px;
  max-height: 460px;
  overflow: hidden;
  border-radius: 12px;
  background: #e8e8e8;
}

.contact-map__iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(0.92) brightness(1.06) saturate(0);
  transition: filter 0.7s ease;
}

.is-site-color .contact-map__iframe {
  filter: none;
}

.contact-map__link {
  display: inline-flex;
  margin: 1.15rem auto 0;
  width: fit-content;
  max-width: 100%;
  padding: 0 0 0.1rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
  transition: opacity 0.15s ease;
}

.contact-map {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-map__link:hover {
  opacity: 0.7;
}

@media (max-width: 700px) {
  .contact-map__viewport {
    aspect-ratio: 4 / 3;
    max-height: none;
  }
}

/* ── Contact Us: quick answers ──────────────────────────── */

.contact-faq {
  background: #fff;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.25rem, 4vw, 3rem)
    clamp(3.5rem, 8vw, 6rem);
}

.contact-faq__header {
  text-align: center;
  margin: 0 auto 2.5rem;
}

.contact-faq__eyebrow {
  margin: 0 0 0.65rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9a9a;
}

.contact-faq__heading {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
}

.contact-faq__list {
  box-sizing: border-box;
  width: min(100%, 52rem);
  margin: 0 auto;
  border-top: 1px solid #e4e4e4;
}

.contact-faq__item {
  border-bottom: 1px solid #e4e4e4;
}

.contact-faq__question {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  margin: 0;
  padding: 1.35rem 0;
  cursor: pointer;
  user-select: none;
}

.contact-faq__question::-webkit-details-marker {
  display: none;
}

.contact-faq__question-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111;
}

.contact-faq__icon {
  flex: 0 0 auto;
  position: relative;
  width: 1.1rem;
  height: 1.1rem;
  color: #111;
}

.contact-faq__icon::before,
.contact-faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.contact-faq__icon::before {
  width: 100%;
  height: 1.5px;
}

.contact-faq__icon::after {
  width: 1.5px;
  height: 100%;
  transition:
    opacity 0.3s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-faq__item[open] .contact-faq__icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0);
}

.contact-faq__answer {
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition:
    height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease;
}

.contact-faq__answer p {
  margin: 0;
  padding: 0 2.5rem 1.5rem 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.9375rem, 1.35vw, 1.0625rem);
  line-height: 1.65;
  color: #444;
  transform: translateY(-0.4rem);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-faq__item.is-animating-open .contact-faq__answer p,
.contact-faq__item[open]:not(.is-animating-close) .contact-faq__answer p {
  transform: translateY(0);
}

.contact-faq__answer a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.contact-faq__answer a:hover {
  opacity: 0.7;
}

@media (prefers-reduced-motion: reduce) {
  .contact-faq__answer,
  .contact-faq__answer p,
  .contact-faq__icon::after {
    transition: none;
  }
}

@media (max-width: 600px) {
  .contact-faq__header {
    margin-bottom: 1.75rem;
  }

  .contact-faq__question {
    padding: 1.15rem 0;
    gap: 1rem;
  }

  .contact-faq__answer p {
    padding-right: 1.5rem;
    padding-bottom: 1.25rem;
  }
}

/* ── Legal pages (Privacy / Terms) ──────────────────────── */

.page-legal {
  background: #fff;
}

.legal-hero {
  box-sizing: border-box;
  width: min(100%, 46rem);
  margin: 0 auto;
  padding: clamp(5.5rem, 12vw, 8rem) clamp(1.25rem, 4vw, 3rem)
    clamp(2rem, 4vw, 2.75rem);
  text-align: center;
}

.legal-hero__eyebrow {
  margin: 0 0 0.65rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9a9a9a;
}

.legal-hero__heading {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
}

.legal-hero__meta {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.5;
  color: #777;
}

.legal-body {
  padding: 0 clamp(1.25rem, 4vw, 3rem) clamp(4rem, 9vw, 6.5rem);
}

.legal-body__inner {
  box-sizing: border-box;
  width: min(100%, 42rem);
  margin: 0 auto;
}

.legal-body__inner > p,
.legal-body__inner > ul {
  margin: 0 0 1.25rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(0.9375rem, 1.35vw, 1.0625rem);
  line-height: 1.7;
  color: #444;
}

.legal-body__inner > ul {
  padding-left: 1.25rem;
}

.legal-body__inner li {
  margin-bottom: 0.55rem;
}

.legal-body__inner li:last-child {
  margin-bottom: 0;
}

.legal-body__inner h2 {
  margin: 2.25rem 0 0.85rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111;
}

.legal-body__inner a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.legal-body__inner a:hover {
  opacity: 0.7;
}

.legal-body__address {
  margin-top: 1.75rem !important;
  color: #777 !important;
}
