/* ============================================================================
   Moving Medical Massage — Massage Therapy
   Palette: #EDEEC9  #DDE7C7  #BFD8BD  #98C9A3  #77BFA3  + warm beige
   ==========================================================================*/

:root {
  /* Brand palette */
  --mist:        #EDEEC9;
  --sage-light:  #DDE7C7;
  --sage:        #BFD8BD;
  --sage-mid:    #98C9A3;
  --teal:        #77BFA3;

  /* Warm neutrals */
  --beige-light: #FBF7EC;
  --beige:       #F4EEDF;
  --sand:        #EFE6D4;

  /* Ink + support */
  --ink:         #26332C;
  --ink-soft:    #4A5A51;
  --ink-faint:   #77877D;
  --white:       #FFFFFF;
  --danger:      #B4534B;
  --success:     #3F7D68;

  /* Shape + motion */
  --radius-sm: 12px;
  --radius:    20px;
  --radius-lg: 32px;
  --pill:      999px;
  --shadow-sm: 0 2px 10px rgba(38, 51, 44, .05);
  --shadow:    0 14px 40px -18px rgba(38, 51, 44, .22);
  --shadow-lg: 0 30px 70px -30px rgba(38, 51, 44, .32);
  --ease:      cubic-bezier(.22, .61, .36, 1);
  --speed:     .45s;

  --shell: 1200px;
  --header-h: 76px;
}

/* ---------------------------------------------------------------- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(1rem, .96rem + .22vw, 1.075rem);
  line-height: 1.7;
  color: var(--ink-soft);
  background:
    radial-gradient(1100px 620px at 8% -6%, var(--beige-light) 0%, transparent 62%),
    radial-gradient(900px 560px at 96% 6%, var(--mist) 0%, transparent 58%),
    linear-gradient(180deg, var(--beige-light) 0%, #FDFBF5 46%, var(--beige-light) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: var(--teal); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--success); }

h1, h2, h3, h4 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -.01em;
  margin: 0 0 .6em;
}

h1 { font-size: clamp(2.6rem, 1.6rem + 4.6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 1.4rem + 2.4vw, 3.15rem); }
h3 { font-size: clamp(1.25rem, 1.1rem + .7vw, 1.6rem); }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

em { font-style: italic; color: var(--teal); }

::selection { background: var(--sage-mid); color: var(--ink); }

/* ------------------------------------------------------------ Utilities ---- */
.shell { width: min(100% - 2.5rem, var(--shell)); margin-inline: auto; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--white);
  padding: .7rem 1.2rem; border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; color: var(--white); }

:focus-visible {
  outline: 3px solid var(--sage-mid);
  outline-offset: 3px;
  border-radius: 6px;
}

.icon { width: 26px; height: 26px; flex: none; }
.icon-sm { width: 17px; height: 17px; }

.glass {
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, .85);
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: "Inter", sans-serif;
  font-size: .76rem; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--teal);
  background: rgba(255, 255, 255, .7);
  border: 1px solid var(--sage);
  padding: .42rem .95rem;
  border-radius: var(--pill);
  margin-bottom: 1.4rem;
}
.eyebrow .icon { color: var(--teal); }

.section { padding: clamp(4.5rem, 8vw, 8rem) 0; position: relative; }

.section-head { max-width: 44rem; margin-bottom: clamp(2.5rem, 4vw, 3.8rem); }
.section-sub { font-size: 1.06rem; color: var(--ink-faint); max-width: 38rem; }

/* --------------------------------------------------------------- Buttons --- */
.btn {
  --btn-bg: var(--white);
  --btn-fg: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .8rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 500; font-size: .95rem;
  line-height: 1.2;
  cursor: pointer;
  text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease),
              background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn .icon { transition: transform .3s var(--ease); }
.btn:hover .icon { transform: translateX(4px); }
.btn:active { transform: translateY(1px) scale(.99); }

.btn-primary {
  --btn-bg: linear-gradient(135deg, var(--teal), var(--sage-mid));
  --btn-fg: var(--white);
  box-shadow: 0 12px 26px -12px rgba(119, 191, 163, .95);
}
.btn-primary:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 20px 38px -14px rgba(119, 191, 163, 1);
}

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  border-color: var(--sage);
}
.btn-ghost:hover {
  --btn-bg: rgba(255, 255, 255, .85);
  border-color: var(--sage-mid);
  transform: translateY(-2px);
}

.btn-soft {
  --btn-bg: var(--mist);
  --btn-fg: var(--ink);
}
.btn-soft:hover { --btn-bg: var(--sage-light); transform: translateY(-2px); }

.btn-lg { padding: 1rem 1.9rem; font-size: 1rem; }
.btn-block { width: 100%; }

/* ------------------------------------------------------- Scroll progress --- */
.scroll-progress {
  position: fixed; inset: 0 0 auto 0; height: 3px;
  background: transparent; z-index: 120; pointer-events: none;
}
.scroll-progress span {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, var(--teal), var(--sage-mid), var(--mist));
  transition: width .12s linear;
}

/* ---------------------------------------------------------------- Header --- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  padding: .55rem 0;
  background: rgba(251, 247, 236, .62);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background-color .35s var(--ease), border-color .35s var(--ease),
              box-shadow .35s var(--ease), padding .35s var(--ease);
}
.site-header.is-scrolled {
  padding: .35rem 0;
  background: rgba(251, 247, 236, .92);
  border-bottom-color: rgba(191, 216, 189, .6);
  box-shadow: 0 10px 30px -22px rgba(38, 51, 44, .5);
}

.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand-mark {
  display: grid; place-items: center;
  width: 42px; height: 42px; flex: none;
  border-radius: 14px;
  background: linear-gradient(140deg, var(--sage), var(--teal));
  color: var(--white);
  box-shadow: 0 10px 22px -12px rgba(119, 191, 163, .9);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; min-width: 0; }
.brand-text strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.32rem; font-weight: 600; letter-spacing: .01em;
  white-space: nowrap;
}
.brand-text small {
  font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-faint);
  white-space: nowrap;
}

.nav { display: flex; align-items: center; gap: 2rem; }
.nav ul { display: flex; align-items: center; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.nav a {
  position: relative;
  font-size: .93rem; color: var(--ink-soft); white-space: nowrap;
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px;
  height: 2px; width: 100%; border-radius: 2px;
  background: var(--teal);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }
.nav a.is-active { color: var(--ink); font-weight: 500; }
.nav a.is-active::after { transform: scaleX(1); }
.nav-cta::after { display: none; }
.nav-cta { color: var(--white); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--sage);
  border-radius: 14px;
  background: rgba(255, 255, 255, .8);
  cursor: pointer;
  padding: 0;
  place-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px; border-radius: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .25s var(--ease);
}
.nav-toggle span + span { margin-top: 4px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Scrim behind the mobile drawer */
.nav-scrim {
  position: fixed; inset: 0; z-index: 104;
  background: rgba(38, 51, 44, .38);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  animation: fade-in .3s var(--ease);
}
.nav-scrim[hidden] { display: none; }

/* ------------------------------------------------------------------ Hero --- */
.hero { position: relative; padding: clamp(3.5rem, 7vw, 6.5rem) 0 2rem; }
.hero-glow {
  position: absolute; inset: -10% -10% auto -10%; height: 130%;
  background:
    radial-gradient(520px 420px at 76% 18%, rgba(237, 238, 201, .85), transparent 68%),
    radial-gradient(620px 480px at 12% 62%, rgba(221, 231, 199, .7), transparent 70%);
  filter: blur(6px);
  pointer-events: none; z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero-copy h1 { margin-bottom: .5em; }
.hero-copy h1 em { font-style: italic; }
.lede { font-size: clamp(1.05rem, 1rem + .3vw, 1.2rem); max-width: 33rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin: 2rem 0 1.8rem; }

.hero-points {
  display: flex; flex-wrap: wrap; gap: 1.4rem;
  list-style: none; margin: 0; padding: 0;
  font-size: .89rem; color: var(--ink-faint);
}
.hero-points li { display: inline-flex; align-items: center; gap: .45rem; }
.hero-points .icon { color: var(--teal); }

/* Hero visual */
.hero-visual { position: relative; min-height: 420px; display: grid; place-items: center; }

.blob {
  position: absolute; border-radius: 50%;
  filter: blur(38px); opacity: .75; pointer-events: none;
}
.blob-a {
  width: 340px; height: 340px; top: 6%; right: 4%;
  background: radial-gradient(circle at 35% 35%, var(--sage-mid), transparent 70%);
  animation: float-slow 14s ease-in-out infinite;
}
.blob-b {
  width: 280px; height: 280px; bottom: 2%; left: 2%;
  background: radial-gradient(circle at 60% 40%, var(--mist), transparent 72%);
  animation: float-slow 18s ease-in-out infinite reverse;
}

.hero-card {
  position: relative; z-index: 3;
  width: min(360px, 100%);
  padding: 1.6rem 1.75rem;
  border-radius: var(--radius-lg);
  animation: float-slow 9s ease-in-out infinite;
}
.hero-card-head {
  display: flex; align-items: center; gap: .55rem;
  font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-faint); margin-bottom: .6rem;
}
.pulse {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 0 rgba(119, 191, 163, .7);
  animation: pulse 2.4s infinite;
}
.hero-card-date {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.45rem, 1.15rem + .9vw, 1.7rem);
  color: var(--ink); margin: 0 0 .35rem;
  text-wrap: balance;
  line-height: 1.25;
}
.hero-card-note { font-size: .9rem; color: var(--ink-faint); margin-bottom: 1rem; }
.hero-card-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .9rem; font-weight: 500;
}
.hero-card-link .icon { transition: transform .3s var(--ease); }
.hero-card-link:hover .icon { transform: translateX(4px); }

.hero-still { position: absolute; inset: auto 6% 2% auto; z-index: 2; margin: 0; }
.stone {
  position: absolute; border-radius: 50%;
  box-shadow: inset 0 -8px 18px rgba(38, 51, 44, .14), 0 18px 30px -18px rgba(38, 51, 44, .5);
  background: linear-gradient(150deg, var(--sage-light), var(--sage));
}
.stone.s1 { width: 76px; height: 46px; top: 0; left: 0; }
.stone.s2 { width: 62px; height: 38px; top: 34px; left: -46px; background: linear-gradient(150deg, var(--mist), var(--sage-light)); }
.stone.s3 { width: 50px; height: 30px; top: 66px; left: 14px; background: linear-gradient(150deg, var(--sage), var(--sage-mid)); }

/* Marquee strip */
.marquee {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem 2rem;
  list-style: none; margin: clamp(2.5rem, 5vw, 4rem) 0 0; padding: 1.2rem 1.6rem;
  border-radius: var(--pill);
  background: rgba(255, 255, 255, .6);
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: var(--shadow-sm);
  font-size: .85rem; color: var(--ink-soft);
}
.marquee li { display: inline-flex; align-items: center; gap: .5rem; }
.marquee .icon { color: var(--teal); }

/* ------------------------------------------------------------- Split rows -- */
.split {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.split-narrow { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); align-items: start; }
.split-copy p { max-width: 40rem; }

/* About portrait */
.split-media { position: relative; }
.portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 90% at 20% 10%, var(--sage-light) 0%, transparent 60%),
    linear-gradient(160deg, var(--sage) 0%, var(--teal) 100%);
  box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
  overflow: hidden;
}
.portrait::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(60% 50% at 70% 85%, rgba(237, 238, 201, .85), transparent 70%);
}
.portrait-inner { position: relative; z-index: 1; text-align: center; color: var(--white); }
.monogram {
  display: grid; place-items: center;
  width: 104px; height: 104px; margin: 0 auto 1rem;
  border-radius: 50%;
  font-family: "Cormorant Garamond", serif; font-size: 3rem;
  background: rgba(255, 255, 255, .26);
  border: 1px solid rgba(255, 255, 255, .6);
  backdrop-filter: blur(6px);
}
.portrait-inner p {
  font-family: "Cormorant Garamond", serif; font-size: 1.5rem; margin: 0; line-height: 1.3;
}
.portrait-inner small {
  display: block;
  font-family: "Inter", sans-serif; font-size: .74rem;
  letter-spacing: .18em; text-transform: uppercase; opacity: .85;
}
.badge-card {
  position: absolute; right: -1rem; bottom: 1.6rem;
  padding: .95rem 1.3rem; border-radius: var(--radius);
  text-align: center;
}
.badge-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif; font-size: 1.75rem; color: var(--ink); line-height: 1;
}
.badge-card span { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); }

/* Value grid */
.value-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.1rem; list-style: none; margin: 2rem 0 0; padding: 0;
}
.value-grid li {
  padding: 1.4rem 1.3rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(191, 216, 189, .55);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.value-grid li:hover {
  transform: translateY(-4px);
  border-color: var(--sage-mid);
  box-shadow: var(--shadow);
}
.value-grid .icon { color: var(--teal); margin-bottom: .7rem; }
.value-grid h3 { font-size: 1.2rem; margin-bottom: .35rem; }
.value-grid p { font-size: .9rem; color: var(--ink-faint); margin: 0; }

/* --------------------------------------------------------------- Cards ----- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}

.service-card {
  display: flex; flex-direction: column;
  position: relative;
  padding: 1.9rem 1.75rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(191, 216, 189, .5);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease),
              border-color .45s var(--ease), background-color .45s var(--ease);
}
.service-card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--sage-mid), var(--mist));
  transform: scaleX(0); transform-origin: left;
  transition: transform .5s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, .95);
  border-color: var(--sage-mid);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  display: grid; place-items: center;
  width: 54px; height: 54px; margin-bottom: 1.15rem;
  border-radius: 18px;
  color: var(--ink);
  background: linear-gradient(140deg, var(--mist), var(--sage-light));
  transition: transform .45s var(--ease), background .45s var(--ease), color .45s var(--ease);
}
.service-card:hover .service-icon {
  transform: rotate(-6deg) scale(1.06);
  background: linear-gradient(140deg, var(--sage-mid), var(--teal));
  color: var(--white);
}

.service-card h3 { margin-bottom: .3rem; }
.service-tagline {
  font-family: "Cormorant Garamond", serif; font-style: italic;
  font-size: 1.08rem; color: var(--teal); margin-bottom: .75rem;
}
.service-desc { font-size: .93rem; color: var(--ink-faint); }

.benefit-list {
  list-style: none; margin: 1.1rem 0 1.6rem; padding: 0;
  display: grid; gap: .45rem;
  font-size: .88rem;
}
.benefit-list li { display: flex; align-items: flex-start; gap: .55rem; }
.benefit-list .icon { color: var(--teal); margin-top: .32rem; }

.service-foot {
  margin-top: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding-top: 1.1rem;
  border-top: 1px dashed rgba(152, 201, 163, .7);
}
.price { display: flex; flex-direction: column; line-height: 1.25; }
.price strong { font-family: "Cormorant Garamond", serif; font-size: 1.4rem; color: var(--ink); font-weight: 600; }
.price small { font-size: .78rem; color: var(--ink-faint); }

/* ------------------------------------------------------------ Packages ----- */
.packages { position: relative; }
.package-grid { align-items: stretch; }

.package-card {
  position: relative;
  display: flex; flex-direction: column;
  padding: 2.1rem 1.85rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .76);
  border: 1px solid rgba(191, 216, 189, .55);
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.package-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.package-card.is-featured {
  background: linear-gradient(165deg, #FFFFFF 0%, var(--mist) 120%);
  border-color: var(--sage-mid);
  box-shadow: var(--shadow-lg);
}
.package-card.is-featured::after {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(119, 191, 163, .45);
}
.ribbon {
  position: absolute; top: 1.3rem; right: 1.3rem;
  font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--sage-mid));
  padding: .35rem .8rem; border-radius: var(--pill);
}

.package-price { display: flex; flex-direction: column; margin-bottom: 1rem; }
.package-price strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem; font-weight: 600; color: var(--ink); line-height: 1;
}
.package-price small { font-size: .82rem; color: var(--ink-faint); letter-spacing: .04em; }
.package-summary { font-size: .93rem; color: var(--ink-faint); }
.package-card .btn { margin-top: auto; }

/* -------------------------------------------------------------- Reviews ---- */
.reviews { position: relative; }
.slider { position: relative; }
.slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform .6s var(--ease);
  will-change: transform;
}
.slide {
  flex: 0 0 100%;
  margin: 0;
  padding: clamp(2rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .8);
  border: 1px solid rgba(191, 216, 189, .55);
  box-shadow: var(--shadow);
  text-align: center;
}
.slide-stars { color: var(--teal); letter-spacing: .3em; font-size: .95rem; margin-bottom: 1.1rem; }
.slide blockquote {
  margin: 0 0 1.4rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.25rem, 1.05rem + 1.1vw, 1.85rem);
  line-height: 1.45;
  color: var(--ink);
  text-wrap: balance;
}
.slide figcaption { display: flex; flex-direction: column; gap: .1rem; }
.slide figcaption strong { color: var(--ink); font-weight: 600; font-size: .95rem; }
.slide figcaption small { color: var(--ink-faint); font-size: .82rem; }

.slider-controls {
  display: flex; align-items: center; justify-content: center; gap: 1.1rem;
  margin-top: 1.8rem;
}
.slider-btn {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--sage);
  background: rgba(255, 255, 255, .85);
  color: var(--ink);
  cursor: pointer;
  transition: background-color .3s var(--ease), transform .3s var(--ease), color .3s var(--ease);
}
.slider-btn:hover { background: var(--sage-light); transform: translateY(-2px); }
.slider-btn:first-child .icon { transform: rotate(180deg); }
.slider-dots { display: flex; gap: .5rem; }
.slider-dots button {
  width: 9px; height: 9px; padding: 0;
  border-radius: 50%; border: none; cursor: pointer;
  background: var(--sage);
  transition: transform .3s var(--ease), background-color .3s var(--ease), width .3s var(--ease);
}
.slider-dots button[aria-selected="true"] {
  background: var(--teal);
  width: 26px; border-radius: var(--pill);
}

/* ------------------------------------------------------------------ FAQ ---- */
.hours-card {
  margin-top: 1.8rem;
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius);
}
.hours-card h3 { display: flex; align-items: center; gap: .5rem; font-size: 1.15rem; margin-bottom: .9rem; }
.hours-card .icon { color: var(--teal); }
.hours-card dl { margin: 0; display: grid; gap: .5rem; }
.hours-card dl > div {
  display: flex; justify-content: space-between; gap: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px dashed rgba(152, 201, 163, .55);
  font-size: .9rem;
}
.hours-card dl > div:last-child { border-bottom: 0; padding-bottom: 0; }
.hours-card dt { color: var(--ink-soft); margin: 0; }
.hours-card dd { margin: 0; color: var(--ink-faint); }

.accordion { display: grid; gap: .85rem; }
.accordion-item {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(191, 216, 189, .55);
  overflow: hidden;
  transition: box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.accordion-item.is-open { border-color: var(--sage-mid); box-shadow: var(--shadow); }
.accordion-item h3 { margin: 0; }
.accordion-trigger {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: none; border: 0; cursor: pointer;
  text-align: left;
  font-family: "Inter", sans-serif;
  font-size: 1rem; font-weight: 500; color: var(--ink);
  transition: background-color .3s var(--ease);
}
.accordion-trigger:hover { background: rgba(237, 238, 201, .5); }
.accordion-plus {
  position: relative; flex: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--mist);
  transition: background-color .3s var(--ease), transform .35s var(--ease);
}
.accordion-plus::before,
.accordion-plus::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 10px; height: 2px; border-radius: 2px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .35s var(--ease), opacity .3s var(--ease);
}
.accordion-plus::after { transform: translate(-50%, -50%) rotate(90deg); }
.accordion-trigger[aria-expanded="true"] .accordion-plus { background: var(--sage-mid); transform: rotate(180deg); }
.accordion-trigger[aria-expanded="true"] .accordion-plus::after { opacity: 0; }
.accordion-panel { padding: 0 1.4rem 1.3rem; }
.accordion-panel p { font-size: .94rem; color: var(--ink-faint); max-width: 46rem; }
.accordion-panel[hidden] { display: none; }

/* -------------------------------------------------------------- Contact ---- */
.contact { position: relative; }
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(1.6rem, 3.5vw, 3rem);
  align-items: start;
}

.contact-info {
  padding: 2rem 1.85rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255, 255, 255, .85), rgba(237, 238, 201, .75));
  border: 1px solid rgba(191, 216, 189, .6);
  box-shadow: var(--shadow);
}
.contact-info h3 { font-size: 1.35rem; }
.contact-list { list-style: none; margin: 1.3rem 0 1.6rem; padding: 0; display: grid; gap: 1.1rem; }
.contact-list li { display: flex; gap: .9rem; align-items: flex-start; }
.contact-list .icon {
  color: var(--teal); margin-top: .2rem;
  background: rgba(255, 255, 255, .85);
  border-radius: 12px; padding: .4rem; width: 38px; height: 38px;
}
.contact-list span {
  display: block;
  font-size: .7rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-faint);
}
.contact-list a, .contact-list p { font-size: .95rem; margin: 0; color: var(--ink); }
.contact-list a:hover { color: var(--teal); }

.calm-note {
  padding: 1.1rem 1.2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .78);
  border-left: 3px solid var(--teal);
  font-size: .9rem;
}
.calm-note strong { display: block; color: var(--ink); margin-bottom: .25rem; }
.calm-note p { color: var(--ink-faint); margin: 0; }

/* Form */
.contact-form-wrap {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(191, 216, 189, .6);
  box-shadow: var(--shadow-lg);
}

.booking-form { display: grid; gap: 1.1rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.field { display: flex; flex-direction: column; gap: .4rem; }
.field label { font-size: .85rem; font-weight: 500; color: var(--ink); }
.field label span[aria-hidden] { color: var(--teal); }
.optional { color: var(--ink-faint); font-weight: 400; font-size: .78rem; }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(152, 201, 163, .75);
  background: rgba(255, 255, 255, .95);
  color: var(--ink);
  font-size: .95rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' fill='none' stroke='%2377877D' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.6rem;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(119, 191, 163, .22);
}
.field input::placeholder, .field textarea::placeholder { color: #A9B5AC; }
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
  background: rgba(180, 83, 75, .04);
}

.field-hint { font-size: .76rem; color: var(--ink-faint); margin: 0; }
.field-error { font-size: .78rem; color: var(--danger); margin: 0; min-height: 0; }
.field-error:empty { display: none; }

.field-check { gap: .3rem; }
.checkbox {
  display: flex; gap: .7rem; align-items: flex-start;
  font-size: .86rem; color: var(--ink-faint); cursor: pointer; line-height: 1.5;
}
.checkbox input {
  appearance: none;
  width: 22px; height: 22px; flex: none; margin-top: .1rem;
  border-radius: 7px;
  border: 1px solid rgba(152, 201, 163, .9);
  background: var(--white);
  cursor: pointer;
  transition: background-color .25s var(--ease), border-color .25s var(--ease);
}
.checkbox input:checked {
  background: linear-gradient(135deg, var(--teal), var(--sage-mid));
  border-color: var(--teal);
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='11' viewBox='0 0 14 11'%3E%3Cpath d='M1 5.5l4 4L13 1' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.hp-field {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

.form-note { font-size: .82rem; color: var(--ink-faint); text-align: center; }

.btn.is-loading { pointer-events: none; opacity: .8; }
.btn.is-loading .icon { animation: spin 1s linear infinite; }

/* Alerts */
.alert {
  display: flex; align-items: flex-start; gap: .7rem;
  padding: 1rem 1.2rem;
  margin-bottom: 1.3rem;
  border-radius: var(--radius);
  font-size: .92rem;
  border: 1px solid transparent;
}
.alert p { margin: 0; }
.alert .icon { margin-top: .25rem; }
.alert-success { background: rgba(152, 201, 163, .25); border-color: var(--sage-mid); color: var(--success); }
.alert-error { background: rgba(180, 83, 75, .08); border-color: rgba(180, 83, 75, .35); color: var(--danger); }
.alert a { font-weight: 600; text-decoration: underline; }

/* ------------------------------------------------------------- Footer ------ */
.site-footer {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem;
  background: linear-gradient(180deg, rgba(237, 238, 201, .55), rgba(191, 216, 189, .55));
  border-top: 1px solid rgba(152, 201, 163, .5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .8fr 1fr;
  gap: 2.5rem;
}
.footer-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem; color: var(--ink); margin: .9rem 0 .2rem;
}
.footer-tag { font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint); }
.site-footer h2 {
  font-family: "Inter", sans-serif;
  font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1rem;
}
.footer-nav ul, .footer-contact ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .6rem; }
.footer-nav a { color: var(--ink-soft); font-size: .92rem; }
.footer-nav a:hover { color: var(--teal); }
.footer-contact li {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .9rem; color: var(--ink-soft);
}
.footer-contact .icon { color: var(--teal); margin-top: .28rem; }
.footer-hours { margin-top: 1rem; font-size: .82rem; color: var(--ink-faint); }

.socials { display: flex; gap: .6rem; list-style: none; margin: 1.2rem 0 0; padding: 0; }
.socials a {
  display: grid; place-items: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255, 255, 255, .75);
  color: var(--ink);
  border: 1px solid rgba(191, 216, 189, .8);
  transition: transform .3s var(--ease), background-color .3s var(--ease), color .3s var(--ease);
}
.socials a:hover { transform: translateY(-3px); background: var(--teal); color: var(--white); }

.footer-bottom {
  margin-top: 2.5rem; padding-top: 1.4rem;
  border-top: 1px solid rgba(152, 201, 163, .55);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .78rem; color: var(--ink-faint);
}
.footer-bottom p { margin: 0; max-width: 62ch; }

/* --------------------------------------------------------------- To top ---- */
.to-top {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 90;
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 50%; border: 1px solid rgba(255, 255, 255, .8);
  background: linear-gradient(135deg, var(--teal), var(--sage-mid));
  color: var(--white);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
  animation: fade-in .35s var(--ease);
}
.to-top .icon { transform: rotate(-90deg); }
.to-top:hover { transform: translateY(-4px); }
.to-top[hidden] { display: none; }

/* ------------------------------------------------------- Reveal on scroll -- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  transition-delay: calc(var(--i, 0) * 70ms);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ------------------------------------------------------------ Animations --- */
@keyframes float-slow {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50%      { transform: translate3d(0, -14px, 0); }
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(119, 191, 163, .7); }
  70%  { box-shadow: 0 0 0 12px rgba(119, 191, 163, 0); }
  100% { box-shadow: 0 0 0 0 rgba(119, 191, 163, 0); }
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fade-in { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ---------------------------------------------------------- Responsive ----- */
/* Longer brand name: tighten the bar before the drawer breakpoint kicks in. */
@media (max-width: 1150px) {
  .nav { gap: 1.2rem; }
  .nav ul { gap: 1.05rem; }
  .nav a { font-size: .88rem; }
  .brand-text strong { font-size: 1.15rem; }
  .brand-mark { width: 38px; height: 38px; }
  .nav-cta { padding: .7rem 1.1rem; font-size: .88rem; }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 340px; order: -1; }
  .hero-card { width: min(340px, 90%); }
  .split, .split-narrow { grid-template-columns: 1fr; }
  .split-media { max-width: 400px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .marquee { border-radius: var(--radius); justify-content: flex-start; }
}

@media (max-width: 860px) {
  .nav-toggle { display: grid; }
  .nav {
    position: fixed; inset: 0 0 0 auto;
    width: min(330px, 86vw);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 1.2rem;
    padding: 6rem 1.8rem 2rem;
    background: linear-gradient(180deg, var(--beige-light), var(--mist));
    box-shadow: -20px 0 50px -30px rgba(38, 51, 44, .6);
    transform: translateX(102%);
    transition: transform .45s var(--ease);
    overflow-y: auto;
    z-index: 105;
  }
  .nav.is-open { transform: none; }
  .nav ul { flex-direction: column; align-items: stretch; gap: .2rem; }
  .nav ul li { border-bottom: 1px solid rgba(152, 201, 163, .4); }
  .nav ul li:last-child { border-bottom: 0; }
  .nav ul a { display: block; padding: 1rem .2rem; font-size: 1.05rem; }
  .nav a::after { display: none; }
  .nav-cta { margin-top: .5rem; }
  body.nav-open { overflow: hidden; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 1.8rem, var(--shell)); }
  .field-row { grid-template-columns: 1fr; }
  .marquee { flex-direction: column; gap: .7rem; padding: 1.2rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .service-foot { flex-direction: column; align-items: stretch; }
  .service-foot .btn { width: 100%; }
  .badge-card { right: .5rem; }
  .btn-lg { width: 100%; }
  .hero-actions { flex-direction: column; }
  .slider-btn { width: 42px; height: 42px; }
}

/* -------------------------------------------------------- Preferences ------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .site-header, .to-top, .scroll-progress, .slider-controls, .hero-visual { display: none; }
  body { background: #fff; }
}
