:root {
  --ivory: #f7f4ec;
  --paper: #fffdf8;
  --sage-100: #dce5da;
  --sage-500: #506b5c;
  --sage-700: #385044;
  --blue: #aabfc5;
  --gold: #b69358;
  --gold-light: #d7bd8c;
  --ink: #22332f;
  --muted: #68736e;
  --line: rgba(34, 51, 47, 0.14);
  --white-line: rgba(247, 244, 236, 0.18);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Jost", "Avenir Next", Avenir, sans-serif;
  --shadow-soft: 0 24px 70px rgba(45, 65, 56, 0.11);
  --shadow-card: 0 14px 42px rgba(45, 65, 56, 0.075);
  --radius-sm: 8px;
  --radius-md: 20px;
  --radius-lg: 40px;
  --shell: min(1180px, calc(100vw - 64px));
  --nav-height: 84px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 24px);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

::selection {
  background: var(--blue);
  color: var(--ink);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: clamp(48px, min(10vw, 8vh), 150px) 0;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--ivory);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--sage-500);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  margin-bottom: 30px;
  font-size: clamp(4.5rem, 7.1vw, 7.5rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 30px;
  font-size: clamp(3rem, min(5.2vw, 6.5vh), 5.5rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: clamp(1.9rem, 2.6vw, 2.65rem);
  letter-spacing: -0.025em;
}

h1 em,
h2 em {
  color: var(--sage-500);
  font-weight: 500;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 14px 24px;
  border: 1px solid var(--sage-500);
  border-radius: 100px;
  background: var(--sage-500);
  color: white;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.button:hover {
  border-color: var(--sage-700);
  background: var(--sage-700);
  transform: translateY(-2px);
}

.button-small {
  min-height: 46px;
  padding: 10px 20px;
  font-size: 0.67rem;
}

.button-outline {
  background: transparent;
  color: var(--sage-700);
}

.button-outline:hover {
  color: white;
}

.button-gold {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
}

.button-gold:hover {
  border-color: var(--gold-light);
  background: var(--gold-light);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid currentColor;
  color: var(--sage-700);
  font-weight: 400;
  transition: color 180ms ease, gap 180ms ease;
}

.text-link:hover {
  gap: 13px;
  color: var(--gold);
}

.arrow-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--nav-height);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

/* Glass background lives on a pseudo-element: backdrop-filter on the header
   itself would make it the containing block for the fixed .nav-menu overlay */
.site-header::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: rgba(247, 244, 236, 0.92);
  backdrop-filter: blur(18px);
  content: "";
  opacity: 0;
  transition: opacity 220ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 6px 28px rgba(34, 51, 47, 0.06);
}

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

.site-nav {
  display: grid;
  height: 100%;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  line-height: 1;
}

.brand-mark {
  width: auto;
  height: 42px;
}

.brand strong {
  display: block;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(17px, 2vw, 30px);
}

.nav-menu a {
  position: relative;
  padding: 12px 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.07em;
}

.nav-menu a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.nav-menu a:hover::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--nav-height) + 62px) 0 70px;
  overflow: hidden;
  background:
    radial-gradient(circle at 9% 8%, rgba(170, 191, 197, 0.23), transparent 31%),
    var(--ivory);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: calc(100svh - var(--nav-height) - 132px);
  align-items: center;
  grid-template-columns: minmax(0, 600px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding-top: 20px;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 35px;
  color: #53605b;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.trust-row {
  display: flex;
  gap: 42px;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  display: grid;
  flex: 0 0 39px;
  width: 39px;
  height: 39px;
  place-items: center;
  border: 1px solid rgba(182, 147, 88, 0.7);
  border-radius: 50%;
  color: var(--gold);
}

.trust-icon.certificate {
  border-color: var(--blue);
  color: var(--sage-500);
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.1;
}

.trust-item small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.03em;
  line-height: 1.25;
}

.hero-media {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  width: clamp(380px, 47vw, 1100px);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ivory) 0%, rgba(247, 244, 236, 0) 24%);
  content: "";
  pointer-events: none;
}

.hero-caption {
  position: absolute;
  z-index: 2;
  right: 30px;
  bottom: 34px;
  display: flex;
  min-width: 225px;
  align-items: center;
  gap: 15px;
  padding: 14px 18px;
  border: 1px solid rgba(80, 107, 92, 0.18);
  border-radius: 100px;
  background: rgba(255, 253, 248, 0.93);
  box-shadow: var(--shadow-card);
  color: var(--sage-700);
  font-size: 0.69rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-flower {
  position: absolute;
  z-index: 2;
  bottom: -70px;
  left: -60px;
  width: 280px;
  opacity: 0.8;
  transform: rotate(-9deg);
}

.scroll-cue {
  position: absolute;
  bottom: 25px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue i {
  display: block;
  width: 35px;
  height: 1px;
  background: var(--gold);
}

.about {
  overflow: hidden;
  background: var(--paper);
}

.about-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(350px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(60px, 10vw, 135px);
}

.about-media {
  position: relative;
}

.portrait-wrap {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(80, 107, 92, 0.25);
  border-radius: 230px 230px 20px 20px;
}

.portrait-wrap::before {
  position: absolute;
  z-index: -1;
  inset: 38px -22px -26px 25px;
  border-radius: inherit;
  background: var(--sage-100);
  content: "";
}

.portrait-wrap img {
  width: 100%;
  aspect-ratio: 0.75;
  max-height: 64vh;
  border-radius: 215px 215px 14px 14px;
  object-fit: cover;
  object-position: 54% 22%;
}

.hand-note {
  position: absolute;
  right: -72px;
  bottom: -34px;
  width: 170px;
  margin: 0;
  color: var(--sage-700);
  font-family: var(--display);
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.15;
  transform: rotate(-5deg);
}

.hand-note::before {
  display: block;
  width: 42px;
  height: 1px;
  margin: 0 0 14px -52px;
  background: var(--gold);
  content: "";
}

.about-copy {
  position: relative;
  z-index: 2;
  max-width: 610px;
}

.about-copy > p {
  color: #59655f;
}

.about-copy .large-copy {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.38;
}

.macrame-note {
  display: grid;
  margin: 34px 0;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: 52px 1fr;
  gap: 18px;
}

.macrame-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.macrame-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 500;
}

.macrame-symbol {
  color: var(--gold);
  font-family: var(--display);
  font-size: 3rem;
  line-height: 1;
}

.about-flower {
  position: absolute;
  right: -200px;
  bottom: -280px;
  width: min(520px, 38vw);
  opacity: 0.32;
  pointer-events: none;
  transform: rotate(-12deg);
}

.gallery {
  background: var(--paper);
}

.gallery-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar {
  display: none;
}

.gallery-track:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 6px;
}

.gallery-card {
  position: relative;
  flex: 0 0 calc((100% - 40px) / 3);
  margin: 0;
  scroll-snap-align: start;
}

.gallery-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 58vh;
  border-radius: 14px;
  object-fit: cover;
}

.gallery-card figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.map-section {
  background:
    linear-gradient(rgba(220, 229, 218, 0.89), rgba(220, 229, 218, 0.89)),
    radial-gradient(circle at 1px 1px, rgba(34, 51, 47, 0.16) 1px, transparent 0);
  background-size: auto, 22px 22px;
}

.section-heading {
  display: grid;
  align-items: end;
  margin-bottom: clamp(32px, 4.5vh, 65px);
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.55fr);
  gap: 50px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p {
  max-width: 440px;
  color: #56625c;
}

.map-board {
  display: grid;
  min-height: min(620px, 74vh);
  overflow: hidden;
  border: 1px solid rgba(80, 107, 92, 0.24);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: var(--shadow-soft);
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
}

.map-board > * {
  min-width: 0;
}

.foot-figure {
  position: relative;
  display: grid;
  min-height: min(620px, 74vh);
  place-items: center;
  padding: 42px;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 52% 46%, rgba(170, 191, 197, 0.18), transparent 49%),
    var(--paper);
}

.foot-figure::after {
  position: absolute;
  top: 25px;
  left: 27px;
  color: rgba(34, 51, 47, 0.45);
  content: "INTERAKTYWNA MAPA • WSKAŻ NARZĄD";
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.organ-stage {
  position: relative;
  width: min(100%, 640px, 70vh);
  cursor: pointer;
  touch-action: manipulation;
}

.organ-base {
  width: 100%;
  mix-blend-mode: multiply;
}

.organ-veil {
  position: absolute;
  inset: 0;
  background: rgba(255, 253, 248, 0);
  pointer-events: none;
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
  transition: background 300ms ease, backdrop-filter 300ms ease, -webkit-backdrop-filter 300ms ease;
}

.organ-stage.has-active .organ-veil {
  background: rgba(255, 253, 248, 0.35);
  -webkit-backdrop-filter: blur(1.5px);
  backdrop-filter: blur(1.5px);
}

.organ {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transform-origin: center;
  transition: opacity 220ms ease, transform 300ms ease;
}

.organ.is-active {
  z-index: 2;
  opacity: 1;
  filter: drop-shadow(0 14px 28px rgba(34, 51, 47, 0.3));
  transform: scale(1.16);
}

.zone-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 5vw, 70px);
  background: linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(240, 243, 235, 0.9));
}

.zone-number {
  margin-bottom: 38px;
  color: var(--gold);
  font-family: var(--display);
  font-size: 1.15rem;
  font-style: italic;
}

.zone-panel h3 {
  margin-bottom: 12px;
}

.zone-organs {
  margin-bottom: 26px;
  color: var(--sage-500);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.zone-panel > p:not(.zone-number, .zone-organs, .disclaimer) {
  color: var(--muted);
}

.zone-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 18px 0 34px;
}

.zone-pills button {
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.63rem;
  letter-spacing: 0.03em;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.zone-pills button:hover {
  border-color: var(--sage-500);
  color: var(--sage-700);
}

.zone-pills button.is-active {
  border-color: var(--sage-500);
  background: var(--sage-500);
  color: white;
}

.disclaimer {
  display: grid;
  margin: 0;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  color: #747d78;
  font-size: 0.72rem;
  line-height: 1.55;
  grid-template-columns: 25px 1fr;
  gap: 10px;
}

.disclaimer span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--display);
}

.services {
  overflow: hidden;
  background: var(--ivory);
}

.section-heading.centered {
  display: block;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered > p {
  max-width: 550px;
  margin: 22px auto 0;
}

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

.service-card {
  position: relative;
  display: flex;
  min-height: clamp(280px, 38vh, 380px);
  flex-direction: column;
  padding: 42px 31px 32px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.62);
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.service-card:hover {
  z-index: 2;
  background: var(--paper);
  box-shadow: var(--shadow-card);
  transform: translateY(-8px);
}

.service-card.featured {
  background: var(--sage-500);
  color: white;
  transform: translateY(-16px);
}

.service-card.featured:hover {
  background: var(--sage-700);
  transform: translateY(-22px);
}

.popular-label {
  position: absolute;
  top: -12px;
  left: 50%;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transform: translateX(-50%);
  white-space: nowrap;
}

.service-card h3 {
  min-height: 2em;
  margin-bottom: 18px;
  font-size: clamp(1.75rem, 2vw, 2.1rem);
  line-height: 1;
}

.service-card > p {
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.6;
}

.featured > p {
  color: rgba(255, 255, 255, 0.75);
}

.service-more {
  margin-bottom: 26px;
}

.service-more summary {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  color: var(--sage-700);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  list-style: none;
}

.service-more summary::-webkit-details-marker {
  display: none;
}

.service-more summary::after {
  content: "+";
  font-size: 0.9rem;
  line-height: 1;
}

.service-more[open] summary::after {
  content: "–";
}

.service-more > p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

.featured .service-more summary {
  color: rgba(255, 255, 255, 0.85);
}

.featured .service-more > p {
  color: rgba(255, 255, 255, 0.72);
}

.service-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
  padding-top: 21px;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.3rem;
  font-weight: 600;
}

.featured .service-meta {
  border-color: rgba(255, 255, 255, 0.2);
}

.service-meta small {
  display: block;
  margin-bottom: 2px;
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.54rem;
  font-weight: 400;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.featured .service-meta small {
  color: rgba(255, 255, 255, 0.6);
}

.services-cta {
  margin-top: 55px;
  text-align: center;
}

.services-note {
  max-width: 560px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.services-note a {
  color: var(--sage-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.services-flower {
  position: absolute;
  top: 55px;
  right: -20px;
  width: 165px;
  opacity: 0.45;
  transform: rotate(12deg);
}

.reviews {
  background: var(--paper);
}

.reviews-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 65px;
}

.reviews-head h2 {
  margin-bottom: 0;
}

.rating-summary {
  display: grid;
  min-width: 230px;
  padding: 25px 30px;
  border-left: 1px solid var(--line);
  grid-template-columns: auto 1fr;
  gap: 3px 15px;
}

.rating-summary strong {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  grid-row: span 2;
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.17em;
}

.rating-summary small {
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.35;
}

.review-carousel {
  position: relative;
}

.review-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.review-track::-webkit-scrollbar {
  display: none;
}

.review-track:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 6px;
}

.review-card {
  display: flex;
  min-height: clamp(260px, 34vh, 340px);
  flex: 0 0 calc((100% - 40px) / 3);
  flex-direction: column;
  margin: 0;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: 10px 10px 70px 10px;
  background: var(--ivory);
  scroll-snap-align: start;
}

.review-card:nth-child(even) {
  border-radius: 70px 10px 10px;
  background: var(--sage-100);
}

.review-card blockquote {
  margin: 30px 0 24px;
  font-family: var(--display);
  font-size: clamp(1.3rem, 1.7vw, 1.55rem);
  font-style: italic;
  line-height: 1.4;
}

.carousel-nav {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 26px;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(34, 51, 47, 0.3);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.05rem;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.carousel-btn:hover:not(:disabled) {
  border-color: var(--sage-500);
  background: var(--sage-500);
  color: var(--paper);
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.review-card figcaption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.review-card figcaption strong {
  font-family: var(--display);
  font-size: 1.25rem;
}

.review-card figcaption span {
  color: var(--muted);
  font-size: 0.65rem;
}

.reviews-link {
  margin-top: 40px;
}

.faq {
  background: #f1f2e9;
}

.faq-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(60px, 10vw, 130px);
}

.faq-intro {
  position: sticky;
  top: calc(var(--nav-height) + 40px);
}

.faq-intro > p:not(.eyebrow) {
  max-width: 430px;
  color: var(--muted);
}

.faq-list {
  border-top: 1px solid rgba(34, 51, 47, 0.24);
}

.faq-list details {
  border-bottom: 1px solid rgba(34, 51, 47, 0.24);
}

.faq-list summary {
  display: grid;
  min-height: 88px;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  font-weight: 600;
  list-style: none;
  grid-template-columns: 1fr 44px;
  gap: 20px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary i {
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--sage-500);
  border-radius: 50%;
}

.faq-list summary i::before,
.faq-list summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1px;
  background: var(--sage-500);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-list summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-list details p {
  max-width: 650px;
  padding: 0 64px 30px 0;
  color: var(--muted);
}

.flower-transition {
  position: relative;
  z-index: 2;
  height: clamp(160px, 19vw, 270px);
  margin-bottom: -1px;
  overflow: hidden;
  background: var(--ink);
}

.flower-transition img {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: max(1200px, 105vw);
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  transform: translateX(-50%);
}

.flower-transition::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(34, 51, 47, 0) 55%, rgba(34, 51, 47, 0.8) 92%, #22332f 100%);
  content: "";
  pointer-events: none;
}

.contact {
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
}

.contact::before {
  position: absolute;
  top: 0;
  right: -12%;
  width: 45%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(170, 191, 197, 0.11), transparent 70%);
  content: "";
}

.contact .eyebrow {
  color: var(--gold-light);
}

.contact h2 em {
  color: var(--blue);
}

.contact-heading {
  display: grid;
  align-items: end;
  margin-bottom: clamp(44px, 7vh, 80px);
  padding-bottom: clamp(36px, 5.5vh, 65px);
  border-bottom: 1px solid var(--white-line);
  grid-template-columns: 1fr auto;
}

.contact-heading .eyebrow {
  grid-column: 1 / -1;
}

.contact-heading h2 {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(60px, 10vw, 130px);
}

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

.contact-block small {
  display: block;
  margin-bottom: 20px;
  color: var(--gold-light);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-block address,
.contact-main {
  display: block;
  margin-bottom: 11px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 2.7vw, 2.55rem);
  font-style: normal;
  line-height: 1.05;
}

.contact-block p {
  color: rgba(247, 244, 236, 0.58);
  font-size: 0.8rem;
}

.contact-block > a:not(.contact-main) {
  display: block;
  width: fit-content;
  min-height: 36px;
  color: rgba(247, 244, 236, 0.8);
  font-size: 0.86rem;
  text-decoration: underline;
  text-decoration-color: rgba(215, 189, 140, 0.5);
  text-underline-offset: 5px;
}

.contact-block a:hover {
  color: var(--gold-light);
}

.entrance-photo {
  grid-column: 1 / -1;
  margin: 15px 0 0;
}

.entrance-photo img {
  width: 100%;
  max-height: 300px;
  border-radius: 8px 70px 8px 8px;
  filter: saturate(0.7) contrast(0.95);
  object-fit: cover;
}

.entrance-photo figcaption {
  margin-top: 12px;
  color: rgba(247, 244, 236, 0.52);
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hours {
  padding: 40px;
  border: 1px solid var(--white-line);
  border-radius: 8px 70px 8px 8px;
  background: rgba(255, 255, 255, 0.025);
}

.hours-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 30px;
}

.hours-title > span {
  color: var(--gold-light);
  font-size: 1.7rem;
}

.hours h3 {
  margin: 0;
  font-size: 2rem;
}

.hours dl {
  margin: 0;
}

.hours dl > div {
  display: grid;
  padding: 10px 0;
  border-bottom: 1px solid rgba(247, 244, 236, 0.11);
  grid-template-columns: 1fr auto;
  gap: 20px;
}

.hours dt,
.hours dd {
  margin: 0;
  font-size: 0.83rem;
}

.hours dt {
  color: rgba(247, 244, 236, 0.65);
}

.hours dd {
  font-weight: 400;
  text-align: right;
}

.hours .closed dd {
  color: rgba(247, 244, 236, 0.42);
}

.hours > p {
  margin: 25px 0 0;
  color: var(--gold-light);
  font-family: var(--display);
  font-size: 1.2rem;
  font-style: italic;
}

.site-footer {
  border-top: 1px solid rgba(247, 244, 236, 0.11);
  background: var(--ink);
  color: rgba(247, 244, 236, 0.55);
}

.site-footer .shell {
  display: grid;
  min-height: 105px;
  align-items: center;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
}

.footer-brand {
  color: var(--gold-light);
}

.footer-brand small {
  color: rgba(215, 189, 140, 0.75);
}

.site-footer p,
.site-footer > .shell > a:last-child {
  margin: 0;
  font-size: 0.68rem;
}

.site-footer p {
  text-align: center;
}

.site-footer > .shell > a:last-child {
  min-height: 44px;
  align-content: center;
  color: rgba(247, 244, 236, 0.75);
}

.mobile-actions {
  display: none;
}

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

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

@media (max-width: 1100px) {
  :root {
    --shell: min(100% - 48px, 980px);
  }

  .nav-menu {
    gap: 16px;
  }

  .nav-menu a {
    font-size: 0.66rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 470px);
  }

  .hero-media {
    width: clamp(340px, 42vw, 560px);
  }

  .about-grid {
    gap: 70px;
  }

  .map-board {
    grid-template-columns: 1fr 0.72fr;
  }

  .foot-figure {
    padding: 30px 22px;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .service-card {
    min-height: 360px;
  }

  .service-card.featured,
  .service-card.featured:hover {
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  :root {
    --nav-height: 72px;
    --shell: calc(100% - 40px);
  }

  body {
    font-size: 16px;
  }

  .nav-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    width: 48px;
    height: 48px;
    place-content: center;
    border: 0;
    border-radius: 50%;
    background: transparent;
    gap: 7px;
    grid-column: 3;
  }

  .nav-toggle > span:not(.sr-only) {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-last-child(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .nav-menu {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    justify-content: safe center;
    gap: 6px;
    padding: 90px max(32px, calc((100vw - 640px) / 2));
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
    background: rgba(247, 244, 236, 0.98);
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    transform: translateY(-12px);
    transition: opacity 220ms ease, transform 220ms ease, visibility 220ms;
  }

  .nav-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-menu a {
    width: 100%;
    padding: 8px 0;
    font-family: var(--display);
    font-size: clamp(1.9rem, min(7vw, 5.5vh), 3.6rem);
    font-weight: 500;
    letter-spacing: -0.02em;
  }

  .nav-booking {
    display: none;
  }

  .hero {
    display: flex;
    min-height: auto;
    padding-top: calc(var(--nav-height) + 65px);
    padding-bottom: 0;
    flex-direction: column;
    background: radial-gradient(circle at 15% 8%, rgba(170, 191, 197, 0.25), transparent 34%), var(--ivory);
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-media {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    height: min(75vw, 400px);
    margin-top: 44px;
    order: 2;
  }

  .hero-media::after {
    background: linear-gradient(to bottom, var(--ivory) 0%, rgba(247, 244, 236, 0) 22%);
  }

  .hero-flower {
    display: none;
  }

  .hero-photo {
    object-position: 50% 30%;
  }

  .scroll-cue {
    display: none;
  }

  .about-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .about-media {
    width: min(78vw, 540px);
  }

  .about-copy {
    max-width: 680px;
  }

  .about-flower {
    width: 420px;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 25px;
  }

  .map-board {
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .foot-figure {
    width: 100%;
    min-width: 0;
    min-height: auto;
    aspect-ratio: 1.1;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .zone-panel {
    width: 100%;
    min-width: 0;
    min-height: 430px;
  }

  .review-card,
  .gallery-card {
    flex-basis: calc((100% - 20px) / 2);
  }

  .faq-intro {
    position: static;
  }

  .contact-heading {
    display: block;
  }

  .contact-heading .button {
    margin-top: 35px;
  }

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

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 32px);
  }

  body {
    padding-bottom: calc(65px + env(safe-area-inset-bottom));
  }

  h1 {
    font-size: clamp(3.75rem, 17vw, 5rem);
  }

  h2 {
    font-size: clamp(3rem, 14vw, 4.1rem);
  }

  .section {
    padding: 90px 0;
  }

  .brand strong {
    font-size: 1.35rem;
  }

  .brand small {
    font-size: 0.5rem;
  }

  .hero {
    padding-top: calc(var(--nav-height) + 44px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 19px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-row {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }

  .hero-media {
    height: min(85vw, 340px);
    margin-top: 36px;
  }

  .hero-caption {
    right: 16px;
    bottom: 22px;
    min-width: 0;
    font-size: 0.6rem;
  }

  .about-media {
    width: 88vw;
    margin-left: -9vw;
  }

  .portrait-wrap {
    border-radius: 180px 180px 16px 16px;
  }

  .portrait-wrap img {
    border-radius: 165px 165px 10px 10px;
  }

  .hand-note {
    right: -4vw;
    bottom: 24px;
    width: 145px;
    font-size: 1.2rem;
  }

  .map-section .section-heading {
    margin-bottom: 40px;
  }

  .map-board {
    border-radius: 20px;
  }

  .foot-figure {
    aspect-ratio: 1;
    padding: 42px 6px 12px;
    overflow: hidden;
  }

  .organ-stage {
    width: 100%;
    max-width: 640px;
  }

  .foot-figure::after {
    top: 16px;
    left: 16px;
    font-size: 0.52rem;
  }

  .zone-panel {
    min-height: 470px;
    padding: 36px 25px;
  }

  .zone-number {
    margin-bottom: 24px;
  }

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

  .service-card {
    min-height: 320px;
  }

  .review-card,
  .review-card:nth-child(even) {
    min-height: 290px;
    flex-basis: 86%;
    border-radius: 12px 12px 55px;
  }

  .gallery-card {
    flex-basis: 80%;
  }

  .reviews-head {
    display: block;
  }

  .rating-summary {
    margin-top: 35px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .faq-list summary {
    grid-template-columns: 1fr 44px;
  }

  .faq-list details p {
    padding-right: 0;
  }

  .flower-transition {
    height: 130px;
  }

  .flower-transition img {
    width: 850px;
  }

  .contact-heading {
    margin-bottom: 55px;
    padding-bottom: 50px;
  }

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

  .entrance-photo {
    grid-column: auto;
  }

  .hours {
    padding: 28px 22px;
    border-radius: 8px 50px 8px 8px;
  }

  .site-footer .shell {
    min-height: 170px;
    justify-items: center;
    padding: 25px 0;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 150;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(255, 253, 248, 0.95);
    box-shadow: 0 -10px 35px rgba(34, 51, 47, 0.1);
    backdrop-filter: blur(12px);
    grid-template-columns: 0.72fr 1.28fr;
    gap: 8px;
  }

  .mobile-actions a {
    display: flex;
    min-height: 49px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sage-500);
    border-radius: 100px;
    color: var(--sage-700);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-actions a:last-child {
    background: var(--sage-500);
    color: white;
  }
}

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

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

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