/* ==========================================================================
   Movement Dynamic Inc. — Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

:root{
  /* brand palette (from studio brand sheet) */
  --cream:      #FBEAD3;
  --cream-2:    #F5E3CB;
  --sand:       #D9C7AF;
  --sand-dark:  #D2BFA6;
  --maroon:     #5A1917;
  --maroon-dark:#42110F;
  --olive:      #5F6B45;
  --olive-light:#93A130;
  --brown:      #79593A;
  --ink:        #211C17;
  --ink-soft:   #4A423A;
  --white:      #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --nav-h: 84px;

  --ease: cubic-bezier(.16,.84,.44,1);
  --ease-soft: cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; scroll-padding-top: var(--nav-h); }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
  -webkit-user-select:none;
  -moz-user-select:none;
  -ms-user-select:none;
  user-select:none;
  cursor:default;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }

h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:600;
  line-height:1.15;
  margin:0;
  letter-spacing:-0.015em;
  color:var(--maroon-dark);
}

.eyebrow{
  display:inline-block;
  font-family:var(--font-body);
  font-size:.72rem;
  font-weight:600;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--olive-light);
  margin-bottom:1.1rem;
}

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 32px;
}

@media (max-width:640px){
  .container{ padding:0 22px; }
}

/* ---------------------------- buttons ---------------------------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:.5em;
  padding:.95rem 2rem;
  border-radius:100px;
  font-size:.95rem;
  font-weight:600;
  letter-spacing:.01em;
  border:1px solid transparent;
  transition:transform .5s var(--ease), background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  white-space:nowrap;
}
.btn-primary{
  background:var(--maroon);
  color:var(--cream);
  box-shadow:0 8px 24px -10px rgba(90,25,23,.55);
}
.btn-primary:hover{ background:var(--maroon-dark); transform:translateY(-2px); box-shadow:0 14px 30px -10px rgba(90,25,23,.6); }

.btn-ghost{
  background:transparent;
  color:var(--ink);
  border-color:rgba(33,28,23,.25);
}
.btn-ghost:hover{ border-color:var(--ink); transform:translateY(-2px); }

.btn-light{
  background:var(--cream);
  color:var(--maroon-dark);
}
.btn-light:hover{ background:var(--white); transform:translateY(-2px); }

.btn-sm{ padding:.7rem 1.4rem; font-size:.82rem; }

/* ---------------------------- nav ---------------------------- */
.nav{
  position:fixed;
  top:0; left:0; right:0;
  z-index:1000;
  min-height:var(--nav-h);
  display:flex;
  align-items:center;
  transition:background-color .5s var(--ease), box-shadow .5s var(--ease), min-height .4s var(--ease), backdrop-filter .5s var(--ease);
}
.nav-inner{
  width:100%;
  max-width:var(--container);
  margin:0 auto;
  padding:0 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:.6rem;
}
.nav.is-scrolled{
  min-height:70px;
  background:rgba(251,234,211,.78);
  backdrop-filter:blur(16px) saturate(160%);
  -webkit-backdrop-filter:blur(16px) saturate(160%);
  box-shadow:0 1px 0 rgba(33,28,23,.08);
}
.nav-brand{
  display:flex;
  align-items:center;
  gap:.7rem;
  font-family:var(--font-display);
  font-weight:600;
  font-size:1.05rem;
  color:var(--maroon-dark);
  letter-spacing:.01em;
}
.nav-brand .brand-mark{ height:40px; width:40px; object-fit:contain; display:block; transition:height .4s var(--ease), width .4s var(--ease); }
.nav.is-scrolled .nav-brand .brand-mark{ height:32px; width:32px; }
.nav-brand .brand-word{ display:flex; flex-direction:column; line-height:1.05; }
.nav-brand .brand-word small{ font-family:var(--font-body); font-weight:500; font-size:.58rem; letter-spacing:.24em; color:var(--olive); text-transform:uppercase; }

.nav-links{
  display:flex;
  align-items:center;
  gap:2.1rem;
}
.nav-links a{
  font-size:.88rem;
  font-weight:500;
  color:var(--ink-soft);
  position:relative;
  padding:.3rem 0;
  transition:color .3s var(--ease);
}
.nav-links a::after{
  content:'';
  position:absolute;
  left:0; right:100%;
  bottom:-2px;
  height:1.5px;
  background:var(--olive-light);
  transition:right .35s var(--ease);
}
.nav-links a:hover{ color:var(--maroon-dark); }
.nav-links a:hover::after{ right:0; }
.nav-links a.active{ color:var(--maroon-dark); }
.nav-links a.active::after{ right:0; background:var(--maroon); }

.nav-cta{ display:flex; align-items:center; gap:1.4rem; }

.nav-toggle{
  display:none;
  background:none; border:0; padding:8px;
  flex-direction:column; gap:5px;
  position:relative; z-index:1000;
}
.nav-toggle span{
  width:24px; height:2px; background:var(--ink); border-radius:2px;
  transform:translateY(0) rotate(0deg) scaleX(1);
  transform-origin:center;
  transition:transform .3s cubic-bezier(.5,0,.1,1), opacity .15s linear;
}
.nav-toggle.is-active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2){ opacity:0; transform:scaleX(0); transition-duration:.15s; }
.nav-toggle.is-active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.mobile-panel{
  position:fixed; inset:0; z-index:999;
  background:var(--cream);
  display:flex; flex-direction:column;
  padding:calc(var(--nav-h) + 12px) 32px 40px;
  transform:translateY(-100%);
  transition:transform .5s var(--ease);
  overflow-y:auto;
  overscroll-behavior:contain;
}
.mobile-panel.open{ transform:translateY(0); }
.mobile-panel a{
  font-family:var(--font-display);
  font-size:1.7rem;
  padding:.6rem 0;
  border-bottom:1px solid rgba(33,28,23,.08);
  color:var(--maroon-dark);
}
.mobile-panel .btn{ margin-top:2rem; align-self:flex-start; font-family:var(--font-body); font-size:.95rem; border-bottom:0; padding:.95rem 2rem; }
.mobile-panel a.btn-primary{ color:var(--cream); }

@media (max-width:480px){
  .nav-inner{ padding:0 18px; }
  .nav-brand{ gap:.5rem; }
  .nav-brand .brand-word small{ display:none; }
  .nav-brand .brand-mark{ height:32px; width:32px; }
  .nav-cta{ gap:.7rem; }
  .nav-cta .btn-primary{ display:none; }
}
@media (max-width:1040px){
  .nav-links{ display:none; }
  .nav-cta .btn-ghost{ display:none; }
  .nav-toggle{ display:flex; }
}

/* ---------------------------- hero ---------------------------- */
.hero{
  position:relative;
  min-height:100svh;
  display:flex;
  align-items:center;
  padding-top:var(--nav-h);
  overflow:hidden;
  background:var(--cream);
}
.hero-motif{
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
}
.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:0;
}
.hero-scrim{
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(100deg, rgba(251,234,211,.94) 0%, rgba(251,234,211,.84) 30%, rgba(251,234,211,.52) 60%, rgba(251,234,211,.3) 100%);
}
@media (max-width:768px){
  .hero-scrim{ background:linear-gradient(190deg, rgba(251,234,211,.9) 0%, rgba(251,234,211,.82) 50%, rgba(251,234,211,.66) 100%); }
}
.hero-content{
  position:relative;
  z-index:2;
  max-width:var(--container);
  margin:0 auto;
  padding:6vh 32px;
  width:100%;
}
.retreat-banner{
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  background:var(--maroon);
  color:var(--cream);
  padding:.55rem 1.1rem .55rem .55rem;
  border-radius:100px;
  font-size:.82rem;
  font-weight:500;
  margin-bottom:1.6rem;
  opacity:0;
  text-decoration:none;
  transition:transform .25s var(--ease-soft), box-shadow .25s var(--ease-soft);
  box-shadow:0 6px 20px -8px rgba(90,25,23,.55);
}
.retreat-banner:hover{ transform:translateY(-2px); box-shadow:0 10px 26px -8px rgba(90,25,23,.6); }
.retreat-banner-badge{
  background:var(--olive-light);
  color:var(--maroon-dark);
  font-size:.68rem;
  font-weight:700;
  letter-spacing:.05em;
  text-transform:uppercase;
  padding:.3rem .6rem;
  border-radius:100px;
}
.retreat-banner svg{ width:16px; height:16px; flex-shrink:0; }
@media (max-width:640px){
  .retreat-banner{ font-size:.76rem; padding:.5rem 1rem .5rem .5rem; }
  .retreat-banner span:not(.retreat-banner-badge){ max-width:34ch; }
}
.hero-tag{
  font-size:.78rem;
  font-weight:600;
  letter-spacing:.22em;
  text-transform:uppercase;
  color:var(--olive);
  margin-bottom:1.4rem;
  opacity:0;
}
.hero h1{
  font-size:clamp(2.6rem, 6.6vw, 5.4rem);
  max-width:16ch;
  opacity:0;
}
.hero h1 em{ font-style:italic; color:var(--olive); font-weight:400; }
.hero p{
  margin-top:1.8rem;
  font-size:clamp(1.02rem,1.6vw,1.28rem);
  max-width:46ch;
  color:var(--ink-soft);
  font-weight:400;
  line-height:1.6;
  opacity:0;
}
.hero-actions{ display:flex; gap:1rem; margin-top:2.6rem; flex-wrap:wrap; opacity:0; }

.hero.reveal-ready .retreat-banner,
.hero.reveal-ready .hero-tag,
.hero.reveal-ready h1,
.hero.reveal-ready p,
.hero.reveal-ready .hero-actions{
  animation:heroUp .9s var(--ease) forwards;
}
.hero.reveal-ready .retreat-banner{ animation-delay:0s; }
.hero.reveal-ready .hero-tag{ animation-delay:.05s; }
.hero.reveal-ready h1{ animation-delay:.16s; }
.hero.reveal-ready p{ animation-delay:.32s; }
.hero.reveal-ready .hero-actions{ animation-delay:.46s; }

@keyframes heroUp{
  from{ opacity:0; transform:translateY(26px); }
  to{ opacity:1; transform:translateY(0); }
}

.scroll-cue{
  position:absolute;
  bottom:34px; left:50%;
  transform:translateX(-50%);
  display:flex; flex-direction:column; align-items:center; gap:8px;
  font-size:.68rem; letter-spacing:.2em; text-transform:uppercase; color:var(--brown);
  opacity:.75;
}
.scroll-cue .line{ width:1px; height:34px; background:var(--brown); overflow:hidden; position:relative; }
.scroll-cue .line::after{
  content:''; position:absolute; top:-100%; left:0; width:100%; height:100%;
  background:var(--maroon);
  animation:cueDrop 1.8s ease-in-out infinite;
}
@keyframes cueDrop{ 0%{ top:-100%; } 60%{ top:100%; } 100%{ top:100%; } }
@media (max-width:640px){ .scroll-cue{ display:none; } }

/* ---------------------------- sections ---------------------------- */
section{ position:relative; }
.section{ padding:120px 0; }
.section-tight{ padding:80px 0; }
@media (max-width:768px){
  .section{ padding:80px 0; }
  .section-tight{ padding:56px 0; }
}

.section-head{ max-width:720px; margin-bottom:4rem; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(2rem,4.2vw,3.2rem); }
.section-head p{ margin-top:1.2rem; font-size:1.12rem; color:var(--ink-soft); line-height:1.65; }

.bg-cream{ background:var(--cream); }
.bg-white{ background:var(--white); }
.bg-sand{ background:var(--sand); }
.bg-ink{ background:var(--ink); color:var(--cream); }
.bg-ink h2, .bg-ink h3, .bg-ink h4{ color:var(--cream); }
.bg-maroon{ background:var(--maroon); color:var(--cream); }
.bg-maroon h2,.bg-maroon h3{ color:var(--cream); }

/* reveal-on-scroll — quiet fade, scrubbed directly by scroll position (see script.js) */
.reveal, .reveal-stagger > *{ opacity:0; }

/* ---------------------------- method cards ---------------------------- */
.grid{ display:grid; gap:28px; }
.grid-4{ grid-template-columns:repeat(4,1fr); }
.grid-5{ grid-template-columns:repeat(5,1fr); }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
@media (max-width:1000px){ .grid-4,.grid-5{ grid-template-columns:repeat(2,1fr); } .grid-3{ grid-template-columns:repeat(2,1fr);} }
@media (max-width:640px){ .grid-4,.grid-5,.grid-2,.grid-3{ grid-template-columns:1fr; } }

.card{
  background:var(--white);
  border-radius:22px;
  padding:2.4rem 2rem;
  transition:transform .55s var(--ease), box-shadow .55s var(--ease);
  box-shadow:0 1px 0 rgba(33,28,23,.05);
  position:relative;
  overflow:hidden;
}
.card:hover{ transform:translateY(-8px); box-shadow:0 30px 60px -30px rgba(33,28,23,.25); }
.card .icon{ width:52px; height:52px; margin-bottom:1.6rem; color:var(--olive-light); }
.card .icon svg{ width:100%; height:100%; }
.card h3{ font-size:1.32rem; margin-bottom:.7rem; }
.card p{ color:var(--ink-soft); font-size:.98rem; line-height:1.6; margin:0; }
.card-link{ display:inline-flex; align-items:center; gap:.4em; margin-top:1.4rem; font-size:.85rem; font-weight:600; color:var(--maroon); }
.card-link svg{ width:14px; height:14px; flex:none; transition:transform .3s var(--ease); }
.card-link:hover svg{ transform:translateX(4px); }

/* ---------------------------- split / feature rows ---------------------------- */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
}
.split.reverse .split-media{ order:2; }
@media (max-width:900px){
  .split, .split.reverse .split-media{ grid-template-columns:1fr; order:0; }
  .split{ gap:36px; }
}
.split-media{
  border-radius:26px;
  aspect-ratio:4/3.2;
  position:relative;
  overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.split-media img{
  width:100%; height:100%;
  object-fit:cover;
  object-position:center;
}
.split-media.portrait{ aspect-ratio:3/4; }
.split h3{ font-size:clamp(1.7rem,3vw,2.3rem); margin-bottom:1.1rem; }
.split p{ color:var(--ink-soft); font-size:1.05rem; line-height:1.7; }
.split ul{ margin-top:1.4rem; display:flex; flex-direction:column; gap:.7rem; }
.split ul li{ display:flex; align-items:flex-start; gap:.7rem; font-size:.96rem; color:var(--ink-soft); }
.split ul li svg{ flex:none; width:18px; height:18px; margin-top:2px; color:var(--olive-light); }

/* ---------------------------- promo image duo (featured/new callouts) ---------------------------- */
.promo-duo{ position:relative; }
.promo-duo-main{
  width:100%;
  aspect-ratio:4/3.3;
  object-fit:cover;
  display:block;
  border-radius:24px;
  box-shadow:0 24px 50px rgba(33,28,23,.18);
}
.promo-duo-accent{
  position:absolute;
  right:-6%;
  bottom:-10%;
  width:42%;
  aspect-ratio:2/3;
  object-fit:cover;
  border-radius:16px;
  border:6px solid var(--cream);
  box-shadow:0 16px 34px rgba(33,28,23,.22);
}
@media (max-width:900px){
  .promo-duo{ margin-bottom:4rem; }
  .promo-duo-accent{ width:38%; right:2%; bottom:-8%; }
}
@media (max-width:480px){
  .promo-duo-accent{ right:0; bottom:-6%; }
}

/* ---------------------------- motif art blocks ---------------------------- */
.motif-block{ width:100%; height:100%; }

/* ---------------------------- testimonials ---------------------------- */
.testi-wrap{ position:relative; max-width:820px; margin:0 auto; }
.testi-track{
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  cursor:grab;
  user-select:none;
}
.testi-track.dragging{ cursor:grabbing; scroll-snap-type:none; scroll-behavior:auto; }
.testi-track::-webkit-scrollbar{ display:none; }
.testi-slide{
  flex:0 0 100%;
  scroll-snap-align:center;
  text-align:center;
  padding:0 8px;
}
.testi-quote{ font-family:var(--font-display); font-size:clamp(1.3rem,2.6vw,1.9rem); line-height:1.5; color:var(--maroon-dark); font-style:italic; }
.testi-name{ margin-top:1.6rem; font-size:.85rem; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--olive); }
.testi-stars{ display:flex; justify-content:center; gap:4px; margin-bottom:1.6rem; }
.testi-stars svg{ width:16px; height:16px; color:var(--olive-light); }
.testi-dots{ display:flex; justify-content:center; gap:10px; margin-top:2.6rem; }
.testi-dots button{ width:8px; height:8px; border-radius:50%; background:rgba(33,28,23,.18); border:0; padding:0; cursor:pointer; transition:background .3s var(--ease), transform .3s var(--ease); }
.testi-dots button.active{ background:var(--maroon); transform:scale(1.3); }

.testi-arrow{
  position:absolute; top:38%; transform:translateY(-50%);
  z-index:5;
  width:46px; height:46px; border-radius:50%;
  background:var(--white); border:1px solid rgba(33,28,23,.1);
  display:flex; align-items:center; justify-content:center;
  color:var(--maroon-dark);
  cursor:pointer;
  box-shadow:0 8px 20px -8px rgba(33,28,23,.25);
  transition:background .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.testi-arrow:hover{ background:var(--cream); transform:translateY(-50%) scale(1.08); }
.testi-arrow svg{ width:20px; height:20px; }
.testi-arrow.prev{ left:-64px; }
.testi-arrow.next{ right:-64px; }
@media (max-width:960px){
  .testi-arrow{ display:none; }
}
.google-badge{ display:flex; align-items:center; justify-content:center; gap:.6rem; margin-top:3rem; font-size:.85rem; color:var(--ink-soft); }
.google-badge svg{ width:20px; height:20px; }

/* ---------------------------- stats ---------------------------- */
.stat-row{ display:flex; flex-wrap:wrap; gap:3.5rem; }
.stat{ min-width:140px; }
.stat .num{ font-family:var(--font-display); font-size:clamp(2.4rem,4.4vw,3.6rem); color:var(--maroon); line-height:1; }
.stat .label{ margin-top:.6rem; font-size:.82rem; letter-spacing:.06em; color:var(--ink-soft); text-transform:uppercase; }

/* ---------------------------- pricing ---------------------------- */
.price-card{ padding:1rem 2rem; }
@media (max-width:480px){ .price-card{ padding:.4rem 1.2rem; } }
.price-table{ width:100%; border-collapse:collapse; }
.price-table tr{ border-bottom:1px solid rgba(33,28,23,.09); transition:background .3s var(--ease); }
.price-table tr:hover{ background:rgba(255,255,255,.5); }
.price-table td{ padding:1.5rem .6rem; }
.price-table td:last-child{ text-align:right; font-family:var(--font-display); font-size:1.25rem; color:var(--maroon); white-space:nowrap; }
.price-table .p-name{ font-weight:600; font-size:1.05rem; }
.price-table .p-sub{ display:block; font-size:.85rem; color:var(--ink-soft); font-weight:400; margin-top:.2rem; }

@media (max-width:560px){
  .price-table, .price-table tbody{ display:block; width:100%; }
  .price-table tr{ display:flex; flex-direction:column; align-items:flex-start; padding:1.1rem 0; gap:.3rem; }
  .price-table td{ display:block; padding:0; width:100%; }
  .price-table td:last-child{ text-align:left; white-space:normal; }
}

.policy-card{
  background:var(--white);
  border-radius:20px;
  padding:2rem;
}
.policy-card h4{ font-size:1.1rem; margin-bottom:.6rem; }
.policy-card p{ color:var(--ink-soft); font-size:.94rem; line-height:1.6; margin:0; }

.offer-banner{
  border-radius:26px;
  background:linear-gradient(120deg,var(--maroon),var(--maroon-dark));
  color:var(--cream);
  padding:3rem;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:2rem;
  flex-wrap:wrap;
}
.offer-banner h3{ color:var(--cream); font-size:clamp(1.5rem,3vw,2.1rem); }
.offer-banner p{ color:rgba(251,234,211,.85); margin-top:.5rem; max-width:44ch; }

.promo-reveal{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:.8rem;
  margin-top:0;
  max-height:0;
  opacity:0;
  overflow:hidden;
  transition:max-height .45s var(--ease-soft), opacity .35s ease, margin-top .45s var(--ease-soft);
}
.offer-claimed .promo-reveal{
  max-height:80px;
  opacity:1;
  margin-top:1.3rem;
}
.promo-code-label{ font-size:.85rem; color:rgba(251,234,211,.75); }
.promo-code-value{
  font-family:var(--font-display);
  font-size:1.25rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  background:rgba(251,234,211,.14);
  border:1px dashed rgba(251,234,211,.5);
  padding:.3rem .9rem;
  border-radius:8px;
  color:var(--cream);
}
.promo-copy{
  background:none;
  border:1px solid rgba(251,234,211,.5);
  color:var(--cream);
  font-size:.78rem;
  font-weight:600;
  padding:.42rem .9rem;
  border-radius:100px;
  cursor:pointer;
  transition:background .2s ease, border-color .2s ease;
}
.promo-copy:hover{ background:rgba(251,234,211,.16); border-color:var(--cream); }
.promo-booklink{
  display:inline-flex;
  align-items:center;
  background:var(--olive-light);
  color:var(--maroon-dark);
  font-size:.78rem;
  font-weight:700;
  padding:.42rem 1rem;
  border-radius:100px;
  text-decoration:none;
  transition:transform .2s var(--ease-soft), background .2s ease;
}
.promo-booklink:hover{ background:var(--cream); transform:translateY(-2px); }

/* ---------------------------- contact ---------------------------- */
.contact-grid{ display:grid; grid-template-columns:1.1fr 1fr; gap:60px; align-items:start; }
@media (max-width:900px){ .contact-grid{ grid-template-columns:1fr; } }
.info-row{ display:flex; gap:1.1rem; padding:1.4rem 0; border-bottom:1px solid rgba(33,28,23,.08); }
.info-row svg{ flex:none; width:22px; height:22px; color:var(--olive-light); margin-top:3px; }
.info-row h4{ font-size:.72rem; letter-spacing:.16em; text-transform:uppercase; color:var(--olive); margin-bottom:.4rem; font-family:var(--font-body); font-weight:600; }
.info-row p{ margin:0; font-size:1.02rem; color:var(--ink); line-height:1.55; }
.info-row a:hover{ color:var(--maroon); }

.map-frame{ border-radius:22px; overflow:hidden; border:1px solid rgba(33,28,23,.08); height:100%; min-height:420px; }
.map-frame iframe{ width:100%; height:100%; min-height:420px; border:0; filter:grayscale(.25) sepia(.12) saturate(1.1); }

/* ---------------------------- footer ---------------------------- */
footer{ background:var(--ink); color:var(--cream); padding:80px 0 30px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:40px; padding-bottom:56px; border-bottom:1px solid rgba(251,234,211,.12); }
@media (max-width:800px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:520px){ .footer-grid{ grid-template-columns:1fr; } }
.footer-brand{ display:flex; align-items:center; gap:.7rem; font-family:var(--font-display); font-size:1.15rem; margin-bottom:1rem; }
.footer-brand .brand-mark{ width:38px; height:38px; object-fit:contain; }
footer p{ color:rgba(251,234,211,.65); font-size:.92rem; line-height:1.6; max-width:32ch; }
footer h5{ font-size:.72rem; letter-spacing:.18em; text-transform:uppercase; color:var(--olive-light); margin-bottom:1.2rem; }
footer .flinks li{ margin-bottom:.7rem; }
footer .flinks a{ font-size:.92rem; color:rgba(251,234,211,.8); transition:color .3s var(--ease); }
footer .flinks a:hover{ color:var(--white); }
.footer-bottom{ padding-top:26px; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:.78rem; color:rgba(251,234,211,.5); }
.social-row{ display:flex; gap:14px; margin-top:1.2rem; }
.social-row a{ width:36px; height:36px; border-radius:50%; border:1px solid rgba(251,234,211,.25); display:flex; align-items:center; justify-content:center; transition:background .3s var(--ease), border-color .3s var(--ease); }
.social-row a:hover{ background:rgba(251,234,211,.12); border-color:rgba(251,234,211,.5); }
.social-row svg{ width:16px; height:16px; }

/* ---------------------------- page hero (inner pages) ---------------------------- */
.page-hero{
  padding:calc(var(--nav-h) + 90px) 0 90px;
  background:linear-gradient(160deg, var(--cream) 0%, var(--cream-2) 60%, var(--sand) 100%);
  position:relative;
  overflow:hidden;
}
.page-hero h1{ font-size:clamp(2.3rem,5.4vw,4rem); max-width:20ch; }
.page-hero p{ margin-top:1.4rem; font-size:1.12rem; color:var(--ink-soft); max-width:56ch; line-height:1.65; }
.crumb{ display:flex; gap:.5rem; align-items:center; font-size:.82rem; color:var(--brown); margin-bottom:1.6rem; text-transform:uppercase; letter-spacing:.1em; }

/* ---------------------------- retreat hero slideshow ---------------------------- */
.retreat-hero{
  padding:0;
  min-height:88svh;
  display:flex;
  align-items:center;
  background:#211C17;
}
.retreat-hero-slides{ position:absolute; inset:0; z-index:0; }
.retreat-hero-slide{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  opacity:0;
  animation:retreatHeroFade 55s infinite;
}
.retreat-hero-scrim{
  position:absolute;
  inset:0;
  z-index:1;
  background:linear-gradient(180deg, rgba(33,28,23,.62) 0%, rgba(33,28,23,.42) 22%, rgba(33,28,23,.5) 55%, rgba(33,28,23,.88) 100%);
}
@keyframes retreatHeroFade{
  0%{ opacity:0; }
  1.8%{ opacity:1; }
  7.3%{ opacity:1; }
  9.1%{ opacity:0; }
  100%{ opacity:0; }
}
@media (prefers-reduced-motion: reduce){
  .retreat-hero-slide{ animation:none; opacity:0; }
  .retreat-hero-slide:first-child{ opacity:1; }
}
@media (max-width:768px){
  .retreat-hero{ min-height:74svh; }
}

/* nav needs its own guaranteed-contrast backing while floating over the retreat hero photos */
body.retreat-page .nav:not(.is-scrolled){
  background:linear-gradient(180deg, rgba(33,28,23,.6) 0%, rgba(33,28,23,.25) 80%, rgba(33,28,23,0) 100%);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
}
body.retreat-page .nav:not(.is-scrolled) .nav-brand{ color:#FBEAD3; }
body.retreat-page .nav:not(.is-scrolled) .nav-brand .brand-word small{ color:#D9C7AF; }
body.retreat-page .nav:not(.is-scrolled) .nav-links a{ color:rgba(251,234,211,.88); }
body.retreat-page .nav:not(.is-scrolled) .nav-links a:hover,
body.retreat-page .nav:not(.is-scrolled) .nav-links a.active{ color:#93A130; }
body.retreat-page .nav:not(.is-scrolled) .nav-toggle span{ background:#FBEAD3; }

/* method anchor sections */
.method-nav{
  position:sticky;
  top:70px; /* matches .nav.is-scrolled height so no gap once the main nav has shrunk */
  z-index:80;
  background:rgba(217,199,175,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(33,28,23,.1);
  box-shadow:0 1px 0 rgba(33,28,23,.06);
}
.method-nav-inner{ display:flex; gap:2rem; overflow-x:auto; padding:16px 0; }
.method-nav a{ font-size:.86rem; font-weight:600; color:var(--ink-soft); white-space:nowrap; padding-bottom:4px; border-bottom:2px solid transparent; transition:color .3s var(--ease), border-color .3s var(--ease); }
.method-nav a:hover, .method-nav a.active{ color:var(--maroon-dark); border-color:var(--maroon-dark); }

/* utility */
.mt-1{ margin-top:1rem; } .mt-2{ margin-top:2rem; } .mt-3{ margin-top:3rem; }
.center-text{ text-align:center; }
.tag-pill{ display:inline-flex; align-items:center; gap:.5rem; padding:.4rem 1rem; border-radius:100px; background:rgba(95,107,69,.12); color:var(--olive); font-size:.78rem; font-weight:600; letter-spacing:.04em; }
.divider{ height:1px; background:rgba(33,28,23,.08); margin:3rem 0; }
