:root {
  --bg: #f1efe9;
  --surface: #faf8f4;
  --surface-soft: #e9e5dd;
  --surface-strong: #ddd7cc;
  --ink: #292a27;
  --ink-soft: #4e504b;
  --muted: #6f716b;
  --green: #1e4035;
  --green-deep: #173329;
  --green-soft: #dbe4de;
  --clay: #a96f56;
  --clay-deep: #835341;
  --clay-soft: #dfbfaf;
  --clay-pale: #ead8ce;
  --paper: #fcfbf8;
  --line: rgba(41, 42, 39, .12);
  --line-strong: rgba(41, 42, 39, .2);
  --line-light: rgba(252, 251, 248, .16);

  --container: 1240px;
  --gutter: clamp(24px, 4vw, 56px);
  --header-h: 76px;

  --s1: 4px;
  --s2: 8px;
  --s3: 12px;
  --s4: 16px;
  --s5: 20px;
  --s6: 24px;
  --s7: 32px;
  --s8: 40px;
  --s9: 48px;
  --s10: 64px;
  --s11: 80px;
  --s12: 96px;

  --section-y: clamp(80px, 7.2vw, 112px);
  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 32px;
  --r-xl: 42px;

  --shadow-soft: 0 14px 44px rgba(35, 42, 37, .055);
  --shadow-lift: 0 24px 70px rgba(31, 40, 35, .09);
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  font-kerning: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  opacity: .32;
  background-image: radial-gradient(rgba(39, 42, 38, .055) .45px, transparent .55px);
  background-size: 15px 15px;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
select,
summary,
input[type="checkbox"] {
  cursor: pointer;
}

button,
a,
summary,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--paper);
  background: var(--green);
}

:focus-visible {
  outline: 3px solid rgba(169, 111, 86, .78);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 14px;
  left: 14px;
  transform: translateY(-180%);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--paper);
  background: var(--green);
  transition: transform 180ms var(--ease);
}

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

.container {
  width: min(calc(100% - (var(--gutter) * 2)), var(--container));
  margin-inline: auto;
}

.section,
.section-shell {
  position: relative;
  padding-block: var(--section-y);
}

.section-tinted {
  background: rgba(250, 248, 244, .55);
}

.section-dark {
  overflow: hidden;
  color: var(--paper);
  background:
    radial-gradient(circle at 92% 12%, rgba(223, 191, 175, .11), transparent 30rem),
    radial-gradient(circle at 7% 92%, rgba(255, 255, 255, .035), transparent 28rem),
    linear-gradient(145deg, var(--green) 0%, var(--green-deep) 100%);
}

.section-dark::after {
  position: absolute;
  top: -220px;
  right: -160px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(252, 251, 248, .07);
  border-radius: 46% 54% 41% 59%;
  content: "";
  transform: rotate(19deg);
  pointer-events: none;
}

/* Header */
.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(241, 239, 233, .76);
  backdrop-filter: blur(18px) saturate(112%);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(41, 42, 39, .08);
  background: rgba(241, 239, 233, .95);
  box-shadow: 0 10px 34px rgba(34, 40, 36, .04);
}

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

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  border-radius: 10px;
}

.brand img {
  width: 140px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(17px, 1.8vw, 28px);
  font-size: 13px;
  font-weight: 560;
  letter-spacing: .025em;
}

.primary-nav a {
  text-decoration: none;
}

.primary-nav a:not(.nav-cta) {
  position: relative;
  padding-block: 12px;
  color: #444640;
}

.primary-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 100%;
  bottom: 8px;
  left: 0;
  height: 1px;
  border-radius: 999px;
  content: "";
  background: var(--clay);
  transition: right 180ms var(--ease);
}

.nav-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 18px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--paper);
  background: var(--green);
  transition: transform 180ms var(--ease), background 180ms ease, box-shadow 180ms ease;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  display: none;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(252, 251, 248, .62);
}

.menu-toggle span {
  width: 18px;
  height: 1px;
  background: var(--ink);
  transition: transform 180ms var(--ease), opacity 160ms ease;
}

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

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

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

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

h1,
h2,
h3 {
  font-family: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-kerning: normal;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(3.2rem, 5.35vw, 5.35rem);
  line-height: .99;
  letter-spacing: -.035em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 3.8vw, 4rem);
  line-height: 1.04;
  letter-spacing: -.03em;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 1.75vw, 1.8rem);
  line-height: 1.15;
  letter-spacing: -.018em;
}

p {
  margin-bottom: 0;
  text-wrap: pretty;
}

.section-heading > p:not(.eyebrow),
.lead,
.lead-small {
  text-wrap: pretty;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  color: var(--clay-deep);
  font-size: 11px;
  font-weight: 760;
  line-height: 1.2;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 1px;
  flex: 0 0 auto;
  content: "";
  background: currentColor;
  opacity: .58;
}

.lead {
  max-width: 620px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.45vw, 1.27rem);
  line-height: 1.58;
}

.lead-small {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

.section-heading {
  max-width: 790px;
  margin-bottom: clamp(40px, 4.8vw, 64px);
}

.section-heading > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: 17px;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .65fr);
  align-items: end;
  gap: clamp(44px, 8vw, 116px);
}

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

.split-heading > p {
  padding-bottom: 7px;
}

.section-heading-light .eyebrow {
  color: var(--clay-soft);
}

.section-heading-light > p:not(.eyebrow) {
  color: rgba(252, 251, 248, .7);
}

/* Buttons */
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 680;
  line-height: 1.2;
  letter-spacing: .02em;
  text-decoration: none;
  transition: transform 180ms var(--ease), background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button-primary {
  color: var(--paper);
  border-color: var(--green);
  background: var(--green);
  box-shadow: 0 10px 24px rgba(30, 64, 53, .11);
}

.button-ghost {
  color: var(--green);
  border-color: rgba(30, 64, 53, .23);
  background: rgba(252, 251, 248, .25);
}

/* Hero */
.hero {
  overflow: hidden;
  padding-block: clamp(58px, 7.2vw, 96px) clamp(74px, 8vw, 110px);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 8%;
  right: -10vw;
  width: min(46vw, 660px);
  aspect-ratio: 1;
  border-radius: 43% 57% 58% 42% / 52% 43% 57% 48%;
  content: "";
  background: rgba(223, 191, 175, .23);
  transform: rotate(-10deg);
}

.hero::after {
  position: absolute;
  z-index: -1;
  bottom: 11%;
  left: -120px;
  width: 250px;
  height: 150px;
  border: 1px solid rgba(30, 64, 53, .08);
  border-radius: 50%;
  content: "";
  transform: rotate(-18deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-block: 10px;
}

.hero-copy .eyebrow {
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-notes {
  max-width: 640px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(46px, 5.5vw, 70px);
  border-top: 1px solid var(--line);
}

.hero-notes span {
  padding: 15px 16px 0 0;
  color: #62645e;
  font-size: 14px;
  line-height: 1.35;
}

.hero-notes span:not(:first-child) {
  padding-left: 16px;
  border-left: 1px solid var(--line);
}

/* Image slots */
.image-slot.has-image {
  display: block;
  padding: 0;
  min-height: 0;
  color: transparent;
  background: #d8d1c6;
  box-shadow: var(--shadow-soft);
}

.image-slot.has-image::before,
.image-slot.has-image::after {
  display: none;
}

.slot-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.image-slot {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  min-height: 220px;
  padding: clamp(20px, 2.4vw, 30px);
  border: 1px solid rgba(41, 42, 39, .1);
  border-radius: var(--r-lg);
  isolation: isolate;
  color: #51524d;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, .56), transparent 31%),
    linear-gradient(148deg, #e8e3da 0%, #d9d2c7 55%, #cec3b5 100%);
  box-shadow: inset 0 1px rgba(255, 255, 255, .25);
}

.image-slot::before {
  position: absolute;
  z-index: -1;
  top: 13%;
  right: 10%;
  width: 58%;
  aspect-ratio: 1;
  border: 1px solid rgba(30, 64, 53, .105);
  border-radius: 44% 56% 54% 46%;
  content: "";
  transform: rotate(16deg);
}

.image-slot::after {
  position: absolute;
  z-index: -1;
  right: -8%;
  bottom: -8%;
  width: 50%;
  aspect-ratio: 1.15;
  border-radius: 52% 37% 45% 55%;
  content: "";
  background: rgba(169, 111, 86, .13);
  transform: rotate(-13deg);
}

.image-slot-hero {
  width: min(100%, 470px);
  justify-self: end;
  aspect-ratio: 4 / 5;
  min-height: 0;
  border-radius: 46% 46% 30px 30px / 27% 27% 30px 30px;
  box-shadow: var(--shadow-lift);
}

.image-slot-hero .slot-kicker {
  align-self: center;
  margin-top: 8px;
}

.image-slot strong {
  max-width: 78%;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.4rem, 1.9vw, 1.9rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.025em;
}

.image-slot small {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .05em;
  opacity: .66;
}

.slot-kicker {
  margin-bottom: auto;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .13em;
  text-transform: uppercase;
  opacity: .58;
}

/* Atmosphere */
#atmosphere {
  background: rgba(250, 248, 244, .38);
}

.atmosphere-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.34fr) minmax(300px, .66fr);
  grid-template-rows: auto auto;
  gap: 24px;
}

.feature-card {
  min-width: 0;
}

.feature-card-large {
  grid-row: 1 / 3;
}

.feature-card .image-slot {
  aspect-ratio: 4 / 3;
}

.feature-card-large .image-slot {
  aspect-ratio: 3 / 2;
  min-height: 430px;
}

.feature-copy {
  display: grid;
  grid-template-columns: minmax(150px, .8fr) minmax(0, 1fr);
  gap: 24px;
  padding: 20px 4px 0;
}

.atmosphere-grid > .feature-card:not(.feature-card-large) .feature-copy {
  grid-template-columns: 1fr;
  gap: 7px;
}

.feature-copy h3,
.feature-copy p {
  margin: 0;
}

.feature-copy p {
  color: var(--muted);
  font-size: 15px;
}

.text-feature {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  border-radius: var(--r-lg);
  color: var(--paper);
  background:
    radial-gradient(circle at 85% 15%, rgba(223, 191, 175, .12), transparent 13rem),
    var(--green);
}

.text-feature .metric {
  margin-bottom: auto;
}

.text-feature h3 {
  color: var(--paper);
}

.text-feature p {
  max-width: 330px;
  color: rgba(252, 251, 248, .7);
  font-size: 15px;
}

.metric {
  color: var(--clay-soft);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -.04em;
}

/* Rituals */
#rituals {
  overflow: hidden;
  background: #e8e4dc;
}

#rituals::before {
  position: absolute;
  top: 50px;
  right: -120px;
  width: 330px;
  height: 210px;
  border: 1px solid rgba(169, 111, 86, .12);
  border-radius: 50%;
  content: "";
  transform: rotate(22deg);
}

.ritual-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.ritual-card {
  position: relative;
  min-width: 0;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  grid-column: span 4;
  padding: clamp(24px, 2.3vw, 32px);
  border: 1px solid rgba(41, 42, 39, .08);
  border-radius: var(--r-md);
  background: rgba(250, 248, 244, .72);
  box-shadow: 0 10px 34px rgba(42, 43, 40, .025);
  transition: transform 220ms var(--ease), border-color 180ms ease, background 180ms ease, box-shadow 220ms ease;
}

.ritual-card:nth-child(1),
.ritual-card:nth-child(2),
.ritual-card:nth-child(3),
.ritual-card:nth-child(4),
.ritual-card:nth-child(5),
.ritual-card:nth-child(6) {
  grid-column: span 4;
}


.ritual-card-featured {
  color: var(--paper);
  border-color: transparent;
  background:
    radial-gradient(circle at 88% 16%, rgba(223, 191, 175, .13), transparent 17rem),
    var(--green);
  box-shadow: var(--shadow-soft);
}

.ritual-card-featured p {
  color: rgba(252, 251, 248, .7) !important;
}

.ritual-card-featured .ritual-meta,
.ritual-card-featured .price {
  color: var(--clay-soft);
}

.ritual-card .image-slot-card {
  width: calc(100% + (clamp(24px, 2.3vw, 32px) * 2));
  margin: calc(clamp(24px, 2.3vw, 32px) * -1) calc(clamp(24px, 2.3vw, 32px) * -1) 26px;
  aspect-ratio: 4 / 3;
  min-height: 0;
  border: 0;
  border-bottom: 1px solid rgba(41, 42, 39, .08);
  border-radius: var(--r-md) var(--r-md) 0 0;
  box-shadow: none;
}

.ritual-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 0;
  color: var(--clay-deep);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.ritual-card h3 {
  margin-top: 26px;
  font-size: clamp(1.75rem, 2.35vw, 2.35rem);
}

.ritual-card p {
  max-width: 520px;
  color: var(--muted);
  font-size: 15px;
}

.price {
  margin-top: auto;
  padding-top: 24px;
  color: var(--green);
  font-size: 13px;
  font-weight: 720;
  letter-spacing: .025em;
}

/* Finder */
#finder {
  background: var(--bg);
}

.finder-layout {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  gap: clamp(44px, 7vw, 92px);
  align-items: start;
  padding: clamp(34px, 4.8vw, 62px);
  border: 1px solid rgba(41, 42, 39, .08);
  border-radius: var(--r-xl);
  background:
    radial-gradient(circle at 0% 100%, rgba(169, 111, 86, .08), transparent 30rem),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.finder-intro {
  position: sticky;
  top: calc(var(--header-h) + 36px);
}

.finder-intro h2 {
  font-size: clamp(2.3rem, 3.45vw, 3.55rem);
}

.finder-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
}

.finder-note {
  max-width: 390px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: #777971;
  font-size: 13px;
  line-height: 1.5;
}

.finder-form,
.booking-form {
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(41, 42, 39, .08);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: 0 12px 36px rgba(41, 42, 39, .04);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field {
  display: grid;
  gap: 9px;
  min-width: 0;
}

.field > span {
  color: #565852;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .035em;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  border: 1px solid rgba(41, 42, 39, .14);
  border-radius: var(--r-sm);
  outline: none;
  color: var(--ink);
  background: #f7f5f0;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 112px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8a8b84;
  opacity: 1;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(30, 64, 53, .46);
  background: var(--paper);
  box-shadow: 0 0 0 4px rgba(30, 64, 53, .075);
}

.finder-submit {
  width: 100%;
  margin-top: 22px;
}

.finder-result {
  margin-top: 22px;
  padding: 24px;
  border: 1px solid rgba(169, 111, 86, .16);
  border-radius: 20px;
  background: linear-gradient(135deg, #eee3dc, #f4eee8);
}

.finder-result h3 {
  margin: 8px 0 8px;
  font-size: 2rem;
}

.finder-result p {
  color: #62645e;
  font-size: 15px;
}

.result-label {
  color: var(--clay-deep);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(41, 42, 39, .1);
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

/* Space */
#space {
  padding-block: clamp(86px, 8vw, 126px);
}

.space-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, .6fr);
  gap: 22px;
}

.image-slot-dark {
  color: rgba(252, 251, 248, .86);
  border-color: rgba(252, 251, 248, .12);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, .055), transparent 28%),
    linear-gradient(150deg, #315248, #26463c 62%, #203a31);
  box-shadow: none;
}

.image-slot-dark::before {
  border-color: rgba(252, 251, 248, .12);
}

.image-slot-dark::after {
  background: rgba(223, 191, 175, .12);
}

.space-main {
  aspect-ratio: 16 / 10;
  grid-row: 1 / 3;
  min-height: 480px;
}

.space-grid > .image-slot:not(.space-main) {
  aspect-ratio: 4 / 5;
  min-height: 0;
}

.space-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column: 1 / -1;
  gap: 0;
  margin-top: 6px;
  border-top: 1px solid var(--line-light);
}

.space-facts div {
  padding: 22px 24px 0 0;
}

.space-facts div:not(:first-child) {
  padding-left: 24px;
  border-left: 1px solid var(--line-light);
}

.space-facts span {
  color: var(--clay-soft);
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 38px;
  line-height: 1;
}

.space-facts p {
  margin-top: 7px;
  color: rgba(252, 251, 248, .68);
  font-size: 13px;
}

/* Specialists */
#specialists {
  background: var(--surface);
}

.specialist-layout {
  display: grid;
  grid-template-columns: minmax(300px, .7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(54px, 8vw, 112px);
}

.specialist-image {
  width: min(100%, 430px);
  aspect-ratio: 4 / 5;
  min-height: 0;
  justify-self: center;
  border-radius: 44% 44% 28px 28px / 24% 24% 28px 28px;
}

.specialist-image .slot-kicker {
  align-self: center;
  margin-top: 8px;
}

.specialist-copy > .lead-small {
  margin-bottom: 34px;
}

.specialist-list {
  border-top: 1px solid var(--line);
}

.specialist-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.specialist-list article > span {
  padding-top: 4px;
  color: var(--clay-deep);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .1em;
}

.specialist-list h3 {
  margin-bottom: 5px;
  font-size: 1.35rem;
}

.specialist-list p {
  max-width: 610px;
  color: var(--muted);
  font-size: 15px;
}

/* Certificate */
.certificate-section {
  overflow: hidden;
  padding-block: clamp(72px, 6.6vw, 96px);
  background: var(--bg);
}

.certificate-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(210px, .55fr) auto;
  align-items: end;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(34px, 5.2vw, 64px);
  border-radius: var(--r-xl);
  color: #3d302a;
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 255, 255, .24), transparent 20rem),
    linear-gradient(130deg, #d9a78e, #c68c70 68%, #bd8066);
  box-shadow: var(--shadow-soft);
}

.certificate-card::before {
  position: absolute;
  top: -44%;
  left: 52%;
  width: 320px;
  aspect-ratio: 1;
  border: 1px solid rgba(70, 49, 39, .12);
  border-radius: 50%;
  content: "";
}

.certificate-card .eyebrow {
  color: #6f4635;
}

.certificate-card h2 {
  max-width: 730px;
  font-size: clamp(2.35rem, 3.8vw, 4rem);
}

.certificate-card p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(61, 48, 42, .77);
}

.certificate-visual {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.58;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  border: 1px solid rgba(61, 48, 42, .14);
  border-radius: 18px;
  background: rgba(249, 235, 226, .6);
  box-shadow: 0 18px 34px rgba(80, 50, 35, .08);
  transform: rotate(-3deg);
}

.certificate-visual span {
  font-family: Georgia, serif;
  font-size: 18px;
  letter-spacing: .13em;
}

.certificate-visual small {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}


.certificate-visual.image-slot {
  display: block;
  padding: 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-color: rgba(61, 48, 42, .12);
  background: #c39a83;
}

.certificate-visual .slot-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.certificate-card .button-primary {
  align-self: end;
  color: var(--paper);
  background: var(--green-deep);
  border-color: var(--green-deep);
}

/* Visit steps */
#visit {
  background: #e8e5de;
}


.visit-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0 0 clamp(38px, 5vw, 62px);
}

.visit-visual {
  min-width: 0;
  margin: 0;
}

.visit-visual .image-slot {
  aspect-ratio: 3 / 2;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
}

.visit-visual figcaption {
  margin-top: 12px;
  color: var(--clay-deep);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.steps-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
}

.steps-grid li {
  position: relative;
  min-height: 240px;
  padding: 26px 28px 14px 0;
}

.steps-grid li:not(:first-child) {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.steps-grid li > span {
  display: block;
  margin-bottom: 54px;
  color: var(--clay-deep);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: .1em;
}

.steps-grid h3 {
  font-size: 1.65rem;
}

.steps-grid p {
  max-width: 240px;
  color: var(--muted);
  font-size: 15px;
}

/* Reviews */
#reviews {
  background: var(--surface);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 16px;
}

.reviews-grid blockquote {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 0;
  padding: clamp(28px, 3.2vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--paper);
  transition: transform 220ms var(--ease), border-color 180ms ease, box-shadow 220ms ease;
}

.reviews-grid blockquote:first-child {
  color: var(--paper);
  border-color: transparent;
  background: var(--green);
}

.reviews-grid blockquote p {
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  line-height: 1.25;
  letter-spacing: -.02em;
}

.reviews-grid blockquote:not(:first-child) p {
  color: #454741;
}

.reviews-grid footer {
  margin-top: 30px;
  color: var(--clay-soft);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .06em;
}

.reviews-grid blockquote:not(:first-child) footer {
  color: var(--clay-deep);
}

/* FAQ */
#faq {
  background: var(--bg);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: clamp(54px, 9vw, 130px);
  align-items: start;
}

.faq-layout > div:first-child {
  position: sticky;
  top: calc(var(--header-h) + 36px);
}

.faq-layout > div:first-child > p:not(.eyebrow) {
  max-width: 430px;
  color: var(--muted);
  font-size: 16px;
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  list-style: none;
  padding: 22px 50px 22px 0;
  font-family: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  font-size: 1.32rem;
  line-height: 1.25;
}

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

.faq-list summary::before,
.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 18px;
  height: 1px;
  content: "";
  background: var(--ink);
  transition: transform 180ms var(--ease);
}

.faq-list summary::after {
  transform: rotate(90deg);
}

.faq-list details[open] summary::after {
  transform: rotate(0);
}

.faq-list details p {
  max-width: 670px;
  padding: 0 50px 22px 0;
  color: var(--muted);
  font-size: 15px;
}

/* Booking */
.booking-section {
  color: var(--paper);
  background:
    radial-gradient(circle at 10% 10%, rgba(223, 191, 175, .11), transparent 24rem),
    linear-gradient(145deg, #21483b, #17352b);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(280px, .68fr) minmax(0, 1.32fr);
  gap: clamp(52px, 9vw, 126px);
  align-items: start;
}

.booking-layout > div > .eyebrow {
  color: var(--clay-soft);
}

.booking-layout > div > p:not(.eyebrow) {
  max-width: 460px;
  color: rgba(252, 251, 248, .68);
}

.booking-form {
  color: var(--ink);
  background: var(--paper);
}

.consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  margin: 20px 0;
  color: #686a64;
  font-size: 13px;
  line-height: 1.45;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--green);
}

.booking-form .button {
  min-width: 190px;
}

.form-status {
  min-height: 22px;
  margin-top: 16px;
  color: var(--green);
  font-size: 13px;
}

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

/* Contacts */
.contacts-section {
  background: var(--surface);
}

.contacts-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .78fr);
  gap: clamp(52px, 10vw, 150px);
  align-items: start;
}

.contacts-grid > div > p:not(.eyebrow) {
  max-width: 570px;
  color: var(--muted);
}

.contact-card {
  margin: 0;
  border-top: 1px solid var(--line-strong);
  font-style: normal;
}

.contact-card > div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.contact-card span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.contact-card strong,
.contact-card a {
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

/* Footer */
.site-footer {
  padding-block: 34px;
  color: rgba(252, 251, 248, .76);
  background: #152a23;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto minmax(220px, .75fr) minmax(260px, 1fr) auto;
  align-items: center;
  gap: 34px;
}

.footer-brand img {
  filter: invert(1) grayscale(1) brightness(1.8);
  opacity: .9;
}

.footer-grid > p {
  max-width: 330px;
  font-size: 13px;
}

.footer-grid nav {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.footer-grid nav a {
  font-size: 12px;
  text-decoration: none;
}

.footer-grid small {
  white-space: nowrap;
  font-size: 11px;
  opacity: .65;
}

/* Mouse hover only */
@media (hover: hover) and (pointer: fine) {
  .primary-nav a:not(.nav-cta):hover::after {
    right: 0;
  }

  .nav-cta:hover,
  .button-primary:hover {
    transform: translateY(-2px);
    background: var(--green-deep);
    box-shadow: 0 14px 30px rgba(30, 64, 53, .16);
  }

  .button-ghost:hover {
    transform: translateY(-2px);
    border-color: rgba(30, 64, 53, .4);
    background: rgba(252, 251, 248, .62);
  }

  .ritual-card:not(.ritual-card-featured):hover,
  .reviews-grid blockquote:not(:first-child):hover {
    transform: translateY(-3px);
    border-color: rgba(41, 42, 39, .15);
    box-shadow: var(--shadow-soft);
  }

  .ritual-card-featured:hover,
  .reviews-grid blockquote:first-child:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 52px rgba(22, 50, 41, .16);
  }

  .contact-card a:hover {
    color: var(--clay-deep);
    text-decoration: underline;
  }

  .faq-list summary:hover {
    color: var(--green);
  }

  .footer-grid nav a:hover {
    color: var(--paper);
  }
}

/* Tablet */
@media (max-width: 1080px) {
  :root {
    --gutter: clamp(24px, 4vw, 40px);
    --section-y: clamp(72px, 8vw, 96px);
  }

  .primary-nav {
    gap: 17px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, .72fr);
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 6.7vw, 4.7rem);
  }

  .atmosphere-grid {
    grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr);
  }

  .feature-card-large .image-slot {
    min-height: 380px;
  }

  .ritual-card:nth-child(1),
  .ritual-card:nth-child(2),
  .ritual-card:nth-child(3),
  .ritual-card:nth-child(4),
  .ritual-card:nth-child(5),
  .ritual-card:nth-child(6) {
    grid-column: span 6;
  }

  .ritual-card:nth-child(6) {
    min-height: 320px;
    padding-right: clamp(24px, 2.3vw, 32px);
  }

  .ritual-card:nth-child(6)::before {
    display: none;
  }

  .finder-layout {
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    gap: 32px;
    padding: 40px;
  }

  .space-main {
    min-height: 400px;
  }

  .certificate-card {
    grid-template-columns: minmax(0, 1fr) 220px;
  }

  .certificate-card .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

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

  .reviews-grid blockquote:first-child {
    grid-column: 1 / -1;
    min-height: 230px;
  }

  .footer-grid {
    grid-template-columns: auto 1fr auto;
  }

  .footer-grid > p {
    display: none;
  }
}

/* Navigation and single-column layouts */
@media (max-width: 900px) {
  :root {
    --header-h: 70px;
  }

  .menu-toggle {
    display: flex;
  }

  .primary-nav {
    position: fixed;
    z-index: 90;
    top: calc(var(--header-h) + 10px);
    right: var(--gutter);
    left: var(--gutter);
    max-height: calc(100svh - var(--header-h) - 28px);
    overflow-y: auto;
    display: grid;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(41, 42, 39, .08);
    border-radius: 22px;
    background: rgba(250, 248, 244, .985);
    box-shadow: 0 28px 80px rgba(30, 38, 34, .16);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(.985);
    transform-origin: top center;
    transition: opacity 160ms ease, transform 180ms var(--ease), visibility 160ms ease;
  }

  .primary-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .primary-nav a:not(.nav-cta) {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 15px;
  }

  .primary-nav a:not(.nav-cta)::after {
    display: none;
  }

  .primary-nav .nav-cta {
    min-height: 50px;
    margin-top: 8px;
    font-size: 15px;
  }

  .split-heading,
  .finder-layout,
  .specialist-layout,
  .faq-layout,
  .booking-layout,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .split-heading {
    gap: 24px;
  }

  .split-heading > p {
    max-width: 620px;
    padding-bottom: 0;
  }

  .finder-intro,
  .faq-layout > div:first-child {
    position: static;
  }

  .finder-layout {
    gap: 32px;
  }

  .space-grid {
    grid-template-columns: 1.25fr .75fr;
  }

  .specialist-layout {
    gap: 48px;
  }

  .specialist-image {
    width: min(62vw, 420px);
    justify-self: start;
  }

  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 0;
  }

  .steps-grid li {
    min-height: 220px;
    padding: 24px 26px 24px 0;
    border-top: 1px solid var(--line-strong);
  }

  .steps-grid li:nth-child(even) {
    padding-left: 26px;
    border-left: 1px solid var(--line);
  }

  .steps-grid li:nth-child(odd) {
    border-left: 0;
  }

  .faq-layout,
  .booking-layout,
  .contacts-grid {
    gap: 40px;
  }
}


@media (max-width: 820px) and (min-width: 701px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .image-slot-hero {
    width: min(62vw, 440px);
    justify-self: end;
  }

  .atmosphere-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: 20px;
  }

  .feature-card-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .feature-card-large .image-slot {
    min-height: 0;
  }

  .space-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .space-main {
    grid-row: auto;
    min-height: 0;
  }

  .space-grid > .image-slot:not(.space-main) {
    position: relative;
    z-index: 2;
    width: min(48%, 350px);
    margin-top: -88px;
    justify-self: end;
    border: 6px solid var(--green-deep);
    box-shadow: 0 24px 56px rgba(10, 29, 23, .24);
  }

  .space-facts {
    margin-top: 32px;
  }
}

/* Mobile */
@media (max-width: 700px) {
  :root {
    --gutter: 20px;
    --section-y: 64px;
    --r-md: 18px;
    --r-lg: 24px;
    --r-xl: 28px;
  }

  body {
    font-size: 16px;
    line-height: 1.56;
  }

  h1 {
    margin-bottom: 22px;
    font-size: clamp(2.68rem, 11.6vw, 3.45rem);
    line-height: 1;
    letter-spacing: -.03em;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 11.5vw, 3.1rem);
  }

  h2 {
    margin-bottom: 16px;
    font-size: clamp(2.08rem, 9vw, 2.78rem);
    line-height: 1.04;
    letter-spacing: -.025em;
  }

  h3 {
    font-size: 1.45rem;
  }

  .section-heading {
    margin-bottom: 32px;
  }

  .section-heading > p:not(.eyebrow),
  .lead-small {
    font-size: 16px;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 10px;
  }

  .brand img {
    width: 128px;
  }

  .hero {
    padding-block: 44px 64px;
  }

  .hero::before {
    top: 38%;
    right: -42%;
    width: 110vw;
    opacity: .72;
  }

  .hero::after {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-copy {
    padding: 0;
  }

  .hero-copy .eyebrow {
    margin-bottom: 20px;
  }

  .lead {
    font-size: 17px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 26px;
  }

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

  .button {
    min-height: 52px;
    font-size: 15px;
  }

  .hero-notes {
    grid-template-columns: 1fr;
    margin-top: 32px;
    border-top: 1px solid var(--line);
  }

  .hero-notes span,
  .hero-notes span:not(:first-child) {
    padding: 10px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }

  .image-slot-hero {
    width: min(100%, 420px);
    justify-self: center;
  }

  .image-slot {
    padding: 20px;
  }

  .image-slot strong {
    max-width: 82%;
    font-size: 1.55rem;
  }

  .atmosphere-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 28px;
  }

  .feature-card-large {
    grid-row: auto;
  }

  .feature-card-large .image-slot {
    min-height: 0;
  }

  .feature-copy {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 16px;
  }

  .feature-copy p,
  .text-feature p,
  .ritual-card p,
  .specialist-list p,
  .steps-grid p,
  .faq-list details p,
  .finder-result p {
    font-size: 16px;
  }

  .text-feature {
    min-height: 210px;
    padding: 24px;
  }

  .ritual-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .ritual-card:nth-child(1),
  .ritual-card:nth-child(2),
  .ritual-card:nth-child(3),
  .ritual-card:nth-child(4),
  .ritual-card:nth-child(5),
  .ritual-card:nth-child(6) {
    grid-column: 1;
  }

  .ritual-card {
    min-height: 270px;
    padding: 24px;
  }

  .ritual-card:nth-child(6) {
    min-height: 270px;
    padding-right: 24px;
  }

  .ritual-card .image-slot-card {
    width: calc(100% + 48px);
    margin: -24px -24px 24px;
  }

  .ritual-card h3 {
    margin-top: 22px;
    font-size: 1.86rem;
  }

  .finder-layout {
    width: 100%;
    padding: 28px 20px;
    border-radius: 24px;
  }

  .finder-intro h2 {
    font-size: 2.55rem;
  }

  .finder-note {
    margin-top: 24px;
    font-size: 13px;
  }

  .finder-form,
  .booking-form {
    padding: 20px;
    border-radius: 20px;
  }

  .field-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .field-wide {
    grid-column: auto;
  }

  .field > span {
    font-size: 13px;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 52px;
    font-size: 16px;
  }

  .finder-result {
    padding: 20px;
  }

  #space {
    padding-block: 72px;
  }

  .space-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .space-main {
    grid-row: auto;
    min-height: 0;
  }

  .space-grid > .image-slot:not(.space-main) {
    position: relative;
    z-index: 2;
    width: min(70%, 280px);
    margin-top: -46px;
    justify-self: end;
    border: 5px solid var(--green-deep);
    box-shadow: 0 20px 46px rgba(10, 29, 23, .24);
  }

  .space-facts {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .space-facts div,
  .space-facts div:not(:first-child) {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    align-items: baseline;
    gap: 14px;
    padding: 14px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .space-facts span {
    font-size: 34px;
  }

  .space-facts p {
    margin-top: 0;
    font-size: 16px;
  }

  .specialist-layout {
    gap: 40px;
  }

  .specialist-image {
    width: min(78vw, 310px);
  }

  .specialist-copy > .lead-small {
    margin-bottom: 24px;
  }

  .specialist-list article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 18px 0;
  }

  .specialist-list h3 {
    font-size: 1.3rem;
  }

  .certificate-section {
    padding-block: 64px;
  }

  .certificate-card {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 20px;
  }

  .certificate-card h2 {
    font-size: 2.6rem;
  }

  .certificate-visual {
    width: min(100%, 340px);
    justify-self: start;
    transform: rotate(-1.5deg);
  }

  .certificate-card .button {
    width: 100%;
    grid-column: auto;
  }

  .visit-gallery {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }

  .visit-visual figcaption {
    margin-top: 10px;
  }

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

  .steps-grid li,
  .steps-grid li:not(:first-child),
  .steps-grid li:nth-child(even) {
    min-height: 0;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: 12px;
    padding: 20px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .steps-grid li > span {
    grid-row: 1 / 3;
    margin-bottom: 0;
    padding-top: 4px;
  }

  .steps-grid h3 {
    margin-bottom: 5px;
    font-size: 1.4rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .reviews-grid blockquote,
  .reviews-grid blockquote:first-child {
    grid-column: auto;
    min-height: 230px;
    padding: 24px;
  }

  .reviews-grid blockquote p {
    font-size: 1.45rem;
  }

  .faq-layout,
  .booking-layout,
  .contacts-grid {
    gap: 32px;
  }

  .faq-list summary {
    padding: 20px 40px 20px 0;
    font-size: 1.2rem;
  }

  .faq-list details p {
    padding: 0 40px 20px 0;
  }

  .booking-form .button {
    width: 100%;
  }

  .form-status {
    font-size: 16px;
  }

  .contact-card > div {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 16px 0;
  }

  .contact-card strong,
  .contact-card a {
    font-size: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
    gap: 24px;
  }

  .footer-grid nav {
    grid-column: 1 / -1;
    grid-row: 1;
    justify-content: flex-start;
    gap: 10px 18px;
  }

  .footer-brand {
    grid-column: 1;
    grid-row: 2;
  }

  .footer-grid small {
    grid-column: 2;
    grid-row: 2;
  }
}

@media (max-width: 390px) {
  :root {
    --gutter: 18px;
    --section-y: 60px;
  }

  h1 {
    font-size: clamp(2.55rem, 11.5vw, 3rem);
  }

  .hero h1 {
    font-size: clamp(2.5rem, 11.3vw, 2.9rem);
  }

  h2 {
    font-size: clamp(1.98rem, 8.8vw, 2.42rem);
  }

  .hero {
    padding-top: 36px;
  }

  .hero-grid {
    gap: 32px;
  }

  .image-slot-hero {
    width: min(92%, 340px);
  }

  .finder-layout {
    padding: 20px 16px;
  }

  .finder-form,
  .booking-form {
    padding: 16px;
  }

  .certificate-card h2,
  .finder-intro h2 {
    font-size: 2.3rem;
  }

  .reviews-grid blockquote p {
    font-size: 1.34rem;
  }

  .footer-grid nav a {
    font-size: 13px;
  }

  .space-grid > .image-slot:not(.space-main) {
    width: min(73%, 260px);
    margin-top: -40px;
  }
}

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

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