:root {
  --ink: #263126;
  --muted: #6b7166;
  --paper: #fbf8f1;
  --soft: #f2eadc;
  --panel: #e7ded0;
  --green: #66765d;
  --green-dark: #40533f;
  --taupe: #9b8c79;
  --sand: #d6c5aa;
  --white: #fffdf8;
  --line: rgba(64, 83, 63, 0.16);
  --shadow: 0 24px 70px rgba(38, 49, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(251, 248, 241, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

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

.brand-logo {
  width: 74px;
  height: 50px;
  object-fit: contain;
}

.brand strong,
.footer-brand {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.42rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
}

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

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.desktop-nav a {
  color: rgba(38, 49, 38, 0.72);
}

.desktop-nav a.is-active,
.desktop-nav a:hover {
  color: var(--green-dark);
}

.desktop-nav .button-primary {
  color: var(--white);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
  white-space: nowrap;
}

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

.button-primary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(64, 83, 63, 0.2);
}

.button-secondary {
  color: var(--green-dark);
  background: rgba(255, 253, 248, 0.74);
  border-color: rgba(64, 83, 63, 0.22);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-dark);
}

.mobile-nav {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.mobile-nav-panel {
  display: grid;
  gap: 14px;
  width: min(100% - 40px, 560px);
  margin: 0 auto;
  padding: 22px 0 28px;
}

.mobile-nav a {
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #2b352a;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 42, 32, 0.84) 0%, rgba(43, 53, 42, 0.56) 45%, rgba(238, 225, 210, 0.12) 100%),
    linear-gradient(0deg, rgba(251, 248, 241, 0.7) 0%, rgba(251, 248, 241, 0) 26%);
}

.hero.is-logo-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: clamp(560px, 80vh, 720px);
  padding: clamp(116px, 16vh, 168px) 0 clamp(88px, 12vh, 128px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 28%, rgba(231, 222, 208, 0.72), rgba(251, 248, 241, 0) 54%),
    linear-gradient(160deg, #fcf9f3 0%, #f3e9da 100%);
}

.hero.is-logo-hero .hero-shade {
  display: none;
}

.hero-logo-stage {
  position: static;
  inset: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 clamp(30px, 4.5vw, 48px);
  padding: 0;
}

.hero-logo-image {
  width: min(330px, 76vw);
  max-height: 280px;
  object-fit: contain;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(64, 83, 63, 0.1);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 30px 72px rgba(38, 49, 38, 0.14);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(0deg, var(--paper), rgba(251, 248, 241, 0));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto 116px max(40px, calc((100% - 1160px) / 2));
  color: var(--white);
  text-shadow: 0 2px 28px rgba(20, 27, 20, 0.34);
}

.hero .script-eyebrow {
  color: #eadfce;
}

.hero.is-logo-hero .hero-content {
  position: static;
  margin: 0;
  width: min(660px, calc(100% - 40px));
  color: var(--ink);
  text-align: center;
  text-shadow: none;
}

.hero.is-logo-hero h1 {
  max-width: none;
  margin-inline: auto;
  font-size: clamp(2.85rem, 8vw, 5.1rem);
}

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

.hero.is-logo-hero .script-eyebrow {
  color: var(--taupe);
}

.script-eyebrow {
  margin: 0 0 14px;
  color: var(--taupe);
  font-family: WindSong, "Cormorant Garamond", cursive;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 720px;
  font-size: 7.4rem;
}

h2 {
  font-size: 4.2rem;
}

h3 {
  font-size: 2rem;
}

.lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.85;
}

.hero .lead {
  max-width: 660px;
  color: rgba(255, 253, 248, 0.88);
  font-size: 1.22rem;
  line-height: 1.75;
}

.hero.is-logo-hero .lead {
  margin: 28px auto 0;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

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

.hero .button-primary {
  background: #f7efe3;
  color: var(--green-dark);
  box-shadow: 0 18px 36px rgba(18, 25, 18, 0.22);
}

.hero .button-secondary {
  color: var(--white);
  background: rgba(255, 253, 248, 0.14);
  border-color: rgba(255, 253, 248, 0.36);
}

.hero.is-logo-hero .button-primary {
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 18px 34px rgba(64, 83, 63, 0.2);
}

.hero.is-logo-hero .button-secondary {
  color: var(--green-dark);
  background: rgba(255, 253, 248, 0.82);
  border-color: rgba(64, 83, 63, 0.2);
}

.hero-visual {
  position: relative;
  min-height: 500px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  border: 1px solid rgba(255, 253, 248, 0.72);
  pointer-events: none;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.hero-logo-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  width: 172px;
  padding: 18px;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(64, 83, 63, 0.14);
  box-shadow: 0 16px 38px rgba(38, 49, 38, 0.12);
}

.section {
  padding: 104px 0;
}

.section-tight {
  padding-top: 72px;
}

.intro-section {
  padding-top: 76px;
}

.intro-grid,
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}

.image-frame {
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.visual-story {
  background:
    linear-gradient(180deg, var(--paper), #f4eee3);
}

.visual-story-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 78px;
  align-items: center;
}

.visual-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.55fr);
  grid-auto-rows: 250px;
  gap: 18px;
}

.visual-card {
  position: relative;
  margin: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 18px 48px rgba(38, 49, 38, 0.11);
}

.visual-card-large {
  grid-row: span 2;
}

.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-card:nth-child(2) img {
  object-position: center center;
}

.logo-token {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  place-items: center;
  width: 124px;
  min-height: 78px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 14px 30px rgba(38, 49, 38, 0.12);
}

.logo-token img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.copy-block p,
.section-heading p,
.contact-panel p,
.final-panel p,
.narrow-copy p {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.pill-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 14px;
  color: var(--green-dark);
  background: rgba(255, 253, 248, 0.68);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading.left {
  margin: 0;
  text-align: left;
}

.services-section {
  background: var(--white);
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-media-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 0.28fr);
  gap: 18px;
  margin: 0 auto 46px;
  max-width: 920px;
}

.service-media-strip figure {
  margin: 0;
  height: 260px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 18px 48px rgba(38, 49, 38, 0.1);
}

.service-media-strip figure:first-child {
  height: 300px;
}

.service-media-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-media-strip figure:first-child img {
  object-position: center 62%;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, auto);
  gap: 28px;
  align-items: end;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
}

.service-row span {
  display: block;
  margin-bottom: 8px;
  color: var(--taupe);
  font-size: 0.86rem;
  font-weight: 800;
}

.service-row p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
}

.service-row strong {
  color: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 800;
  text-align: right;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 46px;
}

.treatment-menu {
  max-width: 920px;
  margin: 0 auto;
}

.treatment-row {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.treatment-row.has-image {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.treatment-photo {
  margin: 4px 0 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
  box-shadow: 0 14px 34px rgba(38, 49, 38, 0.1);
}

.treatment-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.treatment-line {
  display: grid;
  grid-template-columns: auto minmax(40px, 1fr) auto;
  gap: 16px;
  align-items: end;
}

.leader {
  border-bottom: 1px dotted rgba(64, 83, 63, 0.38);
  transform: translateY(-7px);
}

.price {
  color: var(--green-dark);
  font-weight: 800;
}

.duration {
  display: block;
  margin-top: 8px;
  color: var(--taupe);
  font-size: 0.86rem;
}

.treatment-row p {
  max-width: 700px;
  margin: 16px 0 0;
  color: var(--muted);
}

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

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

.gallery-card {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(38, 49, 38, 0.1);
}

.gallery-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 16px 18px 18px;
  color: var(--green-dark);
  font-size: 0.86rem;
  font-weight: 800;
}

.offers-section {
  background: linear-gradient(180deg, var(--paper), var(--soft));
}

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

.offer-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.offer-photo {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--soft);
}

.offer-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.offer-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 28px 28px;
}

.offer-body h3 {
  margin: 0;
  font-size: 1.3rem;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.offer-price strong {
  color: var(--green-dark);
  font-size: 1.5rem;
  font-weight: 800;
}

.offer-normal {
  color: var(--taupe);
  text-decoration: line-through;
  font-weight: 600;
}

.offer-body p {
  margin: 0;
  color: var(--muted);
}

.offer-body .button {
  align-self: flex-start;
  margin-top: 6px;
}

@media (max-width: 760px) {
  .offers-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.contact-band {
  background: linear-gradient(180deg, var(--paper), #ebe4d6);
}

.contact-panel,
.final-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  padding: 56px;
  border-radius: 8px;
  background: var(--green-dark);
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel .script-eyebrow,
.final-panel .script-eyebrow {
  color: var(--sand);
}

.contact-panel p,
.final-panel p {
  color: rgba(255, 253, 248, 0.78);
}

.contact-actions {
  display: grid;
  gap: 12px;
  min-width: 260px;
}

.contact-panel .button-secondary,
.final-panel .button-secondary {
  background: rgba(255, 253, 248, 0.12);
  border-color: rgba(255, 253, 248, 0.28);
  color: var(--white);
}

.contact-panel .button-primary,
.final-panel .button-primary {
  background: var(--white);
  color: var(--green-dark);
}

.practical-section {
  background: var(--paper);
}

.practical-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: 66px 72px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.62), rgba(231, 222, 208, 0.76)),
    var(--panel);
  box-shadow: var(--shadow);
  text-align: center;
}

.practical-rows {
  display: grid;
  gap: 0;
  max-width: 720px;
  margin: 42px auto 0;
}

.practical-row {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px solid rgba(64, 83, 63, 0.17);
  text-align: left;
}

.practical-row:first-child {
  border-top: 1px solid rgba(64, 83, 63, 0.17);
}

.practical-row span {
  color: var(--taupe);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.practical-row strong {
  color: var(--green-dark);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.12;
  text-align: right;
}

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 70px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

summary {
  cursor: pointer;
  padding: 20px 24px;
  color: var(--green-dark);
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.final-cta {
  background:
    linear-gradient(135deg, rgba(102, 118, 93, 0.1), transparent 42%),
    var(--paper);
}

.final-panel {
  display: block;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.final-panel p {
  margin-left: auto;
  margin-right: auto;
}

.about-mark {
  display: grid;
  place-items: center;
  min-height: 440px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 197, 170, 0.32), rgba(255, 253, 248, 0.76)),
    var(--soft);
}

.about-mark img {
  width: min(360px, 78%);
  height: auto;
}

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

.about-photo img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
  object-position: center top;
}

.page-hero {
  padding: 112px 0 84px;
  background:
    linear-gradient(135deg, rgba(231, 222, 208, 0.58), transparent 45%),
    var(--paper);
}

.page-hero-inner {
  max-width: 860px;
}

.narrow-copy {
  max-width: 760px;
  margin: 0 auto;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.site-footer {
  padding: 48px 0;
  background: #273327;
  color: var(--white);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 34px;
}

.site-footer p {
  margin: 10px 0 0;
  color: rgba(255, 253, 248, 0.7);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 24px;
  max-width: 620px;
}

.footer-links a {
  color: rgba(255, 253, 248, 0.8);
}

.footer-links .studio-credit {
  color: var(--sand);
}

.sticky-booking {
  position: fixed;
  right: 24px;
  bottom: 22px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  background: var(--green-dark);
  color: var(--white);
  box-shadow: 0 18px 38px rgba(38, 49, 38, 0.22);
  font-weight: 800;
}

body.is-admin-preview .sticky-booking {
  display: none;
}

body.is-admin-preview [data-edit] {
  cursor: pointer;
}

body.is-admin-preview [data-edit]:hover {
  outline: 2px dashed rgba(52, 168, 113, 0.85);
  outline-offset: 4px;
  border-radius: 6px;
}

.lp-highlight {
  outline: 3px solid rgba(52, 168, 113, 0.95) !important;
  outline-offset: 4px;
  border-radius: 6px;
  animation: lp-pulse 1.7s ease;
}

@keyframes lp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 168, 113, 0.45); }
  100% { box-shadow: 0 0 0 22px rgba(52, 168, 113, 0); }
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.is-visible {
  animation: soft-rise 780ms ease both;
}

@keyframes soft-rise {
  from {
    opacity: 0.78;
    transform: translateY(14px);
  }

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

@media (max-width: 960px) {
  h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 3.4rem;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .intro-grid,
  .about-grid,
  .faq-grid,
  .visual-story-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero {
    min-height: 700px;
  }

  .hero-image {
    object-position: center center;
  }

  .hero-content {
    margin: 0 auto 86px;
  }

  .hero-grid {
    padding: 58px 0 64px;
  }

  .hero-visual,
  .hero-visual > img,
  .image-frame,
  .image-frame img {
    min-height: 380px;
  }

  .service-row,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .treatment-row.has-image {
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 22px;
  }

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

  .service-row strong {
    text-align: left;
  }

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

  .visual-mosaic {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
  }

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

  .footer-grid {
    display: grid;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
    padding-bottom: 58px;
  }

  .container {
    width: min(100% - 28px, 1160px);
  }

  .header-inner {
    min-height: 74px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 56px;
    height: 42px;
  }

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

  .brand small {
    max-width: 170px;
    font-size: 0.66rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .script-eyebrow {
    font-size: 2.1rem;
  }

  h1 {
    font-size: 3.72rem;
  }

  h2 {
    font-size: 2.62rem;
  }

  h3 {
    font-size: 1.64rem;
  }

  .lead {
    font-size: 1rem;
  }

  .hero {
    min-height: 670px;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(32, 42, 32, 0.86) 0%, rgba(43, 53, 42, 0.62) 58%, rgba(238, 225, 210, 0.08) 100%),
      linear-gradient(0deg, rgba(251, 248, 241, 0.74) 0%, rgba(251, 248, 241, 0) 28%);
  }

  .hero-content {
    width: min(100% - 28px, 760px);
    margin-bottom: 72px;
  }

  .hero .lead {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 0 18px;
    white-space: normal;
    text-align: center;
  }

  .hero-visual,
  .hero-visual > img,
  .image-frame,
  .image-frame img {
    min-height: 300px;
  }

  .hero-logo-card {
    left: 16px;
    bottom: 16px;
    width: 128px;
    padding: 12px;
  }

  .section {
    padding: 72px 0;
  }

  .intro-section {
    padding-top: 48px;
  }

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

  .service-row {
    padding: 24px 0;
  }

  .service-media-strip {
    gap: 12px;
    margin-bottom: 32px;
  }

  .service-media-strip figure,
  .service-media-strip figure:first-child {
    height: 220px;
  }

  .treatment-line {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .treatment-row.has-image {
    grid-template-columns: 1fr;
  }

  .treatment-photo {
    width: 100%;
    max-height: 260px;
  }

  .leader {
    display: none;
  }

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

  .gallery-card img {
    height: 270px;
  }

  .contact-panel,
  .final-panel {
    padding: 32px 20px;
  }

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

  .visual-mosaic {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .visual-card-large {
    grid-row: span 1;
    min-height: 320px;
  }

  .logo-token {
    width: 108px;
    min-height: 68px;
  }

  .practical-panel {
    padding: 42px 20px;
  }

  .practical-row {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
  }

  .practical-row strong {
    font-size: 1.56rem;
    text-align: center;
  }

  .page-hero {
    padding: 72px 0 54px;
  }

  .narrow-copy {
    padding: 28px 20px;
  }

  .site-footer {
    padding-bottom: 92px;
  }

  .sticky-booking {
    right: 14px;
    bottom: 12px;
    min-height: 42px;
    padding: 0 18px;
    font-size: 0.86rem;
  }
}

/* ---------- Cookie consent banner (GDPR/ePrivacy) ---------- */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: flex; justify-content: center;
  padding: 16px;
  pointer-events: none;
}
#cookie-banner .cc-inner {
  pointer-events: auto;
  width: min(760px, 100%);
  display: flex; align-items: center; gap: 22px;
  padding: 20px 24px;
  background: var(--white, #fffdf8);
  border: 1px solid var(--line, rgba(64,83,63,0.16));
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba(38, 49, 38, 0.18);
}
#cookie-banner .cc-text strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem; color: var(--green-dark, #40533f);
}
#cookie-banner .cc-text p {
  margin: 6px 0 0; font-size: 0.9rem; line-height: 1.6;
  color: var(--muted, #6b7166); max-width: 56ch;
}
#cookie-banner .cc-text a { color: var(--green-dark, #40533f); text-decoration: underline; }
#cookie-banner .cc-actions { display: flex; gap: 10px; flex: none; }
#cookie-banner .cc-btn {
  border-radius: 999px;
  padding: 12px 22px;
  font-size: 0.82rem; font-weight: 800; letter-spacing: 0.04em;
  cursor: pointer; white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  border: 1px solid transparent;
}
#cookie-banner .cc-btn:hover { transform: translateY(-1px); }
#cookie-banner .cc-accept { background: var(--green-dark, #40533f); color: var(--white, #fffdf8); border-color: var(--green-dark, #40533f); box-shadow: 0 12px 26px rgba(64,83,63,0.22); }
#cookie-banner .cc-decline { background: var(--white, #fffdf8); color: var(--green-dark, #40533f); border-color: var(--line, rgba(64,83,63,0.28)); }
@media (max-width: 700px) {
  #cookie-banner { padding: 12px; }
  #cookie-banner .cc-inner { flex-direction: column; align-items: stretch; gap: 14px; padding: 18px 18px 20px; }
  #cookie-banner .cc-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  #cookie-banner .cc-btn { width: 100%; text-align: center; padding: 13px 10px; }
}
.policy-sub { font-size: 1.15rem; margin-top: 22px; color: var(--green-dark, #40533f); }
