﻿/* ============================================================
   THE PSYRCLE â€” thepsyrcle.css
   Master stylesheet. All class names match home_page.html.
   Color: #682f19 terracotta primary.
   Fonts: Playfair Display (serif) + DM Sans (sans)
   ============================================================ */

/* â”€â”€ TOKENS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  --tc:         #682f19;
  --tc-light:   #8a4530;
  --tc-tint:    rgba(104, 47, 25, 0.08);
  --tc-mid:     #8a4530;
  --cream:      #FFFEF9;
  --sand:       #FFFFFF;
  --linen:      rgba(0, 0, 0, 0.08);
  --stone:      rgba(0, 0, 0, 0.64);
  --drift:      rgba(0, 0, 0, 0.75);
  --bark:       #000000;
  --espresso:   #000000;
  --white:      #FFFFFF;
  --black:      #1a1a1a;
  --mid:        #666666;
  --tc4:        rgba(104, 47, 25, 0.10);
  --gold:       #682F19;

  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'DM Sans', system-ui, sans-serif;

  --ease:   cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Fixed nav clearance â€” keep text below the nav bar */
  --nav-h: 82px;
}

/* â”€â”€ RESET â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 300;
  background: var(--cream);
  color: var(--bark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
::selection { background: var(--tc); color: var(--white); }

/* â”€â”€ NAV â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 64px;
  transition: background 0.5s var(--ease),
              padding 0.5s var(--ease),
              box-shadow 0.5s var(--ease);
}

.hero-nav.scrolled {
  background: rgba(253,250,246,0.97);
  backdrop-filter: blur(12px);
  padding-top: 16px;
  padding-bottom: 16px;
  box-shadow: 0 2px 24px rgba(30,15,7,0.08);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.4s;
}
.hero-nav.scrolled .nav-logo { color: var(--espresso); }

.nav-links {
  display: flex;
  gap: 44px;
}
.nav-links a {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  position: relative;
  padding-bottom: 3px;
  transition: color 0.3s;
}
.hero-nav.scrolled .nav-links a { color: var(--drift); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--tc);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--white); }
.hero-nav.scrolled .nav-links a:hover { color: var(--tc); }

.nav-reserve {
  font-size: 0.68rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 11px 26px;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  transition: all 0.3s;
}
.hero-nav.scrolled .nav-reserve {
  background: var(--tc);
  border-color: var(--tc);
  color: var(--white);
}
.nav-reserve:hover {
  background: var(--tc);
  border-color: var(--tc);
  color: var(--white) !important;
}

/* â”€â”€ HAMBURGER BUTTON â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav-hamburger {
  display: none;           /* hidden on desktop */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.nav-hamburger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--white);
  transition: transform 0.35s var(--ease), opacity 0.25s, background 0.3s;
  transform-origin: center;
}

.hero-nav.scrolled .nav-hamburger span { background: var(--bark); }

/* Animate to Ã— when open */
.nav-hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* â”€â”€ MOBILE OVERLAY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* â”€â”€ MOBILE DRAWER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 88vw);
  height: 100%;
  background: var(--cream);
  z-index: 400;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.38s var(--ease);
  box-shadow: -8px 0 40px rgba(30,15,7,0.15);
}

.nav-drawer.open {
  transform: translateX(0);
}

/* Header row inside drawer */
.nav-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 28px 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.nav-drawer__logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--bark) !important;
}

.nav-drawer__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--bark);
  opacity: 0.5;
  transition: opacity 0.2s;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
}

.nav-drawer__close:hover { opacity: 1; }
.nav-drawer__close svg { width: 20px; height: 20px; }

/* Nav list */
.nav-drawer__links {
  flex: 1;
  padding: 12px 0;
  list-style: none;
}

.nav-drawer__item {
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* Top-level link (no children) */
.nav-drawer__link--top {
  display: block;
  padding: 18px 28px;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bark);
  font-weight: 400;
  transition: color 0.2s, background 0.2s;
}

.nav-drawer__link--top:hover {
  color: var(--tc);
  background: rgba(104,47,25,0.04);
}

/* Toggle button (parent items with children) */
.nav-drawer__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bark);
  font-weight: 400;
  text-align: left;
  transition: color 0.2s, background 0.2s;
}

.nav-drawer__toggle:hover { color: var(--tc); background: rgba(104,47,25,0.04); }
.nav-drawer__toggle[aria-expanded="true"] { color: var(--tc); }

.nav-drawer__arrow {
  font-size: 1.2rem;
  line-height: 1;
  color: var(--tc);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.nav-drawer__toggle[aria-expanded="true"] .nav-drawer__arrow {
  transform: rotate(45deg);
}

/* Sub-menu (accordion) */
.nav-drawer__sub {
  list-style: none;
  background: rgba(104,47,25,0.03);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.nav-drawer__sub.open {
  max-height: 400px;
}

.nav-drawer__link {
  display: block;
  padding: 13px 28px 13px 40px;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.55);
  font-weight: 400;
  transition: color 0.2s;
}

.nav-drawer__link:hover { color: var(--tc); }

.nav-drawer__link--overview {
  color: var(--tc);
  padding-left: 28px;
  font-weight: 400;
  border-bottom: 1px solid rgba(104,47,25,0.1);
}

/* CTA at drawer bottom */
.nav-drawer__cta {
  padding: 28px;
  border-top: 1px solid rgba(0,0,0,0.08);
  flex-shrink: 0;
}

.nav-drawer__cta .btn { width: 100%; justify-content: center; }

/* â”€â”€ NAV DROPDOWNS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav-item {
  position: relative;
}

/* Hidden by default â€” display:none is the most reliable cross-browser approach */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;           /* flush â€” no gap so cursor never leaves hover area */
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: rgba(253,250,246,0.98);
  backdrop-filter: blur(16px);
  border-top: 2px solid var(--tc);
  box-shadow: 0 12px 40px rgba(30,15,7,0.12);
  padding-top: 14px;   /* visual breathing room lives inside the element */
  padding-bottom: 8px;
  list-style: none;
  z-index: 500;
}

/* Fade in when revealed */
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  display: block;
  animation: dropFade 0.18s ease forwards;
}

@keyframes dropFade {
  from { opacity: 0; transform: translateX(-50%) translateY(-6px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Arrow notch â€” sits inside the padding-top area, pointing up */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px; height: 6px;
  background: var(--tc);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

/* Dropdown link styles â€” override the .nav-links a wildcard */
.nav-dropdown li a {
  display: block;
  padding: 10px 22px;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--drift) !important;
  font-weight: 400;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  /* Reset the underline animation from .nav-links a::after */
  position: static;
  padding-bottom: 10px;
}

.nav-dropdown li a::after { display: none !important; }

.nav-dropdown li a:hover {
  color: var(--tc) !important;
  background: rgba(104,47,25,0.05);
}

/* â”€â”€ HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--espresso); /* fallback if no image */
}

/* The actual background image rendered by Wagtail {% image %} */
.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 16s var(--ease) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.07); }
  to   { transform: scale(1.0); }
}

/* Gradient overlay */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    165deg,
    rgba(30,15,7,0.18) 0%,
    rgba(30,15,7,0.72) 100%
  );
}

/* Content sits above overlay */
.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--nav-h) 64px 100px;
  max-width: 800px;
  opacity: 0;
  animation: riseUp 1.2s 0.5s var(--ease) forwards;
}
@keyframes riseUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--tc-mid);
  font-weight: 400;
  margin-bottom: 18px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  font-weight: 400;
  line-height: 1.07;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.hero-title em { font-style: italic; color: var(--tc-mid); }

.hero-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin-bottom: 38px;
  font-weight: 300;
}

/* richtext content inside hero */
.hero-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin-bottom: 38px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* â”€â”€ BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn-primary,
.btn-dark,
.btn-outline,
.btn-ghost,
.btn-white,
.btn-fill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding: 14px 34px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-decoration: none;
}

.btn-primary {
  background: var(--tc);
  color: var(--white);
  border-color: var(--tc);
}
.btn-primary:hover {
  background: var(--tc-light);
  border-color: var(--tc-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(104,47,25,0.3);
}

.btn-dark {
  background: var(--espresso);
  color: var(--white);
  border-color: var(--espresso);
}
.btn-dark:hover { background: var(--bark); border-color: var(--bark); }

.btn-outline {
  color: var(--tc);
  border-color: var(--tc);
}
.btn-outline:hover { background: var(--tc); color: var(--white); }

.btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--tc);
  border-color: var(--white);
}

/* White button â€” for use on dark/photo backgrounds */
.btn-white {
  background: var(--white);
  color: var(--tc);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

/* Fill = terracotta solid (alias used in CMS block data) */
.btn-fill {
  background: var(--tc);
  color: var(--white);
  border-color: var(--tc);
}
.btn-fill:hover {
  background: var(--tc-light);
  border-color: var(--tc-light);
}

/* Outline buttons on dark/photo backgrounds â†’ invert to white */
.cta-band--dark .btn-outline,
.cta-band--terracotta .btn-outline,
.cta-band--black .btn-outline {
  color: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.6);
}
.cta-band--dark .btn-outline:hover,
.cta-band--terracotta .btn-outline:hover,
.cta-band--black .btn-outline:hover {
  background: rgba(255,255,255,0.14);
  color: var(--white);
  border-color: var(--white);
}

/* Split Section â€” force grid, never stack on desktop */
.split {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  align-items: stretch;
}

.split-img {
  overflow: hidden;
  position: relative;
  min-height: 400px;
}

.split-img img {
  position: absolute;
  inset: -15% 0;
  width: 100%;
  object-fit: cover;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 90px) clamp(40px, 6vw, 72px);
}

/* Reversed layout */
.split--flip {
  direction: rtl;
}
.split--flip > * {
  direction: ltr;
}

/* â”€â”€ INTRO STRIP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.intro-strip {
  background: var(--espresso);
  padding: 80px 64px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: center;
}

.intro-label {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  line-height: 1.15;
  white-space: nowrap;
}

.intro-columns {
  display: flex;
  gap: 40px;
}

.intro-text {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(253,250,246,0.72);
  font-weight: 200;
}
.intro-text p { color: rgba(253,250,246,0.72); max-width: 100%; }

/* â”€â”€ SECTION HEADERS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-header {
  text-align: center;
  padding: 90px 64px 52px;
}

.section-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--tc);
  font-weight: 400;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.15;
}
.section-title em { font-style: italic; color: var(--tc); }

.section-rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 22px auto 0;
}

/* â”€â”€ RETREAT CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.retreats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 64px 90px;
  gap: 0;
}

.retreat-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.retreat-card-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
  filter: brightness(0.85);
}
.retreat-card:hover .retreat-card-img {
  transform: scale(1.05);
  filter: brightness(0.7);
}

.retreat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,15,7,0.88) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: background 0.4s;
}
.retreat-card:hover .retreat-card-overlay {
  background: linear-gradient(to top, rgba(104,47,25,0.8) 0%, rgba(30,15,7,0.2) 55%);
}

.retreat-tag {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tc-mid);
  margin-bottom: 8px;
  font-weight: 400;
}

.retreat-name {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 6px;
}

.retreat-desc {
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}
.retreat-card:hover .retreat-desc { max-height: 120px; }
/* richtext wraps content in <p> */
.retreat-desc p { color: rgba(255,255,255,0.7); max-width: 100%; }

.retreat-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s 0.1s;
}
.retreat-card:hover .retreat-link {
  opacity: 1;
  transform: translateY(0);
}

/* â”€â”€ IMAGE SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.image-section {
  position: relative;
  overflow: hidden;
}
.philosophy-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
.image-caption {
  text-align: center;
  font-size: 0.8rem;
  color: var(--stone);
  letter-spacing: 0.12em;
  padding: 16px 64px;
  background: var(--sand);
}

/* â”€â”€ CONTENT PARAGRAPH â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.content-paragraph {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 64px;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--drift);
}
.content-paragraph p { max-width: 100%; color: var(--drift); }

/* â”€â”€ TESTIMONIAL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testimonial {
  background: var(--espresso);
  padding: 110px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.testimonial::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: clamp(14rem, 28vw, 22rem);
  color: rgba(255,255,255,0.025);
  position: absolute;
  top: -4rem; left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}

.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
  max-width: 840px;
  margin: 0 auto 32px;
  position: relative;
}

.testimonial-attr {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

/* â”€â”€ UPCOMING â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.upcoming {
  padding: 90px 64px;
  background: var(--cream);
}

.upcoming-list {
  border-top: 1px solid var(--linen);
  margin-top: 48px;
}

.upcoming-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 48px;
  padding: 28px 0;
  border-bottom: 1px solid var(--linen);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s var(--ease);
}
.upcoming-item:hover {
  background: var(--tc-tint);
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 -20px;
}

.upcoming-date {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--drift);
  line-height: 1.4;
}

.upcoming-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--espresso);
  margin-bottom: 4px;
}

.upcoming-sub {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--stone);
}

.upcoming-arrow {
  font-size: 1.3rem;
  color: var(--tc);
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.upcoming-item:hover .upcoming-arrow { transform: translateX(6px); }

/* â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
footer {
  background: var(--espresso);
  padding: 90px 64px 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 0.82rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.32);
  max-width: 240px;
}

.footer-col-title {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col ul a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.38);
  transition: color 0.3s;
  font-weight: 300;
}
.footer-col ul a:hover { color: var(--tc-mid); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.1em;
}

.footer-socials { display: flex; gap: 24px; }
.footer-socials a {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  transition: color 0.3s;
}
.footer-socials a:hover { color: var(--tc-mid); }

/* â”€â”€ CONTENT PAGE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.content-page {
  max-width: 860px;
  margin: 120px auto 80px;
  padding: 0 40px;
}
.page-subtitle {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--drift);
  margin-bottom: 32px;
}

/* Drawer + overlay are mobile-only â€” hide completely on desktop */
@media (min-width: 769px) {
  .nav-drawer,
  .nav-overlay { display: none !important; }
}

/* â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .retreats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 62px; }
  .hero-nav { padding: 20px 24px; }
  .nav-links { display: none; }
  .nav-reserve { display: none; }
  .nav-hamburger { display: flex; }
  .hero-content { padding: var(--nav-h) 24px 80px; }
  .intro-strip { grid-template-columns: 1fr; padding: 60px 24px; gap: 28px; }
  .intro-columns { flex-direction: column; }
  .section-header { padding: 64px 24px 40px; }
  .retreats-grid { grid-template-columns: 1fr; padding: 0 24px 60px; }
  .retreat-card-img { height: 360px; }
  .upcoming { padding: 64px 24px; }
  .upcoming-item { grid-template-columns: 100px 1fr; }
  .upcoming-arrow { display: none; }
  .testimonial { padding: 80px 24px; }
  footer { padding: 60px 24px 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .hero-actions { flex-direction: column; }
  .content-paragraph { padding: 32px 24px; }
}


/* ============================================================
   THE PSYRCLE â€” blocks.css
   CSS for all 19 StreamField blocks.
   Paste this at the bottom of thepsyrcle.css
   ============================================================ */


/* â”€â”€ SHARED UTILITIES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(24px, 6vw, 80px);
  padding-right: clamp(24px, 6vw, 80px);
}

.container--text {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.section--sm {
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--tc);
  font-weight: 400;
  margin-bottom: 12px;
}

.rule {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--tc-mid);
  margin: 16px 0;
}

.rule-left  { margin-left: 0; }
.rule-right { margin-right: 0; }

.section-header {
  margin-bottom: 52px;
}

.section-header--center {
  text-align: center;
}

.section-header--center .rule {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.12;
}

.section-title em {
  font-style: italic;
  color: var(--tc);
}

/* background helpers */
.bg-cream      { background: var(--cream); }
.bg-white      { background: var(--white); }
.bg-sand       { background: #ede2d4; }
.bg-dark       { background: var(--black); }
.bg-terracotta { background: var(--tc); }
.bg-tint       { background: var(--tc4); }

/* fade-in scroll animation */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-in.show { opacity: 1; transform: translateY(0); }
.fade-in:nth-child(2) { transition-delay: 80ms; }
.fade-in:nth-child(3) { transition-delay: 160ms; }
.fade-in:nth-child(4) { transition-delay: 240ms; }
.fade-in:nth-child(5) { transition-delay: 320ms; }
.fade-in:nth-child(6) { transition-delay: 400ms; }

.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.65s var(--ease), transform 0.65s var(--ease); }
.stagger > *.show { opacity: 1; transform: translateY(0); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}


/* â”€â”€ 1. HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

/* Height variants */
.hero--full   { height: 100vh; min-height: 680px; }
.hero--large  { height: 85vh;  min-height: 560px; }
.hero--medium { height: 65vh;  min-height: 420px; }

/* Background image/video layer */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 18s var(--ease) forwards;
}

@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}

.hero-bg--fallback {
  background: linear-gradient(160deg, #2a1a10, #1e0f07);
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.overlay--light  .hero-overlay,
.hero--light .hero-overlay  { background: linear-gradient(165deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.38) 100%); }

.overlay--medium .hero-overlay,
.hero-overlay { background: linear-gradient(165deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.65) 100%); }

.overlay--dark   .hero-overlay,
.hero--dark .hero-overlay  { background: linear-gradient(165deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.82) 100%); }

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: var(--nav-h) clamp(24px, 6vw, 72px) clamp(64px, 10vh, 110px);
  max-width: 860px;
  opacity: 0;
  animation: heroRise 1.3s 0.4s var(--ease) forwards;
}

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

/* Center variant */
.hero--center .hero-content {
  text-align: center;
  margin: 0 auto;
  padding-bottom: clamp(64px, 12vh, 140px);
  align-self: center;
}

.hero-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--tc-mid);
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 400;
  line-height: 1.07;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}

.hero-title em { font-style: italic; color: var(--tc-mid); }

.hero-sub {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-style: italic;
  color: rgba(255,255,255,0.82);
  margin-bottom: 16px;
  font-weight: 300;
}

.hero-body {
  font-size: 0.97rem;
  line-height: 1.88;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  margin-bottom: 38px;
  font-weight: 300;
}

.hero--center .hero-body {
  margin-left: auto;
  margin-right: auto;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero--center .hero-btns {
  justify-content: center;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: clamp(24px, 5vw, 72px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.scroll-text {
  font-size: 0.56rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.15);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 40%;
  background: var(--tc-mid);
  animation: scrollDrip 2.2s ease-in-out infinite;
}

@keyframes scrollDrip {
  0%   { transform: translateY(-100%); }
  100% { transform: translateY(320%); }
}


/* â”€â”€ 2. SLIM BANNER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.slim-banner {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--black);
}

.slim-banner--sm { height: 240px; }
.slim-banner--md { height: 360px; }
.slim-banner--lg { height: 480px; }

.slim-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 18s var(--ease) forwards;
}

.slim-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.65) 100%);
}

.slim-banner-content {
  position: relative;
  z-index: 2;
  padding: var(--nav-h) clamp(24px, 6vw, 72px) clamp(40px, 6vh, 64px);
}

.slim-banner-content .hero-title {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
}


/* â”€â”€ 3. CAROUSEL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.carousel {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.carousel--hero   { height: 100vh; min-height: 600px; }
.carousel--large  { height: 600px; }
.carousel--medium { height: 420px; }

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.7s var(--ease);
}

.carousel-slide {
  flex: 0 0 100%;
  position: relative;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: var(--white);
  padding: 32px 40px 20px;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.carousel-cta {
  position: absolute;
  bottom: 48px;
  left: clamp(24px, 6vw, 72px);
  z-index: 2;
}

.carousel-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  padding: 0;
}

.carousel-dot.active {
  background: var(--white);
  width: 20px;
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.3s;
}

.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }
.carousel-prev:hover,
.carousel-next:hover { background: rgba(104,47,25,0.7); border-color: var(--tc-mid); }


/* â”€â”€ 4. RICH TEXT BLOCK â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.rich-text-block {
  padding: clamp(48px, 7vw, 80px) clamp(24px, 6vw, 80px);
}

.rich-text-block h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 16px;
  margin-top: 40px;
  line-height: 1.2;
}

.rich-text-block h3 {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 12px;
  margin-top: 32px;
}

.rich-text-block p {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(0,0,0,0.65);
  margin-bottom: 20px;
  max-width: 72ch;
}

.rich-text-block ul,
.rich-text-block ol {
  padding-left: 24px;
  margin-bottom: 20px;
  color: rgba(0,0,0,0.65);
}

.rich-text-block li {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 8px;
}

.rich-text-block a {
  color: var(--tc);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.3s;
}

.rich-text-block a:hover { color: var(--tc-light); }

.rich-text-block blockquote {
  border-left: 3px solid var(--tc-mid);
  padding: 12px 24px;
  margin: 28px 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(0,0,0,0.6);
}


/* â”€â”€ 5. PULL QUOTE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.pull-quote {
  padding: clamp(48px, 7vw, 80px) clamp(24px, 6vw, 80px);
  max-width: 860px;
}

/* Border variant */
.pull-quote--border {
  border-left: 3px solid var(--tc);
  margin: 0 clamp(24px, 8vw, 120px);
  padding: 20px 36px;
}

/* Centered variant */
.pull-quote--centered {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(64px, 8vw, 100px) clamp(24px, 6vw, 80px);
}

/* Dark variant */
.pull-quote--dark {
  background: var(--black);
  text-align: center;
  max-width: 100%;
  padding: clamp(72px, 10vw, 120px) clamp(24px, 6vw, 80px);
}

.pull-quote-text {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: var(--black);
  margin-bottom: 20px;
  max-width: 100%;
}

.pull-quote--dark .pull-quote-text { color: var(--white); }

.pull-quote-attr {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tc);
  font-style: normal;
}

.pull-quote--dark .pull-quote-attr { color: var(--tc-mid); }


/* â”€â”€ 6. ACCORDION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.accordion-section {
  padding: clamp(64px, 8vw, 100px) clamp(24px, 6vw, 80px);
}

.accordion {
  border-top: 1px solid rgba(0,0,0,0.1);
  margin-top: 40px;
}

.accordion-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 400;
  color: var(--black);
  transition: color 0.3s;
}

.accordion-trigger:hover { color: var(--tc); }

.accordion-icon {
  font-size: 1.4rem;
  color: var(--tc);
  flex-shrink: 0;
  margin-left: 24px;
  transition: transform 0.3s var(--ease);
  font-style: normal;
}

.accordion-trigger[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0;
  font-size: 0.97rem;
  line-height: 1.88;
  color: rgba(0,0,0,0.62);
  transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              padding    0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.accordion-body.open {
  max-height: 800px;
  padding: 16px 0 28px;
}

.accordion-body p { max-width: 72ch; }


/* â”€â”€ 7. SPLIT SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  align-items: stretch;
}

/* Reversed â€” image on right */
.split--flip {
  direction: rtl;
}
.split--flip > * {
  direction: ltr;
}

/* Image side */
.split-img {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.split-img img {
  position: absolute;
  inset: -15% 0;
  width: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.split-img--zoom:hover img,
.split:hover .split-img img {
  transform: scale(1.04);
}

/* Text side */
.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 96px) clamp(40px, 6vw, 80px);
}

/* Background variants for text side */
.split-content.bg-sand  { background: #ede2d4; }
.split-content.bg-tint  { background: var(--tc4); }
.split-content.bg-white { background: var(--white); }
.split-content.bg-cream { background: var(--cream); }
.split-content.bg-dark  { background: var(--black); }

.split-content.bg-dark .eyebrow      { color: var(--tc-mid); }
.split-content.bg-dark .section-title { color: var(--white); }
.split-content.bg-dark .split-body   { color: rgba(255,255,255,0.6); }
.split-content.bg-dark .rule         { background: var(--tc-mid); }

.split-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
  margin: 8px 0 18px;
}

.split-title em { font-style: italic; color: var(--tc); }

.split-body {
  font-size: 0.97rem;
  line-height: 1.92;
  color: rgba(0,0,0,0.6);
  margin-bottom: 32px;
  font-weight: 300;
}

.split-body p { max-width: 100%; color: inherit; }

.split-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}


/* â”€â”€ 8. COLUMNS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.columns-section {
  padding: clamp(72px, 9vw, 110px) clamp(24px, 6vw, 80px);
}

.cols {
  display: grid;
  gap: 40px;
  margin-top: 48px;
}

.cols--2 { grid-template-columns: repeat(2, 1fr); }
.cols--3 { grid-template-columns: repeat(3, 1fr); }

.col-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.col-icon {
  width: 44px; height: 44px;
  color: var(--tc);
}

.col-icon svg { width: 100%; height: 100%; }

.col-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--black);
  line-height: 1.2;
}

.col-body {
  font-size: 0.95rem;
  line-height: 1.88;
  color: rgba(0,0,0,0.6);
  flex: 1;
}

.col-body p { max-width: 100%; color: inherit; }


/* â”€â”€ 9. SPACER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.spacer { display: flex; align-items: center; }
.spacer--xs { height: 20px;  }
.spacer--sm { height: 40px;  }
.spacer--md { height: 80px;  }
.spacer--lg { height: 120px; }
.spacer--xl { height: 160px; }

.spacer-rule {
  width: 60px; height: 1px;
  background: rgba(0,0,0,0.1);
  border: none;
  margin: 0 auto;
}


/* â”€â”€ 10. OVERLAY CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.cards-section {
  padding: clamp(72px, 9vw, 110px) clamp(24px, 6vw, 80px);
}

.cards-grid {
  display: grid;
  gap: 20px;
}

.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Overlay card */
.card--overlay {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}

.card--overlay .card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s;
  filter: brightness(0.82);
}

.card--overlay:hover .card-img {
  transform: scale(1.06);
  filter: brightness(0.65);
}

.card-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, transparent 55%);
  transition: background 0.45s var(--ease);
}

.card--overlay:hover .card-grad {
  background: linear-gradient(to top, rgba(104,47,25,0.78) 0%, rgba(0,0,0,0.25) 55%);
}

.card-body {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.card-tag {
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--tc-mid);
  font-weight: 400;
  margin-bottom: 6px;
}

.card-title {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400;
  color: var(--tc);
  line-height: 1.15;
  margin-bottom: 6px;
}

.card-loc {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: #00000075;
  margin-bottom: 12px;
}

.card-reveal {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s var(--ease);
}

.card--overlay:hover .card-reveal { max-height: 140px; }

.card-excerpt {
  font-size: 0.84rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  margin-bottom: 12px;
}

.card-excerpt p { color: rgba(255,255,255,0.72); max-width: 100%; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.6rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 400;
  transition: gap 0.3s var(--ease);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.4s 0.08s var(--ease);
}

.card--overlay:hover .card-link {
  opacity: 1;
  transform: translateY(0);
}

.cards-cta {
  text-align: center;
  margin-top: 52px;
}


/* â”€â”€ 11. STANDARD CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.standard-cards {
  padding: clamp(72px, 9vw, 110px) clamp(24px, 6vw, 80px);
}

.std-cards-grid {
  display: grid;
  gap: 24px;
  margin-top: 48px;
}

.std-cards-grid--2 { grid-template-columns: repeat(2, 1fr); }
.std-cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.std-cards-grid--4 { grid-template-columns: repeat(4, 1fr); }

.std-card {
  background: var(--white);
  border: 0.5px solid rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.std-card:hover {
  box-shadow: 0 8px 40px rgba(104,47,25,0.14);
  transform: translateY(-3px);
}

.std-card-img-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.std-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.std-card:hover .std-card-img-wrap img {
  transform: scale(1.05);
}

.std-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.card-excerpt-std {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(0,0,0,0.55);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-price {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--tc);
  margin-top: auto;
  padding-top: 8px;
}


/* â”€â”€ 12. LIST ROWS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.upcoming {
  padding: clamp(72px, 9vw, 110px) clamp(24px, 6vw, 80px);
}

.upcoming-list {
  border-top: 1px solid rgba(0,0,0,0.1);
  margin-top: 48px;
}

.upcoming-item {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s var(--ease);
}

.upcoming-item:hover {
  background: var(--tc4);
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 -20px;
}

.upcoming-date {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: rgba(0,0,0,0.5);
  line-height: 1.4;
}

.upcoming-date span {
  display: block;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: rgba(0,0,0,0.35);
}

.upcoming-name {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 4px;
}

.upcoming-sub {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: rgba(0,0,0,0.42);
}

.upcoming-spots {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--tc);
  border: 1px solid var(--tc-mid);
  padding: 4px 12px;
  margin-top: 8px;
}

.upcoming-arrow {
  font-size: 1.2rem;
  color: var(--tc);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.upcoming-item:hover .upcoming-arrow { transform: translateX(6px); }

.upcoming-cta {
  text-align: center;
  margin-top: 48px;
}


/* â”€â”€ 13. FULL IMAGE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.full-image {
  overflow: hidden;
  position: relative;
}

.full-image--sm   { height: 320px; }
.full-image--md   { height: 480px; }
.full-image--lg   { height: 640px; }
.full-image--full { height: 100vh; }

.full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.9s var(--ease);
}

.full-image--zoom:hover img { transform: scale(1.04); }

.full-image--contained {
  max-width: 1200px;
  margin: 0 auto;
}

.image-caption {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(0,0,0,0.45);
  letter-spacing: 0.12em;
  padding: 14px clamp(24px, 6vw, 80px);
  background: rgba(0,0,0,0.03);
}


/* â”€â”€ 14. VIDEO EMBED â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.video-wrap {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.video-wrap--16x9 { aspect-ratio: 16/9; }
.video-wrap--9x16 { aspect-ratio: 9/16; max-width: 400px; margin: 0 auto; }
.video-wrap--1x1  { aspect-ratio: 1/1; }
.video-wrap--4x3  { aspect-ratio: 4/3; }

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Cover image with play button */
.video-cover {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: filter 0.3s;
}

.video-cover:hover { filter: brightness(0.85); }

.video-play-btn {
  width: 72px; height: 72px;
  background: rgba(104,47,25,0.85);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform 0.3s var(--ease), background 0.3s;
}

.video-cover:hover .video-play-btn {
  transform: scale(1.1);
  background: var(--tc);
}

.video-play-btn svg {
  width: 28px; height: 28px;
  margin-left: 4px;
}


/* â”€â”€ 15. CATEGORY STRIP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.cat-strip {
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.cat-strip::-webkit-scrollbar { display: none; }

.cat-strip--sticky {
  position: sticky;
  top: 0;
  z-index: 50;
}

.cat-strip-track {
  display: flex;
  padding: 0 clamp(24px, 6vw, 80px);
}

.cat-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 36px;
  border-right: 1px solid rgba(0,0,0,0.07);
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-bottom: none;
  border-right: 1px solid rgba(0,0,0,0.07);
  transition: background 0.25s var(--ease);
  min-width: 130px;
}

.cat-item:hover,
.cat-item.active { background: var(--tc4); }

.cat-icon {
  width: 36px; height: 36px;
  color: var(--tc);
  transition: transform 0.3s var(--ease);
}

.cat-icon svg { width: 100%; height: 100%; }

.cat-item:hover .cat-icon { transform: scale(1.12); }

.cat-label {
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--black);
  text-align: center;
  font-weight: 400;
  transition: color 0.25s;
}

.cat-item:hover .cat-label,
.cat-item.active .cat-label { color: var(--tc); }


/* â”€â”€ 16. STATS STRIP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  padding: clamp(60px, 8vw, 90px) clamp(24px, 6vw, 80px);
  border-top: 1px solid rgba(0,0,0,0.07);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  gap: 24px;
}

.stats.bg-dark {
  border-color: rgba(255,255,255,0.07);
}

.stat-num {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--tc);
  line-height: 1;
  margin-bottom: 10px;
}

.stats.bg-dark .stat-num  { color: var(--tc-mid); }
.stats.bg-dark .stat-label { color: rgba(255,255,255,0.5); }

.stat-label {
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  font-weight: 400;
}


/* â”€â”€ 17. TESTIMONIAL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.testimonial {
  padding: clamp(80px, 12vw, 130px) clamp(24px, 6vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial--dark        { background: var(--black); }
.testimonial--terracotta  { background: var(--tc); }
.testimonial--black       { background: #000; }

.testimonial::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: clamp(14rem, 28vw, 22rem);
  color: rgba(255,255,255,0.03);
  position: absolute;
  top: -4rem; left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonial-inner {
  max-width: 840px;
  margin: 0 auto;
  position: relative;
}

/* Multiple testimonials â€” only active slide visible */
.testimonial-slide {
  display: none;
}

.testimonial-slide.active { display: block; }

.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 2.1rem);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 100%;
}

.testimonial-divider {
  width: 48px; height: 1px;
  background: var(--tc-mid);
  margin: 0 auto 18px;
}

.testimonial-attr {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* Dots */
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: all 0.35s var(--ease);
}

.dot.active {
  background: var(--tc-mid);
  width: 22px;
}


/* â”€â”€ 18. CTA BAND â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.cta-band {
  padding: clamp(72px, 10vw, 110px) clamp(24px, 6vw, 80px);
  text-align: center;
}

.cta-band--terracotta { background: var(--tc); }
.cta-band--dark       { background: var(--black); }
.cta-band--black      { background: #000; }
.cta-band--sand       { background: #ede2d4; }

.cta-band__eyebrow {
  color: rgba(255,255,255,0.65);
  margin-bottom: 14px;
}

.cta-band--sand .cta-band__eyebrow { color: var(--tc); }

.cta-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-title em { font-style: italic; color: rgba(255,255,255,0.65); }
.cta-band--sand .cta-title { color: var(--black); }
.cta-band--sand .cta-title em { color: var(--tc); }

.cta-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.72);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.85;
  font-weight: 300;
}

.cta-band--sand .cta-body { color: rgba(0,0,0,0.6); }

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Email form inside CTA band */
.cta-form {
  display: flex;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto;
}

.cta-input {
  flex: 1;
  padding: 14px 20px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.38);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.3s;
}

.cta-input::placeholder { color: rgba(255,255,255,0.5); }
.cta-input:focus { border-color: rgba(255,255,255,0.85); }

.cta-submit {
  padding: 14px 28px;
  background: var(--white);
  color: var(--tc);
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 400;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

.cta-submit:hover { background: var(--black); color: var(--white); }


/* â”€â”€ 19. INTRO STRIP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Centered layout */
.welcome {
  text-align: center;
  padding: clamp(72px, 10vw, 110px) clamp(24px, 6vw, 80px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
}

.welcome-rule-top {
  width: 1px; height: 72px;
  background: rgba(0,0,0,0.1);
  margin: 0 auto 56px;
}

.welcome-inner {
  max-width: 680px;
  margin: 0 auto;
}

.welcome-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 20px;
}

.welcome-title em { font-style: italic; color: var(--tc); }

.welcome-body {
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(0,0,0,0.58);
  margin-bottom: 36px;
  font-weight: 300;
}

/* Label-left layout */
.intro-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(48px, 8vw, 100px);
  align-items: center;
  padding: clamp(72px, 9vw, 110px) clamp(24px, 6vw, 80px);
}

.intro-strip.bg-dark .intro-label { color: var(--tc-mid); }
.intro-strip.bg-dark .eyebrow     { color: var(--tc-mid); }
.intro-strip.bg-dark .section-title { color: var(--white); }
.intro-strip.bg-dark .section-body  { color: rgba(255,255,255,0.58); }

.intro-label {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--tc-mid);
  line-height: 1.1;
  white-space: nowrap;
}

.intro-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.intro-text {
  font-size: 1rem;
  line-height: 1.92;
  color: rgba(0,0,0,0.6);
  font-weight: 300;
}

.intro-text p { color: inherit; max-width: 100%; }

.section-body {
  font-size: 0.97rem;
  line-height: 1.92;
  color: rgba(0,0,0,0.6);
  margin-bottom: 28px;
  font-weight: 300;
}


/* â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

@media (max-width: 1024px) {
  .cards-grid--4    { grid-template-columns: repeat(2, 1fr); }
  .std-cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats            { grid-template-columns: repeat(2, 1fr); }
  .cols--3          { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .split            { grid-template-columns: 1fr; }
  .split--flip      { direction: ltr; }
  .split-img img    { position: static; height: 300px; width: 100%; }
  .split-img        { min-height: 0; }

  .cards-grid--2,
  .cards-grid--3,
  .cards-grid--4    { grid-template-columns: 1fr; }

  .std-cards-grid--2,
  .std-cards-grid--3,
  .std-cards-grid--4 { grid-template-columns: 1fr; }

  .cols--2,
  .cols--3          { grid-template-columns: 1fr; }

  .stats            { grid-template-columns: repeat(2, 1fr); }

  .upcoming-item    { grid-template-columns: 80px 1fr; }
  .upcoming-arrow   { display: none; }

  .intro-strip      { grid-template-columns: 1fr; gap: 24px; }
  .intro-label      { white-space: normal; font-size: 2.5rem; }

  .cta-form         { flex-direction: column; }
  .cta-submit       { width: 100%; }

  .hero-btns        { flex-direction: column; }
  .hero-scroll      { display: none; }

  .card--overlay    { aspect-ratio: 4/3; }
}
h2 em{
    color:#682f19!important;
}

@media (max-width: 480px) {
  .stats            { grid-template-columns: 1fr 1fr; }
}


/* ============================================================
   PRODUCT LIST PAGE â€” shop grid & cards
   ============================================================ */

.product-list-page {
  padding-bottom: 80px;
}

.shop-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 40px 0 32px;
}

.shop-cat-pill {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--tc);
  border-radius: 100px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--tc);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.shop-cat-pill:hover,
.shop-cat-pill--all {
  background: var(--tc);
  color: var(--white);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
  padding-top: 8px;
}

/* â”€â”€ Card â”€â”€ */
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
  outline-offset: 3px;
}

.product-card:hover,
.product-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.13);
}

/* â”€â”€ Image â”€â”€ */
.product-card__img-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--cream);
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  display: block;
}

.product-card:hover .product-card__img,
.product-card:focus-visible .product-card__img {
  transform: scale(1.05);
}

.product-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--sand, #e8ddd1);
}

/* â”€â”€ Body â”€â”€ */
.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 24px 24px;
  gap: 6px;
}

.product-card__cat {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tc);
  margin: 0;
}

.product-card__name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 2px 0 4px;
  color: var(--black);
}

.product-card__desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--mid, #666);
  margin: 0;
  flex: 1;
}

/* â”€â”€ Footer row: price + badge â”€â”€ */
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.product-card__pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.product-card__price {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--black);
}

.product-card__price--sale {
  color: var(--tc);
}

.product-card__price--was {
  font-size: 0.85rem;
  color: var(--mid, #888);
  text-decoration: line-through;
}

.product-card__badge {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--tc4, rgba(139,100,60,0.12));
  color: var(--tc);
  white-space: nowrap;
}

.shop-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  color: var(--mid, #888);
}

/* ============================================================
   RETREAT LIST BLOCK (inline StreamField block)
   ============================================================ */

.retreat-list-block {
  padding: clamp(64px, 8vw, 100px) 0;
}

.retreat-list-block__header {
  margin-bottom: 40px;
}

.retreat-list-block__cta {
  text-align: center;
  margin-top: 48px;
}

/* bg variants inherit from the bg-* utility classes */
.retreat-list-block.bg-dark .retreat-card {
  background: rgba(255,255,255,0.06);
  color: var(--white);
}
.retreat-list-block.bg-dark .retreat-card__eyebrow { color: rgba(255,255,255,0.6); }
.retreat-list-block.bg-dark .retreat-card__title   { color: var(--white); }
.retreat-list-block.bg-dark .retreat-card__desc    { color: rgba(255,255,255,0.6); }
.retreat-list-block.bg-dark .retreat-card__date,
.retreat-list-block.bg-dark .retreat-card__price   { color: rgba(255,255,255,0.75); }
.retreat-list-block.bg-dark .btn-outline {
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.5);
}

/* ============================================================
   RETREAT INDEX PAGE â€” grid & cards
   ============================================================ */

.retreat-index-page {
  padding-bottom: 80px;
}

.retreat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  padding-top: 40px;
}

.retreat-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.retreat-card:hover,
.retreat-card:focus-visible {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.13);
}

.retreat-card__img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream);
}

.retreat-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  display: block;
}

.retreat-card:hover .retreat-card__img,
.retreat-card:focus-visible .retreat-card__img {
  transform: scale(1.05);
}

.retreat-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: var(--sand);
}

.retreat-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 22px 24px 24px;
  gap: 6px;
}

.retreat-card__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tc);
  margin: 0;
}

.retreat-card__title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 2px 0 4px;
  color: var(--black);
}

.retreat-card__desc {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--mid);
  margin: 0;
  flex: 1;
}

.retreat-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
}

.retreat-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.retreat-card__date {
  font-size: 0.82rem;
  color: var(--mid);
}

.retreat-card__price {
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
}

.retreat-card__badge {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--tc4);
  color: var(--tc);
  white-space: nowrap;
}

.retreat-card__badge--waitlist {
  background: rgba(0,0,0,0.06);
  color: var(--mid);
}

.retreat-grid__empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 0;
  color: var(--mid);
}

/* ============================================================
   RETREAT DETAIL PAGE
   ============================================================ */

/* â”€â”€ Hero â”€â”€ */
.retreat-hero {
  position: relative;
  height: clamp(340px, 50vh, 560px);
  overflow: hidden;
  background: var(--black);
}

.retreat-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.retreat-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.6) 100%);
}

.retreat-hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(32px, 5vw, 60px) clamp(24px, 6vw, 80px);
  z-index: 2;
}

.retreat-hero__content .hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}

.retreat-hero__content .hero-title {
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 10px;
}

.retreat-hero__content .hero-body {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  line-height: 1.65;
}

/* â”€â”€ Facts bar â”€â”€ */
.retreat-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 1px solid rgba(0,0,0,0.09);
  background: var(--cream);
}

.retreat-fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px clamp(20px, 3vw, 40px);
  border-right: 1px solid rgba(0,0,0,0.09);
  flex: 1;
  min-width: 120px;
}

.retreat-fact__label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}

.retreat-fact__value {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--black);
}

.retreat-fact__value--full {
  color: var(--mid);
  font-style: italic;
}

/* â”€â”€ Booking bar â”€â”€ */
.retreat-booking-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 32px clamp(24px, 6vw, 80px);
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}

.retreat-booking-bar__anon {
  font-size: 0.9rem;
  color: var(--mid);
}

.screener-notice {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.screener-notice p {
  font-size: 0.9rem;
  color: var(--mid);
  max-width: 420px;
}

/* â”€â”€ Flash messages â”€â”€ */
.retreat-detail .messages {
  max-width: 640px;
  margin: 24px auto;
  padding: 0 24px;
}

/* â”€â”€ Body (StreamField blocks) â”€â”€ */
.retreat-body {
  padding-top: 16px;
}

/* â”€â”€ Mobile â”€â”€ */
@media (max-width: 640px) {
  .retreat-facts { flex-direction: column; }
  .retreat-fact  { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.09); }
}

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */

.product-detail-page {
  padding-top: 100px;  /* clear fixed nav */
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(64px, 10vw, 120px);
}

/* â”€â”€ Image gallery â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.product-gallery {
  position: sticky;
  top: 100px;
  aspect-ratio: 1/1;
  background: var(--cream);
  overflow: hidden;
}

.product-gallery__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}

.product-gallery__img--active {
  opacity: 1;
}

.product-gallery__thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.product-gallery__thumb {
  width: 64px;
  height: 64px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.5;
  border: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
}

.product-gallery__thumb.active,
.product-gallery__thumb:hover {
  opacity: 1;
  border-color: var(--tc);
}

.product-gallery--empty .product-gallery__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f0ebe3, #e8e0d4);
}

/* â”€â”€ Info column â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.product-detail__cat {
  margin-bottom: 12px;
}

.product-detail__name {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 20px;
}

.product-detail__price {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.product-detail__price--sale {
  color: var(--tc);
}

.product-detail__price--was {
  font-size: 0.9em;
  color: rgba(0,0,0,0.3);
  text-decoration: line-through;
}

.product-detail__desc {
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(0,0,0,0.6);
  font-weight: 300;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* â”€â”€ Purchase block â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.product-detail__purchase {
  margin-bottom: 32px;
}

.product-detail__gate-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tc);
  margin-bottom: 14px;
}

.product-detail__gate-label svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
}

.product-detail__gate-msg {
  font-size: 0.9rem;
  line-height: 1.75;
  color: rgba(0,0,0,0.55);
  margin-bottom: 16px;
}

.product-detail__gate-msg a {
  color: var(--tc);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-detail__buy-btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 0.72rem;
}

.product-detail__back {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.35);
  transition: color 0.2s;
}

.product-detail__back:hover { color: var(--tc); }

/* â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 768px) {
  .product-detail {
    grid-template-columns: 1fr;
  }
  .product-gallery { position: static; }
}


/* ============================================================
   MEMBER PROFILE PAGE
   ============================================================ */

/* â”€â”€ Header banner â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.profile-header {
  background: var(--black);
  padding: clamp(80px, 12vw, 130px) 0 clamp(48px, 7vw, 72px);
  text-align: center;
}

.profile-header__eyebrow {
  color: var(--tc-mid);
  margin-bottom: 16px;
}

.profile-header__name {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.profile-header__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.profile-header__since {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* Member status badge */
.profile-badge {
  display: inline-block;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 6px 16px;
  border: 1px solid;
}

.profile-badge--member {
  border-color: rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.7);
}

.profile-badge--member_plus {
  border-color: var(--tc-mid);
  color: var(--tc-mid);
}

.profile-badge--staff,
.profile-badge--admin {
  border-color: var(--gold);
  color: var(--gold);
}

/* â”€â”€ Body layout â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.profile-body {
  padding-top: clamp(48px, 7vw, 80px);
  padding-bottom: clamp(64px, 10vw, 120px);
  max-width: 860px;
  margin: 0 auto;
}

/* â”€â”€ Individual panel â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.profile-panel {
  padding: clamp(36px, 5vw, 52px) 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.profile-panel--last {
  border-bottom: none;
}

.profile-panel__title {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--tc);
  display: inline-block;
}

.profile-panel__subtitle {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.4);
  font-weight: 400;
  margin: 28px 0 16px;
}

.profile-panel__subtitle--spaced {
  margin-top: 40px;
}

.profile-panel__empty {
  font-size: 0.97rem;
  color: rgba(0,0,0,0.45);
  line-height: 1.8;
}

.profile-panel__empty a {
  color: var(--tc);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.profile-panel__actions {
  margin: 20px 0 28px;
}

/* â”€â”€ Field grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
  margin-bottom: 8px;
}

.profile-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.profile-field__label {
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.38);
  font-weight: 400;
}

.profile-field__value {
  font-size: 0.97rem;
  color: var(--black);
  font-weight: 300;
  line-height: 1.5;
}

/* â”€â”€ Form status rows â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.form-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.form-status-row:last-child {
  border-bottom: none;
}

.form-status-row__info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-status-row__name {
  font-size: 0.97rem;
  color: var(--black);
  font-weight: 400;
}

.form-status-row__date {
  font-size: 0.78rem;
  color: rgba(0,0,0,0.45);
  letter-spacing: 0.04em;
}

.form-status-row__date--pending {
  color: var(--tc);
}

/* â”€â”€ Status badges â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.status-badge {
  display: inline-block;
  font-size: 0.56rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 5px 12px;
  white-space: nowrap;
  flex-shrink: 0;
}

.status-badge--complete  { background: rgba(34,139,34,0.08);  color: #2a7a2a; border: 1px solid rgba(34,139,34,0.2); }
.status-badge--confirmed { background: rgba(34,139,34,0.08);  color: #2a7a2a; border: 1px solid rgba(34,139,34,0.2); }
.status-badge--paid      { background: rgba(34,139,34,0.08);  color: #2a7a2a; border: 1px solid rgba(34,139,34,0.2); }
.status-badge--fulfilled { background: rgba(34,139,34,0.12);  color: #1a5c1a; border: 1px solid rgba(34,139,34,0.2); }
.status-badge--pending   { background: rgba(104,47,25,0.07);  color: var(--tc); border: 1px solid rgba(104,47,25,0.2); }
.status-badge--waitlisted{ background: rgba(180,130,0,0.08);  color: #7a5800; border: 1px solid rgba(180,130,0,0.2); }
.status-badge--cancelled { background: rgba(0,0,0,0.04);      color: rgba(0,0,0,0.4); border: 1px solid rgba(0,0,0,0.1); }
.status-badge--refunded  { background: rgba(0,0,0,0.04);      color: rgba(0,0,0,0.4); border: 1px solid rgba(0,0,0,0.1); }
.status-badge--locked    { background: rgba(0,0,0,0.04);      color: rgba(0,0,0,0.35); border: 1px solid rgba(0,0,0,0.08); }

/* â”€â”€ Booking list â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.booking-list {
  list-style: none;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.booking-list--past .booking-item {
  opacity: 0.65;
}

.booking-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.2s;
}

.booking-item__dates {
  font-family: var(--serif);
  font-size: 0.88rem;
  color: rgba(0,0,0,0.5);
  line-height: 1.4;
}

.booking-item__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.booking-item__name {
  font-size: 0.97rem;
  color: var(--black);
  font-weight: 400;
}

.booking-item__location {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: rgba(0,0,0,0.4);
}

.booking-item__flag {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--tc);
  margin-top: 2px;
}

/* â”€â”€ Schedule notice â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.schedule-notice {
  background: rgba(104,47,25,0.05);
  border-left: 3px solid var(--tc);
  padding: 14px 20px;
  margin-bottom: 20px;
}

.schedule-notice p {
  font-size: 0.9rem;
  color: rgba(0,0,0,0.65);
  line-height: 1.6;
}

.schedule-notice--eligible {
  background: rgba(34,139,34,0.05);
  border-left-color: #2a7a2a;
}

/* â”€â”€ Order list â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.order-list {
  list-style: none;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.order-item {
  display: grid;
  grid-template-columns: 110px 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.order-item__date {
  font-size: 0.78rem;
  color: rgba(0,0,0,0.4);
  letter-spacing: 0.04em;
}

.order-item__product {
  font-size: 0.9rem;
  color: var(--black);
}

.order-item__price {
  font-size: 0.9rem;
  color: var(--tc);
  font-family: var(--serif);
}

/* â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 640px) {
  .profile-grid {
    grid-template-columns: 1fr;
  }

  .booking-item {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
  }

  .booking-item__dates {
    grid-column: 1;
    grid-row: 1;
    font-size: 0.75rem;
  }

  .booking-item__info {
    grid-column: 1;
    grid-row: 2;
  }

  .booking-item .status-badge {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }

  .order-item {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 8px 16px;
  }

  .order-item__date {
    grid-column: 1; grid-row: 2;
    font-size: 0.7rem;
  }

  .order-item__product {
    grid-column: 1; grid-row: 1;
  }

  .order-item__price {
    grid-column: 2; grid-row: 1;
  }

  .order-item .status-badge {
    grid-column: 2; grid-row: 2;
  }

  .form-status-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}


/* ============================================================
   FORMS â€” wagtail form builder + contact / application pages
   ============================================================ */

/* â”€â”€ Page wrapper â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.form-page {
  min-height: 60vh;
}

/* â”€â”€ Section container â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.form-section {
  padding: clamp(64px, 9vw, 110px) clamp(24px, 6vw, 80px);
  max-width: 780px;
  margin: 0 auto;
}

/* â”€â”€ The form itself â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wagtail-form {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* â”€â”€ Individual field wrapper â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* â”€â”€ Labels â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wagtail-form label {
  font-size: 0.62rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.55);
  font-weight: 400;
  font-family: var(--sans);
}

/* Required indicator */
.wagtail-form label abbr {
  text-decoration: none;
  color: var(--tc);
  margin-left: 4px;
}

/* â”€â”€ Text inputs, email, tel, number, url â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wagtail-form input[type="text"],
.wagtail-form input[type="email"],
.wagtail-form input[type="tel"],
.wagtail-form input[type="number"],
.wagtail-form input[type="url"],
.wagtail-form input[type="date"] {
  width: 100%;
  padding: 16px 18px;
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom-width: 2px;
  color: var(--bark);
  font-family: var(--sans);
  font-size: 0.97rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

.wagtail-form input[type="text"]:focus,
.wagtail-form input[type="email"]:focus,
.wagtail-form input[type="tel"]:focus,
.wagtail-form input[type="number"]:focus,
.wagtail-form input[type="url"]:focus,
.wagtail-form input[type="date"]:focus {
  border-color: var(--tc);
  background: var(--white);
}

/* â”€â”€ Textarea â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wagtail-form textarea {
  width: 100%;
  min-height: 160px;
  padding: 16px 18px;
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom-width: 2px;
  color: var(--bark);
  font-family: var(--sans);
  font-size: 0.97rem;
  font-weight: 300;
  line-height: 1.7;
  outline: none;
  resize: vertical;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.wagtail-form textarea:focus {
  border-color: var(--tc);
  background: var(--white);
}

/* â”€â”€ Select / dropdown â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wagtail-form select {
  width: 100%;
  padding: 16px 44px 16px 18px;
  background: var(--cream);
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom-width: 2px;
  color: var(--bark);
  font-family: var(--sans);
  font-size: 0.97rem;
  font-weight: 300;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23682f19' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  transition: border-color 0.3s var(--ease);
}

.wagtail-form select:focus {
  border-color: var(--tc);
}

/* â”€â”€ Checkboxes and radio buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wagtail-form input[type="checkbox"],
.wagtail-form input[type="radio"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  accent-color: var(--tc);
  cursor: pointer;
  margin-top: 2px;
}

/* Inline label for checkbox/radio */
.wagtail-form .form-field--checkbox label,
.wagtail-form .form-field--radio label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(0,0,0,0.7);
  cursor: pointer;
  line-height: 1.5;
}

/* Multi-choice (ul of checkboxes/radios from Wagtail) */
.wagtail-form ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
}

.wagtail-form ul li label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  line-height: 1.5;
}

/* â”€â”€ Error state â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.form-field--error input,
.form-field--error textarea,
.form-field--error select {
  border-color: #c0392b;
  background: #fdf6f6;
}

.form-field--error label {
  color: #c0392b;
}

.form-error {
  font-size: 0.75rem;
  color: #c0392b;
  letter-spacing: 0.06em;
}

/* â”€â”€ Submit button â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.form-submit {
  align-self: flex-start;
  min-width: 200px;
}

@media (max-width: 600px) {
  .form-submit { width: 100%; justify-content: center; }
}

/* â”€â”€ Success / thank-you message â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.form-success {
  padding: 48px 40px;
  background: var(--cream);
  border-left: 3px solid var(--tc);
}

.form-success p {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--bark);
  line-height: 1.65;
  max-width: 560px;
}

/* ============================================================
   EVENTS -- event listing, event detail, RSVP, event-list block
   ============================================================ */

/* -- Event grid (listing page + event_list block) ----------- */
.event-grid-section { padding: 64px 0; }

.event-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}

.event-grid__empty {
  font-family: var(--sans);
  color: var(--mid);
  font-size: 1rem;
  padding: 40px 0;
  grid-column: 1 / -1;
}

/* -- Event card ---------------------------------------------- */
.event-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.14);
}

.event-card--past { opacity: 0.72; }
.event-card--past:hover { opacity: 1; }

.event-card__img-wrap {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--tc-tint);
}

.event-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}

.event-card:hover .event-card__img { transform: scale(1.04); }

.event-card__img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--tc-tint) 0%, rgba(104,47,25,0.18) 100%);
}

.event-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 10px;
  background: var(--tc);
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 2px;
}

.event-card__badge--free { background: #2a7a4f; }

.event-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 24px 24px;
  gap: 6px;
}

.event-card__eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tc);
  margin: 0;
}

.event-card__title {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  color: var(--black);
  margin: 0;
  line-height: 1.35;
}

.event-card__desc {
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--mid);
  margin: 4px 0 0;
  line-height: 1.55;
}

.event-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.event-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.event-card__date,
.event-card__time {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--mid);
}

.event-card__spots {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2a7a4f;
  white-space: nowrap;
}

.event-card__spots--full { color: var(--tc); }

/* -- Past events section ------------------------------------- */
.past-events {
  padding: 48px 0 80px;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 16px;
}

.past-events__heading {
  margin-bottom: 32px;
  color: var(--mid);
}

/* -- Event detail page --------------------------------------- */
.event-hero {
  position: relative;
  height: clamp(320px, 45vh, 560px);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.event-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.event-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.18) 60%, transparent 100%);
}

.event-hero__content {
  position: relative;
  z-index: 1;
  padding: var(--nav-h) 40px 48px;
  max-width: 800px;
}

/* -- Event facts bar ----------------------------------------- */
.event-facts {
  display: flex;
  flex-wrap: wrap;
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.event-fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px 32px;
  border-right: 1px solid rgba(0,0,0,0.08);
  min-width: 140px;
}

.event-fact:last-child { border-right: none; }

.event-fact__label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
}

.event-fact__value {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--black);
}

.event-fact__value--full { color: var(--tc); }

/* -- RSVP bar ----------------------------------------------- */
.event-rsvp-bar {
  padding: 32px 40px;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.event-rsvp-bar__notice {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--mid);
  margin: 0;
}

.event-rsvp-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.event-rsvp-form__guest {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.event-rsvp-input {
  font-family: var(--sans);
  font-size: 0.875rem;
  padding: 10px 16px;
  border: 1px solid rgba(0,0,0,0.18);
  border-radius: 2px;
  background: var(--cream);
  color: var(--black);
  min-width: 200px;
  outline: none;
  transition: border-color 0.2s;
}

.event-rsvp-input:focus { border-color: var(--tc); }

/* -- Event messages ------------------------------------------ */
.event-messages {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.event-message {
  font-family: var(--sans);
  font-size: 0.875rem;
  padding: 10px 16px;
  border-radius: 2px;
}

.event-message--success { background: #d4edda; color: #155724; }
.event-message--error   { background: #f8d7da; color: #721c24; }
.event-message--info    { background: #d1ecf1; color: #0c5460; }
.event-message--warning { background: #fff3cd; color: #856404; }

/* -- Event list block (embedded in StreamField) -------------- */
.event-list-block { padding: 80px 0; }
.event-list-block__header { margin-bottom: 40px; }
.event-list-block__cta { text-align: center; margin-top: 40px; }

.bg-dark .event-list-block__header .eyebrow,
.bg-dark .event-list-block__header .section-title { color: rgba(255,255,255,0.92); }
.bg-dark .event-card { background: rgba(255,255,255,0.08); }
.bg-dark .event-card__title { color: rgba(255,255,255,0.92); }
.bg-dark .event-card__eyebrow { color: rgba(255,255,255,0.6); }
.bg-dark .event-card__desc { color: rgba(255,255,255,0.55); }
.bg-dark .event-card__footer { border-top-color: rgba(255,255,255,0.1); }
.bg-dark .event-card__date,
.bg-dark .event-card__time { color: rgba(255,255,255,0.5); }
.bg-dark .event-list-block__cta .btn-outline {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.5);
}

/* -- Responsive ---------------------------------------------- */
@media (max-width: 768px) {
  .event-hero__content { padding: var(--nav-h) 20px 32px; }
  .event-facts { flex-direction: column; }
  .event-fact  { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.08); padding: 16px 20px; }
  .event-fact:last-child { border-bottom: none; }
  .event-rsvp-bar { padding: 24px 20px; }
  .event-rsvp-form__guest { flex-direction: column; }
  .event-rsvp-input { min-width: 100%; }
}

/* ── GLOBAL MIN HEIGHT ───────────────────────────────────────────────────── */
body { min-height: 100vh; display: flex; flex-direction: column; }
body > footer { margin-top: auto; }

/* ── CHECKOUT ─────────────────────────────────────────────────────────────── */
.checkout {
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 80px;
  max-width: 560px;
}
.checkout-summary {
  background: var(--tc-tint);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 32px;
}
.checkout-summary p { margin: 4px 0; }
.checkout-form { display: flex; flex-direction: column; gap: 24px; }
#card-container {
  min-height: 90px;
  border: 1px solid var(--linen);
  border-radius: 8px;
  padding: 12px;
  background: #fff;
}
.checkout-submit { align-self: flex-start; min-width: 200px; }
/* ── CHECKOUT SUCCESS ────────────────────────────────────────────────────── */
.checkout-success {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: 100px;
  text-align: center;
  flex: 1;
}
.checkout-success__inner { max-width: 520px; margin: 0 auto; }
.checkout-success__icon svg {
  width: 72px; height: 72px;
  color: var(--tc);
  margin-bottom: 24px;
}
.checkout-success__msg {
  font-size: 1.1rem;
  color: var(--stone);
  margin: 16px 0 40px;
  line-height: 1.6;
}
.checkout-success__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.checkout-error {
  color: #c0392b;
  font-size: 0.9rem;
  padding: 10px 14px;
  background: rgba(192,57,43,0.08);
  border-radius: 6px;
}

