/* =================================================================
   Homeopatická ordinace — Lenka Marešová
   Design system: "Blossom & Sage"
   ================================================================= */

/* ---------- Custom properties ---------- */
:root {
  /* Paper / surfaces */
  --paper:      #faf4e6;
  --paper-2:    #f3e9d3;
  --paper-3:    #ecdfc1;
  --surface:    #fffdf6;

  /* Ink / text */
  --ink:        #3a332a;
  --ink-soft:   #6a6051;
  --ink-faint:  #9a8f7d;

  /* Brand */
  --brown:      #74583a;
  --brown-deep: #41301f;
  --sage:       #93a784;
  --sage-deep:  #5d7457;
  --sage-soft:  #dde3d0;
  --rose:       #cd9c98;
  --rose-deep:  #ab7077;
  --rose-soft:  #f0d9d2;
  --gold:       #b6914e;
  --terracotta: #a85b30;
  --terracotta-deep: #8b4a26;

  /* Type */
  --font-script:  'Great Vibes', cursive;
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-body:    'Lora', Georgia, serif;

  /* Fluid type scale */
  --fs-script:  clamp(3rem, 7vw, 5.6rem);
  --fs-h1:      clamp(2.5rem, 5.4vw, 4.3rem);
  --fs-h2:      clamp(2rem, 3.8vw, 3.05rem);
  --fs-h3:      clamp(1.4rem, 2.3vw, 1.85rem);
  --fs-lead:    clamp(1.18rem, 1.55vw, 1.42rem);
  --fs-body:    clamp(1.04rem, 0.55vw + 0.9rem, 1.16rem);
  --fs-small:   0.95rem;
  --fs-eyebrow: 0.8rem;

  /* Layout */
  --maxw:        1220px;
  --maxw-narrow: 880px;
  --maxw-prose:  680px;
  --section-y:   clamp(4.5rem, 9vw, 8.5rem);
  --gutter:      clamp(1.25rem, 4vw, 3rem);
  --header-h:    86px;

  /* Radii */
  --r-sm: 10px;
  --r:    20px;
  --r-lg: 34px;

  /* Shadows */
  --shadow-sm: 0 6px 18px -10px rgba(65, 48, 31, 0.4);
  --shadow:    0 22px 46px -28px rgba(65, 48, 31, 0.52);
  --shadow-lg: 0 40px 80px -42px rgba(65, 48, 31, 0.62);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.78;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Paper grain overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 900;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

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

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

ul, ol { list-style: none; padding: 0; }

:focus-visible {
  outline: 3px solid var(--sage-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--rose-soft); color: var(--brown-deep); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.14;
  color: var(--brown-deep);
  letter-spacing: 0.005em;
}

p { text-wrap: pretty; }

.script {
  font-family: var(--font-script);
  font-weight: 400;
  line-height: 1;
  color: var(--rose-deep);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
}
.eyebrow::before {
  content: "";
  width: 2.2em;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.eyebrow--center::after {
  content: "";
  width: 2.2em;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.66;
  color: var(--ink-soft);
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container--narrow { max-width: var(--maxw-narrow); }

.section { padding-block: var(--section-y); position: relative; }
.section--paper2 { background: var(--paper-2); }
.section--paper3 { background: var(--paper-3); }
.section--sage  { background: var(--sage-soft); }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }

.section-head {
  max-width: 640px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head h2 { font-size: var(--fs-h2); margin: 0.6rem 0 0; }
.section-head .lead { margin-top: 1rem; }
.section-head--left { margin-inline: 0; text-align: left; }

.prose { max-width: var(--maxw-prose); }
.prose p + p { margin-top: 1.15rem; }
.prose h3 { font-size: var(--fs-h3); margin: 2.4rem 0 0.8rem; }
.prose h3:first-child { margin-top: 0; }

/* ---------- Ornament (blossom divider) ---------- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--rose);
}
.ornament::before,
.ornament::after {
  content: "";
  height: 1px;
  width: clamp(36px, 12vw, 96px);
  background: linear-gradient(90deg, transparent, var(--gold));
  opacity: 0.6;
}
.ornament::after { background: linear-gradient(90deg, var(--gold), transparent); }
.ornament .blossom { width: 26px; height: 26px; }

/* ---------- Blossom svg ---------- */
.blossom { display: inline-block; color: var(--rose); }

/* ---------- Buttons ---------- */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}
.btn {
  --btn-bg: var(--terracotta);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.92em 1.9em;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background-color 0.35s var(--ease), color 0.35s var(--ease);
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(-1px); }
.btn svg { width: 1.15em; height: 1.15em; }

.btn--primary { --btn-bg: var(--terracotta); }
.btn--primary:hover { background: var(--terracotta-deep); }

.btn--ghost {
  --btn-fg: var(--brown);
  background: transparent;
  box-shadow: inset 0 0 0 1.6px rgba(116, 88, 58, 0.55);
}
.btn--ghost:hover {
  background: var(--brown);
  color: var(--paper);
  box-shadow: inset 0 0 0 1.6px var(--brown);
}

.btn--light {
  --btn-bg: var(--paper);
  --btn-fg: var(--brown-deep);
}
.btn--light:hover { background: #fff; }

.btn--outline-light {
  background: transparent;
  --btn-fg: var(--paper);
  box-shadow: inset 0 0 0 1.6px rgba(250, 244, 230, 0.5);
}
.btn--outline-light:hover {
  background: rgba(250, 244, 230, 0.12);
  box-shadow: inset 0 0 0 1.6px var(--paper);
}

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  font-weight: 600;
  color: var(--terracotta-deep);
  border-bottom: 1.5px solid rgba(168, 91, 48, 0.35);
  padding-bottom: 1px;
  transition: gap 0.3s var(--ease), border-color 0.3s var(--ease);
}
.textlink:hover { gap: 0.75em; border-color: var(--terracotta-deep); }
.textlink svg { width: 0.95em; height: 0.95em; }

/* ---------- Skip link ---------- */
.skip-link {
  position: fixed;
  top: 0.6rem;
  left: 0.6rem;
  z-index: 2000;
  background: var(--brown-deep);
  color: var(--paper);
  padding: 0.7em 1.2em;
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 0.3s var(--ease);
}
.skip-link:focus { transform: translateY(0); }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  min-height: var(--header-h);
  transition: background-color 0.4s var(--ease), box-shadow 0.4s var(--ease),
              min-height 0.4s var(--ease);
}
.site-header__inner {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-header.is-scrolled {
  background: rgba(250, 244, 230, 0.94);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px -22px rgba(65, 48, 31, 0.6);
  min-height: 70px;
}

/* Brand */
.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-script);
  font-size: 1.7rem;
  color: var(--brown-deep);
  margin-bottom: -2px;
}
.brand__sub {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  font-weight: 600;
}

/* Desktop nav */
.nav { display: flex; align-items: center; gap: clamp(0.4rem, 1.4vw, 1.5rem); }
.nav__list { display: flex; align-items: center; gap: clamp(0.2rem, 0.9vw, 0.9rem); }
.nav__link {
  position: relative;
  padding: 0.55em 0.7em;
  font-size: 0.96rem;
  color: var(--ink);
  transition: color 0.3s var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0.7em; right: 0.7em;
  bottom: 0.3em;
  height: 1.5px;
  background: var(--terracotta);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.34s var(--ease);
}
.nav__link:hover { color: var(--terracotta-deep); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--terracotta-deep); font-weight: 600; }

.nav__cta { padding: 0.72em 1.5em; font-size: 0.92rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.nav-toggle span {
  position: relative;
  width: 20px; height: 2px;
  background: var(--brown-deep);
  border-radius: 2px;
  transition: background-color 0.2s var(--ease);
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px; height: 2px;
  background: var(--brown-deep);
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
body.menu-open .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav-toggle span::after  { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
  padding: 5rem 1.5rem 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease), visibility 0.4s;
  overflow-y: auto;
}
body.menu-open .mobile-nav { opacity: 1; visibility: visible; transform: none; }
.mobile-nav__link {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 6vw, 2.4rem);
  color: var(--brown-deep);
  padding: 0.3em 0.4em;
}
.mobile-nav__link.is-active { color: var(--terracotta-deep); }
.mobile-nav .ornament { margin: 1.1rem 0; width: 60%; }
.mobile-nav__contact {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.mobile-nav__contact a { color: var(--terracotta-deep); font-weight: 600; }

/* ---------- Hero (home) ---------- */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2rem, 6vw, 5rem));
  padding-bottom: clamp(3.5rem, 8vw, 7rem);
  overflow: hidden;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  z-index: 0;
}
.hero__blob--1 {
  width: 46vw; height: 46vw;
  max-width: 620px; max-height: 620px;
  top: -10%; right: -8%;
  background: radial-gradient(circle at 40% 40%, rgba(147,167,132,0.4), rgba(147,167,132,0));
}
.hero__blob--2 {
  width: 30vw; height: 30vw;
  max-width: 380px; max-height: 380px;
  bottom: -12%; left: -10%;
  background: radial-gradient(circle at 50% 50%, rgba(205,156,152,0.34), rgba(205,156,152,0));
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__eyebrow { margin-bottom: 1.4rem; }
.hero__title {
  font-size: var(--fs-h1);
  font-weight: 600;
}
.hero__title .script {
  display: block;
  font-size: var(--fs-script);
  margin-top: 0.1rem;
}
.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-style: italic;
  color: var(--sage-deep);
  margin-top: 0.9rem;
}
.hero__text {
  max-width: 30rem;
  margin-top: 1.4rem;
  color: var(--ink-soft);
  font-size: var(--fs-lead);
  line-height: 1.62;
}

/* Hero media */
.hero__media { position: relative; }
.hero__photo-frame {
  position: relative;
  width: min(100%, 430px);
  margin-inline: auto;
}
.hero__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 240px 240px var(--r) var(--r);
  box-shadow: var(--shadow-lg);
}
.hero__photo-ring {
  position: absolute;
  inset: -14px;
  border: 1.5px solid rgba(182, 145, 78, 0.5);
  border-radius: 252px 252px calc(var(--r) + 8px) calc(var(--r) + 8px);
  pointer-events: none;
}
.hero__seal {
  position: absolute;
  right: -28px;
  bottom: 8%;
  width: clamp(94px, 13vw, 124px);
  animation: spin 44s linear infinite;
}
.hero__blossom {
  position: absolute;
  color: var(--rose);
  opacity: 0.9;
}
.hero__blossom--1 { width: 58px; top: -22px; left: -10px; color: var(--rose-deep); }
.hero__blossom--2 { width: 38px; bottom: 14%; left: -34px; }
.hero__blossom--3 { width: 30px; top: 12%; right: -16px; color: var(--sage); }

@keyframes spin { to { transform: rotate(360deg); } }

/* Seal */
.seal__text { font-family: var(--font-body); font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.16em; fill: var(--brown); }

/* ---------- Hero strip (trust line) ---------- */
.hero-strip {
  position: relative;
  z-index: 1;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem clamp(1.5rem, 4vw, 3rem);
}
.hero-strip__item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.96rem;
  color: var(--ink-soft);
}
.hero-strip__item svg { width: 20px; height: 20px; color: var(--sage-deep); flex: none; }
.hero-strip__sep { width: 5px; height: 5px; border-radius: 50%; background: var(--rose);
  align-self: center; }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + clamp(2.4rem, 6vw, 4.5rem));
  padding-bottom: clamp(2.6rem, 6vw, 4.5rem);
  text-align: center;
  overflow: hidden;
  background: var(--paper-2);
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 60px;
  background: var(--paper);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0 60V28c180-30 360-30 540 0s360 30 540 0 270-30 360-14v46Z'/%3E%3C/svg%3E") bottom/100% 100% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath d='M0 60V28c180-30 360-30 540 0s360 30 540 0 270-30 360-14v46Z'/%3E%3C/svg%3E") bottom/100% 100% no-repeat;
}
.page-hero__inner { position: relative; z-index: 1; max-width: 760px; margin-inline: auto; }
.page-hero__eyebrow { margin-bottom: 1.1rem; }
.page-hero__title { font-size: var(--fs-h1); }
.page-hero__title .script {
  display: block;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--rose-deep);
}
.page-hero__text { margin-top: 1.1rem; color: var(--ink-soft); font-size: var(--fs-lead); }
.page-hero__blossom { position: absolute; color: var(--rose); opacity: 0.5; }
.page-hero__blossom--1 { width: 70px; top: 22%; left: 6%; }
.page-hero__blossom--2 { width: 46px; bottom: 26%; right: 9%; color: var(--sage); }

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-size: 0.85rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--terracotta-deep); }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- Intro / two-column text ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split--text-media .split__media { order: 2; }
.split__media { position: relative; }

.framed {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.framed img { width: 100%; height: 100%; object-fit: cover; }
.framed--arch { border-radius: 200px 200px var(--r) var(--r); }
.framed--tall { aspect-ratio: 4 / 5; }
.framed--wide { aspect-ratio: 5 / 4; }
.framed--portrait { aspect-ratio: 3 / 4; }

.media-deco {
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1.5px solid rgba(182, 145, 78, 0.45);
  border-radius: var(--r);
  z-index: -1;
}
.media-deco--arch { border-radius: 200px 200px var(--r) var(--r); }

/* ---------- Service cards ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.4rem, 3vw, 2.2rem);
}
.service-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(182, 145, 78, 0.22);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.service-card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.service-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(65,48,31,0) 50%, rgba(65,48,31,0.42));
}
.service-card__num {
  position: absolute;
  top: 14px; left: 14px;
  z-index: 1;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--brown-deep);
  background: var(--paper);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}
.service-card__body { padding: 1.6rem 1.7rem 1.8rem; display: flex; flex-direction: column;
  flex: 1; }
.service-card__title { font-size: 1.5rem; }
.service-card__text { margin-top: 0.6rem; color: var(--ink-soft); font-size: 1rem; }
.service-card__link { margin-top: auto; padding-top: 1.2rem; }

/* ---------- Treatment list ---------- */
.treatment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.9rem, 2vw, 1.4rem);
}
.treatment {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  background: var(--surface);
  border-radius: var(--r-sm);
  border: 1px solid rgba(182, 145, 78, 0.22);
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease);
}
.treatment:hover { transform: translateY(-3px); background: #fff; }
.treatment__icon {
  flex: none;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage-deep);
}
.treatment__icon svg { width: 24px; height: 24px; }
.treatment__label { font-family: var(--font-display); font-size: 1.16rem;
  font-weight: 600; color: var(--brown-deep); line-height: 1.25; }

/* ---------- Feature block (alternating) ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.feature + .feature { margin-top: clamp(3.5rem, 8vw, 7rem); }
.feature--reverse .feature__media { order: 2; }
.feature__content .eyebrow { margin-bottom: 1rem; }
.feature__content h2,
.feature__content h3 { font-size: var(--fs-h2); }
.feature__content p { margin-top: 1.05rem; color: var(--ink-soft); }
.feature__media { position: relative; }

/* ---------- Quote ---------- */
.quote {
  position: relative;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  padding: clamp(1rem, 3vw, 2rem) clamp(0.5rem, 3vw, 2rem);
}
.quote__mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.4;
  color: var(--rose);
  display: block;
  margin-bottom: 1.4rem;
}
.quote__text {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--brown-deep);
}
.quote__cite {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-style: normal;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
}

/* ---------- Callout ---------- */
.callout {
  background: var(--surface);
  border-left: 4px solid var(--rose);
  border-radius: var(--r-sm);
  padding: clamp(1.4rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
}
.callout--sage { border-left-color: var(--sage); }
.callout p { color: var(--ink-soft); }
.callout p + p { margin-top: 0.9rem; }
.callout strong { color: var(--brown-deep); }

/* ---------- Numbered list / ranking ---------- */
.numbered { counter-reset: n; display: grid; gap: 1rem; }
.numbered li {
  counter-increment: n;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.15rem 1.4rem;
  background: var(--surface);
  border-radius: var(--r-sm);
  border: 1px solid rgba(182, 145, 78, 0.22);
}
.numbered li::before {
  content: counter(n);
  flex: none;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--paper);
  background: var(--sage-deep);
  border-radius: 50%;
}
.numbered li > div > strong { color: var(--brown-deep); font-weight: 600;
  font-family: var(--font-display); font-size: 1.2rem; }
.numbered li p { color: var(--ink-soft); font-size: 1rem; margin-top: 0.2rem; }
.numbered--plain li { background: transparent; border: none; padding: 0.4rem 0; }

/* ---------- Checklist ---------- */
.checklist { display: grid; gap: 0.85rem; }
.checklist li {
  position: relative;
  padding-left: 2.1rem;
  color: var(--ink-soft);
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.28em;
  width: 1.25rem; height: 1.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg fill='%23cd9c98'%3E%3Cellipse cx='12' cy='6.6' rx='3.5' ry='5'/%3E%3Cellipse cx='12' cy='6.6' rx='3.5' ry='5' transform='rotate(72 12 12)'/%3E%3Cellipse cx='12' cy='6.6' rx='3.5' ry='5' transform='rotate(144 12 12)'/%3E%3Cellipse cx='12' cy='6.6' rx='3.5' ry='5' transform='rotate(216 12 12)'/%3E%3Cellipse cx='12' cy='6.6' rx='3.5' ry='5' transform='rotate(288 12 12)'/%3E%3C/g%3E%3Ccircle cx='12' cy='12' r='2.7' fill='%23b6914e'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.checklist li strong { color: var(--brown-deep); }

/* ---------- Info / value cards ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.6vw, 2rem);
}
.info-card {
  background: var(--surface);
  border-radius: var(--r);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  border: 1px solid rgba(182, 145, 78, 0.22);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease);
}
.info-card:hover { transform: translateY(-5px); }
.info-card__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--sage-soft);
  color: var(--sage-deep);
  margin-bottom: 1.1rem;
}
.info-card__icon svg { width: 28px; height: 28px; }
.info-card h3 { font-size: 1.4rem; }
.info-card p { margin-top: 0.55rem; color: var(--ink-soft); font-size: 1rem; }
.info-card--rose .info-card__icon { background: var(--rose-soft); color: var(--rose-deep); }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.7rem, 1.6vw, 1.1rem);
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-sm);
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-sm);
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.9s var(--ease);
}
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item--tall { grid-row: span 2; aspect-ratio: 3 / 5; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 0.9rem; max-width: 780px; margin-inline: auto; }
.faq__item {
  background: var(--surface);
  border-radius: var(--r-sm);
  border: 1px solid rgba(182, 145, 78, 0.24);
  overflow: hidden;
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--brown-deep);
  list-style: none;
  cursor: pointer;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q .icon {
  flex: none;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage-deep);
  transition: transform 0.35s var(--ease), background-color 0.3s var(--ease);
}
.faq__item[open] .faq__q .icon { transform: rotate(45deg);
  background: var(--terracotta); color: #fff; }
.faq__a { padding: 0 1.4rem 1.4rem; color: var(--ink-soft); }
.faq__a p + p { margin-top: 0.8rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: var(--brown-deep);
  color: var(--paper);
  text-align: center;
  overflow: hidden;
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-inline: auto;
  padding-block: clamp(3.5rem, 7vw, 6rem);
}
.cta-band h2 { color: var(--paper); font-size: var(--fs-h2); }
.cta-band .script { color: var(--rose); }
.cta-band p { margin-top: 1rem; color: rgba(250, 244, 230, 0.82);
  font-size: var(--fs-lead); }
.cta-band .btn-row { justify-content: center; }
.cta-band .ornament { color: var(--rose); margin-bottom: 1.6rem; }
.cta-band .ornament::before { background: linear-gradient(90deg, transparent,
  rgba(182,145,78,0.8)); }
.cta-band .ornament::after { background: linear-gradient(90deg,
  rgba(182,145,78,0.8), transparent); }
.cta-band__blossom { position: absolute; color: rgba(205,156,152,0.18); }
.cta-band__blossom--1 { width: 180px; top: -40px; left: -30px; }
.cta-band__blossom--2 { width: 130px; bottom: -36px; right: -10px;
  color: rgba(147,167,132,0.18); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
}
.contact-card {
  background: var(--surface);
  border-radius: var(--r);
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(182, 145, 78, 0.22);
}
.contact-list { display: grid; gap: 1.4rem; margin-top: 0.5rem; }
.contact-item { display: flex; gap: 1.1rem; align-items: flex-start; }
.contact-item__icon {
  flex: none;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--sage-soft);
  color: var(--sage-deep);
}
.contact-item__icon svg { width: 24px; height: 24px; }
.contact-item__label {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  font-weight: 600;
}
.contact-item__value {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--brown-deep);
  font-weight: 600;
  line-height: 1.3;
}
.contact-item__value a:hover { color: var(--terracotta-deep); }
.contact-item__note { font-size: 0.95rem; color: var(--ink-soft); }

.place-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r);
  padding: clamp(2rem, 4vw, 3rem);
  background:
    radial-gradient(circle at 84% 10%, rgba(147,167,132,0.5), transparent 56%),
    radial-gradient(circle at 8% 94%, rgba(205,156,152,0.42), transparent 52%),
    var(--surface);
  border: 1px solid rgba(182, 145, 78, 0.3);
  box-shadow: var(--shadow-sm);
}
.place-card__deco {
  position: absolute;
  right: -34px; top: -26px;
  width: 170px;
  color: rgba(182, 145, 78, 0.15);
}
.place-card__pin { width: 76px; height: auto; display: block; margin-bottom: 1.3rem; }
.place-card .eyebrow { position: relative; }
.place-card__city {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 2.7rem);
  font-weight: 600;
  color: var(--brown-deep);
  line-height: 1.1;
  margin-top: 0.6rem;
}
.place-card__addr {
  font-size: 1.2rem;
  color: var(--ink);
  margin-top: 0.7rem;
  line-height: 1.55;
}
.place-card__region { color: var(--ink-soft); margin-top: 0.4rem; position: relative; }
.place-card .btn-row { margin-top: 1.8rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brown-deep);
  color: rgba(250, 244, 230, 0.78);
  padding-top: clamp(3.5rem, 7vw, 5.5rem);
}
.site-footer a { transition: color 0.25s var(--ease); }
.site-footer a:hover { color: var(--paper); }
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
}
.footer__brand .brand__name { color: var(--paper); font-size: 2rem; }
.footer__brand .brand__sub { color: var(--rose); }
.footer__about { margin-top: 1rem; max-width: 30ch; font-size: 0.97rem; }
.footer__col h4 {
  color: var(--paper);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  font-family: var(--font-body);
  font-weight: 600;
}
.footer__col ul { display: grid; gap: 0.6rem; }
.footer__col li a { font-size: 0.98rem; }
.footer__contact p { font-size: 0.98rem; margin-bottom: 0.7rem; line-height: 1.5; }
.footer__contact strong { color: var(--paper); font-weight: 600; }
.footer__bottom {
  border-top: 1px solid rgba(250, 244, 230, 0.14);
  padding-block: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(250, 244, 230, 0.6);
}
.footer__bottom .blossom { color: var(--rose); width: 20px; height: 20px;
  vertical-align: -4px; }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 720px; margin-inline: auto; }
.timeline__item {
  position: relative;
  padding-left: 3.6rem;
  padding-bottom: 2.8rem;
}
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
  content: "";
  position: absolute;
  left: 13px; top: 8px; bottom: -8px;
  width: 2px;
  background: rgba(182, 145, 78, 0.45);
}
.timeline__item:last-child::before { display: none; }
.timeline__item::after {
  content: "";
  position: absolute;
  left: 5px; top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 5px var(--paper), 0 0 0 6.5px rgba(182, 145, 78, 0.55);
}
.timeline__year {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--terracotta-deep);
  margin-bottom: 0.35rem;
}
.timeline__title { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
.timeline__item p { color: var(--ink-soft); margin-top: 0.5rem; }

/* ---------- Linked method tiles ---------- */
.method-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(0.9rem, 2vw, 1.3rem);
}
.method-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.5rem;
  background: var(--surface);
  border-radius: var(--r-sm);
  border: 1px solid rgba(182, 145, 78, 0.24);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.method-link:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.method-link__icon {
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage-deep);
}
.method-link__icon svg { width: 22px; height: 22px; }
.method-link__text { display: flex; flex-direction: column; }
.method-link__title {
  font-family: var(--font-display);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--brown-deep);
  line-height: 1.2;
}
.method-link__more {
  font-size: 0.86rem;
  color: var(--terracotta-deep);
  font-weight: 600;
}
@media (max-width: 620px) { .method-links { grid-template-columns: 1fr; } }

/* ---------- Quote banner (image background) ---------- */
.quote-banner {
  position: relative;
  color: var(--paper);
  text-align: center;
  background: var(--brown-deep);
  overflow: hidden;
}
.quote-banner__bg { position: absolute; inset: 0; }
.quote-banner__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.4; }
.quote-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 38%, rgba(65,48,31,0.42), rgba(65,48,31,0.9));
}
.quote-banner__inner {
  position: relative;
  z-index: 1;
  padding-block: clamp(5rem, 11vw, 9rem);
}
.quote-banner .quote__text { color: var(--paper); }
.quote-banner .quote__mark,
.quote-banner .quote__cite { color: var(--rose); }

/* ---------- Two-column info grid ---------- */
.info-grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 760px) { .info-grid--2 { grid-template-columns: 1fr; } }

/* ---------- Scroll reveal ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
  transition-delay: calc(var(--i, 0) * 95ms);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.muted { color: var(--ink-soft); }
.flow > * + * { margin-top: 1.15rem; }
.flow--lg > * + * { margin-top: 1.7rem; }

/* =================================================================
   Responsive
   ================================================================= */
@media (max-width: 1100px) {
  .nav__list, .nav__cta.nav__cta--desktop { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__content { text-align: center; }
  .hero__eyebrow { justify-content: center; }
  .hero__text { margin-inline: auto; }
  .hero .btn-row { justify-content: center; }
  .hero__media { order: -1; }
  .split, .feature {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
  .split--text-media .split__media,
  .feature--reverse .feature__media { order: -1; }
  .feature__content { text-align: center; }
  .feature__content .eyebrow { justify-content: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: repeat(2, 1fr); }
  .treatment-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  :root { --gutter: 1.25rem; }
  .service-grid,
  .info-grid,
  .treatment-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--tall { grid-row: span 1; aspect-ratio: 3 / 4; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .btn-row { gap: 0.7rem; }
  .btn { width: 100%; justify-content: center; }
  .cta-band .btn, .hero .btn { width: auto; }
  .hero__seal { right: -10px; width: 88px; }
  .quote__text { font-size: 1.4rem; }
}

@media (max-width: 380px) {
  .btn { width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .hero__seal { animation: none; }
}
