/* ManiPedi VJ */

:root {
  --cream: #faf6f1;
  --cream-deep: #f0e8df;
  --cream-warm: #f5ebe3;
  --rose: #a24c61;
  --rose-deep: #8d4154;
  --rose-soft: #f2dce2;
  --rose-muted: #d9a3b0;
  --rose-glow: rgba(162, 76, 97, 0.14);
  --blush-glow: rgba(242, 220, 226, 0.45);
  --accent: #a24c61;
  --accent-hover: #8d4154;
  --accent-soft: #c9788a;
  --brown: #3d2c28;
  --brown-muted: #6b5650;
  --brown-light: #7a625b;
  --footer-bg: #452a33;
  --footer-deep: #2f1c24;
  --white: #fffcf9;
  --line: rgba(61, 44, 40, 0.1);
  --shadow: 0 12px 40px rgba(61, 44, 40, 0.08);
  --shadow-hover: 0 20px 50px rgba(61, 44, 40, 0.12);
  --radius: 20px;
  --radius-lg: 32px;
  --header-h: 76px;
  --shell: 1000px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans: "Source Sans 3", "Segoe UI", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  overflow-x: hidden;
}

@media (min-width: 901px) {
  html {
    scroll-snap-type: y mandatory;
  }
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--brown);
  background-color: var(--cream);
  background-image:
    radial-gradient(ellipse 90% 55% at 12% 8%, var(--blush-glow) 0%, transparent 62%),
    radial-gradient(ellipse 70% 50% at 88% 92%, var(--rose-glow) 0%, transparent 68%),
    linear-gradient(175deg, #fcf8f4 0%, var(--cream) 45%, var(--cream-warm) 100%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle 420px at 8% 42%, rgba(232, 213, 207, 0.22) 0%, transparent 72%),
    radial-gradient(circle 360px at 92% 58%, rgba(162, 76, 97, 0.1) 0%, transparent 70%),
    radial-gradient(circle 280px at 50% 18%, rgba(255, 252, 249, 0.5) 0%, transparent 65%);
}

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

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.12;
  color: var(--brown);
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  padding: 10px 16px;
  background: var(--brown);
  color: var(--white);
  border-radius: 8px;
}

.skip-link:focus {
  top: 12px;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--font-sans);
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    background 0.3s ease,
    border-color 0.3s ease,
    color 0.3s ease;
}

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

.btn:active {
  transform: translateY(0);
}

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

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(162, 76, 97, 0.22);
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 12px 36px rgba(162, 76, 97, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--brown);
  border-color: var(--rose-muted);
}

.btn-outline:hover {
  background: var(--rose-soft);
  border-color: var(--rose);
}

.btn-lg {
  padding: 16px 34px;
  font-size: 1rem;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.86rem;
}

/* Header */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background: rgba(247, 241, 234, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition:
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.site-header.is-scrolled {
  background: rgba(247, 241, 234, 0.95);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 24px rgba(61, 44, 40, 0.06);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--brown);
  white-space: nowrap;
}

.brand-name em {
  font-style: italic;
  color: var(--rose);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-list a {
  position: relative;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--brown-muted);
  transition: color 0.25s ease;
  white-space: nowrap;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 2px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--ease);
}

.nav-list a:hover {
  color: var(--brown);
}

.nav-list a.is-active {
  color: var(--brown);
}

.nav-list a.is-active::after {
  transform: scaleX(1);
}

.scroll-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background: linear-gradient(90deg, var(--accent-soft), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.site-header.is-scrolled .scroll-progress {
  opacity: 1;
}

.nav-cta {
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 12px;
  transition: background 0.3s ease;
}

.menu-toggle:hover {
  background: var(--rose-soft);
}

.menu-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition:
    transform 0.4s var(--ease),
    opacity 0.3s ease;
}

.menu-toggle.is-open .menu-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open .menu-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open .menu-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(61, 44, 40, 0.35);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

.nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Floral decorations */

.floral {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.floral img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: saturate(0.9);
}

.hero,
.section.about,
.section.services,
.section.hygiene,
.section.gallery,
.section.booking,
.section.contact {
  overflow: visible;
}

/* Page 1 — Hero: flower3 upper-left text area */

.floral--hero-tl {
  left: 5.5%;
  top: 7%;
  width: clamp(280px, 28vw, 340px);
  opacity: 0.32;
  z-index: 1;
}

.floral--hero-tl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160%;
  height: 160%;
  border-radius: 50%;
  background:
    radial-gradient(
      ellipse 68% 68% at 50% 50%,
      rgba(232, 213, 207, 0.5) 0%,
      rgba(162, 76, 97, 0.16) 48%,
      transparent 74%
    );
  filter: blur(32px);
  z-index: -1;
  pointer-events: none;
}

/* Page 1 — Hero: flower4 lower-right of image/badge */

.hero-visual .floral--hero-br {
  right: -6%;
  bottom: -10%;
  top: auto;
  width: clamp(230px, 22vw, 300px);
  opacity: 0.42;
  z-index: 1;
}

.hero-visual .floral--hero-br::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  border-radius: 50%;
  background:
    radial-gradient(
      ellipse 70% 70% at 50% 50%,
      rgba(232, 213, 207, 0.55) 0%,
      rgba(162, 76, 97, 0.2) 50%,
      transparent 74%
    );
  filter: blur(26px);
  z-index: -1;
  pointer-events: none;
}

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

.hero-visual .floral--hero-br.float {
  animation: float-hero-br 8s ease-in-out infinite;
  animation-delay: -2s;
}

/* Page 2 — About: flower1 lower-left */

.floral--about-left {
  left: 0.5%;
  bottom: 6%;
  top: auto;
  width: clamp(300px, 30vw, 380px);
  opacity: 0.39;
  z-index: 1;
}

.floral--about-left::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 45%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  border-radius: 50%;
  background:
    radial-gradient(
      ellipse 70% 70% at 50% 50%,
      rgba(232, 213, 207, 0.5) 0%,
      rgba(162, 76, 97, 0.18) 52%,
      transparent 74%
    );
  filter: blur(28px);
  z-index: -1;
  pointer-events: none;
}

/* Page 3/4 — Services: flower6 lower-right */

.services > .shell {
  position: relative;
  overflow: visible;
}

.services .floral--services-br {
  top: auto;
  left: auto;
  bottom: 28px;
  right: 0;
  width: clamp(250px, 24vw, 350px);
  opacity: 0.39;
  z-index: 1;
  transform: translate(34%, 22%);
  transform-origin: bottom right;
}

.services .floral--services-br.float {
  animation: float-services-br 8s ease-in-out infinite;
  animation-delay: -3.5s;
}

@keyframes float-services-br {
  0%,
  100% {
    transform: translate(34%, 22%) translateY(0);
  }
  50% {
    transform: translate(34%, 22%) translateY(-5px);
  }
}

.services .floral--services-br::before {
  content: "";
  position: absolute;
  top: 52%;
  left: 48%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  border-radius: 50%;
  background:
    radial-gradient(
      ellipse 70% 70% at 50% 50%,
      rgba(232, 213, 207, 0.48) 0%,
      rgba(162, 76, 97, 0.16) 50%,
      transparent 72%
    );
  filter: blur(26px);
  z-index: -1;
  pointer-events: none;
}

/* Page 5 — Hygiene: flower7 garland on quote card */

.hygiene-quote .floral--hygiene-quote {
  left: 50%;
  right: auto;
  top: -60px;
  width: clamp(260px, 30vw, 340px);
  opacity: 0.44;
  z-index: 2;
  transform: translateX(-50%);
}

.hygiene-quote .floral--hygiene-quote::before {
  content: "";
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: 130%;
  border-radius: 50%;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 50%,
      rgba(232, 213, 207, 0.45) 0%,
      rgba(162, 76, 97, 0.14) 55%,
      transparent 75%
    );
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
}

@keyframes float-gallery {
  0%,
  100% {
    transform: translate(36%, -30%) rotate(16deg) translateY(0);
  }
  50% {
    transform: translate(36%, -30%) rotate(16deg) translateY(-5px);
  }
}

/* Page 6 — Gallery: flower8 on third tile top-right corner */

.gallery-placeholder--3 .floral--gallery {
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  width: clamp(260px, 88%, 330px);
  opacity: 0.72;
  z-index: 2;
  transform: translate(36%, -30%) rotate(16deg);
  transform-origin: center center;
}

.gallery-placeholder--3 .floral--gallery.float {
  animation: float-gallery 8s ease-in-out infinite;
  animation-delay: -3.5s;
}

.gallery-placeholder--3 .floral--gallery img {
  filter: saturate(1.08) brightness(1.01);
}

.gallery-placeholder--3 .floral--gallery::before {
  content: "";
  position: absolute;
  top: 52%;
  left: 48%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(232, 213, 207, 0.28) 0%,
      rgba(162, 76, 97, 0.08) 55%,
      transparent 75%
    );
  filter: blur(16px);
  z-index: -1;
  pointer-events: none;
}

/* Page 7 — Reservation: flower9 overlaps top-left card edge */

.booking-panel .floral--booking {
  left: -42px;
  top: -30px;
  right: auto;
  width: clamp(250px, 24vw, 300px);
  opacity: 0.42;
  z-index: 2;
  transform: none;
}

.booking-panel .floral--booking::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 135%;
  height: 135%;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(232, 213, 207, 0.42) 0%,
      rgba(162, 76, 97, 0.14) 55%,
      transparent 75%
    );
  filter: blur(22px);
  z-index: -1;
  pointer-events: none;
}

/* Page 8 — Contact: flower10 bottom-right of map card */

.floral--contact {
  right: -78px;
  bottom: -78px;
  top: auto;
  left: auto;
  width: clamp(260px, 24vw, 320px);
  opacity: 0.4;
  z-index: 1;
}

.floral--contact::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 135%;
  height: 135%;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(232, 213, 207, 0.42) 0%,
      rgba(162, 76, 97, 0.14) 55%,
      transparent 75%
    );
  filter: blur(22px);
  z-index: -1;
  pointer-events: none;
}

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

@keyframes float-hygiene {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-6px);
  }
}

.hygiene-quote .floral--hygiene-quote.float {
  animation: float-hygiene 9s ease-in-out infinite;
}

.float {
  animation: float 7.5s ease-in-out infinite;
}

.float--delay {
  animation-delay: -3.5s;
}

.float--slow {
  animation-duration: 10s;
  animation-delay: -1.5s;
}

/* Floral mobile */

@media (max-width: 768px) {
  .floral--hero-tl {
    left: 1%;
    top: 10%;
    width: clamp(130px, 34vw, 170px);
    opacity: 0.26;
  }

  .hero-visual .floral--hero-br {
    right: -2%;
    bottom: -1%;
    width: clamp(105px, 28vw, 145px);
    opacity: 0.28;
  }

  .floral--about-left {
    width: clamp(140px, 38vw, 190px);
    bottom: 2%;
    opacity: 0.24;
  }

  .services .floral--services-br {
    display: block;
    top: auto;
    left: auto;
    bottom: 20px;
    right: 0;
    width: clamp(175px, 54vw, 245px);
    opacity: 0.36;
    z-index: 1;
    transform: translate(38%, 26%);
    transform-origin: bottom right;
  }

  .services .floral--services-br.float {
    animation: none;
  }

  .hygiene-quote .floral--hygiene-quote {
    top: -30px;
    width: clamp(200px, 60vw, 255px);
    opacity: 0.34;
  }

  .gallery-placeholder--3 .floral--gallery {
    width: clamp(140px, 46vw, 185px);
    opacity: 0.68;
    transform: translate(36%, -30%) rotate(16deg);
  }

  .gallery-placeholder--3 .floral--gallery img {
    filter: saturate(1.02) brightness(1);
  }

  .booking-panel .floral--booking {
    left: -22px;
    top: -20px;
    width: clamp(100px, 28vw, 140px);
    opacity: 0.32;
    z-index: 2;
  }

  .floral--contact {
    right: -30px;
    bottom: -30px;
    width: clamp(110px, 28vw, 145px);
    opacity: 0.26;
  }
}

@media (max-width: 480px) {
  .floral--hero-tl {
    width: clamp(105px, 30vw, 140px);
    opacity: 0.22;
  }

  .hero-visual .floral--hero-br {
    width: clamp(88px, 26vw, 115px);
    opacity: 0.24;
  }

  .floral--about-left,
  .floral--contact {
    display: none;
  }

  .booking-panel .floral--booking {
    left: -8px;
    top: -14px;
    width: clamp(72px, 22vw, 96px);
    opacity: 0.26;
    z-index: 2;
  }

  .gallery-placeholder--3 .floral--gallery {
    width: clamp(112px, 38vw, 148px);
    opacity: 0.64;
    transform: translate(36%, -30%) rotate(16deg);
  }

  .hygiene-quote .floral--hygiene-quote {
    top: -24px;
    width: clamp(170px, 54vw, 220px);
    opacity: 0.3;
  }

  .services .floral--services-br {
    bottom: 16px;
    width: clamp(155px, 58vw, 225px);
    transform: translate(36%, 24%);
  }
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  overflow: visible;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  background: transparent;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 75% 55% at 18% 22%, rgba(232, 213, 207, 0.55) 0%, transparent 72%),
    radial-gradient(ellipse 55% 45% at 82% 78%, rgba(162, 76, 97, 0.16) 0%, transparent 68%),
    radial-gradient(circle 320px at 70% 35%, rgba(255, 252, 249, 0.35) 0%, transparent 70%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: clamp(28px, 4vw, 52px);
  padding-top: clamp(16px, 3vh, 32px);
  padding-bottom: clamp(24px, 4vh, 40px);
  width: 100%;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 14px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}

.hero-lead {
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  color: var(--brown-muted);
  max-width: 34ch;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-ritual {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--brown-light);
}

.hero-ritual-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.hero-visual {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 560px;
  overflow: visible;
  z-index: 1;
}

.hero-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  background: var(--white);
  aspect-ratio: 4 / 5;
  max-height: min(70vh, 640px);
  position: relative;
  z-index: 1;
}

.hero-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-caption {
  position: absolute;
  right: 0;
  top: auto;
  bottom: clamp(52px, 11%, 76px);
  left: auto;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
  padding: 12px 20px 12px 14px;
  background: rgba(255, 252, 249, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(162, 76, 97, 0.28);
  border-radius: 18px;
  box-shadow:
    0 8px 28px rgba(61, 44, 40, 0.09),
    0 2px 8px rgba(162, 76, 97, 0.12);
  transform: translateX(32%);
}

.hero-caption-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}

.hero-caption-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.25;
}

.hero-caption-text strong {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: 0.01em;
}

.hero-caption-text small {
  font-size: 0.78rem;
  color: var(--brown-light);
}

/* Sections */

.section {
  position: relative;
  padding: clamp(48px, 5vh, 72px) 0;
  overflow: visible;
}

@media (min-width: 901px) {
  .section {
    min-height: calc(100svh - var(--header-h));
    display: flex;
    align-items: center;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .section > .shell,
  .section > .shell.hygiene-shell,
  .section > .shell.contact-shell,
  .section > .shell.gallery-shell {
    width: 100%;
  }
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.section > .shell {
  position: relative;
  z-index: 2;
}

.section-tag {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 12px;
}

.section-intro {
  max-width: 620px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.section-intro--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-intro h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.85rem);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--brown-muted);
}

/* About */

.about {
  background: transparent;
}

.about::before {
  background:
    radial-gradient(ellipse 60% 48% at 92% 12%, rgba(232, 213, 207, 0.55) 0%, transparent 72%),
    radial-gradient(circle 240px at 6% 88%, rgba(162, 76, 97, 0.08) 0%, transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(240, 232, 223, 0.45) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-card {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.about-icon {
  display: block;
  width: 84px;
  height: 84px;
  object-fit: contain;
  object-position: center;
  padding: 10px;
  margin: 0 auto 18px;
  background: radial-gradient(circle, var(--rose-soft) 0%, rgba(232, 213, 207, 0) 72%);
  border-radius: 50%;
}

.about-card h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.about-card p {
  font-size: 0.95rem;
  color: var(--brown-muted);
}

/* Services */

.services {
  background: transparent;
}

.services::before {
  background:
    radial-gradient(circle 340px at 6% 78%, rgba(162, 76, 97, 0.16) 0%, transparent 72%),
    radial-gradient(circle 300px at 94% 22%, rgba(239, 230, 220, 0.65) 0%, transparent 68%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(232, 213, 207, 0.2) 0%, transparent 70%);
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  overflow: visible;
}

.service-card {
  position: relative;
  z-index: 1;
  padding: 30px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--rose-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--rose-soft);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-rows: auto auto auto;
  column-gap: 20px;
  align-items: start;
}

.service-card--wide .service-num {
  grid-row: 1 / 4;
}

.service-card--wide .service-link {
  grid-column: 3;
  grid-row: 1 / 4;
  align-self: center;
}

.service-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-style: italic;
  font-weight: 500;
  color: var(--rose);
  line-height: 1;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.service-card p {
  font-size: 0.94rem;
  color: var(--brown-muted);
  margin-bottom: 12px;
}

.service-note {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brown-light);
}

.service-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--rose-deep);
  white-space: nowrap;
  transition: color 0.25s ease;
}

.service-link:hover {
  color: var(--brown);
}

/* Hygiene */

.hygiene {
  background: transparent;
}

.hygiene::before {
  background:
    radial-gradient(ellipse 52% 58% at 4% 48%, rgba(162, 76, 97, 0.12) 0%, transparent 72%),
    radial-gradient(ellipse 42% 48% at 96% 62%, rgba(255, 252, 249, 0.55) 0%, transparent 68%),
    radial-gradient(circle 200px at 50% 10%, rgba(232, 213, 207, 0.25) 0%, transparent 70%);
}

.hygiene-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: stretch;
}

.hygiene-copy {
  align-self: center;
}

.hygiene-copy h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 16px;
}

.hygiene-copy > p {
  color: var(--brown-muted);
  margin-bottom: 20px;
}

.hygiene-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: var(--brown-muted);
}

.hygiene-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rose);
}

.hygiene-aside {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.hygiene-quote {
  position: relative;
  overflow: visible;
  padding: 52px 28px 30px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 3px solid var(--rose);
  box-shadow: var(--shadow);
}

.hygiene-quote p {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--brown);
}

/* Brands (compact, inside hygiene) */

.brands-mini {
  padding: 24px 26px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.brands-mini-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 14px;
}

.brand-chips {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.brand-chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 16px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition:
    transform 0.35s var(--ease),
    background 0.3s ease,
    border-color 0.3s ease;
}

.brand-chip strong {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brown);
}

.brand-chip span {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--brown-light);
}

.brand-chip:hover {
  transform: translateY(-2px);
  background: var(--rose-soft);
  border-color: var(--rose-muted);
}

/* Gallery */

.section.gallery {
  padding-top: clamp(80px, 12vh, 140px);
  padding-bottom: clamp(80px, 12vh, 140px);
}

.gallery {
  background: transparent;
}

.gallery::before {
  background:
    radial-gradient(ellipse 80% 55% at 50% 0%, rgba(232, 213, 207, 0.55) 0%, transparent 70%),
    radial-gradient(circle 320px at 12% 75%, rgba(162, 76, 97, 0.12) 0%, transparent 70%),
    radial-gradient(circle 280px at 88% 60%, rgba(232, 213, 207, 0.18) 0%, transparent 72%),
    linear-gradient(180deg, rgba(250, 246, 241, 0.65) 0%, rgba(245, 235, 227, 0.35) 50%, rgba(250, 246, 241, 0.5) 100%);
}

.gallery-shell {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.5vw, 28px);
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
}

.gallery-tile {
  margin: 0;
  min-width: 0;
}

.gallery-placeholder {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  aspect-ratio: 4 / 5;
  min-height: 280px;
  border-radius: var(--radius-lg);
  padding: 24px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(255, 252, 249, 0.9) 0%, var(--cream-deep) 42%, var(--rose-soft) 100%);
  border: 1px dashed rgba(162, 76, 97, 0.45);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.gallery-placeholder:hover {
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 12px 32px rgba(61, 44, 40, 0.06);
}

.gallery-placeholder span {
  position: relative;
  z-index: 3;
  padding: 9px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--brown);
  background: rgba(255, 252, 249, 0.92);
  border: 1px solid rgba(162, 76, 97, 0.25);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(61, 44, 40, 0.04);
}

.gallery-placeholder--2 {
  background: linear-gradient(160deg, rgba(255, 252, 249, 0.85) 0%, var(--rose-soft) 38%, var(--cream) 100%);
}

.gallery-placeholder--has-photo {
  align-items: flex-start;
  justify-content: center;
  padding: 20px 20px 0;
  border-style: solid;
  border-color: rgba(162, 76, 97, 0.22);
  background: var(--cream-deep);
}

.gallery-placeholder--has-photo span {
  position: relative;
  z-index: 3;
}

.gallery-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.gallery-tile:last-child {
  overflow: visible;
}

.gallery-placeholder--3 {
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-deep) 50%, rgba(232, 213, 207, 0.55) 100%);
  overflow: visible;
}

/* Booking */

.section.booking {
  background: transparent;
  padding-top: clamp(72px, 11vh, 108px);
  padding-bottom: clamp(72px, 11vh, 108px);
}

.booking::before {
  background:
    radial-gradient(ellipse 72% 58% at 50% 48%, rgba(255, 252, 249, 0.82) 0%, transparent 78%),
    radial-gradient(circle 380px at 22% 68%, rgba(232, 213, 207, 0.44) 0%, transparent 70%),
    radial-gradient(circle 300px at 80% 24%, rgba(162, 76, 97, 0.2) 0%, transparent 68%),
    linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 52%, var(--cream-deep) 100%);
}

.booking > .shell {
  display: flex;
  justify-content: center;
  width: 100%;
}

.booking-panel {
  position: relative;
  overflow: visible;
  text-align: center;
  width: min(92vw, 720px);
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(52px, 7vw, 76px) clamp(32px, 5vw, 56px);
  background: transparent;
  border-radius: var(--radius-lg);
  isolation: isolate;
}

.booking-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--white);
  box-shadow:
    0 16px 48px rgba(61, 44, 40, 0.07),
    0 4px 20px rgba(162, 76, 97, 0.1);
  z-index: 1;
  pointer-events: none;
}

.booking-panel .section-tag,
.booking-panel h2,
.booking-panel p,
.booking-panel .btn {
  position: relative;
  z-index: 3;
}

.booking-panel .section-tag {
  display: block;
  margin-bottom: 14px;
}

.booking-panel h2 {
  font-size: clamp(2rem, 3.8vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.booking-panel p {
  color: var(--brown-muted);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .section.booking {
    padding-top: clamp(56px, 8vw, 80px);
    padding-bottom: clamp(56px, 8vw, 80px);
  }

  .booking-panel {
    width: min(94vw, 100%);
    padding: clamp(40px, 6vw, 48px) clamp(20px, 5vw, 28px);
  }
}

/* Contact */

.contact {
  background: transparent;
}

.contact::before {
  background:
    radial-gradient(ellipse 48% 52% at 88% 18%, rgba(232, 213, 207, 0.45) 0%, transparent 72%),
    radial-gradient(circle 260px at 10% 85%, rgba(162, 76, 97, 0.1) 0%, transparent 70%),
    linear-gradient(180deg, transparent 0%, rgba(240, 232, 223, 0.35) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-list li {
  margin-bottom: 18px;
}

.contact-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 4px;
}

.contact-value {
  font-size: 1rem;
  color: var(--brown);
}

a.contact-value:hover {
  color: var(--rose);
}

.contact-details .btn {
  margin-top: 8px;
}

.map-placeholder {
  position: relative;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 280px;
  padding: 32px;
  background: linear-gradient(160deg, var(--cream-deep), var(--rose-soft));
  border-radius: var(--radius);
  border: 1px solid var(--line);
  text-align: center;
}

.map-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.map-placeholder .map-logo,
.map-placeholder p,
.map-placeholder small {
  position: relative;
  z-index: 1;
}

.map-placeholder p {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--brown);
}

.map-placeholder small {
  font-size: 0.88rem;
  color: var(--brown-muted);
}

/* Footer */

.site-footer {
  position: relative;
  background:
    radial-gradient(ellipse 70% 55% at 12% 0%, rgba(162, 76, 97, 0.2) 0%, transparent 58%),
    radial-gradient(ellipse 50% 40% at 88% 100%, rgba(162, 76, 97, 0.12) 0%, transparent 65%),
    linear-gradient(180deg, var(--footer-bg) 0%, var(--footer-deep) 100%);
  color: rgba(255, 252, 249, 0.88);
  padding-top: clamp(56px, 7vh, 72px);
}

.footer-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  padding-bottom: clamp(36px, 5vh, 48px);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 340px;
}

.footer-logo {
  width: clamp(108px, 12vw, 132px);
  height: clamp(108px, 12vw, 132px);
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.22),
    0 0 0 4px rgba(162, 76, 97, 0.24);
}

.footer-brand-copy strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 2.6vw, 2.15rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.footer-brand-copy p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 252, 249, 0.76);
  max-width: 30ch;
}

.footer-col-title {
  margin-bottom: 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  font-size: 0.96rem;
  font-weight: 500;
  color: rgba(255, 252, 249, 0.84);
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-nav-list a:hover {
  color: #f4d4dc;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  line-height: 1.5;
  color: rgba(255, 252, 249, 0.82);
}

.footer-contact-list svg {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  fill: var(--accent-soft);
}

.footer-contact-list a {
  color: rgba(255, 252, 249, 0.86);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact-list a:hover {
  color: #f4d4dc;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(162, 76, 97, 0.28);
}

.footer-bottom-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px 22px;
  font-size: 0.84rem;
  color: rgba(255, 252, 249, 0.52);
}

.footer-bottom-shell p {
  margin: 0;
}

.footer-credit a {
  color: var(--accent-soft);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-credit a:hover {
  color: #f4d4dc;
}

/* EasyWeek floating trigger — slight scale + label fade */

.EWBookingWidgetTrigger {
  top: auto !important;
  bottom: clamp(44px, 6.5vh, 60px) !important;
}

.EWBookingWidgetTrigger__icon {
  width: 86px !important;
  height: 86px !important;
}

.EWBookingWidgetTrigger__text {
  padding: 0.45rem 0.9rem !important;
  font-size: 0.9rem !important;
  animation: ew-label-reveal 7s ease-in-out infinite;
}

@media (min-width: 768px) {
  .EWBookingWidgetTrigger__icon {
    width: 122px !important;
    height: 122px !important;
  }
}

.EWBookingWidgetTrigger:hover .EWBookingWidgetTrigger__text,
.EWBookingWidgetTrigger:focus-visible .EWBookingWidgetTrigger__text {
  animation: none;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(0) !important;
}

@keyframes ew-label-reveal {
  0%,
  18% {
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
  }

  28%,
  48% {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  58%,
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
  }
}

/* Cookie banner */

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 150;
  transform: translateY(calc(100% + 32px));
  opacity: 0;
  transition:
    transform 0.55s var(--ease),
    opacity 0.55s var(--ease);
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
}

.cookie-inner p {
  flex: 1;
  min-width: 200px;
  font-size: 0.9rem;
  color: var(--brown-muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* Reveal animation */

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

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

.about-grid .reveal:nth-child(2),
.services-grid .reveal:nth-child(2),
.gallery-grid .reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.about-grid .reveal:nth-child(3),
.services-grid .reveal:nth-child(3),
.gallery-grid .reveal:nth-child(3) {
  transition-delay: 0.2s;
}

.services-grid .reveal:nth-child(4) {
  transition-delay: 0.3s;
}

.services-grid .reveal:nth-child(5) {
  transition-delay: 0.4s;
}

/* Reduced motion */

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .float,
  .hero-visual .floral--hero-br.float,
  .hygiene-quote .floral--hygiene-quote.float,
  .gallery-placeholder--3 .floral--gallery.float,
  .services .floral--services-br.float {
    animation: none;
  }

  .section {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }

  .hero {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }
}

/* Responsive */

@media (max-width: 1024px) {
  .hero-shell {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-ritual {
    justify-content: center;
  }

  .hero-visual {
    max-width: 520px;
    margin: 0 auto;
  }

  .hero-caption {
    right: 12px;
    top: auto;
    bottom: 18px;
    min-width: 180px;
    padding: 11px 18px 11px 12px;
    transform: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .hygiene-shell {
    grid-template-columns: 1fr;
  }

  .service-card--wide {
    grid-template-columns: 1fr;
  }

  .service-card--wide .service-num {
    grid-row: auto;
  }

  .service-card--wide .service-link {
    grid-column: auto;
    grid-row: auto;
    margin-top: 8px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-snap-type: none;
  }

  .hero {
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    min-height: auto;
  }

  .section {
    min-height: auto;
    display: block;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
    padding: clamp(56px, 8vw, 88px) 0;
  }
  .nav-list,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 110;
    flex-direction: column;
    align-items: stretch;
    width: min(320px, 88vw);
    height: 100vh;
    height: 100dvh;
    padding: calc(var(--header-h) + 24px) 28px 32px;
    background: var(--white);
    box-shadow: -8px 0 40px rgba(61, 44, 40, 0.12);
    transform: translateX(105%);
    transition: transform 0.45s var(--ease);
    gap: 0;
    overflow-y: auto;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav .nav-list {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 24px;
  }

  .site-nav .nav-list a {
    display: block;
    width: 100%;
    padding: 14px 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    display: inline-flex;
    width: 100%;
    justify-content: center;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: min(400px, 100%);
    margin: 0 auto;
    gap: 20px;
  }

  .gallery-placeholder {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

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

@media (max-width: 600px) {
  :root {
    --header-h: 68px;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 40px;
  }

  .hero-frame {
    max-height: 52vh;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
    max-width: none;
    margin: 0 auto;
  }

  .footer-brand-copy p {
    margin: 0 auto;
  }

  .footer-nav,
  .footer-contact {
    max-width: 360px;
    margin: 0 auto;
    text-align: left;
  }

  .footer-bottom-shell {
    flex-direction: column;
    text-align: center;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .cookie-actions {
    justify-content: center;
  }
}

@media (min-width: 901px) {
  .site-nav {
    display: flex !important;
  }
}
