/* =========================================================
   Latasha Smith - shared brand stylesheet
   Elegant, softened & brightened. Ivory + forest + gold.
   ========================================================= */

:root{
  --ivory:        #F5E4D3;
  --ivory-dim:     #ECD9C2;
  --paper:        #FFFBF6;
  --forest:       #1B4F52;
  --forest-dk:    #123B3E;
  --forest-lt:    #2E7A82;
  --gold:         #C08E2E;
  --gold-lt:      #EDC583;
  --gold-dim:     #C08E2E33;
  --terracotta:   #BD6E3C;
  --teal:         #35777F;
  --ink:          #262420;
  --muted:        #6E6A5C;
  --line:         #E6D3BC;
  --maxw:         1200px;
  --radius:       8px;
  --radius-sm:    6px;
  --shadow-sm:    0 2px 14px rgba(27,79,82,.07);
  --shadow-md:    0 12px 40px rgba(27,79,82,.12);
}

/* ---------- Reset ---------- */
*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font:inherit; cursor:pointer; }
ul{ list-style:none; }

body{
  background:var(--ivory);
  color:var(--ink);
  font-family:'Jost', system-ui, -apple-system, sans-serif;
  font-weight:300;
  font-size:17px;
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

/* ---------- Type ---------- */
h1,h2,h3,h4,.display{
  font-family:'Cinzel', Georgia, serif;
  font-weight:600;
  letter-spacing:.015em;
  line-height:1.18;
  color:var(--forest);
}
.font-sub{ font-family:'Fraunces', Georgia, serif; font-weight:400; }
h2{ font-size:clamp(1.8rem, 3.2vw, 2.6rem); }
h3{ font-size:clamp(1.25rem, 2vw, 1.5rem); }
p{ margin:0; }

.script{
  font-family:'Italianno', cursive;
  font-weight:400;
  color:var(--terracotta);
  line-height:1;
  font-size:1.6rem;
}
.script-lg{ font-size:clamp(2.6rem, 5.2vw, 3.8rem); }
.eyebrow{
  font-family:'Jost', sans-serif;
  font-weight:500;
  font-size:.72rem;
  letter-spacing:.28em;
  text-transform:uppercase;
  color:var(--gold);
}
.lede{
  font-family:'Fraunces', Georgia, serif;
  font-weight:400;
  font-size:clamp(1.05rem, 1.6vw, 1.3rem);
  line-height:1.6;
  color:var(--forest-lt);
}
.muted{ color:var(--muted); }

/* ---------- Layout helpers ---------- */
.wrap{ max-width:var(--maxw); margin:0 auto; padding:0 24px; }
.pad{ padding:96px 0; }
.pad-sm{ padding:64px 0; }
@media (max-width:720px){
  .pad{ padding:64px 0; }
  .pad-sm{ padding:44px 0; }
}
.rule{
  width:64px; height:1px; background:var(--gold);
  margin:22px 0; border:0;
}
.rule.center{ margin-left:auto; margin-right:auto; }
.center{ text-align:center; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  padding:15px 34px;
  font-family:'Jost', sans-serif; font-weight:500; font-size:.86rem;
  letter-spacing:.1em; text-transform:uppercase;
  border-radius:999px;
  border:1px solid transparent;
  transition:.28s ease;
  white-space:nowrap;
}
.btn-primary{
  background:var(--forest); color:var(--ivory);
  border-color:var(--forest);
}
.btn-primary:hover{ background:var(--forest-dk); border-color:var(--forest-dk); transform:translateY(-1px); box-shadow:var(--shadow-sm); }
.btn-gold{
  background:var(--gold); color:var(--forest-dk);
  border-color:var(--gold);
}
.btn-gold:hover{ background:var(--gold-lt); border-color:var(--gold-lt); transform:translateY(-1px); box-shadow:var(--shadow-sm); }
.btn-outline{
  background:transparent; color:var(--forest); border-color:var(--forest);
}
.btn-outline:hover{ background:var(--forest); color:var(--ivory); }
.btn-outline-light{
  background:transparent; color:var(--ivory); border-color:var(--ivory);
}
.btn-outline-light:hover{ background:var(--ivory); color:var(--forest); }
.btn-sm{ padding:11px 24px; font-size:.74rem; }
.btn[disabled]{ opacity:.55; cursor:not-allowed; }

/* ---------- Header / Nav ---------- */
.site-header{
  position:sticky; top:0; z-index:100;
  background:rgba(245,228,211,.72);
  backdrop-filter:blur(14px) saturate(1.1);
  -webkit-backdrop-filter:blur(14px) saturate(1.1);
  border-bottom:1px solid transparent;
  transition:.3s ease;
}
.site-header.scrolled{
  background:rgba(245,228,211,.94);
  border-bottom-color:var(--line);
  box-shadow:0 4px 22px rgba(27,79,82,.06);
}
.site-header .wrap{
  display:flex; align-items:center; justify-content:space-between;
  padding-top:18px; padding-bottom:18px;
  transition:.3s ease;
}
.wordmark{
  font-family:'Cinzel', serif; font-weight:600; font-size:1.15rem;
  letter-spacing:.06em; color:var(--forest);
  display:flex; flex-direction:column; line-height:1.1;
}
.wordmark small{
  font-family:'Jost', sans-serif; font-weight:400; font-size:.56rem;
  letter-spacing:.24em; text-transform:uppercase; color:var(--gold);
  margin-top:3px;
}
.nav-links{
  display:flex; align-items:center; gap:38px;
}
.nav-links a{
  font-family:'Jost', sans-serif; font-weight:400; font-size:.86rem;
  letter-spacing:.05em; color:var(--forest);
  position:relative; padding:4px 0;
}
.nav-links a::after{
  content:''; position:absolute; left:0; right:100%; bottom:0; height:1px;
  background:var(--gold); transition:right .25s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after{ right:0; }
.nav-links a[aria-current="page"]{ color:var(--terracotta); }

.nav-toggle{
  display:none; flex-direction:column; gap:5px; background:none; border:0;
  padding:6px;
}
.nav-toggle span{ width:24px; height:1.5px; background:var(--forest); display:block; }

@media (max-width: 880px){
  .nav-toggle{ display:flex; }
  .nav-links{
    position:fixed; inset:0 0 0 auto; top:0; height:100vh; width:min(78vw, 320px);
    background:var(--ivory);
    flex-direction:column; align-items:flex-start; gap:0;
    padding:100px 34px 34px; transform:translateX(100%);
    transition:transform .35s ease; box-shadow:-10px 0 40px rgba(27,79,82,.15);
  }
  .nav-links.open{ transform:translateX(0); }
  .nav-links a{ width:100%; padding:16px 0; font-size:1rem; border-bottom:1px solid var(--line); }
  .nav-scrim{
    display:none; position:fixed; inset:0; background:rgba(20,30,25,.35); z-index:90;
  }
  .nav-scrim.open{ display:block; }
}

/* ---------- Tags / Badges ---------- */
.tag{
  display:inline-block; font-family:'Jost', sans-serif; font-weight:500;
  font-size:.66rem; letter-spacing:.16em; text-transform:uppercase;
  padding:6px 14px; border-radius:999px;
  background:var(--forest); color:var(--ivory);
}
.tag-gold{ background:var(--gold-dim); color:#8c6a28; }
.tag-outline{ background:transparent; border:1px solid var(--gold); color:var(--forest); }
.tag-teal{ background:#35777f22; color:var(--teal); }
.tag-terracotta{ background:#bd6e3c22; color:var(--terracotta); }

/* ---------- Cards ---------- */
.card{
  background:var(--paper);
  border:1px solid var(--line);
  border-radius:var(--radius);
  overflow:hidden;
  transition:.3s ease;
}
.card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-md); border-color:var(--gold-dim); }
.card-body{ padding:30px; }
.card figure{ aspect-ratio:4/3; overflow:hidden; background:var(--ivory-dim); }
.card figure img{ width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.card:hover figure img{ transform:scale(1.05); }

/* ---------- Reveal on scroll ---------- */
.rv{ opacity:0; transform:translateY(26px); transition:opacity .8s ease, transform .8s ease; }
.rv.in{ opacity:1; transform:translateY(0); }
.rv-d1{ transition-delay:.08s; }
.rv-d2{ transition-delay:.16s; }
.rv-d3{ transition-delay:.24s; }
@media (prefers-reduced-motion: reduce){
  .rv{ opacity:1; transform:none; transition:none; }
}

/* ---------- Hero ---------- */
.hero{
  position:relative;
  padding:150px 0 110px;
  overflow:hidden;
}
.hero .wrap{
  display:grid; grid-template-columns:1.1fr .9fr; gap:56px; align-items:center;
}
.hero-copy .eyebrow{ margin-bottom:18px; }
.hero-copy h1{ font-size:clamp(2.3rem, 4.6vw, 3.6rem); }
.hero-copy .lede{ margin-top:22px; max-width:46ch; }
.hero-cta{ display:flex; gap:16px; flex-wrap:wrap; margin-top:38px; }
.hero-media{
  position:relative; border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow-md);
}
.hero-media img{ width:100%; height:100%; object-fit:cover; aspect-ratio:4/5; }
.hero-media::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(27,79,82,0) 55%, rgba(27,79,82,.28) 100%);
}
.hero-ring{
  position:absolute; border:1px solid var(--gold-dim); border-radius:50%;
  width:220px; height:220px; top:-60px; right:-60px; z-index:-1;
}
@media (max-width: 920px){
  .hero{ padding:120px 0 70px; }
  .hero .wrap{ grid-template-columns:1fr; gap:40px; }
  .hero-media{ order:-1; max-width:340px; margin:0 auto; }
}

/* ---------- Hero (full-bleed video variant) ---------- */
.hero-video{
  min-height:94vh;
  display:flex;
  align-items:center;
  color:var(--ivory);
  isolation:isolate;
}
.hero-video .wrap{ display:block; }
.hero-video .hero-media{
  position:absolute; inset:0; z-index:-2;
  border-radius:0; box-shadow:none;
  background:var(--forest-dk);
}
.hero-video .hero-media video{
  width:100%; height:100%; object-fit:cover; aspect-ratio:auto;
  filter:saturate(1.12) contrast(1.1) brightness(.88);
}
.hero-video .hero-media::after{
  z-index:1;
  background:
    linear-gradient(180deg, rgba(18,59,62,.62) 0%, rgba(18,59,62,.34) 42%, rgba(18,59,62,.72) 100%),
    linear-gradient(90deg, rgba(18,59,62,.42) 0%, rgba(18,59,62,.05) 55%);
}
.hero-grain{
  position:absolute; inset:0; z-index:2;
  opacity:.22;
  mix-blend-mode:overlay;
  pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size:180px 180px;
}
.hero-video .hero-copy{ max-width:640px; }
.hero-video .hero-copy .eyebrow{ color:var(--gold-lt); }
.hero-video .hero-copy h1{ color:var(--ivory); font-size:clamp(2.3rem, 4.6vw, 3.8rem); }
.hero-video .hero-copy .lede{ color:rgba(245,228,211,.86); }
@media (prefers-reduced-motion: reduce){
  .hero-video .hero-media video{ display:none; }
}
@media (max-width: 920px){
  .hero-video{ min-height:78vh; padding:120px 0 70px; align-items:flex-end; }
  .hero-video .hero-media{ max-width:none; margin:0; }
}

/* ---------- Offering cards (What she creates) ---------- */
.offer-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:28px; margin-top:52px;
}
.offer-card{ display:flex; flex-direction:column; height:100%; }
.offer-card .card-body{ display:flex; flex-direction:column; flex:1; gap:14px; padding:38px 32px; }
.offer-icon{
  width:44px; height:44px; border-radius:50%;
  border:1px solid var(--gold-dim); color:var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-family:'Cinzel', serif; font-size:1.1rem;
}
.offer-card .tag{ align-self:flex-start; }
.offer-card p{ color:var(--muted); flex:1; }
.offer-card .cta{ margin-top:6px; font-family:'Jost',sans-serif; font-weight:500; font-size:.82rem; letter-spacing:.06em; color:var(--forest); display:flex; align-items:center; gap:6px; }
.offer-card.is-soon{ background:var(--ivory-dim); border-style:dashed; }
.offer-card.is-soon .cta{ color:var(--terracotta); }
@media (max-width:900px){
  .offer-grid{ grid-template-columns:1fr; }
}

/* ---------- Featured retreat (horizontal) ---------- */
.feature{
  background:var(--paper); border:1px solid var(--line); border-radius:16px;
  overflow:hidden; display:grid; grid-template-columns:1fr 1fr; box-shadow:var(--shadow-sm);
}
.feature-media{ position:relative; min-height:340px; }
.feature-media img{ width:100%; height:100%; object-fit:cover; position:absolute; inset:0; }
.feature-copy{ padding:56px; display:flex; flex-direction:column; justify-content:center; gap:16px; }
.feature-meta{ display:flex; gap:10px; flex-wrap:wrap; margin-bottom:4px; }
.feature-copy p{ color:var(--muted); }
.feature-copy .btn{ align-self:flex-start; margin-top:12px; }
@media (max-width:860px){
  .feature{ grid-template-columns:1fr; }
  .feature-media{ min-height:260px; }
  .feature-copy{ padding:36px 28px; }
}

/* ---------- Story split (Meet Latasha) ---------- */
.story{
  display:grid; grid-template-columns:.82fr 1.18fr; gap:64px; align-items:center;
}
.story-media{ position:relative; }
.story-media img{ border-radius:var(--radius); box-shadow:var(--shadow-md); width:100%; aspect-ratio:3/4; object-fit:cover; }
.story-copy p + p{ margin-top:18px; }
.story-copy p{ color:var(--forest-lt); }
.story-copy .btn{ margin-top:30px; }
@media (max-width:860px){
  .story{ grid-template-columns:1fr; gap:36px; }
  .story-media{ max-width:340px; margin:0 auto; }
}

/* ---------- Journals band ---------- */
.journals-band{
  display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center;
}
.journals-media{ position:relative; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-md); }
.journals-media img{
  width:100%; aspect-ratio:4/5; object-fit:cover;
}
.journals-media::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(160deg, rgba(245,228,211,.22), rgba(192,142,46,.08));
}
.journals-copy p{ color:var(--muted); margin-top:16px; }
.journals-copy .btn{ margin-top:28px; }
@media (max-width:860px){
  .journals-band{ grid-template-columns:1fr; gap:36px; }
}

/* ---------- Promise / values band ---------- */
.promise{
  background:var(--forest); color:var(--ivory);
  position:relative; overflow:hidden;
}
.promise::before{
  content:"";
  position:absolute; inset:-20%;
  background:
    radial-gradient(circle at 20% 30%, rgba(237,197,131,.22), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(189,110,60,.20), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(46,122,130,.30), transparent 60%);
  filter:blur(40px);
  animation:promiseDrift 22s ease-in-out infinite alternate;
  pointer-events:none;
}
.promise .wrap{ position:relative; z-index:1; }
@keyframes promiseDrift{
  0%{ transform:translate(-4%,-3%) scale(1); }
  50%{ transform:translate(3%,4%) scale(1.08); }
  100%{ transform:translate(-2%,3%) scale(1); }
}
@media (prefers-reduced-motion:reduce){
  .promise::before{ animation:none; }
}
.promise h2{ color:var(--ivory); }
.promise .eyebrow{ color:var(--gold-lt); }
.promise-grid{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:36px; margin-top:52px;
}
.promise-item{ border-top:1px solid rgba(237,197,131,.3); padding-top:20px; }
.promise-item .num{ font-family:'Cinzel',serif; color:var(--gold-lt); font-size:.8rem; letter-spacing:.14em; display:block; margin-bottom:12px; }
.promise-item p{ color:rgba(245,228,211,.82); font-size:.95rem; }
.promise-item h3{ color:var(--ivory); font-size:1.05rem; margin-bottom:8px; }
@media (max-width:900px){
  .promise-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:560px){
  .promise-grid{ grid-template-columns:1fr; }
}

/* ---------- Newsletter ---------- */
.newsletter{
  background:var(--ivory-dim);
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}
.newsletter .wrap{ text-align:center; max-width:640px; }
.newsletter-form{
  display:flex; gap:12px; margin-top:32px; flex-wrap:wrap; justify-content:center;
}
.newsletter-form input[type="email"]{
  flex:1; min-width:240px;
  padding:15px 20px; font-family:'Jost',sans-serif; font-size:.95rem; font-weight:300;
  border:1px solid var(--line); border-radius:999px; background:var(--paper); color:var(--ink);
}
.newsletter-form input[type="email"]:focus{ outline:2px solid var(--gold); outline-offset:1px; }
.newsletter-form .btn-primary{
  position:relative; overflow:hidden;
  animation:ctaGlow 2.6s ease-in-out infinite;
}
.newsletter-form .btn-primary::after{
  content:"";
  position:absolute; top:0; left:-60%; width:40%; height:100%;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform:skewX(-20deg);
  transition:left .6s ease;
}
.newsletter-form .btn-primary:hover::after{ left:130%; }
@keyframes ctaGlow{
  0%,100%{ box-shadow:0 0 0 0 rgba(192,142,46,0); }
  50%{ box-shadow:0 0 0 9px rgba(192,142,46,.16); }
}
@media (prefers-reduced-motion:reduce){
  .newsletter-form .btn-primary{ animation:none; }
}
.form-note{ margin-top:14px; font-size:.82rem; color:var(--muted); }
.form-success{ display:none; margin-top:18px; color:var(--forest); font-family:'Fraunces',serif; }
.form-success.show{ display:block; }

/* ---------- Footer ---------- */
.site-footer{
  background:var(--forest-dk); color:var(--ivory);
  padding:72px 0 32px;
}
.footer-top{
  display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:48px;
  padding-bottom:48px; border-bottom:1px solid rgba(237,197,131,.18);
}
.footer-brand .wordmark{ color:var(--ivory); }
.footer-brand .wordmark small{ color:var(--gold-lt); }
.footer-sub{ margin-top:16px; font-size:.92rem; color:rgba(245,228,211,.72); max-width:34ch; }
.footer-col h4{
  color:var(--gold-lt); font-family:'Jost',sans-serif; font-weight:500; font-size:.72rem;
  letter-spacing:.2em; text-transform:uppercase; margin-bottom:18px;
}
.footer-col a, .footer-col p{ display:block; color:rgba(245,228,211,.82); font-size:.92rem; margin-bottom:12px; }
.footer-col a:hover{ color:var(--gold-lt); }
.footer-bottom{
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;
  padding-top:28px; font-size:.78rem; color:rgba(245,228,211,.55);
}
.footer-bottom .socials{ display:flex; gap:18px; }
.footer-bottom .socials a{ color:rgba(245,228,211,.75); }
.footer-bottom .socials a:hover{ color:var(--gold-lt); }
.footer-script{
  font-family:'Italianno', cursive; font-size:1.5rem; color:var(--gold-lt);
  margin-top:14px; display:block; line-height:1;
}
.footer-legal{
  font-size:.76rem; line-height:1.7; color:rgba(245,228,211,.55);
  max-width:900px; margin-top:36px;
}
@media (max-width:780px){
  .footer-top{ grid-template-columns:1fr; gap:36px; }
}

/* ---------- Retreats listing ---------- */
.retreat-grid{
  display:grid; grid-template-columns:repeat(2, 1fr); gap:32px; margin-top:48px;
}
.retreat-card{ display:flex; flex-direction:column; }
.retreat-card figure{ aspect-ratio:4/3; }
.retreat-card .card-body{ padding:32px; display:flex; flex-direction:column; gap:14px; flex:1; }
.retreat-card .meta{ display:flex; gap:8px; flex-wrap:wrap; }
.retreat-card p{ color:var(--muted); flex:1; }
.retreat-card.is-placeholder{
  align-items:center; justify-content:center; text-align:center;
  background:var(--ivory-dim); border-style:dashed;
}
.retreat-card.is-placeholder .card-body{ align-items:center; padding:56px 32px; }
.placeholder-icon{
  width:56px; height:56px; border-radius:50%;
  border:1px solid var(--gold-dim); color:var(--gold);
  display:flex; align-items:center; justify-content:center;
  font-family:'Cinzel', serif; font-size:1.3rem; margin-bottom:6px;
}
@media (max-width:820px){
  .retreat-grid{ grid-template-columns:1fr; }
}

/* ---------- Journals / Books grid ---------- */
.journals-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:32px; margin-top:48px;
}
.book-card{ display:flex; flex-direction:column; }
.book-card .card-body{ padding:26px; display:flex; flex-direction:column; gap:10px; flex:1; }
.book-card p{ color:var(--muted); font-size:.94rem; flex:1; }
.book-cover{
  aspect-ratio:2/3; margin:22px 22px 0;
  background:linear-gradient(160deg, var(--ivory-dim), var(--paper));
  border:1px solid var(--line); border-radius:var(--radius-sm);
  display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden;
}
.book-cover::before{
  content:''; position:absolute; inset:12px;
  border:1px solid var(--gold-dim); border-radius:4px;
}
.book-cover .glyph{ font-family:'Cinzel', serif; font-size:2.2rem; color:var(--gold); }
.book-cover img{ width:100%; height:100%; object-fit:cover; display:block; }
@media (max-width:900px){ .journals-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .journals-grid{ grid-template-columns:1fr; } }

/* ---------- Contact form ---------- */
.form-field{ display:flex; flex-direction:column; gap:8px; margin-bottom:22px; }
.form-field label{
  font-family:'Jost', sans-serif; font-size:.78rem; font-weight:500;
  letter-spacing:.06em; text-transform:uppercase; color:var(--forest);
}
.form-field input, .form-field textarea{
  padding:14px 16px; border:1px solid var(--line); border-radius:var(--radius-sm);
  background:var(--paper); font-family:'Jost', sans-serif; font-size:.95rem;
  font-weight:300; color:var(--ink); width:100%;
}
.form-field textarea{ min-height:150px; resize:vertical; }
.form-field input:focus, .form-field textarea:focus{ outline:2px solid var(--gold); outline-offset:1px; }
.contact-info-card{
  background:var(--ivory-dim); border:1px solid var(--line); border-radius:var(--radius);
  padding:36px; display:flex; flex-direction:column; gap:18px;
}
.contact-info-card a{ color:var(--forest); }
.contact-info-card a:hover{ color:var(--terracotta); }

/* ---------- Field Notes ---------- */
.notes-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:32px; margin-top:48px; }
.note-card .card-body{ padding:28px; display:flex; flex-direction:column; gap:10px; }
.note-card .date{ font-size:.72rem; letter-spacing:.14em; text-transform:uppercase; color:var(--gold); }
.note-card p{ color:var(--muted); }
@media (max-width:900px){ .notes-grid{ grid-template-columns:1fr; } }

.empty-state{
  text-align:center; padding:64px 32px; margin-top:48px;
  border:1px dashed var(--gold-dim); border-radius:16px; background:var(--ivory-dim);
}
.empty-state .placeholder-icon{ margin:0 auto 18px; }
.empty-state p{ color:var(--muted); max-width:44ch; margin:14px auto 0; }
.pillar-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:32px; margin-top:56px; }
.pillar{ text-align:center; padding:0 12px; }
.pillar .num{ font-family:'Cinzel',serif; color:var(--gold); font-size:.78rem; letter-spacing:.14em; display:block; margin-bottom:10px; }
.pillar p{ color:var(--muted); font-size:.94rem; }
@media (max-width:820px){ .pillar-grid{ grid-template-columns:1fr; } }

/* ---------- Generic inner-page header (non-hero pages) ---------- */
.page-head{
  padding:150px 0 60px; text-align:center;
}
.page-head .eyebrow{ margin-bottom:16px; }
.page-head .lede{ max-width:56ch; margin:18px auto 0; }

/* ---------- Utility ---------- */
.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:28px; }
@media (max-width:720px){ .grid-2{ grid-template-columns:1fr; } }
.mt-lg{ margin-top:56px; }
.section-head{ max-width:640px; }
.section-head.center{ margin-left:auto; margin-right:auto; }

/* ---------- Promo banner (retreat discount popup) ---------- */
.promo-banner{
  position:fixed; inset:0; z-index:400;
  display:flex; align-items:center; justify-content:center; padding:20px;
  opacity:0; pointer-events:none; transition:opacity .35s ease;
}
.promo-banner.is-open{ opacity:1; pointer-events:auto; }
.promo-banner-scrim{ position:absolute; inset:0; background:rgba(18,59,62,.72); }
.promo-banner-card{
  position:relative; z-index:1; display:grid; grid-template-columns:1fr 1.1fr;
  max-width:760px; width:100%; max-height:88vh; overflow:hidden;
  background:var(--paper); border-radius:18px; box-shadow:var(--shadow-md);
  transform:translateY(16px) scale(.98); transition:transform .35s ease;
}
.promo-banner.is-open .promo-banner-card{ transform:translateY(0) scale(1); }
.promo-banner-media{ position:relative; min-height:220px; }
.promo-banner-media img{ width:100%; height:100%; object-fit:cover; object-position:top center; display:block; }
.promo-banner-copy{ padding:38px 36px; display:flex; flex-direction:column; gap:12px; overflow-y:auto; }
.promo-banner-copy h3{ font-family:'Fraunces',serif; font-weight:500; font-size:1.6rem; color:var(--forest); line-height:1.18; margin-top:2px; }
.promo-banner-copy p{ color:var(--muted); font-size:.95rem; }
.promo-banner-copy .promo-code{
  font-family:'Jost',sans-serif; font-weight:500; color:var(--forest);
  background:var(--gold-dim); border:1px dashed var(--gold); border-radius:8px;
  padding:10px 14px; display:inline-block;
}
.promo-banner-copy .btn{ margin-top:8px; align-self:flex-start; }
.promo-banner-close{
  position:absolute; top:14px; right:14px; z-index:2; width:34px; height:34px;
  border-radius:50%; border:none; background:rgba(255,255,255,.92); color:var(--forest);
  font-size:1.3rem; line-height:1; cursor:pointer; display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-sm); transition:transform .2s ease,background .2s ease;
}
.promo-banner-close:hover{ background:#fff; transform:scale(1.08); }
@media (max-width:640px){
  .promo-banner-card{ grid-template-columns:1fr; max-height:92vh; }
  .promo-banner-media{ min-height:170px; }
  .promo-banner-copy{ padding:26px 24px 30px; }
}
