/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #f6f1e9;
  --bg-2:      #efe6d8;
  --paper:     #fffdf8;
  --glass:     rgba(255, 255, 255, 0.52);
  --glass-2:   rgba(255, 255, 255, 0.30);
  --glass-line: rgba(255, 255, 255, 0.65);

  --ink:       #2c2924;
  --ink-soft:  #5a544b;
  --ink-mute:  #8a8276;

  --sage:      #8a9b76;
  --sage-2:    #6f8160;
  --terracotta:#d98f6f;
  --terracotta-2:#c97650;
  --lavender:  #b6abce;

  --accent:    #8a9b76;
  --accent-ink: #3c4734;

  --line:      rgba(44, 41, 36, 0.12);
  --shadow:    0 30px 80px -28px rgba(60, 52, 40, 0.35);

  --display: "Sora", "Segoe UI", system-ui, sans-serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --serif-accent: "Newsreader", Georgia, serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h: 84px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

@property --mesh-x {
  syntax: '<percentage>';
  initial-value: 30%;
  inherits: false;
}
@property --mesh-y {
  syntax: '<percentage>';
  initial-value: 20%;
  inherits: false;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  overflow-x: clip;
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 600;
  text-wrap: balance;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}
em {
  font-family: var(--serif-accent);
  font-style: italic;
  font-weight: 500;
  color: var(--sage-2);
}
::selection { background: var(--sage); color: var(--paper); }

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

/* =============================================================
   3. Utilities
   ============================================================= */
.container {
  width: min(1180px, 100% - 2.5rem);
  margin-inline: auto;
}
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .7rem 1.2rem; background: var(--ink); color: var(--paper);
  z-index: 9999; border-radius: 8px; font-weight: 500;
  transition: top .25s var(--ease-out);
}
.skip-link:focus { top: 1rem; }
.sr-only {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}
.kicker {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-2);
  font-weight: 600;
  margin-bottom: 0.9rem;
}
.section-head { max-width: 46rem; margin-bottom: 3rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }

/* Reveal-on-scroll, defensive defaults */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-split] { opacity: 1; transform: none; }

/* =============================================================
   4. Typography
   ============================================================= */
.hero-title, .section-head h2, .final-cta h2 {
  font-size: clamp(2.1rem, 5vw, 3.6rem);
}
.split-word {
  display: inline-block;
  will-change: transform, opacity;
}

/* =============================================================
   5. Components
   ============================================================= */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.7rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: -0.01em;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .35s var(--ease-out), color .35s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 18px 40px -16px rgba(44, 41, 36, 0.55);
}
.btn-primary:hover {
  background: var(--sage-2);
  box-shadow: 0 22px 50px -14px rgba(111, 129, 96, 0.55);
  transform: translateY(-2px);
}
.btn-ghost {
  background: var(--glass);
  border: 1px solid var(--glass-line);
  color: var(--ink);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
}
.btn-ghost:hover { transform: translateY(-2px); background: var(--glass-2); }
.btn-lg { padding: 1.1rem 2.2rem; font-size: 1.05rem; }
.btn[disabled] { opacity: .45; cursor: not-allowed; transform: none !important; }

/* Glass card */
.glass-card {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--glass-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
@supports (backdrop-filter: blur(20px)) {
  .glass-card {
    background: var(--glass);
    backdrop-filter: blur(22px) saturate(170%);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
  }
}

/* Tilt (functional micro-interaction — never gated by reduced-motion) */
[data-tilt] {
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
  will-change: transform;
}
@media (hover: hover) and (pointer: fine) {
  [data-tilt]:hover {
    box-shadow: 0 36px 90px -28px rgba(111, 129, 96, 0.45);
  }
}

/* =============================================================
   6. Nav
   ============================================================= */
.nav {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 200;
  padding-block: 1rem;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .6rem .7rem .6rem 1.1rem;
  border-radius: 999px;
  background: var(--glass);
  border: 1px solid var(--glass-line);
  box-shadow: 0 18px 50px -22px rgba(44, 41, 36, 0.35);
  transition: background .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.nav.is-scrolled .nav-inner {
  box-shadow: 0 22px 60px -20px rgba(44, 41, 36, 0.4);
  background: rgba(255, 255, 255, 0.66);
}
@supports (backdrop-filter: blur(20px)) {
  .nav-inner { backdrop-filter: blur(20px) saturate(170%); -webkit-backdrop-filter: blur(20px) saturate(170%); }
}
.nav-brand { display: flex; align-items: center; gap: .65rem; }
.nav-mark {
  display: block;
  width: 40px; height: 40px; border-radius: 50%;
  box-shadow: 0 .35rem .9rem rgba(44, 41, 36, .14);
}
.nav-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
}
.nav-links { display: none; gap: 1.7rem; }
.nav-links a {
  position: relative;
  font-size: .94rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .3s var(--ease-out);
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; right: 100%; bottom: -6px;
  height: 1.5px; background: var(--sage-2);
  transition: right .35s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { right: 0; }
.nav-cta { display: none; }
.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px;
  padding: .7rem; border-radius: 999px;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; background: var(--ink);
  transition: transform .35s var(--ease-out), opacity .25s var(--ease-out);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: flex; flex-direction: column; gap: .2rem;
  margin-top: .6rem;
  padding: 1rem 1.3rem 1.3rem;
  border-radius: var(--radius-md);
  background: var(--glass);
  border: 1px solid var(--glass-line);
  box-shadow: 0 18px 50px -22px rgba(44, 41, 36, 0.35);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .45s var(--ease-out), opacity .3s var(--ease-out), padding .45s var(--ease-out), margin .45s var(--ease-out);
}
@supports (backdrop-filter: blur(20px)) {
  .nav-mobile { backdrop-filter: blur(20px) saturate(170%); -webkit-backdrop-filter: blur(20px) saturate(170%); }
}
.nav-mobile.is-open {
  max-height: 420px;
  opacity: 1;
  padding: 1rem 1.3rem 1.3rem;
}
.nav-mobile a {
  padding: .65rem 0;
  font-weight: 500;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}
.nav-mobile a:last-of-type { border-bottom: 0; }
.nav-mobile .btn { margin-top: .8rem; align-self: flex-start; }

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative;
  padding-top: calc(var(--nav-h) + 2.4rem);
  padding-bottom: 5rem;
  overflow: clip;
}
.hero-mesh {
  position: absolute;
  inset: -10% -10% 0 -10%;
  z-index: -2;
  background:
    radial-gradient(38% 32% at var(--mesh-x, 30%) var(--mesh-y, 20%), rgba(138, 155, 118, 0.55), transparent 70%),
    radial-gradient(34% 30% at 78% 62%, rgba(217, 143, 111, 0.42), transparent 72%),
    radial-gradient(40% 36% at 18% 78%, rgba(182, 171, 206, 0.4), transparent 72%),
    var(--bg);
  filter: blur(70px) saturate(120%);
  animation: meshDrift 36s var(--ease-soft) infinite alternate;
}
@keyframes meshDrift {
  0%   { --mesh-x: 26%; --mesh-y: 18%; }
  50%  { --mesh-x: 46%; --mesh-y: 34%; }
  100% { --mesh-x: 30%; --mesh-y: 12%; }
}
.hero-grain {
  position: absolute; inset: 0; z-index: -1;
  opacity: 0.05; mix-blend-mode: multiply; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-grid {
  display: grid;
  gap: 2.6rem;
  align-items: center;
}
.hero-copy { max-width: 38rem; }
.hero-title { margin-bottom: 1.3rem; }
.hero-sub {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 34rem;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-aside { position: relative; display: grid; gap: 1.6rem; justify-items: center; }
.hero-card {
  width: min(100%, 360px);
  padding: 1.6rem 1.7rem;
  z-index: 2;
}
.hero-card-label {
  font-size: .78rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-mute); font-weight: 600; margin-bottom: .5rem;
}
.hero-card-slot {
  font-family: var(--display); font-weight: 600;
  font-size: 1.28rem; margin-bottom: .6rem; color: var(--accent-ink);
}
.hero-card-foot { font-size: .88rem; color: var(--ink-soft); margin-bottom: .9rem; }
.hero-card-link {
  font-size: .92rem; font-weight: 600; color: var(--sage-2);
  display: inline-flex; align-items: center; gap: .35rem;
  transition: gap .3s var(--ease-out);
}
.hero-card-link:hover { gap: .6rem; }
.hero-figure {
  width: min(100%, 360px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05); }

/* =============================================================
   8. Pillars
   ============================================================= */
.pillars { padding-block: 2rem 5rem; }
.pillars-grid {
  display: grid;
  gap: 1.4rem;
}
.pillar {
  padding: 2rem 1.8rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--paper);
}
.pillar-n {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  color: var(--terracotta-2);
  font-size: .92rem;
  margin-bottom: .8rem;
  letter-spacing: .04em;
}
.pillar h3 { font-size: 1.18rem; margin-bottom: .6rem; }
.pillar p { color: var(--ink-soft); font-size: .98rem; }

/* =============================================================
   8.5 Interlude — full-bleed breather image
   ============================================================= */
.interlude {
  position: relative;
  height: clamp(280px, 46vw, 460px);
  overflow: clip;
  display: flex;
  align-items: flex-end;
}
.interlude img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) brightness(0.96);
}
.interlude-tint {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(44, 41, 36, 0.5) 0%, rgba(44, 41, 36, 0.06) 55%, transparent 80%);
}
.interlude-line {
  position: relative;
  z-index: 1;
  padding: clamp(1.6rem, 4vw, 3rem);
  font-family: var(--serif-accent);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 3.4vw, 2.1rem);
  color: var(--paper);
  max-width: 28rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.35);
}

/* =============================================================
   9. About
   ============================================================= */
.about { position: relative; padding-block: 4rem 6rem; overflow: clip; }
.about-halo {
  position: absolute; inset: -30% -10% -10% -10%; z-index: -1;
  background: radial-gradient(45% 38% at 78% 30%, rgba(182, 171, 206, 0.32), transparent 72%);
  filter: blur(90px);
  pointer-events: none;
}
.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.about-figure { position: relative; }
.about-photo-frame {
  aspect-ratio: 4 / 5;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-lg);
}
.about-monogram {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(4rem, 11vw, 6.5rem);
  letter-spacing: 0.02em;
  background: linear-gradient(135deg, var(--sage-2), var(--terracotta-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.about-deco {
  position: absolute;
  width: 38%;
  bottom: -10%;
  right: -12%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid var(--paper);
}
.about-copy h2 { margin-bottom: 1.2rem; }
.about-copy p { color: var(--ink-soft); margin-bottom: 1.05rem; max-width: 38rem; }
.about-tagline {
  font-family: var(--display);
  font-weight: 600;
  color: var(--sage-2);
  font-size: .98rem;
  margin-top: 1.4rem;
}

/* =============================================================
   10. Services
   ============================================================= */
.services { padding-block: 4rem 6rem; }
.services-grid { display: grid; gap: 1.4rem; }
.service-card { padding: 2.2rem 1.9rem; }
.service-card h3 { font-size: 1.22rem; margin-bottom: .7rem; }
.service-card p { color: var(--ink-soft); font-size: .98rem; }

/* =============================================================
   11. Steps
   ============================================================= */
.steps { padding-block: 2rem 6rem; }
.steps-grid { display: grid; gap: 2.6rem; align-items: center; }
.steps-figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 4;
}
.steps-figure img { width: 100%; height: 100%; object-fit: cover; }
.steps-list {
  list-style: none;
  display: grid;
  gap: 1.6rem;
}
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  align-items: flex-start;
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
}
.step:first-child { border-top: 0; }
.step-n {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--sage);
  line-height: 1;
}
.step h3 { font-size: 1.12rem; margin-bottom: .4rem; }
.step p { color: var(--ink-soft); font-size: .98rem; max-width: 36rem; }

/* =============================================================
   12. Booking / Calendar
   ============================================================= */
.booking { position: relative; padding-block: 2rem 6rem; overflow: clip; }
.booking-halo {
  position: absolute; inset: -10% -15% -30% -15%; z-index: -1;
  background: radial-gradient(50% 40% at 24% 60%, rgba(138, 155, 118, 0.28), transparent 72%);
  filter: blur(100px);
  pointer-events: none;
}
.booking-intro { color: var(--ink-soft); font-size: 1.02rem; margin-top: .6rem; }
.booking-panel { padding: clamp(1.6rem, 3vw, 2.6rem); }

.booking-calendar {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x proximity;
  padding-block: .3rem .9rem;
  margin-bottom: .6rem;
  -ms-overflow-style: none;
  scrollbar-width: thin;
}
.booking-loading { color: var(--ink-mute); padding: 1rem 0; }
.day-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 168px;
  padding: 1.1rem 1.05rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--line);
}
.day-card-date {
  font-family: var(--display);
  font-weight: 600;
  font-size: .98rem;
  margin-bottom: .2rem;
  text-transform: capitalize;
}
.day-card-month {
  font-size: .8rem;
  color: var(--ink-mute);
  margin-bottom: .9rem;
}
.slot-list { display: flex; flex-direction: column; gap: .45rem; }
.slot-btn {
  padding: .55rem .7rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: .9rem;
  font-weight: 500;
  text-align: center;
  transition: background .3s var(--ease-out), color .3s var(--ease-out), border-color .3s var(--ease-out), transform .3s var(--ease-out);
}
.slot-btn:hover { transform: translateY(-1px); border-color: var(--sage); }
.slot-btn.is-selected {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.slot-empty { font-size: .86rem; color: var(--ink-mute); padding: .4rem 0; }

.booking-summary {
  padding: .9rem 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(138, 155, 118, 0.16);
  border: 1px solid rgba(138, 155, 118, 0.35);
  margin-bottom: 1.2rem;
  font-size: .96rem;
}
.booking-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-bottom: 1.4rem; }
.booking-hint { font-size: .88rem; color: var(--ink-mute); }
.booking-note { font-size: .9rem; color: var(--ink-mute); border-top: 1px solid var(--line); padding-top: 1.2rem; }
.booking-alt { margin-top: 1.6rem; color: var(--ink-soft); font-size: .98rem; }
.booking-alt a { font-weight: 600; color: var(--sage-2); }
.booking-alt a:hover { text-decoration: underline; }

/* =============================================================
   13. Testimonials
   ============================================================= */
.testimonials { padding-block: 2rem 6rem; }
.testimonials-grid { display: grid; gap: 1.4rem; }
.testimonial { padding: 2.1rem 1.9rem; }
.testimonial blockquote {
  font-family: var(--serif-accent);
  font-style: italic;
  font-size: 1.08rem;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 1.2rem;
}
.testimonial figcaption { font-size: .86rem; color: var(--ink-mute); font-weight: 500; }

/* =============================================================
   14. FAQ
   ============================================================= */
.faq { padding-block: 2rem 6rem; }
.faq-grid { display: grid; gap: 2.6rem; }
.faq-list { display: flex; flex-direction: column; gap: .8rem; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  padding: 0;
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.2rem 1.4rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--sage-2);
  transition: transform .35s var(--ease-out);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 1.4rem 1.3rem;
  color: var(--ink-soft);
  font-size: .98rem;
  max-width: 42rem;
}

/* =============================================================
   15. Final CTA
   ============================================================= */
.final-cta {
  position: relative;
  padding-block: 6rem 7rem;
  text-align: center;
  overflow: clip;
}
.final-cta-mesh {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(40% 60% at 50% 0%, rgba(217, 143, 111, 0.28), transparent 70%),
    radial-gradient(45% 50% at 50% 100%, rgba(138, 155, 118, 0.3), transparent 72%),
    var(--bg-2);
  filter: blur(60px);
}
.final-cta .container { max-width: 42rem; }
.final-cta h2 { margin-bottom: 1.1rem; }
.final-cta p { color: var(--ink-soft); font-size: 1.05rem; margin-bottom: 2.1rem; }

/* =============================================================
   16. Footer
   ============================================================= */
.footer { padding-block: 3.6rem 2rem; border-top: 1px solid var(--line); }
.footer-simple {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 2.2rem;
}
.footer-brand { display: flex; align-items: center; gap: .9rem; }
.footer-name { font-family: var(--display); font-weight: 600; }
.footer-note { color: var(--ink-mute); font-size: .9rem; margin-top: .15rem; }
.footer-contact, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  font-size: .94rem;
}
.footer-contact a, .footer-legal a { color: var(--ink-soft); transition: color .3s var(--ease-out); }
.footer-contact a:hover, .footer-legal a:hover { color: var(--sage-2); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem;
  padding-top: 1.6rem; border-top: 1px solid var(--line);
  font-size: .84rem; color: var(--ink-mute);
}
.footer-credits a { color: var(--ink-mute); text-decoration: underline; }

/* =============================================================
   16.5 Legal pages
   ============================================================= */
.legal-page { padding-block: calc(var(--nav-h) + 3.4rem) 4rem; }
.legal-container { max-width: 46rem; }
.legal-page h1 { font-size: clamp(2rem, 4.4vw, 2.9rem); margin-bottom: .6rem; }
.legal-updated { color: var(--ink-mute); font-size: .9rem; margin-bottom: 2.6rem; }
.legal-body { display: flex; flex-direction: column; gap: 1.7rem; }
.legal-body h2 {
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 600;
  margin-bottom: .55rem;
}
.legal-body p, .legal-body li { color: var(--ink-soft); line-height: 1.7; }
.legal-body ul { padding-left: 1.3rem; display: flex; flex-direction: column; gap: .4rem; }
.legal-body a { color: var(--sage-2); text-decoration: underline; text-underline-offset: .2em; }
.legal-back {
  display: inline-block;
  margin-top: 3rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .3s var(--ease-out);
}
.legal-back:hover { color: var(--sage-2); }

/* =============================================================
   17. Responsive
   ============================================================= */
@media (min-width: 540px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 720px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none; }
}

@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; }
  .about-grid { grid-template-columns: 0.85fr 1.15fr; }
  .steps-grid { grid-template-columns: 1.1fr 0.9fr; }
  .pillars-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
  .faq-grid { grid-template-columns: 0.85fr 1.15fr; }
  .nav-cta { display: inline-flex; }
  .footer-simple { flex-direction: row; align-items: flex-start; justify-content: space-between; gap: 2.4rem; }
  .footer-legal { align-items: flex-end; text-align: right; }
}

@media (min-width: 1280px) {
  .hero { padding-bottom: 6.5rem; }
}

/* =============================================================
   18. Calendar modal — full month view
   ============================================================= */
.cal-modal-trigger {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: 1.1rem;
  padding: 0;
  border: none;
  background: none;
  font-size: .92rem;
  font-weight: 600;
  color: var(--sage-2);
  transition: gap .3s var(--ease-out), color .3s var(--ease-out);
}
.cal-modal-trigger:hover { gap: .7rem; color: var(--terracotta-2); }

.cal-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s var(--ease-out), visibility 0s linear .3s;
}
.cal-modal.is-open {
  opacity: 1;
  visibility: visible;
  transition: opacity .3s var(--ease-out);
}
.cal-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 41, 36, 0.42);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.cal-modal-panel {
  position: relative;
  width: min(560px, 100%);
  max-height: min(780px, 92vh);
  overflow-y: auto;
  padding: 3.6rem 2.2rem 2.4rem;
  background: var(--paper);
  transform: translateY(14px) scale(.97);
  transition: transform .4s var(--ease-out);
}
.cal-modal.is-open .cal-modal-panel { transform: translateY(0) scale(1); }
.cal-modal-close {
  position: absolute;
  top: .6rem;
  right: .6rem;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 1.2rem;
  line-height: 1;
  color: var(--ink-soft);
  transition: background .25s var(--ease-out), color .25s var(--ease-out), transform .25s var(--ease-out);
}
.cal-modal-close:hover { background: var(--ink); color: var(--paper); transform: rotate(90deg); }

.cal-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  margin-bottom: 1.1rem;
}
.cal-modal-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.1rem;
}
.cal-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 1.15rem;
  color: var(--ink);
  transition: background .25s var(--ease-out), color .25s var(--ease-out), transform .25s var(--ease-out);
}
.cal-nav-btn:hover:not(:disabled) { background: var(--sage); color: var(--paper); transform: translateY(-1px); }
.cal-nav-btn:disabled { opacity: .35; cursor: not-allowed; }

.cal-weekdays,
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.cal-weekdays {
  margin-bottom: .4rem;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--ink-mute);
  text-align: center;
  text-transform: uppercase;
}
.cal-grid { gap: .3rem; }
.cal-day,
.cal-day-empty {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 500;
  min-height: 3rem;
}
.cal-day-empty { visibility: hidden; }
span.cal-day {
  color: var(--ink-mute);
  opacity: .35;
}
button.cal-day {
  border: 1px solid transparent;
  background: var(--bg-2);
  color: var(--ink);
  cursor: pointer;
  transition: background .25s var(--ease-out), color .25s var(--ease-out), border-color .25s var(--ease-out), transform .25s var(--ease-out);
}
button.cal-day:hover { background: var(--sage); color: var(--paper); transform: translateY(-1px); }
.cal-day.is-today { border-color: var(--terracotta); }
.cal-day.is-selected,
button.cal-day.is-selected {
  background: var(--ink);
  color: var(--paper);
}

.cal-day-slots {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}
.cal-day-slots-label {
  font-family: var(--display);
  font-weight: 600;
  font-size: .98rem;
  margin-bottom: .8rem;
}
.cal-day-slots-label::first-letter { text-transform: capitalize; }
.cal-day-slots-list { flex-direction: row; flex-wrap: wrap; }
.cal-day-slots-list .slot-btn { flex: 0 0 auto; min-width: 4.6rem; }

@media (max-width: 540px) {
  .cal-modal-panel { padding: 3rem 1.2rem 1.7rem; }
}

html.cal-modal-open { overflow: hidden; }

/* =============================================================
   19. Floating WhatsApp button
   ============================================================= */
.whatsapp-fab {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 .8rem 1.8rem rgba(37, 211, 102, .35), 0 .2rem .5rem rgba(44, 41, 36, .12);
  transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .3s ease;
}
.whatsapp-fab svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: #fff;
}
.whatsapp-fab:hover,
.whatsapp-fab:focus-visible {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 1.2rem 2.4rem rgba(37, 211, 102, .42), 0 .3rem .7rem rgba(44, 41, 36, .14);
}
@media (max-width: 640px) {
  .whatsapp-fab {
    right: 1rem;
    bottom: 1rem;
    width: 3.1rem;
    height: 3.1rem;
  }
  .whatsapp-fab svg { width: 1.5rem; height: 1.5rem; }
}

/* =============================================================
   20. Reduced motion — only the genuinely intrusive
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .reveal { transition-duration: .2s; }
}
