/*
Theme Name: Alina Thai Wellness
Theme URI: https://alinathaiwellness.example
Author: Custom Build
Author URI: https://alinathaiwellness.example
Description: A luxury Thai massage and spa theme in a soft warm coral palette — feminine, editorial, photo-forward. Painterly gradient placeholders ship with the theme; swap in real photography via the WP media library.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: alina-thai-wellness
Tags: spa, wellness, feminine, custom-colors, custom-menu, featured-images, threaded-comments, translation-ready, responsive-layout
*/

/* ==========================================================================
   1. DESIGN TOKENS
   ========================================================================== */
:root {
  --terracotta:    #D4A5AA;   /* soft muted pink — primary accent */
  --terracotta-dk: #B8888D;   /* darker pink — hover */
  --carnation:     #C79599;   /* mauve pink — secondary */
  --carnation-dk:  #A67378;
  --peach:         #F0D0D4;   /* purely pink (was peachy) */
  --peach-2:       #F5DCE0;
  --pink:          #EDC5CA;
  --pink-2:        #F0D0D4;
  --pink-soft:     #F7DCE0;
  --pink-veil:     #FBEBEE;
  --cream:         #FFFFFF;   /* pure white — was cream */
  --cream-warm:    #FCF8F8;   /* neutral cream, no warm tone */
  --cream-2:       #FFFFFF;
  --white:         #FFFFFF;

  --ink:           #4A3B3E;   /* soft warm gray for headings */
  --ink-2:         #6B5359;
  --text:          #5C4E51;   /* body text */
  --text-soft:     #948689;   /* muted text */
  --hairline:      #EFDDE1;   /* pink hairline */

  /* Warm dark for text only — never used as a section background */
  --font-display:  'Cormorant Garamond', ui-serif, Georgia, serif;
  --font-body:     'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-script:   'Allura', 'Great Vibes', cursive;

  --s-1: .5rem;
  --s-2: 1rem;
  --s-3: 1.5rem;
  --s-4: 2rem;
  --s-5: 3rem;
  --s-6: 4.5rem;
  --s-7: 6.5rem;
  --s-8: 9rem;

  --wrap: 1280px;
  --wrap-narrow: 820px;
  --radius: 24px;
  --radius-sm: 14px;
  --pill: 999px;

  --ease: cubic-bezier(0.4, 0.1, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   2. RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { list-style: none; }
::selection { background: var(--terracotta); color: var(--cream); }

/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.08;
}
h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.02;
}
h2 { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 400; line-height: 1.1; }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.9rem); font-weight: 500; line-height: 1.25; }
h4 { font-size: 1.05rem; font-weight: 500; line-height: 1.3; }
em, i { font-style: italic; font-weight: 300; }
h1 em { font-weight: 300; }
h2 em { font-weight: 400; }

p { max-width: 62ch; }
p + p { margin-top: 1em; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: var(--s-2);
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--terracotta);
  line-height: 1;
}
.script-lg { font-size: clamp(3rem, 7vw, 5.5rem); }
.script-md { font-size: clamp(2rem, 4vw, 3rem); }
.script-xl { font-size: clamp(3.5rem, 9vw, 7rem); }

/* ==========================================================================
   4. LAYOUT
   ========================================================================== */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--s-4); }
.wrap-narrow { max-width: var(--wrap-narrow); margin: 0 auto; padding: 0 var(--s-4); }
section { position: relative; }

/* ==========================================================================
   5. BUTTONS & LINKS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.05em 2.4em;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: var(--pill);
  transition: all .3s var(--ease);
  cursor: pointer;
  border: 1px solid transparent;
  text-transform: uppercase;
  will-change: transform;
}
.btn--primary {
  background: var(--terracotta);
  color: #FFFFFF;
  border-color: var(--terracotta);
  box-shadow: 0 8px 22px -12px rgba(212, 165, 170, 0.6);
}
.btn--primary:hover {
  background: var(--carnation);
  border-color: var(--carnation);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(184, 136, 141, 0.6);
}
.btn--outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--cream); }

.btn--ghost {
  background: rgba(255,255,255,0.6);
  color: var(--ink);
  border: 1px solid var(--hairline);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: var(--cream);
  border-color: var(--terracotta);
  color: var(--terracotta);
  transform: translateY(-2px);
}

.link {
  display: inline-block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--terracotta);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.link:hover { color: var(--carnation-dk); }

/* ==========================================================================
   6. SITE HEADER / NAV
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 76px;
  padding: 0 var(--s-4);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: var(--s-4);
  transition: all .35s var(--ease);
  background: rgba(253, 250, 247, 0.94);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  border-bottom: 1px solid var(--hairline);
}
.site-header.is-scrolled {
  background: rgba(253, 250, 247, 0.98);
  box-shadow: 0 4px 20px -8px rgba(58, 36, 24, 0.10);
}
.site-header__logo {
  justify-self: start;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--ink);
  text-transform: uppercase;
  white-space: nowrap;
}
.site-nav ul { display: flex; gap: var(--s-4); align-items: center; }
.site-nav a {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 0.5rem 0;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 30px;
  height: 1px;
  background: var(--terracotta);
  transition: transform .3s var(--ease);
}
.site-nav a:hover::after,
.site-nav a.current::after,
.site-nav .current-menu-item a::after { transform: translateX(-50%) scaleX(1); }
.site-nav a:hover { color: var(--terracotta); }

.site-header__cta { justify-self: end; }
.site-header__cta .btn { padding: 0.7em 1.6em; font-size: 0.72rem; }

.menu-toggle { display: none; }

/* ==========================================================================
   7. HERO — Full-bleed background image + huge overlaid brand text (RIVVA-style)
   ========================================================================== */
.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  isolation: isolate;
  background: var(--pink-veil);
  margin-top: -1px;   /* pull up by 1px to hide any sub-pixel border seam */
}

/* Full-bleed background image */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroBgFade 1.4s var(--ease-out) both;
}

/* Soft veil — slight top+bottom darken so overlaid text stays readable */
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(74, 59, 62, 0.20) 0%, rgba(74, 59, 62, 0) 22%, rgba(74, 59, 62, 0) 60%, rgba(74, 59, 62, 0.40) 100%);
  pointer-events: none;
}

/* Huge brand text — bold, uppercase, extends beyond viewport, overlaid on image */
.hero__brand-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(14rem, 34vw, 32rem);
  line-height: 0.85;
  text-transform: uppercase;
  letter-spacing: -0.04em;
  color: rgba(255, 255, 255, 0.55);
  z-index: 2;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  mix-blend-mode: overlay;
  animation: heroBrandFade 1.8s var(--ease-out) both;
}

/* Bottom copy row — 3-column grid so CTA is TRULY centered in the viewport,
   tagline sits left, badge sits right. Independent of each column's content width. */
.hero__bottom {
  position: absolute;
  bottom: 50px;
  left: 50px;
  right: 50px;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: end;
  gap: 30px;
  animation: heroBottomFade 1.6s var(--ease-out) both;
  animation-delay: 0.3s;
}

.hero__tagline-block {
  max-width: 320px;
  color: #fff;
  justify-self: start;
}
.hero__eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  margin-bottom: 10px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.hero__tagline-block p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: #fff;
  line-height: 1.5;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.hero__cta-block {
  justify-self: center;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 10px 14px 28px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--ink);
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .35s var(--ease);
  box-shadow: 0 14px 34px -12px rgba(0, 0, 0, 0.35);
  white-space: nowrap;
}
.hero__cta span:first-child { white-space: nowrap; }
.hero__cta:hover {
  background: var(--terracotta);
  color: #fff;
  transform: translateY(-2px);
}
.hero__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  transition: transform .35s var(--ease);
}
.hero__cta:hover .hero__cta-arrow {
  background: #fff;
  color: var(--terracotta);
  transform: rotate(-45deg);
}

/* Rating badge — proper pill with subtle backdrop, more prominent */
.hero__badge-block {
  justify-self: end;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.25);
}
.hero__badge-stars {
  color: #ffd085;
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.hero__badge-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: #fff;
  line-height: 1;
}
.hero__badge-label {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  padding-left: 10px;
}

@keyframes heroBgFade {
  from { opacity: 0; transform: scale(1.06); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes heroBrandFade {
  from { opacity: 0; letter-spacing: 0.02em; }
  to   { opacity: 0.55; letter-spacing: -0.04em; }
}
@keyframes heroBottomFade {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__bg img, .hero__brand-bg,
  .hero__tagline-block, .hero__cta-block, .hero__badge-block { animation: none; }
}


/* ==========================================================================
   8. MARQUEE / TICKER — seamless infinite scroll
   ========================================================================== */
.marquee {
  background: var(--terracotta);
  color: var(--cream);
  padding: 1rem 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  position: relative;
}
.marquee__track {
  display: flex;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee__item {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  padding-right: 3rem;   /* trailing gap is part of the item so duplicates align seamlessly */
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}
.marquee__item::after {
  content: '❋';
  color: var(--peach);
  font-style: normal;
  margin-left: 3rem;
}
/* Track holds 4 copies of the word list.
   Animating by -25% moves by exactly one copy — seamless loop, and the
   remaining 3 copies always cover the viewport (even on ultrawide screens). */
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-25%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ==========================================================================
   9. SECTION INTRO (shared)
   ========================================================================== */
.section-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--s-6);
}
.section-intro h2 { margin-bottom: var(--s-2); }
.section-intro h2 em { color: var(--terracotta); font-style: italic; }
.section-intro p {
  color: var(--text-soft);
  font-size: 1.05rem;
  margin: 0 auto;
  max-width: 56ch;
}

/* ==========================================================================
   10. SERVICES — photo-forward cards
   ========================================================================== */
.services {
  padding: var(--s-8) 0;
  background: var(--cream);
  position: relative;
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
.service-card {
  background: var(--cream-warm);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(239, 221, 225, 0.5);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px -30px rgba(58, 36, 24, 0.25);
}
.service-card__photo {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.service-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.service-card:hover .service-card__photo img {
  transform: scale(1.06);
}
.service-card__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(58,36,24,0.15));
}
.service-card__badge {
  position: absolute;
  top: var(--s-2);
  left: var(--s-2);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.5rem 1rem;
  border-radius: var(--pill);
  font-family: var(--font-script);
  color: var(--terracotta);
  font-size: 1.3rem;
  line-height: 1;
  z-index: 1;
}
.service-card__body {
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card h3 {
  margin-bottom: var(--s-2);
  color: var(--ink);
}
.service-card p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: var(--s-3);
  flex: 1;
}
.service-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s-2);
  border-top: 1px dashed var(--hairline);
}
.service-card__price {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--terracotta);
}
.service-card__cta {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.5em 0;
  border-bottom: 1px solid var(--ink);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.service-card__cta:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
}

/* ==========================================================================
   11. ABOUT — magazine split with overlapping photos
   ========================================================================== */
.about {
  padding: var(--s-8) 0;
  background: var(--pink-veil);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: var(--peach);
  opacity: 0.25;
  filter: blur(80px);
  pointer-events: none;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: center;
  position: relative;
}
.about__photos {
  position: relative;
  padding: var(--s-4);
  min-height: 620px;
}
.about__photo-main {
  width: 78%;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(58, 36, 24, 0.25);
}
.about__photo-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__photo-offset {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48%;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(58, 36, 24, 0.3);
  border: 8px solid var(--cream-warm);
}
.about__photo-offset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* peach square behind main photo */
.about__photos::before {
  content: '';
  position: absolute;
  top: 8%;
  left: 0;
  width: 40%;
  height: 60%;
  background: var(--peach);
  border-radius: var(--radius);
  z-index: -1;
  opacity: 0.4;
}

.about__content h2 { margin-bottom: var(--s-3); }
.about__content h2 em { color: var(--terracotta); font-style: italic; }
.about__content p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: var(--s-3);
}
.about__signature {
  margin-top: var(--s-4);
  padding-top: var(--s-3);
  border-top: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.about__signature-name {
  font-family: var(--font-script);
  font-size: 2.2rem;
  color: var(--terracotta);
  line-height: 1;
}
.about__signature-role {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ==========================================================================
   12. SIGNATURE MOMENT — parallax photo with centered script quote
   ========================================================================== */
.signature-moment {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.signature-moment__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.signature-moment__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.signature-moment::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(240,208,212,0.15), rgba(245,220,224,0.35));
  z-index: -1;
}
.signature-moment__content {
  text-align: center;
  padding: var(--s-6) var(--s-4);
  max-width: 900px;
}
.signature-moment .script {
  color: var(--terracotta);
  display: block;
  margin-bottom: var(--s-2);
}
.signature-moment h2 {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.3;
  max-width: 720px;
  margin: 0 auto;
}

/* ==========================================================================
   13. THE DIFFERENCE — refined 4-column feature grid with SVG icons
   ========================================================================== */
.why-us {
  padding: var(--s-8) 0;
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: var(--peach);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.25;
  pointer-events: none;
}
.why-us__intro { text-align: center; margin: 0 auto var(--s-6); max-width: 720px; }
.why-us__intro .script { display: block; margin-bottom: var(--s-2); }
.why-us__intro h2 { margin: 0 auto; }
.why-us__intro h2 em { color: var(--terracotta); font-style: italic; }

.why-us__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  max-width: var(--wrap);
  margin: 0 auto;
  position: relative;
}

.difference {
  text-align: center;
  padding: var(--s-3) var(--s-2);
  position: relative;
  transition: transform .5s var(--ease-out);
}
.difference:hover { transform: translateY(-6px); }

/* vertical hairline dividers between columns on desktop */
.difference + .difference::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--hairline);
}

.difference__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto var(--s-3);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-veil), var(--cream-warm));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
  border: 1px solid rgba(239, 221, 225, 0.6);
}
.difference:hover .difference__icon {
  transform: rotate(-6deg) scale(1.06);
  box-shadow: 0 15px 30px -15px rgba(212, 165, 170, 0.35);
}
.difference__icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--terracotta);
  stroke-width: 1.4;
  fill: none;
}

.difference h3 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
  letter-spacing: 0;
}
.difference p {
  font-size: 0.94rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin: 0 auto;
  max-width: 22ch;
}

/* ==========================================================================
   14. HOURS + LOCATION — twin light cards
   ========================================================================== */
.hours-location {
  padding: var(--s-7) 0;
  background: var(--white);
}
.hours-location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}
.hl-card {
  background: var(--cream-warm);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: var(--s-5);
  position: relative;
  overflow: hidden;
}
.hl-card__script {
  font-family: var(--font-script);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: var(--s-4);
  display: block;
}
.hl-card__photo {
  height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: var(--s-3);
}
.hl-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hl-card address {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: var(--s-3);
}
.hl-hours {
  margin-bottom: var(--s-4);
}
.hl-hours li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--hairline);
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink);
}
.hl-hours li:last-child { border-bottom: 0; }
.hl-hours li span {
  color: var(--terracotta);
  font-style: italic;
}
.hl-card__deco {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 100px;
  height: 100px;
  background: var(--peach);
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(20px);
}

/* ==========================================================================
   15. TESTIMONIALS — three quotes on Spanish Pink with avatars
   ========================================================================== */
.testimonials {
  background: var(--pink-soft);
  padding: var(--s-8) 0;
  position: relative;
  overflow: hidden;
}
.testimonials::before,
.testimonials::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  pointer-events: none;
}
.testimonials::before { top: -100px; left: -100px; background: var(--peach); }
.testimonials::after  { bottom: -100px; right: -100px; background: var(--pink); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
  position: relative;
  margin-top: var(--s-5);
}

/* ─── Carousel ─── */
.tst-carousel {
  position: relative;
  margin-top: var(--s-5);
  padding: 0 60px;
}
.tst-carousel__track {
  display: flex;
  gap: var(--s-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 8px 0 20px;
}
.tst-carousel__track::-webkit-scrollbar { display: none; }
.tst-carousel__track > .t-card {
  flex: 0 0 calc((100% - var(--s-4) * 2) / 3);
  scroll-snap-align: start;
  min-width: 0;
}
.tst-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--hairline);
  background: var(--cream);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .3s var(--ease);
  z-index: 2;
  box-shadow: 0 6px 16px -6px rgba(74, 59, 62, 0.2);
}
.tst-carousel__nav:hover {
  background: var(--terracotta);
  color: var(--cream);
  border-color: var(--terracotta);
}
.tst-carousel__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.tst-carousel__nav--prev { left: 0; }
.tst-carousel__nav--next { right: 0; }
.tst-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--s-3);
}
.tst-carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hairline);
  border: 0;
  cursor: pointer;
  transition: all .25s var(--ease);
  padding: 0;
}
.tst-carousel__dot.is-active {
  background: var(--terracotta);
  transform: scale(1.3);
}

.t-card {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius);
  padding: var(--s-4);
  display: flex;
  flex-direction: column;
  transition: transform .4s var(--ease-out);
}
.t-card:hover { transform: translateY(-6px); }
.t-card__stars {
  color: var(--terracotta);
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  margin-bottom: var(--s-2);
}
.t-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: var(--s-3);
  flex: 1;
}
.t-card__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding-top: var(--s-2);
  border-top: 1px solid rgba(255,255,255,0.5);
}

/* Initials avatar — no image, just letters on a soft pink circle */
.t-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--pink-2), var(--peach));
  color: var(--terracotta-dk);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: 1px solid rgba(255, 255, 255, 0.6);
}
.t-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.t-card__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ink);
}
.t-card__meta {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-top: 2px;
}

/* ==========================================================================
   16. GALLERY PAGE — dedicated /gallery/ page with lightbox + zoom
   ========================================================================== */
.gallery-page {
  padding: var(--s-6) 0 var(--s-8);
  background: var(--white);
}
.gallery-page__grid {
  columns: 3;
  column-gap: 14px;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 var(--s-4);
}
.gallery-page__item {
  display: block;
  width: 100%;
  margin: 0 0 14px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
  border-radius: var(--radius-sm);
  break-inside: avoid;
  position: relative;
  transition: transform .35s var(--ease-out);
}
.gallery-page__item img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .6s var(--ease-out), filter .3s ease;
}
.gallery-page__item:hover {
  transform: translateY(-3px);
}
.gallery-page__item:hover img {
  transform: scale(1.04);
}
.gallery-page__item::after {
  content: '⛶';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--terracotta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  opacity: 0;
  transition: opacity .3s ease;
}
.gallery-page__item:hover::after { opacity: 1; }
.gallery-page__item--placeholder { cursor: default; }
.gallery-page__item--placeholder:hover img { transform: none; }
.gallery-page__item--placeholder::after { display: none; }

/* ─── Lightbox overlay ─── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  isolation: isolate;
}
.lightbox.is-open {
  display: flex;
  animation: lbFade .3s ease-out both;
}
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(74, 59, 62, 0.92);
  backdrop-filter: blur(4px);
  cursor: zoom-out;
}
.lightbox__stage {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 82vh;
  overflow: hidden;
  cursor: grab;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__stage.is-panning { cursor: grabbing; }
.lightbox__stage img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  transform-origin: center center;
  transition: transform .25s ease-out;
  user-select: none;
  -webkit-user-drag: none;
  border-radius: 4px;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.5);
}
.lightbox__stage.is-panning img { transition: none; }

.lightbox__toolbar {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 999px;
  z-index: 2;
}
.lightbox__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .25s ease;
}
.lightbox__btn:hover { background: rgba(255, 255, 255, 0.18); }
.lightbox__btn:disabled { opacity: 0.4; cursor: not-allowed; }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .25s ease;
}
.lightbox__nav:hover { background: rgba(255, 255, 255, 0.22); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .25s ease;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.22); }

@keyframes lbFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

body.lightbox-open { overflow: hidden; }

/* ==========================================================================
   17. FINAL CTA — photo bg with soft peach overlay (bright, not dark)
   ========================================================================== */
.cta-final {
  position: relative;
  padding: var(--s-8) 0;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}
.cta-final__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.cta-final__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(240,208,212,0.6), rgba(237,197,202,0.7));
  z-index: -1;
}
.cta-final__frame {
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: var(--s-6) var(--s-4);
  max-width: 780px;
  margin: 0 auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.6);
}
.cta-final .script {
  color: var(--terracotta);
  margin-bottom: var(--s-2);
  display: block;
}
.cta-final h2 {
  color: var(--ink);
  margin-bottom: var(--s-4);
  font-size: clamp(2.3rem, 5vw, 3.5rem);
}
.cta-final h2 em { color: var(--terracotta); font-style: italic; }

/* ==========================================================================
   18. FOOTER — warm cream (not dark)
   ========================================================================== */
.site-footer {
  background: var(--cream-warm);
  color: var(--text-soft);
  padding: var(--s-7) 0 var(--s-3);
  border-top: 1px solid var(--hairline);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-5);
}
.site-footer__brand h3 {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  margin-bottom: var(--s-2);
}
.site-footer__brand p {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--terracotta);
  max-width: 32ch;
  font-size: 1rem;
}
.site-footer__brand-script {
  font-family: var(--font-script);
  font-size: 1.8rem;
  color: var(--terracotta);
  display: block;
  line-height: 1;
  margin-top: var(--s-2);
}

.site-footer h4 {
  color: var(--terracotta);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}
.site-footer a, .site-footer li, .site-footer p {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--text);
}
.site-footer a:hover { color: var(--terracotta); }
.site-footer__bottom {
  border-top: 1px solid var(--hairline);
  padding-top: var(--s-3);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-2);
  font-size: 0.78rem;
  color: var(--text-soft);
}

/* ==========================================================================
   19. SUB-PAGE HEADER
   ========================================================================== */
.page-header {
  padding: var(--s-7) 0;
  background: var(--cream-warm);
  text-align: center;
  border-bottom: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}
.page-header::before,
.page-header::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.3;
}
.page-header::before { top: -100px; left: -100px; background: var(--pink); }
.page-header::after { bottom: -100px; right: -100px; background: var(--peach); }
.page-header > * { position: relative; z-index: 1; }
.page-header h1 {
  font-size: clamp(2.75rem, 6vw, 5rem);
  color: var(--ink);
  margin-bottom: var(--s-2);
}
.page-header h1 em { color: var(--terracotta); font-style: italic; }
.page-header p {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-soft);
  font-size: 1.15rem;
  max-width: 52ch;
  margin: 0 auto;
}
.page-header .script {
  display: block;
  color: var(--terracotta);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0;
}

/* ==========================================================================
   19b. PROSE — long-form content styling (single posts, pages)
   ========================================================================== */
.prose {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
}
.prose > * + * { margin-top: 1.2em; }
.prose h2,
.prose h3,
.prose h4 { color: var(--ink); margin-top: 1.8em; }
.prose h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); }
.prose h3 { font-size: clamp(1.35rem, 2.2vw, 1.7rem); }
.prose h2 em, .prose h3 em { color: var(--terracotta); font-style: italic; }
.prose p { max-width: none; }
.prose a { color: var(--terracotta); border-bottom: 1px solid rgba(212, 165, 170, 0.4); }
.prose a:hover { color: var(--carnation-dk); border-bottom-color: currentColor; }
.prose blockquote {
  border-left: 3px solid var(--terracotta);
  padding: 0.5em 0 0.5em 1.5em;
  margin: 1.5em 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
  line-height: 1.5;
}
.prose ul, .prose ol { padding-left: 1.5em; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 0.4em; }
.prose img { border-radius: var(--radius-sm); margin: 1.5em auto; }
.prose figure { margin: 1.5em 0; }
.prose figcaption {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-soft);
  font-size: 0.92rem;
  text-align: center;
  margin-top: 0.6em;
}
.prose code {
  background: var(--pink-veil);
  padding: 0.15em 0.4em;
  border-radius: 4px;
  font-family: 'SFMono-Regular', Menlo, Monaco, Consolas, monospace;
  font-size: 0.9em;
}
.prose pre {
  background: var(--cream-warm);
  padding: 1.2em 1.5em;
  border-radius: var(--radius-sm);
  overflow-x: auto;
  border: 1px solid var(--hairline);
}
.prose pre code { background: none; padding: 0; }
.prose hr { border: 0; border-top: 1px solid var(--hairline); margin: 2.5em auto; max-width: 200px; }

/* Pricing table wrapper — horizontal scroll on narrow screens */
.pricing-table {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius);
}
.pricing-table table th,
.pricing-table table td { white-space: nowrap; }

/* ==========================================================================
   19c. POST LIST — blog index, archive, search results
   ========================================================================== */
.post-list { padding: var(--s-7) 0; background: var(--cream); }
.post-list__grid { display: flex; flex-direction: column; gap: var(--s-5); }

.post-item {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: var(--s-4);
  padding-bottom: var(--s-4);
  border-bottom: 1px solid var(--hairline);
  align-items: start;
}
.post-item:last-child { border-bottom: 0; }
.post-item__thumb {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.post-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.post-item__thumb:hover img { transform: scale(1.05); }
.post-item__body { padding-top: 0.2em; }
.post-item__meta {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 0.6em;
}
.post-item__title {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: 0.5em;
  line-height: 1.15;
}
.post-item__title a {
  color: var(--ink);
  transition: color .25s var(--ease);
}
.post-item__title a:hover { color: var(--terracotta); }
.post-item__excerpt {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.65;
  margin-bottom: var(--s-2);
}
.post-item__excerpt p { max-width: none; }

/* Post item without thumbnail — single column */
.post-item:not(:has(.post-item__thumb)) { grid-template-columns: 1fr; }

/* Pagination */
.pagination-wrap { margin-top: var(--s-6); }
.pagination-wrap .nav-links,
.navigation.pagination .nav-links {
  display: flex;
  gap: 0.4rem;
  justify-content: center;
  flex-wrap: wrap;
}
.pagination-wrap .page-numbers,
.navigation.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.9rem;
  border: 1px solid var(--hairline);
  border-radius: var(--pill);
  background: var(--cream-warm);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all .25s var(--ease);
}
.pagination-wrap .page-numbers:hover,
.pagination-wrap .page-numbers.current {
  background: var(--terracotta);
  color: var(--cream);
  border-color: var(--terracotta);
}
.pagination-wrap .dots { border: 0; background: none; }

/* ==========================================================================
   19d. SINGLE POST
   ========================================================================== */
.single-post__meta {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-top: var(--s-2);
  font-weight: 500;
}
.single-post__meta a { color: inherit; }
.single-post__meta a:hover { color: var(--carnation-dk); }

.single-post__thumb {
  background: var(--cream);
  padding: 0 0 var(--s-4);
}
.single-post__thumb img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 40px 80px -40px rgba(58, 36, 24, 0.25);
}

.single-post__body {
  padding: var(--s-6) 0;
  background: var(--cream);
}

.single-post__tags {
  margin-top: var(--s-5);
  padding-top: var(--s-3);
  border-top: 1px solid var(--hairline);
  font-size: 0.9rem;
  color: var(--text-soft);
}
.single-post__tags .tag-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-right: 0.5em;
}
.single-post__tags a {
  color: var(--ink);
  border-bottom: 1px solid var(--hairline);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.single-post__tags a:hover { color: var(--terracotta); border-bottom-color: currentColor; }

.single-post__nav {
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
}
.single-post__nav-prev,
.single-post__nav-next {
  padding: var(--s-3);
  background: var(--cream-warm);
  border-radius: var(--radius-sm);
  transition: background .3s var(--ease);
}
.single-post__nav-prev:hover,
.single-post__nav-next:hover { background: var(--pink-veil); }
.single-post__nav-next { text-align: right; }
.single-post__nav a {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ink);
}
.single-post__nav a:hover { color: var(--terracotta); }

/* ==========================================================================
   19e. COMMENTS
   ========================================================================== */
.comments-area {
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid var(--hairline);
}
.comments-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: var(--s-4);
}
.comment-list {
  list-style: none;
  padding: 0;
  margin-bottom: var(--s-5);
}
.comment-list li { list-style: none; }
.comment-list .children { padding-left: var(--s-4); margin-top: var(--s-3); }
.comment-body {
  padding: var(--s-3);
  background: var(--cream-warm);
  border-radius: var(--radius-sm);
  border: 1px solid var(--hairline);
  margin-bottom: var(--s-3);
}
.comment-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.6em;
}
.comment-author .avatar {
  border-radius: 50%;
}
.comment-author .fn {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1.05rem;
  color: var(--ink);
  font-weight: 500;
}
.comment-metadata {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: var(--s-2);
}
.comment-metadata a { color: inherit; }
.comment-content { color: var(--text); font-size: 0.98rem; line-height: 1.7; }
.reply { margin-top: var(--s-2); }
.reply .comment-reply-link {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.comment-form,
.comment-respond {
  margin-top: var(--s-4);
  padding: var(--s-4);
  background: var(--pink-veil);
  border-radius: var(--radius);
}
.comment-reply-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: var(--s-3);
}
.comment-notes {
  font-size: 0.88rem;
  color: var(--text-soft);
  font-style: italic;
  margin-bottom: var(--s-2);
}
.comment-form-comment,
.comment-form-author,
.comment-form-email,
.comment-form-url { margin-bottom: var(--s-2); }
.comment-form label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 0.4em;
}
.comment-form-cookies-consent { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.9rem; }
.comment-form-cookies-consent label {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text);
  font-weight: 400;
}

/* ==========================================================================
   19f. SEARCH FORM (partial + inline)
   ========================================================================== */
.search-form {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
  background: var(--cream-warm);
  border: 1px solid var(--hairline);
  border-radius: var(--pill);
  padding: 0.35rem 0.35rem 0.35rem 1.2rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.search-form:focus-within {
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(212, 165, 170, 0.15);
}
.search-form__input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 0.6rem 0;
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
}
.search-form__input:focus { outline: none; }
.search-form__submit {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--terracotta);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .25s var(--ease), transform .25s var(--ease);
  border: 0;
}
.search-form__submit:hover {
  background: var(--carnation);
  transform: scale(1.05);
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  overflow: hidden;
  position: absolute !important;
  white-space: nowrap;
  word-wrap: normal;
}

/* ==========================================================================
   19g. 404 PAGE
   ========================================================================== */
.error-404 {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s-6) var(--s-4);
  isolation: isolate;
  text-align: center;
}
.error-404__bg {
  position: absolute;
  inset: 0;
  z-index: -3;
}
.error-404__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px) saturate(1.05);
  transform: scale(1.02);
}
.error-404::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(251, 242, 232, 0.35), rgba(251, 242, 232, 0.6) 70%);
  z-index: -2;
}
.error-404__inner {
  max-width: 700px;
  animation: heroFade 1.4s var(--ease-out) both;
  position: relative;
}
.error-404__num {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(6rem, 15vw, 11rem);
  color: var(--terracotta);
  line-height: 1;
  margin: var(--s-2) 0 var(--s-3);
  opacity: 0.9;
}
.error-404 h1 {
  color: var(--ink);
  margin-bottom: var(--s-3);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
}
.error-404 h1 em { color: var(--terracotta); font-style: italic; }
.error-404 > .error-404__inner > p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--text-soft);
  margin: 0 auto var(--s-5);
  max-width: 46ch;
  line-height: 1.6;
}
.error-404__ctas {
  display: flex;
  gap: var(--s-2);
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: var(--s-5);
}
.error-404__search {
  max-width: 480px;
  margin: var(--s-5) auto var(--s-4);
}
.error-404__search-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: var(--s-2);
  max-width: none;
}
.error-404__links {
  display: flex;
  gap: var(--s-2);
  justify-content: center;
  flex-wrap: wrap;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-soft);
  padding-top: var(--s-4);
  border-top: 1px solid var(--hairline);
  max-width: 400px;
  margin: 0 auto;
}
.error-404__links a {
  color: var(--ink);
  transition: color .25s var(--ease);
}
.error-404__links a:hover { color: var(--terracotta); }

/* ==========================================================================
   19h. NO RESULTS (search empty state)
   ========================================================================== */
.no-results {
  text-align: center;
  padding: var(--s-6) 0;
  max-width: 600px;
  margin: 0 auto;
}
.no-results .script { display: block; margin-bottom: var(--s-2); }
.no-results h2 em { color: var(--terracotta); font-style: italic; }
.no-results p {
  color: var(--text-soft);
  margin: var(--s-2) auto 0;
  max-width: 50ch;
}

/* ==========================================================================
   20. FORMS (Booking / Contact)
   ========================================================================== */
.form {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--s-6) 0;
}
.form fieldset {
  border: none;
  border-top: 1px solid var(--hairline);
  padding: var(--s-5) 0;
}
.form fieldset:first-of-type { border-top: 0; padding-top: 0; }
.form legend {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--ink);
  padding: 0;
  margin-bottom: var(--s-4);
}
.form legend em { color: var(--terracotta); font-style: italic; }
.form-row { margin-bottom: var(--s-3); }
.form-row > label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 0.5rem;
}
input[type="text"], input[type="email"], input[type="tel"],
input[type="date"], select, textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid var(--hairline);
  background: var(--cream-warm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  border-radius: var(--radius-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(212, 165, 170, 0.15);
}

.option-card { position: relative; margin-bottom: var(--s-2); }
.option-card input { position: absolute; opacity: 0; pointer-events: none; }
.option-card label {
  display: block;
  padding: var(--s-3);
  background: var(--cream-warm);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all .25s var(--ease);
}
.option-card label:hover { border-color: var(--pink); background: var(--pink-veil); }
.option-card input:checked + label {
  border-color: var(--terracotta);
  background: var(--pink-veil);
  box-shadow: 0 6px 16px -6px rgba(212, 165, 170, 0.35);
}
.option-card h3 { color: var(--ink); margin-bottom: 0.2rem; font-size: 1.1rem; }
.option-card p { color: var(--text-soft); font-size: 0.94rem; margin: 0; }
.option-card .price {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--terracotta);
  margin-top: 0.4rem;
  display: inline-block;
}

.pill-option { display: inline-block; margin: 0 .4rem .5rem 0; position: relative; }
.pill-option input { position: absolute; opacity: 0; pointer-events: none; }
.pill-option label {
  display: inline-block;
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--hairline);
  border-radius: var(--pill);
  background: var(--cream-warm);
  cursor: pointer;
  font-size: 0.95rem;
  transition: all .25s var(--ease);
}
.pill-option label:hover { border-color: var(--terracotta); color: var(--terracotta); }
.pill-option input:checked + label {
  background: var(--terracotta); color: var(--cream-warm); border-color: var(--terracotta);
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 0.5rem;
}
.slot { position: relative; }
.slot input { position: absolute; opacity: 0; pointer-events: none; }
.slot label {
  display: block;
  padding: 0.75rem;
  text-align: center;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--cream-warm);
  font-size: 0.92rem;
  color: var(--text-soft);
  transition: all .2s var(--ease);
}
.slot label:hover { border-color: var(--terracotta); color: var(--terracotta); }
.slot input:checked + label {
  background: var(--terracotta); color: var(--cream-warm); border-color: var(--terracotta);
}

.form-summary {
  padding: var(--s-4);
  background: var(--pink-veil);
  border: 1px solid var(--pink);
  border-radius: var(--radius);
  margin: var(--s-5) 0;
}
.form-summary h3 { color: var(--ink); font-size: 1.35rem; margin-bottom: var(--s-2); }
.form-summary ul li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--pink);
  font-size: 0.95rem;
  color: var(--text);
}
.form-summary li:last-child { border-bottom: 0; }
.form-summary li span {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--terracotta);
}

/* ==========================================================================
   21. ANIMATIONS
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { transition-delay: calc(var(--i, 0) * 0.1s); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ==========================================================================
   19d. CONTACT PAGE — 3-column info blocks (phone / email / socials)
   ========================================================================== */
.contact-blocks { padding: var(--s-6) 0; background: var(--cream); }
.contact-blocks__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  text-align: center;
}
.contact-block h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 400;
  margin-bottom: var(--s-1);
  color: var(--ink);
}
.contact-block__value {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--terracotta);
  margin: 0 auto 0.4rem;
  word-break: break-word;
  line-height: 1.3;
}
.contact-block__value a { color: inherit; }
.contact-block__value a:hover { color: var(--terracotta-dk); }
.contact-block__meta {
  font-size: 0.85rem;
  color: var(--text-soft);
  font-style: italic;
}
.contact-block__socials {
  display: flex;
  justify-content: center;
  gap: var(--s-3);
  margin-top: var(--s-2);
  flex-wrap: wrap;
}
.contact-block__socials a {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
}
.contact-block__socials a:hover { color: var(--terracotta); }

/* ==========================================================================
   19e. ABOUT PAGE — dedicated /about/ page — flowing story + signature block
   ========================================================================== */
.about-story {
  padding: var(--s-6) 0 var(--s-8);
  background: var(--cream);
}
.about-story__prose {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text);
  text-align: center;
}
.about-story__prose p {
  margin-bottom: var(--s-3);
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}
.about-story__prose p:last-child { margin-bottom: 0; }

/* Signature block at the end */
.about-story__sign {
  margin-top: var(--s-6);
  text-align: center;
}
.about-story__divider {
  width: 60%;
  max-width: 320px;
  height: 1px;
  background: var(--hairline);
  margin: 0 auto var(--s-4);
}
.about-story__signature {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 2.2rem;
  color: var(--terracotta);
  line-height: 1;
  margin-bottom: var(--s-2);
}
.about-story__tagline {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 500;
}

/* ==========================================================================
   20. RESPONSIVE
   ========================================================================== */

/* ─── Tablet landscape (≤ 1024px) ─── */
@media (max-width: 1024px) {
  .site-header { padding: 0 var(--s-3); }
  .site-header__logo { font-size: 0.95rem; letter-spacing: 0.1em; }
  .site-nav ul { gap: var(--s-3); }
  .site-nav a { font-size: 0.76rem; letter-spacing: 0.12em; }

  .hero__bottom { left: 30px; right: 30px; bottom: 40px; gap: 24px; }
  .hero__tagline-block { max-width: 260px; }
  .hero__brand-bg { font-size: clamp(10rem, 30vw, 20rem); }

  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .services__grid .service-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
  .about__grid { grid-template-columns: 1fr; gap: var(--s-5); }
  .about__photos { min-height: 500px; max-width: 500px; margin: 0 auto; }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 500px; margin: var(--s-5) auto 0; }
  .tst-carousel { padding: 0 40px; }
  .tst-carousel__track > .t-card { flex: 0 0 calc((100% - var(--s-4)) / 2); }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }
  .site-footer__grid { grid-template-columns: 2fr 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; margin-bottom: var(--s-3); }
}

/* ─── Tablet portrait / large mobile (≤ 780px) ─── */
@media (max-width: 780px) {
  :root { --s-7: 4.5rem; --s-8: 6rem; }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: var(--s-2);
    height: 68px;
    padding: 0 var(--s-3);
  }
  .site-header__cta { display: none; }
  .site-nav {
    position: fixed;
    top: 0; right: 0;
    width: 82%;
    max-width: 340px;
    height: 100vh;
    background: var(--cream-warm);
    padding: 90px var(--s-4) var(--s-4);
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    z-index: 999;
    box-shadow: -20px 0 40px -20px rgba(58, 36, 24, 0.2);
    overflow-y: auto;
  }
  .site-nav.is-open { transform: translateX(0); }
  .site-nav ul { flex-direction: column; align-items: flex-start; gap: var(--s-3); }
  .site-nav a { font-size: 1.05rem; }
  .menu-toggle {
    display: flex; flex-direction: column; gap: 5px;
    width: 32px; height: 24px;
    justify-content: center;
    z-index: 1001;
    justify-self: end;
    color: var(--ink);
  }
  .menu-toggle span {
    width: 100%; height: 1.5px; background: currentColor;
    transition: transform .3s var(--ease), opacity .3s var(--ease);
  }
  .menu-toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .menu-toggle.is-open span:nth-child(2) { opacity: 0; }
  .menu-toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  /* HERO — full-bleed bg image; overlays stack on mobile */
  .hero {
    min-height: calc(100vh - 68px);
  }
  .hero__brand-bg { font-size: clamp(8rem, 38vw, 16rem); }

  /* Stack the bottom row vertically on mobile */
  .hero__bottom {
    left: 20px;
    right: 20px;
    bottom: 40px;
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: center;
    gap: 18px;
  }
  .hero__tagline-block {
    justify-self: center;
    text-align: center;
    max-width: none;
    order: 1;
  }
  .hero__tagline-block p { font-size: 0.9rem; }

  .hero__cta-block { order: 2; }
  .hero__cta { font-size: 0.72rem; padding: 12px 8px 12px 22px; }
  .hero__cta-arrow { width: 28px; height: 28px; }

  .hero__badge-block {
    order: 3;
    justify-self: center;
  }
  .hero__badge { padding: 8px 14px; gap: 8px; }
  .hero__badge-num { font-size: 0.95rem; }
  .hero__badge-label { font-size: 0.58rem; padding-left: 8px; }

  .error-404 { min-height: calc(100vh - 68px); }

  .services__grid { grid-template-columns: 1fr; }
  .services__grid .service-card:nth-child(3) { max-width: none; margin: 0; }

  .about__photos { min-height: 420px; padding: 0; }
  .about__photo-main { width: 82%; }
  .about__photo-offset { width: 50%; }

  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
  .difference + .difference::before { display: none; }
  .difference:nth-child(3), .difference:nth-child(4) {
    border-top: 1px solid var(--hairline);
    padding-top: var(--s-4);
    margin-top: var(--s-2);
  }
  .hours-location__grid { grid-template-columns: 1fr; }
  .contact-blocks__grid { grid-template-columns: 1fr; gap: var(--s-4); }
  .about-story__prose { font-size: 1rem; line-height: 1.7; }
  .about-story__signature { font-size: 1.8rem; }
  .about-story__tagline { font-size: 0.68rem; letter-spacing: 0.3em; }
  .post-item { grid-template-columns: 1fr; }
  .single-post__nav { grid-template-columns: 1fr; }
  .single-post__nav-next { text-align: left; }

  .testimonials__grid { grid-template-columns: 1fr; }
  .tst-carousel { padding: 0 8px; }
  .tst-carousel__track > .t-card { flex: 0 0 100%; }
  .tst-carousel__nav { top: auto; bottom: -50px; transform: none; width: 40px; height: 40px; }
  .tst-carousel__nav--prev { left: 30%; }
  .tst-carousel__nav--next { right: 30%; }
  .tst-carousel__dots { margin-top: 55px; }

  .gallery-page__grid { columns: 2; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .lightbox__nav--prev { left: 12px; }
  .lightbox__nav--next { right: 12px; }
  .lightbox__nav, .lightbox__close { width: 40px; height: 40px; }

  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__brand { grid-column: 1 / -1; }

  .form { padding: var(--s-5) var(--s-3); }
}

/* ─── Small mobile (≤ 480px) ─── */
@media (max-width: 480px) {
  .hero__cta { padding: 10px 8px 10px 20px; font-size: 0.68rem; }
  .hero__cta-arrow { width: 26px; height: 26px; }
  .hero__brand-bg { font-size: clamp(6rem, 42vw, 12rem); }
  .hero__bottom { bottom: 30px; gap: 14px; }
  .hero__eyebrow { font-size: 0.66rem; }
  .hero__tagline-block p { font-size: 0.82rem; line-height: 1.45; }

  .site-footer__grid { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; text-align: center; gap: 8px; }
  .btn { padding: 0.9em 1.6em; font-size: 0.78rem; }
  .marquee__item { font-size: 0.95rem; }
  .why-us__grid { grid-template-columns: 1fr; }
  .difference:nth-child(2),
  .difference:nth-child(3),
  .difference:nth-child(4) {
    border-top: 1px solid var(--hairline);
    padding-top: var(--s-4);
    margin-top: var(--s-2);
  }
  .service-card__meta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .service-card__cta { align-self: flex-end; }
}
