/* =========================================================
   Lymph Flows — Recovery & Wellbeing Clinic
   Premium wellness website
   ========================================================= */

:root {
  --ink:        #191F1E;
  --ink-soft:   #3c4643;
  --ink-mute:   #6a746f;
  --cream:      #f7f3ec;
  --cream-2:    #f1eade;
  --cream-3:    #eae1d2;
  --sage:       #7c8b7e;
  --sage-deep:  #47544b;
  --sage-tint:  #e7ece6;
  --dark:       #121615;
  --dark-2:     #1a201e;
  --line:       rgba(25,31,30,0.12);
  --line-light: rgba(247,243,236,0.16);
  --gold:       #b9a37e;

  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;

  --wrap: 1180px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  letter-spacing: .1px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { margin: 0; font-weight: 400; line-height: 1.12; }
p { margin: 0 0 1em; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- typography helpers ---------- */
.serif { font-family: var(--serif); }
.eyebrow {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 0 0 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: var(--sage);
  display: inline-block;
}
.eyebrow.center { justify-content: center; }
.eyebrow.center::after {
  content: "";
  width: 30px; height: 1px;
  background: var(--sage);
  display: inline-block;
}
.eyebrow.light { color: #cfd7cf; }
.eyebrow.light::before, .eyebrow.light::after { background: rgba(184,195,184,.6); }

h2.title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  letter-spacing: .5px;
  line-height: 1.08;
}
.lede {
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  color: var(--ink-soft);
  font-weight: 300;
  max-width: 60ch;
}

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
section { padding: clamp(70px, 9vw, 130px) 0; }
.section-head { max-width: 720px; margin: 0 auto clamp(44px,6vw,72px); text-align: center; }
.section-head.left { margin-left: 0; text-align: left; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 400; font-size: 12.5px;
  letter-spacing: .22em; text-transform: uppercase;
  padding: 16px 30px; border: 1px solid var(--ink);
  background: var(--ink); color: var(--cream);
  cursor: pointer; transition: all .45s var(--ease);
  border-radius: 0;
}
.btn:hover { background: transparent; color: var(--ink); }
.btn--light { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn--light:hover { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--ghost-light { background: transparent; color: var(--cream); border-color: var(--line-light); }
.btn--ghost-light:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.btn .arrow { transition: transform .45s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px clamp(24px,5vw,56px);
  background: var(--dark);
  border-bottom: 1px solid rgba(247,243,236,.08);
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.nav.scrolled {
  background: rgba(247,243,236,.9);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  padding-top: 14px; padding-bottom: 14px;
  border-color: transparent;
  box-shadow: 0 1px 0 var(--line);
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand img { height: 40px; width: auto; transition: opacity .4s var(--ease); }
.brand .mark-ink { display: none; }
.brand .wordmark {
  font-family: var(--sans); font-weight: 500;
  font-size: 20px; letter-spacing: .34em;
  text-transform: uppercase; color: var(--cream);
  transition: color .5s var(--ease);
  padding-left: 2px;
}
.nav.scrolled .brand .mark-white { display: none; }
.nav.scrolled .brand .mark-ink { display: block; }
.nav.scrolled .brand .wordmark { color: var(--ink); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 12.5px; letter-spacing: .16em; text-transform: uppercase;
  font-weight: 400; color: var(--cream); position: relative; padding: 4px 0;
  transition: color .4s var(--ease);
}
.nav-links a::after {
  content:""; position:absolute; left:0; bottom:-2px; height:1px; width:0;
  background: currentColor; transition: width .4s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav.scrolled .nav-links a { color: var(--ink); }
.nav-social {
  display: inline-flex; align-items: center; color: var(--cream);
  transition: color .4s var(--ease);
}
.nav-links a.nav-social::after { display: none; }
.nav-social:hover { color: var(--sage); }
.nav.scrolled .nav-social { color: var(--ink); }
.nav.scrolled .nav-social:hover { color: var(--sage-deep); }

.nav .nav-cta {
  border: 1px solid var(--line-light); padding: 11px 22px;
  border-radius: 40px; color: var(--cream);
  transition: all .4s var(--ease);
}
.nav .nav-cta::after { display: none; }
.nav .nav-cta:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.nav.scrolled .nav-cta { border-color: var(--ink); color: var(--ink); }
.nav.scrolled .nav-cta:hover { background: var(--ink); color: var(--cream); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  background: none; border: 0; padding: 6px;
}
.nav-toggle span { width: 26px; height: 1.5px; background: var(--cream); transition: all .4s var(--ease); }
.nav.scrolled .nav-toggle span { background: var(--ink); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99; background: var(--dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; opacity: 0; pointer-events: none; transition: opacity .5s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--serif); font-size: 2rem; color: var(--cream);
  padding: 10px; letter-spacing: .5px;
}
.mobile-menu .m-contact { font-family: var(--sans); font-size: 14px; letter-spacing: .2em; text-transform: uppercase; color: var(--sage); margin-top: 30px; }
.mobile-menu .m-social { font-family: var(--sans); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: #9aa39a; margin-top: 14px; padding: 0; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--cream);
  background: #0c100f;
  overflow: hidden; padding: 120px 24px 90px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    radial-gradient(125% 125% at 50% 34%, rgba(11,14,13,.5) 0%, rgba(9,12,11,.7) 62%, rgba(5,7,7,.9) 100%),
    url('assets/band-massage.jpg');
  background-size: cover, cover;
  background-position: center;
}
.hero-flow { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .32; z-index: 1; }
.hero-flow path { fill: none; stroke: rgba(124,139,126,.4); stroke-width: 1; }
.hero-inner { position: relative; z-index: 2; max-width: 900px; }
.hero .mark {
  height: clamp(72px, 11vw, 118px); margin: 0 auto 34px;
  opacity: 0; transform: translateY(20px);
  animation: rise 1.1s var(--ease) .1s forwards;
}
.hero h1 {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5.2rem); line-height: 1.02;
  letter-spacing: .5px; margin: 0 0 26px;
}
.hero h1 .it { font-style: italic; color: #cdd6cd; }
.hero .sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem); color: #e4e8e3; font-weight: 300;
  max-width: 56ch; margin: 0 auto 40px;
}
.hero .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase; color: #9aa39a;
  display: flex; flex-direction: column; align-items: center; gap: 10px; z-index: 2;
}
.hero-scroll .line { width: 1px; height: 46px; background: linear-gradient(var(--sage), transparent); animation: scrollpulse 2.4s var(--ease) infinite; transform-origin: top; }

.hero-inner > *:not(.mark) { opacity: 0; transform: translateY(24px); animation: rise 1s var(--ease) forwards; }
.hero-inner h1 { animation-delay: .28s; }
.hero-inner .sub { animation-delay: .44s; }
.hero-inner .actions { animation-delay: .6s; }

@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@keyframes scrollpulse { 0%,100%{ transform: scaleY(.4); opacity:.4;} 50%{ transform: scaleY(1); opacity:1;} }

/* =========================================================
   MARQUEE / TRUST STRIP
   ========================================================= */
.strip { background: var(--dark-2); color: #cbd2cb; padding: 0; overflow: hidden; }
.strip-track {
  display: flex; gap: 60px; white-space: nowrap; padding: 20px 0;
  animation: marquee 34s linear infinite; width: max-content;
}
.strip-track span {
  font-family: var(--serif); font-style: italic; font-size: 1.3rem; color: #c6ccc6;
  display: inline-flex; align-items: center; gap: 60px;
}
.strip-track span::after { content: "◦"; color: var(--sage); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   INTRO
   ========================================================= */
.intro { background: var(--cream); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,90px); align-items: center; }
.intro-lead {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem); line-height: 1.28; letter-spacing: .3px;
}
.intro-lead em { font-style: italic; color: var(--sage-deep); }
.intro-body p { color: var(--ink-soft); }
.intro-body .btn { margin-top: 14px; }

/* =========================================================
   SIGNATURE (MLD feature)
   ========================================================= */
.signature { background: var(--cream-2); position: relative; }
.sig-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px,6vw,80px); align-items: center; }
.sig-visual {
  position: relative; aspect-ratio: 4/4.4; background: linear-gradient(160deg, #202826, #121615);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.sig-visual .mark { height: 46%; opacity: .92; position: relative; z-index: 2; }
.sig-visual .ring { position: absolute; border: 1px solid rgba(124,139,126,.28); border-radius: 50%; }
.sig-visual .r1 { width: 78%; aspect-ratio:1; }
.sig-visual .r2 { width: 56%; aspect-ratio:1; }
.sig-visual .r3 { width: 100%; aspect-ratio:1; }
.sig-visual .cap {
  position: absolute; bottom: 24px; left: 24px; right: 24px;
  font-family: var(--serif); font-style: italic; font-size: 1.15rem; color: #cdd6cd; text-align:center;
}
.sig-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 30px; margin: 28px 0 34px; }
.sig-benefits li { display: flex; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 15.5px; color: var(--ink-soft); }
.sig-benefits li::before { content: "✓"; color: var(--sage-deep); font-weight: 500; }
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.pill { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--sage-deep); border: 1px solid var(--sage); border-radius: 40px; padding: 7px 16px; }

/* =========================================================
   TREATMENTS
   ========================================================= */
.treatments { background: var(--cream); }
.cat-label {
  font-family: var(--sans); font-weight: 500; font-size: 12px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--sage-deep);
  display: flex; align-items: center; gap: 16px; margin: 54px 0 26px;
}
.cat-label::after { content:""; flex:1; height:1px; background: var(--line); }
.cat-label:first-of-type { margin-top: 0; }
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.card {
  background: #fffdf9; border: 1px solid var(--line); padding: 34px 30px 30px;
  display: flex; flex-direction: column; transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
  position: relative; overflow: hidden;
}
.card::before {
  content:""; position:absolute; top:0; left:0; width:100%; height:2px;
  background: var(--sage); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -28px rgba(25,31,30,.34); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card .c-top { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; margin-bottom: 14px; }
.card h3 { font-family: var(--serif); font-size: 1.6rem; letter-spacing: .3px; }
.card .price { font-family: var(--sans); font-weight: 400; font-size: 15px; color: var(--sage-deep); white-space: nowrap; }
.card .price small { display:block; font-size:10.5px; letter-spacing:.14em; text-transform:uppercase; color: var(--ink-mute); text-align:right; }
.card p { font-size: 15px; color: var(--ink-soft); margin: 0; }
.card .dur { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-mute); }

/* =========================================================
   PACKAGES
   ========================================================= */
.packages { background: var(--dark); color: var(--cream); position: relative; }
.packages .section-head .lede { color: #d5dbd5; margin-inline: auto; }
.pkg-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.pkg {
  position: relative; border: 1px solid var(--line-light); padding: 44px 34px 40px;
  display: flex; flex-direction: column;
  transition: background .5s var(--ease), transform .5s var(--ease), border-color .5s var(--ease);
  background: rgba(255,255,255,.015);
}
.pkg::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--metal, var(--sage)); opacity: .9;
}
.pkg:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.28); background: rgba(255,255,255,.04); }
.pkg.feature { background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.01)); border-color: rgba(255,255,255,.22); }
.pkg .tier {
  font-size: 13px; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--metal, var(--sage)); margin-bottom: 18px;
  display: flex; justify-content: space-between; align-items: center;
}
.pkg .tier .best { background: var(--metal, var(--sage)); color: var(--dark); font-size: 9.5px; font-weight: 500; padding: 4px 10px; border-radius: 20px; letter-spacing: .12em; }
.pkg h3 { font-family: var(--serif); font-size: 2rem; margin-bottom: 4px; color: #fbfdfb; }
.pkg .amt { font-family: var(--serif); font-size: 2.6rem; color: var(--metal, var(--cream)); margin: 4px 0 22px; }
.pkg .amt span { font-family: var(--sans); font-size: .95rem; color: #b7beb7; letter-spacing: .1em; }
.pkg ul { display: flex; flex-direction: column; gap: 0; margin-bottom: 26px; flex: 1; }
.pkg li { display: flex; gap: 12px; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.1); font-size: 15px; color: #eef1ee; }
.pkg li::before { content: "✓"; color: var(--metal, var(--sage)); font-weight: 500; }
.pkg .save { font-size: 12.5px; font-weight: 500; letter-spacing: .14em; text-transform: uppercase; color: var(--metal, var(--sage)); }

/* metallic tier identities */
.pkg-bronze { --metal: #d59362; }
.pkg-silver { --metal: #d3dae0; }
.pkg-gold   { --metal: #e6c274; }

/* =========================================================
   SKIN & WELLNESS PACKAGES (light)
   ========================================================= */
.experiences { background: var(--cream-2); }
.exp-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.exp {
  background: #fffdf9; border: 1px solid var(--line); padding: 40px 34px;
  display: flex; flex-direction: column; transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.exp:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -30px rgba(25,31,30,.3); }
.exp .kicker { font-size: 11.5px; letter-spacing: .26em; text-transform: uppercase; color: var(--sage-deep); margin-bottom: 14px; }
.exp h3 { font-family: var(--serif); font-size: 1.85rem; margin-bottom: 6px; }
.exp .amt { font-family: var(--serif); font-size: 2.1rem; color: var(--sage-deep); margin-bottom: 20px; }
.exp .amt span { font-family: var(--sans); font-size: .82rem; color: var(--ink-mute); letter-spacing:.08em; }
.exp ul { flex: 1; margin-bottom: 8px; }
.exp li { display: flex; gap: 11px; padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; color: var(--ink-soft); }
.exp li::before { content: "—"; color: var(--sage); }

/* =========================================================
   PRICE LIST
   ========================================================= */
.pricing { background: var(--cream); }
.price-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 70px; }
.price-row {
  display: flex; align-items: baseline; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line);
}
.price-row .name { font-family: var(--serif); font-size: 1.3rem; letter-spacing: .3px; white-space: nowrap; }
.price-row .dots { flex: 1; border-bottom: 1px dotted rgba(25,31,30,.28); transform: translateY(-4px); }
.price-row .val { font-weight: 400; font-size: 1rem; color: var(--sage-deep); white-space: nowrap; }
.price-note { text-align: center; margin-top: 40px; font-size: 14px; color: var(--ink-mute); }

/* =========================================================
   OFFERS
   ========================================================= */
.offers { background: var(--sage-tint); }
.offers-inner { text-align: center; max-width: 900px; margin: 0 auto; }
.offers-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 44px; text-align: left; }
.offer {
  background: #fffdf9; border: 1px solid var(--line); padding: 26px 28px;
  display: flex; gap: 18px; align-items: flex-start;
}
.offer .num { font-family: var(--serif); font-size: 1.6rem; color: var(--sage); line-height: 1; }
.offer p { margin: 0; font-size: 15px; color: var(--ink-soft); }
.offer strong { font-weight: 500; color: var(--ink); }
.offers .tag { display:inline-block; margin-top: 34px; font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--sage-deep); border-top: 1px solid var(--sage); padding-top: 14px; }

/* =========================================================
   PROMISE / ABOUT
   ========================================================= */
.promise { background: var(--dark); color: var(--cream); text-align: center; }
.promise .inner { max-width: 820px; margin: 0 auto; }
.promise .big {
  font-family: var(--serif); font-weight: 400; font-size: clamp(1.7rem, 3.6vw, 2.7rem);
  line-height: 1.32; letter-spacing: .3px; margin: 10px 0 34px;
}
.promise .big em { font-style: italic; color: #c4cec3; }
.values { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; margin-top: 60px; }
.value .v-mark { font-family: var(--serif); font-size: 1.6rem; color: var(--sage); margin-bottom: 10px; }
.value h4 { font-family: var(--sans); font-weight: 500; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 8px; }
.value p { font-size: 14px; color: #c6ccc6; margin: 0; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact { background: var(--cream-3); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px,6vw,80px); align-items: center; }
.contact-info .lede { margin-bottom: 34px; }
.contact-line { display: flex; gap: 18px; align-items: center; padding: 20px 0; border-top: 1px solid var(--line); }
.contact-line:last-of-type { border-bottom: 1px solid var(--line); }
.contact-line .ico {
  width: 46px; height: 46px; flex: none; border: 1px solid var(--sage); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--sage-deep);
}
.contact-line .ico svg { width: 20px; height: 20px; }
.contact-line .lbl { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 2px; }
.contact-line .val { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); }
.contact-line a.val:hover { color: var(--sage-deep); }

.enq { background: #fffdf9; border: 1px solid var(--line); padding: clamp(30px,4vw,46px); box-shadow: 0 44px 90px -60px rgba(25,31,30,.5); }
.enq h3 { font-family: var(--serif); font-size: 1.9rem; margin-bottom: 8px; }
.enq p.small { font-size: 14px; color: var(--ink-mute); margin-bottom: 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: var(--cream); border: 1px solid var(--line); padding: 13px 15px; border-radius: 0;
  transition: border-color .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--sage); }
.field textarea { resize: vertical; min-height: 100px; }
.enq .btn { width: 100%; justify-content: center; margin-top: 6px; }
.enq .disclaimer { font-size: 12px; color: var(--ink-mute); margin: 16px 0 0; text-align: center; }

/* location line (contact) */
.contact-line .loc-soon { margin: 9px 0 0; font-size: 13.5px; line-height: 1.55; color: var(--ink-mute); }
.contact-line .soon-tag {
  display: inline-block; font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--sage-deep); border: 1px solid var(--sage); border-radius: 20px;
  padding: 2px 9px; margin-right: 8px; vertical-align: 1px;
}

/* opening hours (contact) */
.hours { margin-top: 34px; }
.hours-head { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 12px; }
.hours ul { display: block; }
.hours li { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 11px 0; border-bottom: 1px solid var(--line); }
.hours li span:first-child { font-size: 14.5px; color: var(--ink-soft); }
.hours li span:first-child em { font-style: italic; color: var(--sage-deep); }
.hours li span:last-child { font-family: var(--serif); font-size: 1.15rem; color: var(--ink); white-space: nowrap; }
.hours li.closed span:last-child { font-family: var(--sans); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-mute); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--dark); color: #d7dcd7; padding: 80px 0 34px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1.1fr 1.1fr; gap: 44px; padding-bottom: 50px; border-bottom: 1px solid var(--line-light); }
.footer .f-hours span { display: block; font-size: 14.5px; padding: 6px 0; color: #cbd1cb; }
.footer .f-logo { height: 66px; margin-bottom: 22px; }
.footer .f-about { font-size: 14.5px; max-width: 34ch; color: #c3c9c3; }
.footer h5 { font-family: var(--sans); font-weight: 500; font-size: 12px; letter-spacing: .22em; text-transform: uppercase; color: var(--cream); margin-bottom: 20px; }
.footer nav a, .footer .f-contact a, .footer .f-contact span { display: block; font-size: 14.5px; padding: 6px 0; color: #ccd2cc; transition: color .3s var(--ease); }
.footer nav a:hover, .footer .f-contact a:hover { color: var(--sage); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 28px; font-size: 12.5px; color: #9ba29b; flex-wrap: wrap; }
.footer-bottom .credit em { font-family: var(--serif); font-style: italic; color: var(--sage); }
.footer-bottom .credit { display: inline-flex; align-items: center; }
.footer-bottom .credit a { display: inline-flex; align-items: center; }
.footer-bottom .credit .vm-logo { height: 40px; width: auto; margin-left: 10px; opacity: .95; transition: opacity .3s var(--ease); }
.footer-bottom .credit a:hover .vm-logo { opacity: 1; }

/* =========================================================
   REVEAL ANIMATION
   ========================================================= */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }

/* =========================================================
   PHOTOGRAPHY
   ========================================================= */
/* signature photo (overrides abstract visual) */
.sig-visual { padding: 0; background: #121615; }
.sig-visual .photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
}
.sig-visual::after {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(180deg, rgba(18,22,21,.08) 40%, rgba(18,22,21,.62) 100%);
}
.sig-visual .mark {
  position: absolute; top: 22px; right: 22px; height: 52px;
  opacity: .92; z-index: 3;
}
.sig-visual .cap { z-index: 3; text-shadow: 0 2px 24px rgba(0,0,0,.45); }

/* the space — single feature image */
.space { background: var(--cream); }
.space-feature {
  margin: 0; overflow: hidden; position: relative; background: var(--cream-3);
  aspect-ratio: 16 / 9; box-shadow: 0 40px 80px -50px rgba(25,31,30,.5);
}
.space-feature img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 1.6s var(--ease); }
.space-feature:hover img { transform: scale(1.04); }
@media (max-width: 700px) { .space-feature { aspect-ratio: 4 / 3; } }

/* full-width parallax mood band */
.band {
  position: relative; min-height: 62vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  color: var(--cream); background-size: cover; background-position: center;
  background-attachment: fixed;
}
.band::before { content: ""; position: absolute; inset: 0; background: rgba(16,20,19,.5); }
.band.tint::before { background: rgba(16,20,19,.42); }
.band-inner { position: relative; z-index: 2; max-width: 780px; padding: 90px 28px; }
.band-q {
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(1.6rem, 3.6vw, 2.7rem); line-height: 1.32; letter-spacing: .3px;
  text-shadow: 0 2px 30px rgba(0,0,0,.4);
}
.band-sub {
  margin-top: 20px; letter-spacing: .3em; text-transform: uppercase;
  font-size: 11.5px; color: #cdd6cd;
}


@media (max-width: 768px) {
  .band { background-attachment: scroll; min-height: 48vh; }
}

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

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .cards, .pkg-grid, .exp-grid, .values { grid-template-columns: 1fr 1fr; }
  .intro-grid, .sig-grid, .contact-grid, .price-cols { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .sig-visual { aspect-ratio: 16/11; }
  .sig-benefits { grid-template-columns: 1fr 1fr; }
  .offers-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .cards, .pkg-grid, .exp-grid, .values, .offers-grid { grid-template-columns: 1fr; }
  .sig-benefits { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .brand .wordmark { font-size: 17px; letter-spacing: .28em; }
  .brand img { height: 34px; }
  section { padding: 66px 0; }
}
