:root {
  --paper: #fff8ec;
  --pink-soft: #ffd9e3;
  --pink-soft-2: #ffc9d6;
  --pill-bg: #f1e6d0;
  --pink-hot: #e8568f;
  --pink-hot-2: #d04476;
  --sage: #8ab8a4;
  --sage-tint: #f0f4ee;
  --mustard: #d9a247;
  --ink: #2c2218;
  --ink-2: #4a3d30;
  --muted: #7a6d5e;
  --line: #e9ddc6;

  --script: "Caveat", "Brush Script MT", cursive;
  --display: "DM Serif Display", "Cooper Black", Georgia, serif;
  --body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ───── Alert bar ───── */
.alert {
  background: var(--pink-hot);
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 16px;
  letter-spacing: 0.01em;
}

/* ───── Header ───── */
.header {
  background: var(--paper);
  padding: 22px 0;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  position: relative;
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: inline-block;
  line-height: 0;
  text-decoration: none;
}
.logo img {
  display: block;
  width: 96px;
  height: 96px;
  object-fit: cover;
  -webkit-clip-path: circle(40% at 50% 50%);
          clip-path: circle(40% at 50% 50%);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav {
  display: flex;
  gap: 14px;
  align-items: center;
}
.nav a {
  font-family: var(--body);
  font-size: 18px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}
.nav a:hover { color: var(--pink-hot); }
.nav a.is-active { color: var(--pink-hot); }
.nav-sep {
  color: var(--ink-2);
  font-weight: 800;
  font-size: 18px;
  opacity: 0.55;
}
.btn-header {
  padding: 14px 28px;
  font-size: 17px;
  font-weight: 800;
}
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover { color: var(--pink-hot); border-color: var(--pink-hot); }
.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease, top 180ms ease;
}
.nav-toggle-bars { position: relative; }
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.nav-toggle-bars::before { top: -6px; }
.nav-toggle-bars::after  { top:  6px; }
.is-nav-open .nav-toggle-bars { background: transparent; }
.is-nav-open .nav-toggle-bars::before { top: 0; transform: rotate(45deg); }
.is-nav-open .nav-toggle-bars::after  { top: 0; transform: rotate(-45deg); }

/* ───── Mobile bottom bar (mobile only) ───── */
.bottom-bar { display: none; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-hot);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--body);
  font-weight: 600;
  font-size: 15px;
  transition: background 0.15s ease;
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--pink-hot-2); }
.btn-cream {
  background: var(--paper);
  color: var(--ink);
}
.btn-cream:hover { background: #fff; }
.btn-lg {
  padding: 18px 56px;
  font-size: 21px;
  font-weight: 700;
}
.btn-arrow {
  font-size: 1.9em;
  line-height: 1;
  margin-left: 6px;
  display: inline-block;
  transform: translateY(1px);
}

/* ───── Hero ───── */
.hero {
  padding: 64px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  font-family: var(--script);
  color: var(--pink-hot);
  font-size: 26px;
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 600;
}
.h-display {
  font-family: var(--display);
  font-weight: 600;
  font-size: 64px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 20px;
}
.h-display em { font-style: italic; font-weight: 500; }
.lede {
  font-size: 21px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 600;
  margin: 0 0 28px;
  max-width: 520px;
}
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 32px;
}
.pill-pair {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  flex-basis: 100%;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--pill-bg);
  color: var(--ink);
  font-size: 17px;
  font-weight: 900;
  padding: 10px 18px;
  border-radius: 999px;
  white-space: nowrap;
}
.micro { font-size: 16px; font-weight: 600; color: var(--muted); margin-top: 14px; }
.micro a { color: var(--ink); font-weight: 700; text-decoration: none; }

.hero-photo-wrap {
  position: relative;
  aspect-ratio: 4/5;
}
.hero-blob {
  position: absolute;
  inset: -22px -34px -32px -18px;
  background: var(--pink-soft);
  border-radius: 46% 54% 42% 58% / 52% 44% 56% 48%;
  z-index: 0;
}
.hero-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 44% 56% 40% 60% / 50% 46% 54% 50%;
  box-shadow: 0 24px 48px -22px rgba(60, 30, 40, 0.32);
}

/* ───── Mini bio ───── */
.bio {
  padding: 56px 0 72px;
  text-align: center;
}
.bio h2 {
  font-family: var(--display);
  font-weight: 400;
  font-style: normal;
  font-size: 80px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 20px;
}
.bio p {
  max-width: 640px;
  margin: 0 auto 18px;
  font-size: 17px;
  line-height: 1.65;
  font-weight: 600;
  color: var(--ink);
}
.bio p:last-child { margin-bottom: 0; }
.bio .bio-emph {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
  color: var(--pink-hot);
  margin: 24px auto;
}
.daisy-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 22px 0;
}
.daisy-row img {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
}

/* ───── Hippie Way (signature) ───── */
.hippie {
  position: relative;
  background: var(--pink-soft);
  padding: 88px 0 96px;
}
.hippie .badge-est {
  position: absolute;
  top: -48px;
  right: 6%;
  width: 96px;
  height: 96px;
  z-index: 2;
  border-radius: 50%;
  background: var(--mustard);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--script);
  font-weight: 900;
  font-size: 30px;
  line-height: 1.1;
  text-align: center;
  transform: rotate(18deg);
  box-shadow: 0 12px 26px -10px rgba(120, 80, 30, 0.4);
}

.section-head {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 720px;
}
.section-head .eyebrow { color: var(--ink-2); font-size: 44px; font-weight: 900; }
.section-head h2 {
  font-family: var(--display);
  font-weight: 800;
  font-style: normal;
  font-size: 72px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.squiggle {
  display: block;
  margin: 12px auto 0;
  color: var(--mustard);
  width: 200px;
}

.hippie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 880px;
  margin: 0 auto;
}
.hippie-card {
  background: var(--paper);
  border-radius: 22px;
  padding: 18px 28px 22px;
  text-align: center;
  box-shadow: 0 8px 24px -16px rgba(60, 30, 40, 0.25);
}
.hippie-card .ico {
  display: block;
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin: 0 auto 8px;
  mix-blend-mode: multiply;
}
.hippie-card h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 32px;
  line-height: 1.15;
  margin: 0 0 10px;
  color: #000;
}
.hippie-card p {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.5;
  color: #000;
  margin: 0;
}

/* ───── How a groom goes ───── */
.steps {
  padding: 96px 0 88px;
}
.step-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.step-row.is-visible { opacity: 1; transform: translateY(0); }
.step-row.reverse { transform: translateY(28px); }
.step-row.reverse.is-visible { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .step-row { opacity: 1; transform: none; transition: none; }
}
.step-row:last-child { margin-bottom: 0; }
.step-row.reverse .step-copy { order: 2; }
.step-row.reverse .step-photo { order: 1; }
.step-copy { display: flex; align-items: flex-start; gap: 28px; }
.step-text { flex: 1; }
.step-num {
  font-family: var(--display);
  font-weight: 400;
  font-style: normal;
  font-size: 80px;
  line-height: 0.9;
  color: var(--mustard);
  flex-shrink: 0;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
}
.step-row h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 38px;
  line-height: 1.15;
  color: #000;
  margin: 0 0 14px;
  letter-spacing: -0.01em;
}
.step-row p {
  font-size: 19px;
  font-weight: 400;
  line-height: 1.6;
  color: #000;
  margin: 0;
  max-width: 520px;
}
.step-photo {
  position: relative;
  aspect-ratio: 16/8;
}
.step-photo .blob {
  position: absolute;
  inset: -22px -10% -22px 8%;
  background: var(--pink-soft);
  border-radius: 90px;
  z-index: 0;
}
.step-row.reverse .step-photo .blob {
  inset: -22px 8% -22px -10%;
}
.step-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

/* ───── About page intro (info-page header, not a hero) ───── */
.about-intro {
  padding: 48px 0 32px;
  text-align: center;
}
.about-intro-mark {
  width: 120px;
  height: 120px;
  margin: 0 auto 14px;
}
.about-intro-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-clip-path: circle(48% at 50% 50%);
          clip-path: circle(48% at 50% 50%);
}
.about-intro .eyebrow {
  font-family: var(--script);
  color: var(--pink-hot);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 6px;
}
.about-intro h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 auto 14px;
  max-width: 720px;
}
.about-intro h1 em { font-style: italic; font-weight: 500; color: var(--pink-hot); }
.about-intro p {
  max-width: 580px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  font-weight: 500;
}
.intro-quote {
  max-width: 700px !important;
  margin: 18px auto 8px !important;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  font-size: 28px !important;
  line-height: 1.3 !important;
  color: var(--ink) !important;
}
.intro-quote::before { content: "\201C"; color: var(--pink-hot); }
.intro-quote::after { content: "\201D"; color: var(--pink-hot); }
.intro-attrib {
  font-family: var(--script);
  color: var(--pink-hot);
  font-size: 22px;
  margin-top: 6px;
}
.intro-milestones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 760px;
  margin: 36px auto 0;
}
.intro-milestone {
  background: var(--pink-soft);
  border-radius: 18px;
  padding: 18px 16px;
  text-align: center;
}
.intro-milestone .year {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  color: var(--pink-hot);
  line-height: 1;
  margin-bottom: 4px;
}
.intro-milestone .what {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}

/* ───── Meet us (compact 2-up) ───── */
.meet {
  padding: 56px 0 64px;
  background: var(--sage-tint);
}
.meet .section-head { margin-bottom: 36px; }
.meet .section-head h2 { font-size: 56px; }
.meet .section-head h2 em { font-style: italic; font-weight: 500; color: var(--pink-hot); }
.meet .section-head .eyebrow { font-size: 28px; }
.meet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 720px;
  margin: 0 auto;
}
.meet-card {
  margin: 0;
  text-align: center;
}
.meet-photo {
  width: 100%;
  max-width: 260px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 14px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 14px 32px -18px rgba(60, 30, 40, 0.32);
  background: var(--paper);
}
.meet-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.meet-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: 28px;
  color: var(--ink);
  line-height: 1.1;
}
.meet-role {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink-2);
  margin-top: 4px;
}
.meet-story {
  text-align: center;
  max-width: 640px;
  margin: 48px auto 0;
}
.meet-story .eyebrow {
  font-family: var(--script);
  color: var(--pink-hot);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 4px;
}
.meet-story h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 18px;
}
.meet-story h3 em { font-style: italic; font-weight: 500; color: var(--pink-hot); }
.meet-story p {
  font-size: 17px;
  line-height: 1.65;
  font-weight: 500;
  color: var(--ink);
  margin: 0 0 14px;
}
.meet-story p:last-child { margin-bottom: 0; }

/* ───── Recent grooms (compact 2-up) ───── */
.grooms {
  padding: 64px 0 64px;
}
.grooms .section-head { margin-bottom: 32px; }
.grooms .section-head h2 { font-size: 56px; }
.grooms .section-head h2 em { font-style: italic; font-weight: 500; color: var(--pink-hot); }
.grooms .section-head .eyebrow { font-size: 28px; }
.grooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 720px;
  margin: 0 auto;
  padding: 12px 4px;
}
.groom {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 36px -20px rgba(60, 30, 40, 0.42);
  background: var(--paper);
  transition: transform 0.2s ease;
}
.groom:nth-child(1) { transform: rotate(-2deg); }
.groom:nth-child(2) { transform: rotate(2deg) translateY(8px); }
.groom:hover { transform: rotate(0) translateY(-2px); }
.groom img {
  width: 100%;
  height: auto;
  display: block;
}
.grooms-caption {
  text-align: center;
  font-family: var(--script);
  font-size: 24px;
  color: var(--pink-hot);
  margin: 24px auto 0;
}

@media (max-width: 880px) {
  .about-intro { padding: 32px 0 20px; }
  .about-intro-mark { width: 88px; height: 88px; }
  .about-intro h1 { font-size: 36px; }
  .about-intro p { font-size: 16px; }
  .about-intro .eyebrow { font-size: 22px; }
  .intro-quote { font-size: 22px !important; }
  .intro-attrib { font-size: 20px; }
  .intro-milestones { grid-template-columns: repeat(3, 1fr); gap: 8px; max-width: 360px; margin-top: 24px; }
  .intro-milestone { padding: 10px 8px; border-radius: 14px; }
  .intro-milestone .year { font-size: 18px; margin-bottom: 2px; }
  .intro-milestone .what { font-size: 11px; line-height: 1.3; font-weight: 700; }
  .meet { padding: 48px 0 56px; }
  .meet .section-head h2 { font-size: 34px; }
  .meet .section-head .eyebrow { font-size: 20px; }
  .meet-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .meet-photo { max-width: 140px; }
  .meet-name { font-size: 20px; }
  .meet-role { font-size: 13px; }
  .meet-story { margin-top: 36px; }
  .meet-story h3 { font-size: 26px; }
  .meet-story p { font-size: 16px; }
  .meet-story .eyebrow { font-size: 20px; }

  .grooms { padding: 48px 0 56px; }
  .grooms .section-head h2 { font-size: 34px; }
  .grooms .section-head .eyebrow { font-size: 20px; }
  .grooms-grid { grid-template-columns: 1fr; gap: 24px; max-width: 320px; padding: 16px 8px; }
  .groom:nth-child(1) { transform: rotate(-1.5deg); }
  .groom:nth-child(2) { transform: rotate(1.5deg) translateY(0); }
  .grooms-caption { font-size: 20px; margin-top: 20px; }
}

/* ───── Reviews ───── */
.reviews {
  background: var(--sage-tint);
  padding: 88px 0 96px;
}
.reviews .stars {
  font-family: var(--display);
  font-weight: 800;
  font-style: normal;
  font-size: 56px;
  line-height: 1.15;
  color: var(--ink);
  text-align: center;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.reviews .stars em { display: block; font-style: normal; font-weight: 700; font-size: 32px; margin-top: 6px; }
.stars-row { color: var(--mustard); display: inline-flex; gap: 6px; vertical-align: -4px; margin-right: 14px; }
.stars-row svg { width: 38px; height: 38px; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.review {
  background: var(--paper);
  border-radius: 20px;
  padding: 56px 26px 28px;
  box-shadow: 0 6px 22px -16px rgba(60, 30, 40, 0.2);
  text-align: center;
  position: relative;
  overflow: visible;
}
.review .daisy-mini {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 64px;
}
.review .daisy-mini img { width: 100%; height: auto; display: block; }
.review p {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  line-height: 1.55;
  margin: 0 0 16px;
  font-style: normal;
}
.review .who {
  font-size: 17px;
  font-weight: 800;
  color: #000;
  letter-spacing: 0.02em;
}

/* ───── Visit ───── */
.visit { padding: 96px 0 88px; }
.visit-card {
  background: #5a4836;
  color: var(--paper);
  border-radius: 28px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.visit-card .eyebrow { color: #fff; font-size: 56px; font-weight: 900; }
.visit-card h2 {
  font-family: var(--display);
  font-weight: 800;
  font-style: normal;
  font-size: 56px;
  line-height: 1.05;
  color: #fff;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.visit-card .info {
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.7;
}
.visit-card .info strong { color: #fff; font-weight: 800; }
.visit-card .info a { color: #fff; text-decoration: none; font-weight: 800; }
.visit-card .info a:hover { text-decoration: underline; }
.visit-card .info .row { margin-bottom: 10px; display: flex; align-items: center; gap: 12px; }
.visit-card .info .info-ico { width: 22px; height: 22px; flex-shrink: 0; color: #fff; }
.visit-card .map {
  aspect-ratio: 5/4;
  width: 100%;
  border-radius: 18px;
  background: var(--pill-bg);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}
.visit-card .map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ───── Final CTA ───── */
.final-cta {
  background: var(--pink-hot);
  color: #fff;
  padding: 96px 0 100px;
  position: relative;
  text-align: center;
  overflow: hidden;
}
.final-cta::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 280px;
  height: 280px;
  background: url("/img/cta-daisies.png") no-repeat right bottom / cover;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to top left, #000 60%, transparent 100%);
          mask-image: linear-gradient(to top left, #000 60%, transparent 100%);
}
.final-cta h2 {
  font-family: var(--display);
  font-weight: 800;
  font-style: normal;
  font-size: 72px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
  color: #fff;
}
.final-cta p {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  max-width: none;
  margin: 0 auto 32px;
  opacity: 1;
  white-space: nowrap;
}
.final-cta .micro { color: #fff; opacity: 0.95; margin-top: 18px; font-size: 18px; font-weight: 700; }
.final-cta .micro a { color: #fff; font-weight: 800; }
.final-cta .btn-lg { padding: 22px 64px; font-size: 24px; font-weight: 800; box-shadow: 0 12px 32px -14px rgba(0,0,0,0.45); }

/* ───── FAQ ───── */
.faq {
  padding: 96px 0 96px;
}
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px;
  padding: 26px 4px;
  border-top: 1px solid var(--line);
  align-items: start;
}
.faq-row:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  font-family: var(--body);
  font-weight: 800;
  font-size: 22px;
  color: #000;
  line-height: 1.4;
  position: relative;
}
.faq-a {
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-2);
}
.faq-q .faq-toggle { display: none; }
@media (max-width: 880px) {
  .faq-q {
    cursor: pointer;
    padding-right: 32px;
    user-select: none;
  }
  .faq-q .faq-toggle {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 50%;
    width: 18px;
    height: 18px;
    transform: translateY(-50%);
    transition: transform 0.18s ease;
    color: var(--pink-hot);
    font-weight: 900;
  }
  .faq-row.is-open .faq-q .faq-toggle { transform: translateY(-50%) rotate(180deg); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease, margin 0.25s ease, opacity 0.2s ease; opacity: 0; margin-top: 0; }
  .faq-row.is-open .faq-a { max-height: 600px; opacity: 1; margin-top: 12px; }
}

/* ───── Footer ───── */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 56px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 36px;
  align-items: start;
}
.footer .logo img { width: 96px; height: 96px; }
.footer-tag {
  font-family: var(--script);
  color: #fff;
  font-size: 26px;
  margin-top: 6px;
}
.footer-info {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 248, 236, 0.78);
}
.footer-info a { color: rgba(255, 248, 236, 0.9); text-decoration: none; }
.footer-info a:hover { color: var(--pink-soft); }
.footer-info-row { display: flex; align-items: center; gap: 10px; margin-bottom: 6px; }
.footer-ico { width: 18px; height: 18px; flex-shrink: 0; color: rgba(255, 248, 236, 0.78); }
.footer-socials {
  display: flex;
  gap: 12px;
}
.footer-socials a {
  color: var(--paper);
  transition: color 0.15s ease;
  display: inline-flex;
}
.footer-socials a:hover { color: var(--pink-hot); }
.footer-socials svg { width: 30px; height: 30px; }
.copyright {
  display: block;
  margin-top: 6px;
  font-size: 15px;
  color: rgba(255, 248, 236, 0.55);
}
.dev-credit-rule {
  border: 0;
  border-top: 1px solid rgba(255, 248, 236, 0.18);
  margin: 36px 0 0;
}
.dev-credit {
  display: block;
  text-align: center;
  margin-top: 18px;
  font-size: 13px;
  color: rgba(255, 248, 236, 0.5);
}
.dev-credit a {
  color: rgba(255, 248, 236, 0.7);
  text-decoration: underline;
  text-decoration-color: rgba(255, 248, 236, 0.3);
  text-underline-offset: 3px;
}
.dev-credit a:hover { color: var(--pink-soft); text-decoration-color: var(--pink-soft); }

/* ───── Mobile ───── */
@media (max-width: 880px) {
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .header .btn-header { display: none; }
  .bottom-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    background: var(--paper);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 20px rgba(44, 34, 24, 0.08);
  }
  .bottom-bar-cta {
    flex: 1;
    justify-content: center;
    padding: 14px 24px;
    font-size: 17px;
    font-weight: 800;
  }
  .nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-actions { gap: 10px; }
  .is-nav-open .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px rgba(44, 34, 24, 0.08);
    padding: 8px 0;
    z-index: 50;
  }
  .is-nav-open .nav a {
    padding: 14px 24px;
    font-size: 18px;
    border-bottom: 1px solid var(--line);
  }
  .is-nav-open .nav a:last-child { border-bottom: 0; }
  .is-nav-open .nav-sep { display: none; }
  .header-row { gap: 12px; }
  .alert { font-size: 12px; padding: 8px 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .header { padding: 8px 0; }
  .logo img { width: 56px; height: 56px; }
  .btn-header { padding: 9px 16px; font-size: 13px; }
  .pill { font-size: 14px; padding: 7px 14px; font-weight: 800; }
  .pill svg { width: 16px; height: 16px; }

  .hero { padding: 36px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .h-display { font-size: 38px; }
  .lede { font-size: 16px; max-width: 100%; }
  .hero-photo-wrap { max-width: 320px; margin: 0 auto; aspect-ratio: 4/5; }
  .hero-blob { inset: -10px; }
  .pills { flex-direction: column; align-items: flex-start; }
  .pill-pair { flex-wrap: wrap; flex-basis: auto; }
  .pill { white-space: normal; }
  .btn-lg { padding: 16px 32px; font-size: 18px; width: 100%; max-width: 320px; justify-content: center; }

  .bio { padding: 40px 0 48px; }
  .bio h2 { font-size: 32px; }

  .hippie { padding: 56px 0 64px; }
  .hippie .badge-est { width: 78px; height: 78px; font-size: 18px; right: 4%; top: -39px; }
  .section-head h2 { font-size: 38px; }
  .hippie-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 16px 14px;
    margin: 0 -16px;
    scrollbar-width: none;
  }
  .hippie-grid::-webkit-scrollbar { display: none; }
  .hippie-card {
    flex: 0 0 78%;
    scroll-snap-align: start;
    padding: 14px 20px 18px;
  }
  .hippie-card .ico { width: 72px; height: 72px; margin: 0 auto 6px; }
  .hippie-card h3 { font-size: 22px; margin: 0 0 8px; }
  .hippie-card p { font-size: 15px; line-height: 1.5; }

  .steps { padding: 56px 0 48px; }
  .step-row { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
  .step-row.reverse .step-copy { order: 1; }
  .step-row.reverse .step-photo { order: 2; }
  .step-num { font-size: 48px; }
  .step-row h3 { font-size: 26px; }
  .step-copy { gap: 16px; }
  .step-photo { aspect-ratio: 5/3; max-width: 280px; margin: 0 auto; }
  .step-photo .blob { inset: -10px 0; border-radius: 32px; }
  .step-row.reverse .step-photo .blob { inset: -10px 0; }

  .reviews { padding: 56px 0 64px; }
  .reviews .stars { font-size: 28px; }
  .stars-row svg { width: 22px; height: 22px; }
  .review-grid {
    display: flex;
    grid-template-columns: none;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 36px 16px 16px;
    margin: 32px -16px 0;
    scrollbar-width: none;
  }
  .review-grid::-webkit-scrollbar { display: none; }
  .review {
    flex: 0 0 86%;
    scroll-snap-align: center;
  }

  .visit { padding: 56px 0 48px; }
  .visit-card { padding: 32px 24px; grid-template-columns: 1fr; gap: 28px; }
  .visit-card h2 { font-size: 32px; }

  .final-cta { padding: 64px 0 72px; }
  .final-cta h2 { font-size: 36px; }
  .final-cta p { font-size: 16px; white-space: normal; }
  .final-cta .btn-lg { padding: 16px 36px; font-size: 18px; width: auto; max-width: none; }
  .final-cta::after { width: 96px; height: 96px; }

  .faq { padding: 56px 0 64px; }
  .faq-row { grid-template-columns: 1fr; gap: 8px; padding: 18px 0; }
  .faq-q { font-size: 19px; }
  .faq-a { font-size: 17px; }

  .footer { padding: 40px 0 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 22px; }
}
