/* ========================================================
 * Components — sections, cards, nav, hero
 * ======================================================== */

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  padding: 14px 0;
  transition: all var(--dur-base) var(--ease-out);
}
.nav.is-scrolled {
  background: rgba(26, 22, 18, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  padding: 10px 0;
  color: var(--c-ivory);
}
.nav.is-transparent { background: transparent; }
.nav.is-transparent.is-light { color: var(--c-ivory); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: var(--sp-5); }
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  color: var(--c-ink);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 40px !important;
  max-height: 40px;
  width: auto !important;
  max-width: 180px;
  display: block;
  object-fit: contain;
  transition: filter var(--dur-base) var(--ease-out);
}
@media (max-width: 880px) {
  .nav-logo img { height: 32px !important; max-height: 32px; max-width: 140px; }
}
/* Both states have dark bg → logo keeps original gold (high contrast) */
.nav.is-transparent.is-light .nav-logo { color: var(--c-ivory); }
.nav.is-transparent.is-light .nav-logo img { filter: none; }
.nav.is-scrolled .nav-logo img { filter: none; }
.nav-links { display: flex; align-items: center; gap: var(--sp-6); }
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  position: relative;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav-link:hover { color: var(--c-gold); }
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width var(--dur-base) var(--ease-out);
}
.nav-link:hover::after { width: 100%; }
/* Same rule applies for both transparent (on hero) AND scrolled (dark nav) — both have dark bg */
.nav.is-scrolled .nav-link { color: rgba(255, 255, 255, 0.82); }
.nav.is-scrolled .nav-link:hover { color: var(--c-gold); }
.nav-cta { padding: 10px 20px; }
/* On scrolled state, CTA stays gold for visibility */
.nav.is-scrolled .nav-cta { background: var(--c-gold); color: var(--c-ink); }
.nav.is-scrolled .nav-cta:hover { background: var(--c-ivory); color: var(--c-ink); }
.nav-burger { display: none; cursor: pointer; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-burger { display: block; padding: 8px; }
  .nav-cta { padding: 8px 16px; font-size: 0.85rem; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + 24px);
  padding-bottom: clamp(60px, 8vh, 120px);
  color: var(--c-ivory);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg img { animation: heroZoom 18s ease-out infinite alternate; }
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(26, 22, 18, 0.45) 0%,
    rgba(26, 22, 18, 0.30) 40%,
    rgba(26, 22, 18, 0.75) 100%);
}
.hero-content {
  position: relative;
  z-index: var(--z-content);
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-pill);
  font-size: var(--fs-caption);
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-6);
}
.hero-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero-title {
  font-family: var(--font-display);
  font-size: var(--fs-display-xl);
  line-height: var(--lh-tight);
  letter-spacing: var(--tracking-tight);
  font-weight: 500;
  color: var(--c-ivory);
  margin-bottom: var(--sp-6);
  max-width: 18ch;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-gold);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-7);
  align-items: end;
}
.hero-sub {
  font-size: var(--fs-body-lg);
  line-height: var(--lh-body);
  color: rgba(255, 255, 255, 0.85);
  max-width: 52ch;
  margin-bottom: var(--sp-6);
}
.hero-actions { display: flex; align-items: center; gap: var(--sp-5); flex-wrap: wrap; }
.hero-secondary-link {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(255, 255, 255, 0.3);
  transition: all var(--dur-fast) var(--ease-out);
}
.hero-secondary-link:hover {
  color: var(--c-gold);
  text-decoration-color: var(--c-gold);
}
.hero-meta {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  padding: var(--sp-5);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--r-lg);
  align-self: end;
}
.hero-meta-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.92);
}
.hero-meta-item-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--c-gold);
  color: var(--c-ink);
  display: grid; place-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.hero-scroll-hint {
  position: absolute;
  bottom: var(--sp-5);
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-content);
  font-size: var(--fs-caption);
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center;
  gap: var(--sp-2);
}
.hero-scroll-hint::after {
  content: '';
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--c-gold), transparent);
  animation: scrollHint 2s ease-out infinite;
}
@keyframes scrollHint {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-meta { display: none; }
  .hero-title { max-width: none; }
}

/* ===== TRUST MARQUEE BAR ===== */
.trust-strip {
  background: var(--c-ink);
  color: var(--c-ivory);
  padding: var(--sp-6) 0;
  border-block: 1px solid rgba(255,255,255,0.08);
}
.trust-strip-inner {
  display: flex;
  gap: var(--sp-7);
  flex-shrink: 0;
}
.trust-stat {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  white-space: nowrap;
}
.trust-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--c-gold);
  line-height: 1;
}
.trust-stat-label {
  font-size: var(--fs-caption);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}
.trust-divider {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-earth);
  align-self: center;
  flex-shrink: 0;
}

/* ===== SECTION HEADERS ===== */
.s-head { text-align: center; margin-bottom: var(--sp-8); }
.s-head .eyebrow { margin-bottom: var(--sp-4); }
.s-head h2 { font-size: var(--fs-display-md); margin-bottom: var(--sp-4); text-wrap: balance; }
.s-head p { color: var(--c-text-soft); font-size: var(--fs-body-lg); max-width: 60ch; margin: 0 auto; }

.s-head-left { text-align: left; }
.s-head-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  margin-bottom: var(--sp-8);
  align-items: end;
}
.s-head-split p { margin: 0; }
@media (max-width: 880px) {
  .s-head-split { grid-template-columns: 1fr; }
}

/* ===== OFFERS CARDS ===== */
.offers {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
  max-width: 920px;
  margin: 0 auto;
}
.offer-card {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: var(--sp-7) var(--sp-6);
  display: flex;
  flex-direction: column;
  transition: all var(--dur-base) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px circle at 50% -20%, rgba(139, 115, 85, 0.08), transparent 40%);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
  pointer-events: none;
}
.offer-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--c-sand); }
.offer-card:hover::before { opacity: 1; }

.offer-card.featured {
  background: var(--c-ink);
  color: var(--c-ivory);
  border-color: var(--c-ink);
}
.offer-card.featured h3 { color: var(--c-gold); }
.offer-card.featured .offer-price-main { color: var(--c-gold); }
.offer-card.featured .offer-includes li { color: rgba(255, 255, 255, 0.85); }
.offer-card.featured .offer-includes li::before { color: var(--c-gold); }
.offer-card.featured .offer-tag { background: var(--c-gold); color: var(--c-ink); }
.offer-card.featured .offer-cta { background: var(--c-gold); color: var(--c-ink); }
.offer-card.featured .offer-cta:hover { background: var(--c-ivory); }
.offer-card.featured .offer-card-foot { color: rgba(255, 255, 255, 0.6); }
.offer-card.featured .offer-for { color: rgba(255, 255, 255, 0.7); }

.offer-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 5px 14px;
  background: var(--c-sand);
  color: var(--c-earth);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-5);
}

.offer-card h3 {
  font-size: 1.7rem;
  margin-bottom: var(--sp-2);
}
.offer-for {
  font-size: 0.92rem;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-5);
  line-height: 1.5;
}
.offer-price {
  display: flex;
  align-items: baseline;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
  flex-wrap: wrap;
}
.offer-price-main {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--c-earth);
  line-height: 1;
}
.offer-price-unit { font-size: 1rem; color: var(--c-text-muted); }
.offer-includes {
  list-style: none;
  margin-bottom: var(--sp-6);
  flex-grow: 1;
}
.offer-includes li {
  padding: 6px 0 6px 28px;
  position: relative;
  font-size: 0.94rem;
  color: var(--c-text-soft);
}
.offer-includes li::before {
  content: '✓';
  position: absolute; left: 0; top: 6px;
  color: var(--c-sage);
  font-weight: 700;
}
.offer-cta {
  width: 100%;
  padding: 14px 24px;
  background: var(--c-ink);
  color: var(--c-ivory);
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  transition: all var(--dur-base) var(--ease-out);
}
.offer-cta:hover { background: var(--c-accent); }
.offer-card-foot {
  font-size: var(--fs-caption);
  color: var(--c-text-muted);
  text-align: center;
  margin-top: var(--sp-3);
}

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

/* ===== MATCHER (1:1 vs 1:6) ===== */
.matcher-card {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
}
.matcher-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}
.matcher-col {
  background: var(--c-cream);
  border-radius: var(--r-lg);
  position: relative;
  transition: all var(--dur-base) var(--ease-out);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.matcher-col:hover { background: var(--c-sand); transform: translateY(-4px); }
.matcher-col-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8;
  overflow: hidden;
  background: var(--c-sand);
}
.matcher-col-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slower) var(--ease-out);
}
.matcher-col:hover .matcher-col-image img { transform: scale(1.06); }
.matcher-col-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(243, 236, 226, 0.4));
}
.matcher-col-body {
  padding: var(--sp-7);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.matcher-col h4 {
  font-size: 1.7rem;
  margin-bottom: var(--sp-1);
}
.matcher-col-sub {
  font-size: var(--fs-caption);
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  font-weight: 600;
  margin-bottom: var(--sp-5);
}
.matcher-col ul {
  list-style: none;
  margin-bottom: var(--sp-5);
}
.matcher-col li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--c-text-soft);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--c-line-soft);
}
.matcher-col li:last-child { border: none; }
.matcher-col li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--c-accent);
  font-weight: 700;
}
.matcher-result {
  padding: var(--sp-4) var(--sp-5);
  background: var(--c-ivory);
  border-left: 3px solid var(--c-accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--c-ink);
}
.matcher-result strong { color: var(--c-accent); font-weight: 600; }

@media (max-width: 880px) {
  .matcher-grid { grid-template-columns: 1fr; }
  .matcher-card { padding: var(--sp-5); }
}

/* ===== PAINS — emotional cards w/ image ===== */
.pains {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
.pain {
  position: relative;
  background: var(--c-paper);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-line);
  transition: all var(--dur-base) var(--ease-out);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.pain:hover { border-color: var(--c-sand); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pain-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--c-sand);
}
.pain-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slower) var(--ease-out);
}
.pain:hover .pain-image img { transform: scale(1.05); }
.pain-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26, 22, 18, 0.35));
}
.pain-image .pain-badge {
  position: absolute;
  bottom: var(--sp-4);
  left: var(--sp-4);
  z-index: 2;
  margin-bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pain-content {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pain-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--c-cream);
  color: var(--c-earth);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-3);
}
/* Different pain types get different accent badges */
.pain[data-type="back"] .pain-badge { background: rgba(181, 85, 46, 0.12); color: var(--c-rust); }
.pain[data-type="spine"] .pain-badge { background: rgba(139, 115, 85, 0.12); color: var(--c-earth); }
.pain[data-type="postpartum"] .pain-badge { background: rgba(201, 169, 110, 0.18); color: #8B6F3D; }
.pain[data-type="weight"] .pain-badge { background: rgba(107, 127, 91, 0.15); color: var(--c-sage); }
.pain[data-type="newbie"] .pain-badge { background: rgba(168, 155, 140, 0.20); color: var(--c-earth-dark); }
.pain[data-type="injury"] .pain-badge { background: rgba(43, 37, 32, 0.10); color: var(--c-ink); }

.pain h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: var(--sp-2);
  line-height: 1.2;
}
.pain-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--c-text-muted);
  margin-bottom: var(--sp-3);
  line-height: 1.45;
}
.pain p {
  color: var(--c-text-soft);
  font-size: 0.95rem;
  margin-bottom: var(--sp-4);
  line-height: 1.6;
}
.pain-fit {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--c-text-muted);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--c-line-soft);
  width: 100%;
}
.pain-fit strong { color: var(--c-accent); font-weight: 600; }

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

/* ===== PROMISE (dark section) ===== */
.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-8);
  align-items: start;
}
.promise-grid > div:first-child h2 { font-size: var(--fs-display-md); }
.promise-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}
.promise-item {
  padding: var(--sp-5);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  transition: all var(--dur-base) var(--ease-out);
}
.promise-item:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }
.promise-guarantee {
  grid-column: 1 / -1;
  background: rgba(201, 169, 110, 0.10) !important;
  border-color: rgba(201, 169, 110, 0.4) !important;
}
.promise-guarantee .promise-num { color: var(--c-gold); }
.promise-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--c-gold);
  line-height: 1;
  margin-bottom: var(--sp-3);
}
.promise-item h4 { font-family: var(--font-body); font-weight: 700; font-size: 1rem; margin-bottom: var(--sp-2); color: var(--c-ivory); }
.promise-item p { color: rgba(255,255,255,0.75); font-size: 0.92rem; }

@media (max-width: 880px) {
  .promise-grid { grid-template-columns: 1fr; }
  .promise-list { grid-template-columns: 1fr; }
}

/* ===== EXPERIENCE (Body/Mind/Energy) ===== */
.exp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.exp-card {
  background: var(--c-paper);
  border-radius: var(--r-xl);
  border: 1px solid var(--c-line);
  transition: all var(--dur-base) var(--ease-out);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.exp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.exp-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--c-sand);
}
.exp-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slower) var(--ease-out);
}
.exp-card:hover .exp-image img { transform: scale(1.05); }
.exp-body {
  padding: var(--sp-7);
  flex: 1;
}
.exp-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--c-sage);
  color: var(--c-ivory);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  border-radius: var(--r-sm);
  margin-bottom: var(--sp-4);
}
.exp-card h3 { font-family: var(--font-display); font-size: 1.6rem; margin-bottom: var(--sp-3); }
.exp-card p { color: var(--c-text-soft); font-size: 0.95rem; }

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

/* ===== GALLERY MASONRY ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: var(--sp-3);
}
.gallery-item {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-sand);
  position: relative;
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slower) var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26, 22, 18, 0.4));
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-out);
}
.gallery-item:hover::after { opacity: 1; }
/* Masonry sizes — feature 1st, 4th, 7th images */
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item:nth-child(6) { grid-column: span 2; grid-row: span 2; }

@media (max-width: 880px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .gallery-item:nth-child(6) { grid-column: span 2; grid-row: span 1; }
}

/* ===== LOCATION ===== */
.loc-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-7);
  align-items: stretch;
}
.loc-info { display: flex; flex-direction: column; justify-content: center; }
.loc-address {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--c-accent);
  margin-bottom: var(--sp-4);
  font-weight: 500;
  line-height: 1.3;
}
.loc-list { list-style: none; margin: var(--sp-5) 0; }
.loc-list li {
  padding: var(--sp-3) 0 var(--sp-3) 32px;
  position: relative;
  color: var(--c-text-soft);
  border-bottom: 1px solid var(--c-line);
  font-size: 0.95rem;
}
.loc-list li:last-child { border: none; }
.loc-list li::before {
  content: '→';
  position: absolute; left: 0;
  color: var(--c-accent);
  font-weight: 700;
}
.loc-warning {
  margin-top: var(--sp-5);
  padding: var(--sp-4) var(--sp-5);
  background: var(--c-sand);
  border-left: 3px solid var(--c-accent);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-size: 0.92rem;
  color: var(--c-text-soft);
}
.loc-warning strong { color: var(--c-accent-strong); }
.loc-map {
  background: var(--c-sand);
  border-radius: var(--r-xl);
  overflow: hidden;
  min-height: 480px;
  box-shadow: var(--shadow-md);
}
.loc-map iframe { width: 100%; height: 100%; border: 0; min-height: 480px; }

@media (max-width: 880px) {
  .loc-grid { grid-template-columns: 1fr; }
  .loc-map { min-height: 320px; }
  .loc-map iframe { min-height: 320px; }
}

/* ===== FAQ ===== */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-md);
  margin-bottom: var(--sp-3);
  overflow: hidden;
  transition: all var(--dur-base) var(--ease-out);
}
.faq-item:hover { border-color: var(--c-sand); }
.faq-item[open] { background: var(--c-cream); border-color: var(--c-accent); }
.faq-q {
  padding: var(--sp-5) var(--sp-6);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--c-ink);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  gap: var(--sp-4);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '';
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--c-ink);
  color: var(--c-ivory);
  display: grid; place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23FAF6F0'%3E%3Crect x='5' y='1' width='2' height='10'/%3E%3Crect x='1' y='5' width='10' height='2'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px;
  transition: transform var(--dur-base) var(--ease-out);
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); background-color: var(--c-accent); }
.faq-a {
  padding: 0 var(--sp-6) var(--sp-5);
  color: var(--c-text-soft);
  font-size: 0.98rem;
  line-height: var(--lh-loose);
}

/* ===== FORM (consult section) ===== */
.consult {
  background: var(--c-paper);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-line);
}
.consult-photo {
  position: relative;
  min-height: 560px;
  background: var(--c-sand);
}
.consult-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.consult-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-6);
  background: linear-gradient(180deg, transparent, rgba(26,22,18,0.92));
  color: var(--c-ivory);
}
.consult-photo-overlay-name { font-family: var(--font-display); font-size: 1.6rem; color: var(--c-gold); font-weight: 600; margin-bottom: 4px; }
.consult-photo-overlay-role { font-size: 0.88rem; opacity: 0.85; margin-bottom: var(--sp-3); }
.consult-photo-overlay-quote { font-family: var(--font-display); font-style: italic; font-size: 1.1rem; line-height: 1.5; opacity: 0.92; }

.consult-form-wrap {
  padding: var(--sp-7);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.consult-form-wrap .eyebrow { margin-bottom: var(--sp-3); }
.consult-form-wrap h2 { font-size: 2rem; margin-bottom: var(--sp-3); }
.consult-form-wrap p.lead { color: var(--c-text-soft); margin-bottom: var(--sp-5); font-size: 1rem; }

.lead-form .field { margin-bottom: var(--sp-3); }
.lead-form .btn { width: 100%; margin-top: var(--sp-3); }
.lead-form-trust {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-4);
  font-size: var(--fs-caption);
  color: var(--c-text-muted);
}
.lead-form-trust span::before { content: '✓ '; color: var(--c-sage); font-weight: 700; }

@media (max-width: 880px) {
  .consult { grid-template-columns: 1fr; }
  .consult-photo { min-height: 320px; }
}

/* ===== VIDEO ROW (9:16 reels-style) ===== */
.video-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}
.video-tile {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-ink);
  cursor: pointer;
  aspect-ratio: 9 / 16;
  transition: transform var(--dur-base) var(--ease-out);
}
.video-tile:hover { transform: translateY(-4px); }
.video-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-slower) var(--ease-out);
}
.video-tile:hover video { transform: scale(1.04); }
.video-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: var(--sp-5);
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(0,0,0,0.78));
  color: var(--c-ivory);
  pointer-events: none;
  transition: background var(--dur-base) var(--ease-out);
}
.video-tile:hover .video-tile-overlay { background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.85) 100%); }
.video-tile-label {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.2;
  font-weight: 500;
}
.video-tile-sub {
  font-size: 0.82rem;
  opacity: 0.85;
  margin-top: 4px;
}
.video-play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  display: grid; place-items: center;
  pointer-events: none;
  opacity: 0.85;
  transition: all var(--dur-base) var(--ease-out);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.video-play-btn::before {
  content: '';
  width: 0; height: 0;
  border-left: 14px solid var(--c-ink);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  margin-left: 4px;
}
.video-tile:hover .video-play-btn { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
.video-tile.is-playing video { object-fit: contain; background: black; }
.video-tile.is-playing .video-tile-overlay,
.video-tile.is-playing .video-play-btn { display: none; }

/* Mobile: horizontal scroll-snap */
@media (max-width: 880px) {
  .video-row {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    gap: var(--sp-3);
    padding: 0 var(--sp-4) var(--sp-4);
    margin-left: calc(var(--container-px) * -1);
    margin-right: calc(var(--container-px) * -1);
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .video-row::-webkit-scrollbar { display: none; }
  .video-tile {
    flex: 0 0 calc(70vw);
    max-width: 320px;
    scroll-snap-align: center;
  }
  .video-tile:first-child { margin-left: var(--container-px); }
  .video-tile:last-child { margin-right: var(--container-px); }
}

/* ===== CINEMATIC BREAK (full-width image with quote overlay) ===== */
.cinematic {
  position: relative;
  width: 100%;
  min-height: 60vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--c-ivory);
}
.cinematic-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.cinematic-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.cinematic-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,22,18,0.5) 0%, rgba(26,22,18,0.7) 100%);
}
.cinematic-content {
  position: relative;
  z-index: 1;
  padding: var(--sp-9) var(--container-px);
  max-width: 800px;
}
.cinematic-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--c-ivory);
  margin-bottom: var(--sp-4);
  text-wrap: balance;
}
.cinematic-quote em { color: var(--c-gold); font-style: italic; }
.cinematic-attr {
  font-size: 0.92rem;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ===== OFFER CARD IMAGE HEADER ===== */
.offer-image {
  position: relative;
  width: calc(100% + var(--sp-6) * 2);
  margin: calc(var(--sp-7) * -1) calc(var(--sp-6) * -1) var(--sp-5);
  aspect-ratio: 16 / 8;
  overflow: hidden;
  background: var(--c-sand);
}
.offer-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slower) var(--ease-out);
}
.offer-card:hover .offer-image img { transform: scale(1.05); }
.offer-card.featured .offer-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(26,22,18,0.4));
}

/* ===== FINAL CTA ===== */
.final-cta {
  position: relative;
  text-align: center;
  padding: clamp(100px, 14vw, 180px) 0;
  overflow: hidden;
  color: var(--c-ivory);
}
.final-cta-bg {
  position: absolute; inset: 0; z-index: 0;
}
.final-cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.final-cta-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,22,18,0.78) 0%, rgba(26,22,18,0.92) 100%);
}
.final-cta .container-narrow { position: relative; z-index: 1; }
.final-cta .eyebrow { color: var(--c-gold); }
.final-cta h2 { font-size: var(--fs-display-md); color: var(--c-ivory); margin-bottom: var(--sp-4); max-width: 22ch; margin-left: auto; margin-right: auto; }
.final-cta h2 em { color: var(--c-gold); font-style: italic; }
.final-cta-sub { color: rgba(255,255,255,0.8); max-width: 56ch; margin: 0 auto var(--sp-7); font-size: 1.05rem; }

/* ===== FOOTER ===== */
.footer {
  background: var(--c-ink);
  color: var(--c-ivory);
  padding: var(--sp-9) 0 var(--sp-5);
}
.footer-tagline-wrap { padding-bottom: var(--sp-8); border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: var(--sp-7); }
.footer-tagline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-style: italic;
  font-weight: 400;
  color: var(--c-gold);
  line-height: 1.05;
  letter-spacing: var(--tracking-tight);
  text-wrap: balance;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--sp-7);
  margin-bottom: var(--sp-6);
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  margin-bottom: var(--sp-3);
}
.footer-tag { opacity: 0.7; max-width: 36ch; font-size: 0.94rem; line-height: 1.6; }
.footer h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  color: var(--c-gold);
  margin-bottom: var(--sp-4);
}
.footer ul li { margin-bottom: var(--sp-2); opacity: 0.85; font-size: 0.94rem; }
.footer ul li a:hover { color: var(--c-gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--sp-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-caption);
  opacity: 0.6;
  flex-wrap: wrap;
  gap: var(--sp-3);
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ===== MOBILE STICKY CTA ===== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: var(--z-overlay);
  padding: var(--sp-3) var(--sp-4);
  background: var(--c-ink);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.18);
}
.sticky-cta a { display: block; }
@media (max-width: 880px) {
  .sticky-cta { display: block; }
  body { padding-bottom: 76px; }
}

/* ===== MODAL POPUP ===== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  background: rgba(26, 22, 18, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-base) var(--ease-out), visibility var(--dur-base);
}
.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: var(--c-paper);
  border-radius: var(--r-xl);
  max-width: 520px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
  transform: translateY(40px) scale(0.97);
  transition: transform var(--dur-base) var(--ease-spring), opacity var(--dur-base) var(--ease-out);
  opacity: 0;
}
.modal-backdrop.is-open .modal { transform: translateY(0) scale(1); opacity: 1; }
.modal-close {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--c-cream);
  color: var(--c-ink);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  line-height: 1;
  transition: all var(--dur-fast) var(--ease-out);
  z-index: 2;
}
.modal-close:hover { background: var(--c-ink); color: var(--c-ivory); transform: rotate(90deg); }
.modal-header {
  padding: var(--sp-7) var(--sp-6) var(--sp-3);
  text-align: center;
  border-bottom: 1px solid var(--c-line-soft);
}
.modal-eyebrow {
  display: inline-block;
  padding: 4px 12px;
  background: var(--c-sand);
  color: var(--c-earth);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-3);
}
.modal-header h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  margin-bottom: var(--sp-2);
  line-height: 1.2;
}
.modal-header p {
  font-size: 0.94rem;
  color: var(--c-text-muted);
  margin: 0;
}
.modal-body {
  padding: var(--sp-5) var(--sp-6) var(--sp-6);
}
.modal .lead-form-trust {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  margin-top: var(--sp-3);
  font-size: var(--fs-caption);
  color: var(--c-text-muted);
}
.modal .lead-form-trust span::before { content: '✓ '; color: var(--c-sage); font-weight: 700; }

@media (max-width: 540px) {
  .modal { max-width: 100%; border-radius: var(--r-lg); }
  .modal-header h3 { font-size: 1.5rem; }
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: var(--sp-6); right: var(--sp-6);
  padding: var(--sp-4) var(--sp-5);
  background: var(--c-ink);
  color: var(--c-ivory);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  z-index: var(--z-toast);
  font-size: 0.92rem;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--dur-base) var(--ease-out);
}
.toast.is-visible { transform: translateY(0); opacity: 1; }
.toast.is-error { background: var(--c-rust); }
