/* ==========================================================================
   Painted Lotus Yoga & Wellness — Design System
   Cream paper, deep indigo serif, lavender + gold accents.
   Quiet, organic, hand-set. The opposite of commercial.
   ========================================================================== */

:root {
  /* Surfaces — warm paper */
  --bg-cream: #f4efe8;          /* primary background — their brand cream */
  --bg-warm: #ebe2d4;            /* slightly warmer alt-section */
  --bg-blush: #f3eae3;           /* faint rose-tint section */
  --bg-pale: #f9f5ed;            /* lightest surface — cards */
  --surface: #ffffff;            /* clean white card */
  --bg-deep: #1a1a30;            /* deep night for footer / accents */

  /* Ink — deep indigo */
  --ink: #353454;                /* their brand indigo — primary text */
  --ink-deep: #20203a;           /* darker version for emphasis */
  --ink-soft: #5e5d7d;           /* secondary text */
  --ink-mute: #94929f;           /* muted body */
  --ink-quiet: #b6b4c5;          /* very quiet (eyebrow under-tones) */

  /* Lavender accents */
  --lavender: #a8a8c0;            /* their brand lavender */
  --lavender-deep: #8d8da7;
  --lavender-soft: #d6d3e0;
  --lavender-pale: #e8e5ed;

  /* Gold + earth accents */
  --gold: #b89254;                /* grounded gold */
  --gold-bright: #dbbe74;         /* their brand gold */
  --gold-pale: #ecdfb8;
  --rose: #b8786d;                /* warm terracotta */
  --sage: #8da093;                /* muted sage green */

  --border: rgba(53, 52, 84, 0.10);
  --border-strong: rgba(53, 52, 84, 0.18);
  --border-gold: rgba(184, 146, 84, 0.30);

  /* Typography */
  --f-display: "Cormorant Garamond", "Cormorant", Garamond, "Times New Roman", serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Sizing */
  --container: 1180px;
  --container-prose: 720px;
  --gutter: clamp(20px, 4vw, 56px);
  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 18px;

  --shadow-soft: 0 1px 2px rgba(53, 52, 84, 0.04), 0 8px 24px rgba(53, 52, 84, 0.08);
  --shadow-card: 0 1px 0 rgba(255,255,255,0.6), 0 4px 16px rgba(53, 52, 84, 0.08), 0 16px 40px -8px rgba(53, 52, 84, 0.10);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }
html, body { margin: 0; padding: 0; }

body {
  font-family: var(--f-body);
  background: var(--bg-cream);
  color: var(--ink);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, picture, svg { display: block; max-width: 100%; height: auto; }

a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--lavender-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color .25s var(--ease), text-decoration-color .25s var(--ease);
}
a:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

::selection { background: var(--lavender-soft); color: var(--ink-deep); }

.skip-link {
  position: absolute; top: -100px; left: 12px;
  background: var(--ink);
  color: var(--bg-cream);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  font-weight: 600;
  text-decoration: none;
  transition: top .2s;
  z-index: 100;
}
.skip-link:focus { top: 12px; }

.container {
  width: min(100% - var(--gutter)*2, var(--container));
  margin-inline: auto;
}
.prose {
  width: min(100% - var(--gutter)*2, var(--container-prose));
  margin-inline: auto;
}

/* =======================  HEADER  ======================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 239, 232, 0.9);
  backdrop-filter: blur(14px) saturate(110%);
  -webkit-backdrop-filter: blur(14px) saturate(110%);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  transition: padding .35s var(--ease);
}
.site-header.scrolled { padding: 10px 0; }

.hdr-inner {
  width: min(100% - var(--gutter)*2, var(--container));
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 56px; height: 56px;
  border-radius: 50%;
}
.brand-name {
  display: flex; flex-direction: column;
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--ink-deep);
}
.brand-sub {
  font-family: var(--f-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}

.primary-nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: clamp(12px, 2.2vw, 32px);
  justify-content: center;
}
.primary-nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: center;
  transition: transform .4s var(--ease);
}
.primary-nav a:hover { color: var(--ink-deep); }
.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav a[aria-current="page"] { color: var(--ink-deep); }

.hdr-cta { display: flex; align-items: center; gap: 12px; }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--ink);
  color: var(--bg-cream);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: var(--ink-deep);
  border-color: var(--ink-deep);
  color: var(--bg-cream);
  box-shadow: 0 8px 22px -6px rgba(53, 52, 84, 0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-strong);
}
.btn-secondary:hover {
  border-color: var(--ink);
  color: var(--ink-deep);
  background: rgba(53, 52, 84, 0.04);
}
.btn-ghost {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid var(--border);
  padding: 8px 14px;
  font-size: 11px;
}
.btn-ghost:hover { color: var(--ink-deep); border-color: var(--gold); background: rgba(184, 146, 84, 0.06); }

/* Hamburger */
.hamburger {
  display: none;
  appearance: none; background: transparent;
  border: 1px solid var(--border-strong);
  width: 44px; height: 44px; border-radius: 50%;
  cursor: pointer; padding: 0;
  flex-direction: column; gap: 5px; align-items: center; justify-content: center;
}
.hamburger span { display: block; width: 18px; height: 1.5px; background: var(--ink); border-radius: 1px; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  background: var(--bg-cream);
  border-top: 1px solid var(--border);
  padding: 24px var(--gutter);
}
.mobile-nav ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block; padding: 14px 0;
  text-decoration: none;
  color: var(--ink-deep);
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}

/* =======================  HERO  ======================= */
.hero {
  position: relative;
  padding: clamp(70px, 9vw, 120px) 0 clamp(70px, 9vw, 120px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.hero-copy {
  position: relative;
}
.hero-eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 24px;
  display: inline-flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--ink-deep);
  margin: 0 0 28px;
}
.hero-title em {
  font-style: italic;
  color: var(--ink);
  font-weight: 400;
}
.hero-tag {
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 0 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-figure {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/5;
  background: var(--bg-warm);
}
.hero-figure img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.hero-figure:hover img { transform: scale(1.03); }
/* Asymmetric paper-corner detail */
.hero-figure::after {
  content: "";
  position: absolute;
  bottom: -12px; right: -12px;
  width: 60%; height: 80%;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  pointer-events: none;
  border-radius: 4px;
}

/* =======================  GENERIC SECTION ======================= */
.band { padding: clamp(70px, 9vw, 130px) 0; position: relative; }
.band-warm { background: var(--bg-warm); }
.band-blush { background: var(--bg-blush); }
.band-pale { background: var(--bg-pale); }

.band-head { max-width: 760px; margin: 0 auto clamp(40px, 6vw, 80px); text-align: center; }
.band-head .lede {
  font-size: clamp(17px, 1.5vw, 19px);
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 18px 0 0;
}

.eyebrow {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 20px;
  display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow.center { display: inline-flex; }
.eyebrow.with-mark::before {
  content: ""; display: inline-block;
  width: 24px; height: 1px;
  background: var(--gold);
}

.display {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(34px, 4.6vw, 56px);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--ink-deep);
  margin: 0 0 18px;
}
.display em { font-style: italic; }
.display-sm {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  color: var(--ink-deep);
  margin: 0 0 12px;
}
.display-sm em { font-style: italic; }

.lede { color: var(--ink-soft); font-size: 17px; line-height: 1.7; }

/* Two-column layout */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* Figure styles */
.fig {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/5;
  background: var(--bg-warm);
}
.fig img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease); }
.fig:hover img { transform: scale(1.03); }
.fig.fig-wide { aspect-ratio: 16/10; }
.fig.fig-square { aspect-ratio: 1/1; }
.fig.fig-portrait { aspect-ratio: 3/4; }

/* =======================  PRACTICES (cards on hub page)  ======================= */
.practices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 22px;
}
.practice-card {
  background: var(--bg-pale);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 32px 28px;
  position: relative;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.practice-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
}
.practice-card .pc-num {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0.04em;
}
.practice-card h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 28px;
  line-height: 1.1;
  margin: 0;
  color: var(--ink-deep);
}
.practice-card p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}
.practice-card .pc-arrow {
  margin-top: auto;
  padding-top: 16px;
  font-family: var(--f-display);
  font-style: italic;
  font-size: 15px;
  color: var(--gold);
  letter-spacing: 0.02em;
}
.practice-card .pc-arrow span { transition: transform .25s var(--ease); display: inline-block; margin-left: 6px; }
.practice-card:hover .pc-arrow span { transform: translateX(6px); }

/* =======================  PRACTICE BLOCK (deep on practices.html)  ======================= */
.practice-block {
  padding: clamp(64px, 7vw, 110px) 0;
  border-top: 1px solid var(--border);
}
.practice-block:first-of-type { border-top: 0; }
.practice-block .two-col { gap: clamp(40px, 6vw, 90px); }
.practice-block ul.list-bullets {
  list-style: none; padding: 0; margin: 22px 0 0;
}
.practice-block ul.list-bullets li {
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid var(--border);
  position: relative;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.6;
}
.practice-block ul.list-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 22px;
  width: 8px; height: 1px;
  background: var(--gold);
}
.practice-block ul.list-bullets li strong {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 18px;
  font-style: italic;
  color: var(--ink-deep);
  display: block;
  margin-bottom: 2px;
}

/* =======================  CREWE / INSTRUCTORS  ======================= */
.crewe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(24px, 3vw, 36px);
}
.crewe-card {
  text-align: left;
  text-decoration: none;
  color: var(--ink);
  display: flex; flex-direction: column;
  gap: 16px;
}
.crewe-card .fig { aspect-ratio: 3/4; border-radius: 6px; }
.crewe-card h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 26px;
  line-height: 1.1;
  margin: 0;
  color: var(--ink-deep);
}
.crewe-card .crewe-role {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 4px 0 8px;
  font-weight: 500;
}
.crewe-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0;
}
.crewe-card.no-link { cursor: default; }

/* Instructor deep block (on crewe.html) */
.instructor-block {
  padding: clamp(60px, 7vw, 110px) 0;
  border-top: 1px solid var(--border);
}
.instructor-block:first-of-type { border-top: 0; }
.instructor-block .fig { aspect-ratio: 3/4; }
.instructor-block .insiders {
  display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 0;
}
.insider-tag {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--bg-warm);
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-weight: 500;
}

/* =======================  RATE CARD  ======================= */
.rate-card {
  background: var(--bg-pale);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(32px, 4vw, 48px);
}
.rate-card h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 28px;
  margin: 0 0 6px;
  color: var(--ink-deep);
}
.rate-card .rate-sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.rate-list {
  list-style: none; padding: 0; margin: 0;
}
.rate-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  border-bottom: 1px dotted var(--border-strong);
}
.rate-list li:last-child { border-bottom: 0; }
.rate-name {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink-deep);
}
.rate-meta {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 2px;
  display: block;
}
.rate-price {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  color: var(--gold);
  font-feature-settings: "tnum";
}

.rate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 28px;
}

/* Punchpass embed wrap */
.punchpass-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  box-shadow: var(--shadow-soft);
  margin: 32px 0;
  overflow: hidden;
}
.punchpass-wrap iframe {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 4px;
  background: var(--surface);
}

/* =======================  PROSE (long-form posts)  ======================= */
.prose-body {
  font-size: 18px;
  line-height: 1.85;
  color: var(--ink);
}
.prose-body p { margin: 0 0 22px; }
.prose-body h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.15;
  color: var(--ink-deep);
  margin: 56px 0 18px;
  letter-spacing: -0.01em;
}
.prose-body h2 em { font-style: italic; }
.prose-body h3 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 24px;
  color: var(--ink-deep);
  margin: 40px 0 14px;
}
.prose-body blockquote {
  margin: 36px 0;
  padding: 12px 0 12px 28px;
  border-left: 2px solid var(--gold);
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.5;
  color: var(--ink-deep);
}
.prose-body blockquote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--f-body);
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.prose-body ul, .prose-body ol { padding-left: 26px; margin: 0 0 22px; }
.prose-body li { margin: 8px 0; }
.prose-body strong { color: var(--ink-deep); font-weight: 600; }
.prose-body em { color: var(--ink-deep); }
.prose-body a {
  color: var(--ink);
  text-decoration-color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.prose-body a:hover { color: var(--gold); }
.prose-body hr {
  border: 0;
  margin: 56px auto;
  width: 64px;
  height: 1px;
  background: var(--gold);
}

.post-meta {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin: 0 0 14px;
}
.post-author {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 17px;
  color: var(--ink-deep);
}
.post-divider {
  border: 0;
  margin: 24px auto 36px;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

/* =======================  JOURNAL INDEX  ======================= */
.journal-list {
  display: flex; flex-direction: column;
  gap: 0;
}
.journal-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(24px, 4vw, 56px);
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: var(--ink);
  transition: padding .35s var(--ease);
}
.journal-item:first-child { padding-top: 0; }
.journal-item:hover { padding-left: 12px; color: var(--ink); }
.journal-item-meta { color: var(--ink-soft); font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500; }
.journal-item h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.2;
  margin: 6px 0 12px;
  color: var(--ink-deep);
  text-decoration: underline;
  text-decoration-color: transparent;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
  transition: text-decoration-color .35s var(--ease);
}
.journal-item:hover h3 { text-decoration-color: var(--gold); }
.journal-item h3 em { font-style: italic; }
.journal-item p { color: var(--ink-soft); margin: 0; font-size: 15px; line-height: 1.6; }
.journal-item .read-more {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--gold);
  font-size: 15px;
  margin-top: 14px;
  display: inline-block;
}

/* =======================  SHOPPE  ======================= */
.shoppe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.shoppe-item .fig { aspect-ratio: 1/1; }
.shoppe-item h4 {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink-deep);
  margin: 14px 0 4px;
}
.shoppe-item p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.55; margin: 0; }

/* =======================  CONTACT  ======================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.contact-detail {
  margin: 32px 0 0;
  display: grid; gap: 22px;
}
.contact-row {
  display: grid; grid-template-columns: 80px 1fr; gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.contact-row:last-child { border-bottom: 0; padding-bottom: 0; }
.cr-label {
  font-family: var(--f-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  padding-top: 4px;
}
.cr-value {
  font-family: var(--f-display);
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink-deep);
}
.cr-value a { color: var(--ink-deep); text-decoration-color: var(--gold); }

.contact-map {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
  background: var(--bg-warm);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; }

/* =======================  PULL QUOTES  ======================= */
.pull-quote {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 80px) 0;
}
.pull-quote q {
  font-family: var(--f-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.4;
  color: var(--ink-deep);
  display: block;
  quotes: none;
}
.pull-quote q::before, .pull-quote q::after { content: ""; }
.pull-quote .pq-mark {
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold);
  margin: 24px auto 0;
}
.pull-quote .pq-cite {
  display: block;
  margin-top: 14px;
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

/* =======================  REVEAL ANIMATIONS  ======================= */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* =======================  FOOTER  ======================= */
.site-footer {
  background: var(--bg-deep);
  color: var(--lavender-soft);
  padding: 80px 0 24px;
}
.site-footer a { color: var(--lavender-soft); text-decoration-color: rgba(255,255,255,0.2); }
.site-footer a:hover { color: var(--gold-bright); text-decoration-color: var(--gold); }
.ft-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
}
.ft-brand img {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--bg-cream);
  padding: 6px;
  margin-bottom: 16px;
}
.ft-brand h4 {
  font-family: var(--f-display);
  font-weight: 400;
  font-style: italic;
  font-size: 24px;
  margin: 0 0 12px;
  color: var(--bg-cream);
}
.ft-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--lavender-soft);
  max-width: 320px;
  margin: 0;
}
.ft-col h5 {
  font-family: var(--f-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin: 0 0 18px;
}
.ft-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.ft-col a, .ft-col p {
  font-family: var(--f-display);
  font-style: normal;
  font-size: 17px;
  color: var(--lavender-soft);
  text-decoration: none;
  line-height: 1.5;
  margin: 0;
}
.ft-col a:hover { color: var(--gold-bright); }

.ft-base {
  margin-top: 64px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  width: min(100% - var(--gutter)*2, var(--container));
  margin-inline: auto;
}
.ft-base p {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-quiet);
  margin: 0;
}

/* =======================  RESPONSIVE  ======================= */
@media (max-width: 1024px) {
  .primary-nav { display: none; }
  .hamburger { display: inline-flex; }
  .hdr-cta .btn { display: none; }
  .hdr-inner { grid-template-columns: auto 1fr auto; }
}

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-figure { aspect-ratio: 4/5; max-width: 480px; margin: 0 auto; }
  .two-col { grid-template-columns: 1fr; }
  .two-col.reverse { direction: ltr; }
  .ft-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-map { aspect-ratio: 4/3; }
  .journal-item { grid-template-columns: 1fr; gap: 8px; }
  .journal-item-meta { margin-bottom: 4px; }
  .crewe-grid { grid-template-columns: 1fr 1fr; }
  .practices-grid { grid-template-columns: 1fr; }
  .ft-base { flex-direction: column; align-items: flex-start; }
  .brand-name { font-size: 18px; }
  .brand-mark { width: 48px; height: 48px; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .ft-grid { grid-template-columns: 1fr; }
  .crewe-grid { grid-template-columns: 1fr; }
  .rate-list li { grid-template-columns: 1fr; gap: 6px; }
  .rate-price { font-size: 22px; }
}
