:root {
  --bg: #faf9f6;
  --ink: #1a1810;
  --muted: #6b6553;
  --brand: #f5c518;
  --brand-dark: #d4a80f;
  --brand-text: #1a1810;
  --card: #ffffff;
  --line: #ede8d8;
  --dark: #1a1810;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

/* ── Layout ── */
.container { width: min(1100px, 92%); margin: 0 auto; }

/* ── Announcement Bar ── */
.announcement-bar {
  background: var(--dark);
  color: #f3ebcc;
  border-bottom: 1px solid #2b2618;
}
.announcement-inner {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .78rem;
  letter-spacing: .03em;
  text-align: center;
}

/* ── Navbar ── */
.topbar {
  position: sticky; top: 0;
  background: rgba(250,249,246,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 40;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 0; }
nav a { color: var(--muted); text-decoration: none; margin: 0 .6rem; font-size: .95rem; font-weight: 500; transition: color .15s; }
nav a:hover { color: var(--ink); }
.brand { font-weight: 800; font-size: 1.1rem; display: flex; align-items: center; gap: .55rem; }
.brand-link { text-decoration: none; color: var(--ink); }
.brand-link:hover { opacity: .92; }
.logo { height: 40px; width: auto; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  background: var(--brand);
  color: var(--brand-text);
  border: 0;
  border-radius: 10px;
  padding: .8rem 1.4rem;
  text-decoration: none;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: background .15s, transform .1s;
}
.btn:hover { background: var(--brand-dark); transform: translateY(-1px); }
.btn-sm { padding: .55rem 1rem; font-size: .88rem; }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { background: #fff; border-color: var(--brand); color: var(--ink); transform: translateY(-1px); }
.btn-ghost-light { color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.35); }
.btn-ghost-light:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); color: #fff; }

/* ── Hero ── */
.hero {
  padding: 5rem 0 0;
  background: linear-gradient(145deg, #1a1810 0%, #2d2416 50%, #3a2e1a 100%);
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 60%, rgba(245,197,24,.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 400px 1fr 340px;
  gap: 0;
  align-items: flex-end;
  position: relative;
  z-index: 1;
}
.hero-content { padding-bottom: 4rem; text-align: center; }
.hero-content .hero-actions { justify-content: center; }
.hero-image-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-image-wrap--left {
  justify-content: flex-start;
  margin-left: -3rem;
}
.hero-image-wrap--right {
  justify-content: flex-end;
}
.hero-portrait {
  width: 100%;
  display: block;
  object-fit: contain;
  object-position: bottom center;
}
.hero-portrait--left {
  max-width: 420px;
}
.hero-portrait--flip { transform: scaleX(-1); }
.hero h1 { color: #fff; }
.hero .lead { color: rgba(255,255,255,.72); }
h1 { font-size: clamp(2.4rem, 5.5vw, 3.8rem); line-height: 1.06; margin: .4rem 0 1rem; letter-spacing: -.025em; }
.eyebrow {
  color: var(--brand-text);
  background: var(--brand);
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: .28rem .8rem;
  border-radius: 20px;
  margin: 0 0 .8rem;
}
.lead { color: var(--muted); font-size: 1.12rem; max-width: 58ch; margin-bottom: 0; line-height: 1.65; }
.hero-actions { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
}
.hero-card h3 { margin: 0 0 .8rem; font-size: 1rem; }
.hero-card ul { margin: 0; padding-left: 1.2rem; color: var(--muted); }
.hero-card li { margin-bottom: .4rem; }

/* ── Sections ── */
.section { padding: 5rem 0; }
.section h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 0 0 .4rem; letter-spacing: -.02em; }
.alt { background: linear-gradient(160deg, #fffef5 0%, #fff8e1 100%); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.muted { color: var(--muted); margin-top: 0; }

/* ── Venture Cards ── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.2rem; margin-top: 2rem; }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.6rem 1.5rem 1.4rem;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.11); transform: translateY(-4px); border-color: var(--brand); }
.card-icon { font-size: 1.8rem; margin-bottom: .3rem; line-height: 1; }
.card h3 { margin: 0 0 .4rem; font-size: 1.05rem; font-weight: 800; letter-spacing: -.01em; }
.card p { color: var(--muted); font-size: .9rem; margin: 0 0 1rem; line-height: 1.55; flex: 1; }
.card a { text-decoration: none; color: var(--ink); font-weight: 700; font-size: .88rem; border-bottom: 2px solid var(--brand); padding-bottom: 1px; transition: color .15s; width: fit-content; }
.card a:hover { color: var(--brand-dark); }

/* ── About Section ── */
.about-section { background: #fff; }
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-bottom: 3rem;
}
.about-body { color: var(--muted); font-size: .97rem; line-height: 1.7; margin: .8rem 0 0; }
.about-pillars { display: flex; flex-direction: column; gap: 1rem; }
.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.2rem;
}
.pillar-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: .1rem; }
.pillar strong { display: block; font-size: .97rem; font-weight: 800; margin-bottom: .2rem; }
.pillar p { margin: 0; font-size: .87rem; color: var(--muted); line-height: 1.5; }
.about-commitment {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
}
.commitment-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem;
  text-align: center;
}
.commitment-icon { font-size: 2rem; margin-bottom: .7rem; }
.commitment-card h4 { margin: 0 0 .5rem; font-size: 1rem; font-weight: 800; }
.commitment-card p { margin: 0; font-size: .88rem; color: var(--muted); line-height: 1.55; }
@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-commitment { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .about-commitment { grid-template-columns: 1fr; }
}

/* ── Stat Strip ── */
.stat-strip {
  background: var(--brand);
  padding: 1.2rem 0;
}
.stat-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat { display: flex; flex-direction: column; align-items: center; text-align: center; }
.stat strong { font-size: 1.15rem; font-weight: 800; color: var(--ink); line-height: 1.1; }
.stat span { font-size: .75rem; font-weight: 600; color: rgba(26,24,16,.65); text-transform: uppercase; letter-spacing: .06em; margin-top: .15rem; }
.stat-divider { width: 1px; height: 32px; background: rgba(26,24,16,.2); }
@media (max-width: 600px) { .stat-divider { display: none; } }

/* ── Appointments split ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; align-items: start; }
.checklist { padding-left: 1.2rem; color: var(--muted); }
.checklist li { margin-bottom: .5rem; }

/* ── Booking Calendar ── */
.booking-cal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.cal-panel { min-width: 0; width: 100%; }
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .8rem;
}
.cal-month-label { font-weight: 700; font-size: 1rem; }
.cal-nav {
  background: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  width: 32px; height: 32px;
  font-size: 1.2rem;
  cursor: pointer;
  line-height: 1;
  color: var(--ink);
  transition: background .15s;
}
.cal-nav:hover { background: var(--brand); border-color: var(--brand); }
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  text-align: center;
  font-size: .75rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: .3rem;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 2px;
}
.cal-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: .82rem;
  cursor: default;
  min-width: 0;
}
.cal-cell.disabled { color: #ccc; }
.cal-cell.available { cursor: pointer; font-weight: 500; }
.cal-cell.available:hover { background: #fff8e1; }
.cal-cell.today { border: 1.5px solid var(--brand); font-weight: 700; }
.cal-cell.selected { background: var(--brand) !important; color: var(--brand-text); font-weight: 700; }
.cal-slots {
  border-left: 1px solid var(--line);
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.cal-hint {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: var(--muted);
  text-align: center;
  gap: .5rem;
}
.cal-hint-icon { font-size: 2rem; }
.cal-hint p { margin: 0; font-size: .9rem; }
.slots-date { margin: 0 0 .8rem; font-size: .95rem; font-weight: 700; }
.slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .4rem;
  margin-bottom: .8rem;
}
.slot-btn {
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 8px;
  padding: .5rem .4rem;
  font-size: .82rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .15s;
  color: var(--ink);
}
.slot-btn:hover { border-color: var(--brand); background: #fff8e1; }
.slot-btn.selected { background: var(--brand); border-color: var(--brand); color: var(--brand-text); font-weight: 700; }
.booking-form-mini { display: flex; flex-direction: column; gap: .5rem; margin-top: .4rem; }
.booking-form-mini h4 { margin: 0 0 .2rem; font-size: .9rem; }
.booking-form-mini input,
.booking-form-mini select {
  width: 100%;
  padding: .6rem .75rem;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  font-size: .88rem;
  color: var(--ink);
  transition: border-color .15s;
}
.booking-form-mini input:focus,
.booking-form-mini select:focus { outline: none; border-color: var(--brand); }
.booking-form-mini .btn { margin-top: .2rem; font-size: .88rem; width: 100%; text-align: center; }
.booking-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: .4rem;
  height: 100%;
  padding: 1rem;
}
.success-check {
  width: 52px; height: 52px;
  background: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.booking-success h4 { margin: 0; font-size: 1.1rem; }
.success-detail { margin: 0; font-weight: 600; font-size: .9rem; }
.success-hint { margin: 0; font-size: .82rem; color: var(--muted); }

/* ── Form (kept for reference) ── */
label { display: block; font-size: .92rem; font-weight: 500; margin-bottom: .8rem; color: var(--ink); }
input, select {
  width: 100%;
  margin-top: .3rem;
  padding: .75rem .9rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--bg);
  font-size: .95rem;
  color: var(--ink);
  transition: border-color .15s;
}
input:focus, select:focus { outline: none; border-color: var(--brand); }

/* ── Calendly Tabs ── */
.cal-tab-btns { display: flex; gap: .5rem; margin-bottom: 1rem; }
.cal-tab-btn {
  padding: .6rem 1.3rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: .95rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--muted);
  transition: all .15s;
}
.cal-tab-btn.active { background: var(--brand); border-color: var(--brand); color: var(--brand-text); }
.cal-tab-btn:hover:not(.active) { border-color: var(--brand); color: var(--ink); }
.cal-tab-panel { display: none; }
.cal-tab-panel.active { display: block; }

/* ── Roadmap ── */
.timeline { display: grid; gap: .8rem; margin-top: 1.5rem; }
.timeline > div {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: baseline;
  gap: .6rem;
}
.timeline > div strong { color: var(--ink); white-space: nowrap; }

/* ── Dashboard Page ── */
.dash-title { margin: 0 0 .4rem; font-size: clamp(1.8rem,3vw,2.4rem); }
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: .8rem;
  margin: 1rem 0 1.2rem;
}
.kpi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: .8rem .9rem;
}
.kpi p { margin: 0; color: var(--muted); font-size: .8rem; }
.kpi strong { font-size: 1.5rem; }
.dash-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1rem;
}
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem;
}
.panel-head h2 { margin: 0; font-size: 1.05rem; }
.panel-head span { color: var(--muted); font-size: .78rem; }
.calendar-panel { grid-column: span 3; }
.apple-calendar {
  margin-top: .8rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.cal-row {
  display: grid;
  grid-template-columns: repeat(7, minmax(0,1fr));
}
.cal-head span {
  background: #f6f2e5;
  padding: .55rem;
  font-size: .78rem;
  font-weight: 700;
  text-align: center;
  border-right: 1px solid var(--line);
}
.cal-head span:last-child { border-right: 0; }
.slot {
  min-height: 64px;
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: .5rem;
  font-size: .78rem;
  background: #fffef9;
}
.slot:last-child { border-right: 0; }
.slot.empty { color: #b2a996; }
.quick-list { margin: .7rem 0 0; padding-left: 1rem; color: var(--muted); }
.quick-list li { margin: .35rem 0; }

/* ── Testimonials ── */
.testimonials-section { background: linear-gradient(160deg, #1a1810 0%, #2d2416 100%); }
.testimonials-section h2 { color: #fff; }
.testimonials-section .muted { color: rgba(255,255,255,.5); }
.testimonials-section .eyebrow { background: var(--brand); color: var(--brand-text); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
.tcard {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  transition: transform .2s, border-color .2s;
}
.tcard:hover { transform: translateY(-4px); border-color: rgba(245,197,24,.4); }
.tcard--featured {
  background: rgba(245,197,24,.08);
  border-color: rgba(245,197,24,.3);
}
.tcard-stars { color: var(--brand); font-size: 1rem; letter-spacing: .05em; }
.tcard-title { margin: 0; font-size: 1rem; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: .03em; }
.tcard-body { margin: 0; font-size: .92rem; color: rgba(255,255,255,.65); line-height: 1.65; flex: 1; }
.tcard-author { display: flex; align-items: center; gap: .75rem; margin-top: .4rem; }
.tcard-author strong { color: #fff; font-size: .92rem; }
.tcard-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
  letter-spacing: .03em;
}
.tcard-avatar--pink { background: #e879a0; }
.tcard-avatar--gold { background: var(--brand); color: var(--brand-text); }
.tcard-avatar--orange { background: #f97316; }
@media (max-width: 700px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ── Retreat Section ── */
.retreat-section { background: linear-gradient(160deg, #fff8e1 0%, #faf9f6 50%); }
.retreat-hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: start; margin-bottom: 2rem; }
.retreat-text h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: .4rem 0 .8rem; }
.retreat-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.rbadge { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: .3rem .8rem; font-size: .82rem; font-weight: 600; }
.retreat-pricing {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}
.retreat-pricing h3 { margin: 0 0 1rem; }
.price-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-bottom: .8rem; }
.price-tier {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem;
  position: relative;
}
.price-tier.vip { border-color: var(--brand); background: #fffde8; }
.tier-badge {
  position: absolute; top: -.6rem; left: 1rem;
  background: var(--brand); color: var(--brand-text);
  font-size: .72rem; font-weight: 700;
  padding: .15rem .6rem; border-radius: 20px;
  letter-spacing: .05em;
}
.tier-name { font-weight: 700; font-size: .9rem; margin-bottom: .3rem; }
.tier-price { font-size: 1.3rem; font-weight: 800; }
.tier-price span { font-size: .8rem; font-weight: 500; color: var(--muted); }
.tier-detail { font-size: .78rem; color: var(--muted); margin-top: .3rem; }
.tier-note { font-size: .8rem; color: var(--muted); margin: 0; }
.retreat-includes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.5rem;
}
.ri-col h4 { margin: 0 0 .7rem; font-size: .95rem; }
.ri-col ul { list-style: none; padding: 0; margin: 0; }
.ri-col li { font-size: .88rem; color: var(--muted); padding: .25rem 0; }
.retreat-card { border-color: var(--brand) !important; background: #fffde8 !important; }

/* ── Popup ── */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(26,24,16,.55);
  backdrop-filter: blur(4px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.popup-overlay.visible { opacity: 1; pointer-events: all; }
.popup-card {
  background: var(--card);
  border-radius: 20px;
  padding: 2rem;
  max-width: 420px;
  width: 90%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  transform: translateY(16px);
  transition: transform .3s;
}
.popup-overlay.visible .popup-card { transform: translateY(0); }
.popup-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none;
  font-size: 1.1rem; cursor: pointer; color: var(--muted);
  line-height: 1; padding: .2rem;
}
.popup-close:hover { color: var(--ink); }
.popup-badge {
  display: inline-block;
  background: var(--brand); color: var(--brand-text);
  font-size: .75rem; font-weight: 700;
  padding: .25rem .8rem; border-radius: 20px;
  letter-spacing: .06em; text-transform: uppercase;
  margin-bottom: .7rem;
}
.popup-card h3 { margin: 0 0 .3rem; font-size: 1.4rem; }
.popup-sub { margin: 0 0 .7rem; font-size: .85rem; color: var(--muted); font-weight: 600; }
.popup-body { margin: 0 0 .8rem; font-size: .92rem; color: var(--muted); }
.popup-price { font-size: .9rem; margin-bottom: 1.1rem; color: var(--ink); }
.popup-actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.popup-actions .btn-ghost { font-size: .88rem; }

/* ── Footer ── */
footer {
  padding: 3.5rem 0 2rem;
  background: var(--dark);
  border-top: 3px solid var(--brand);
}
.foot { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.foot-brand strong { color: #fff; font-size: 1.1rem; display: block; margin-bottom: .25rem; }
.foot-brand p { color: #a09880; margin: 0; font-size: .88rem; }
.foot-links { display: flex; gap: .7rem; flex-wrap: wrap; align-items: center; }
footer .btn { background: var(--brand); color: var(--brand-text); }
footer .btn:hover { background: var(--brand-dark); }
.foot-copy { width: 100%; text-align: center; color: #5a5240; font-size: .78rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid #2b2618; }

/* ── Shopify Product Fixes ── */
.shopify-buy__product__actual-price {
  color: var(--ink) !important;
  font-weight: 700 !important;
}
.shopify-buy__product__compare-price {
  text-decoration: line-through !important;
  color: var(--muted) !important;
  font-size: .9em !important;
}
/* Fix orphan card with 5-item grid */
.shopify-buy__product {
  max-width: calc(20% - 20px) !important;
  width: calc(20% - 20px) !important;
}
@media (max-width: 960px) {
  .shopify-buy__product {
    max-width: calc(33.333% - 20px) !important;
    width: calc(33.333% - 20px) !important;
  }
}
@media (max-width: 700px) {
  .shopify-buy__product {
    max-width: calc(50% - 20px) !important;
    width: calc(50% - 20px) !important;
  }
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .kpi-grid { grid-template-columns: repeat(2, 1fr); }
  .dash-layout { grid-template-columns: 1fr 1fr; }
  .calendar-panel { grid-column: span 2; }
}
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 300px 1fr 280px; }
  .hero-image-wrap--left { margin-left: -1.5rem; }
}
@media (max-width: 700px) {
  .hero { padding: 3.5rem 0 0; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-image-wrap--left { display: none; }
  .hero-image-wrap--right { justify-content: center; }
  .hero-content { padding-bottom: 1rem; }
  .hero-portrait { max-width: 260px; margin: 0 auto; }
  .split, .dash-layout { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .kpi-grid { grid-template-columns: 1fr 1fr; }
  .calendar-panel { grid-column: span 1; }
  nav { display: none; }
  .booking-cal { grid-template-columns: 1fr; }
  .cal-slots { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 1rem; }
  .retreat-hero { grid-template-columns: 1fr; }
  .retreat-includes { grid-template-columns: 1fr; }
  .price-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .cards { grid-template-columns: 1fr; }
}
