/* ============================================
   LUMA WELLNESS CO — refined editorial
   warm ivory · gold accent · soft cards
   ============================================ */

:root {
  --bg: #faf6ef;
  --bg-card: #ffffff;
  --ink: #2c2416;
  --ink-soft: #5a4a35;
  --ink-muted: #8a7a65;
  --brand: #3d2f1a;
  --accent: #c9a95c;
  --accent-soft: #e0c98a;
  --line: #e8dfd0;
  --line-soft: #f0e8d8;
  --highlight: #f5ede0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Karla', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--brand);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

h1 { font-size: clamp(40px, 6vw, 64px); }
h2 { font-size: clamp(32px, 4.5vw, 44px); }
h3 { font-size: 26px; font-weight: 500; }
h4 { font-size: 22px; font-weight: 500; }

em { font-style: italic; color: var(--accent); font-weight: 300; }

p { color: var(--ink-soft); }

.eyebrow {
  display: inline-block;
  font-family: 'Karla', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.ornament {
  text-align: center;
  color: var(--accent);
  font-size: 16px;
  letter-spacing: 0.3em;
  margin: 16px 0;
}

/* LAYOUT */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-wide {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 720px) {
  .container, .container-narrow, .container-wide { padding: 0 20px; }
}

/* NAV */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 32px;
  background: rgba(250, 246, 239, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1320px;
  margin: 0 auto;
}

.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 50px; width: auto; }

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: 'Karla', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}

.nav-links a:hover { color: var(--brand); }
.nav-links a.active { color: var(--brand); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 1px;
  background: var(--accent);
}

.nav-cta {
  border: 1px solid var(--brand);
  padding: 10px 20px !important;
  border-radius: 2px;
  color: var(--brand) !important;
  transition: all 0.25s !important;
}

.nav-cta:hover { background: var(--brand); color: var(--bg) !important; }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--brand);
  font-size: 22px;
  cursor: pointer;
  z-index: 101;
}

@media (max-width: 1024px) {
  .nav { padding: 16px 20px; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(380px, 90vw);
    background: var(--bg);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 60px 32px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    border-left: 1px solid var(--line);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 14px; }
  .nav-toggle { display: block; }
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 2px;
  font-family: 'Karla', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid var(--brand);
  background: transparent;
  color: var(--brand);
  text-align: center;
}

.btn-primary { background: var(--brand); color: var(--bg); }
.btn-primary:hover { background: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--brand); color: var(--bg); }

.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* HERO MOSAIC */
.hero { padding-top: 88px; }

.hero-mosaic {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  height: calc(100vh - 88px);
  min-height: 580px;
  max-height: 780px;
  padding: 4px;
}

.hero-mosaic > div {
  overflow: hidden;
  position: relative;
}

.hero-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.hero-mosaic > div:hover img { transform: scale(1.04); }

.hero-feature { grid-row: span 2; position: relative; }

.hero-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}

.hero-text {
  position: absolute;
  bottom: 48px;
  left: 48px;
  right: 48px;
  z-index: 2;
  color: var(--bg);
}

.hero-text .eyebrow { color: var(--accent-soft); margin-bottom: 16px; display: block; }

.hero-text h1 {
  color: var(--bg);
  font-style: italic;
  font-size: clamp(40px, 4.5vw, 60px);
  margin-bottom: 14px;
  font-weight: 400;
}

.hero-text h1 em { color: var(--accent-soft); font-style: italic; }

.hero-text p {
  color: rgba(250, 246, 239, 0.88);
  max-width: 420px;
  font-size: 15px;
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .hero-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.4fr 1fr 1fr;
    height: auto;
    max-height: none;
  }
  .hero-feature { grid-column: span 2; aspect-ratio: 16/10; }
  .hero-mosaic > div:not(.hero-feature) { aspect-ratio: 1/1.1; }
  .hero-text { left: 24px; right: 24px; bottom: 24px; }
}

/* SECTIONS */
section { padding: 80px 0; }
@media (max-width: 720px) { section { padding: 60px 0; } }

.section-head { margin-bottom: 48px; text-align: center; }
.section-head .eyebrow { margin-bottom: 14px; }
.section-head h2 { margin-bottom: 12px; }
.section-head p {
  color: var(--ink-muted);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  max-width: 580px;
  margin: 0 auto;
}

/* CARDS */
.card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(60, 47, 26, 0.06);
}

.card-featured {
  background: linear-gradient(180deg, #fff 0%, var(--highlight) 100%);
  border-color: var(--accent);
}

.card-featured::before {
  content: 'MOST POPULAR';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: var(--bg);
  padding: 4px 14px;
  font-size: 10px;
  letter-spacing: 0.2em;
  font-weight: 600;
  border-radius: 2px;
}

.card h3 { margin-bottom: 4px; }

.card .price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  margin: 8px 0 4px;
}

.card .price-suffix {
  font-family: 'Karla', sans-serif;
  font-size: 14px;
  color: var(--ink-muted);
  font-weight: 400;
}

.card .save {
  display: inline-block;
  background: var(--highlight);
  color: var(--brand);
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 2px;
  margin: 4px 0 16px;
}

.card .description {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
}

.card .meta {
  font-size: 13px;
  color: var(--ink-muted);
  font-style: italic;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  margin-top: auto;
}

/* INCLUSIONS */
.inclusions { list-style: none; margin: 12px 0 16px; padding: 0; }

.inclusions li {
  padding: 4px 0 4px 22px;
  position: relative;
  font-size: 14px;
  color: var(--ink-soft);
}

.inclusions li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
  top: 6px;
}

/* GRID */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* TIER LABEL */
.tier-label {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  text-align: center;
  margin: 48px 0 28px;
  position: relative;
}

.tier-label::before, .tier-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: var(--line);
}

.tier-label::before { left: calc(50% - 180px); }
.tier-label::after { right: calc(50% - 180px); }

@media (max-width: 600px) {
  .tier-label::before, .tier-label::after { display: none; }
}

/* PACK ROWS */
.pack-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-soft);
  gap: 16px;
}
.pack-row:last-child { border-bottom: none; }

.pack-label { font-size: 16px; color: var(--ink); flex: 1; }
.pack-label strong { font-weight: 600; }
.pack-meta {
  display: block;
  font-size: 13px;
  color: var(--ink-muted);
  font-style: italic;
  margin-top: 2px;
}
.pack-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--brand);
  font-weight: 500;
  white-space: nowrap;
}

/* VOUCHERS */
.voucher-group { margin-bottom: 32px; }
.voucher-group:last-child { margin-bottom: 0; }
.voucher-group h4 {
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.voucher-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  gap: 16px;
}

.voucher-name { font-size: 15px; color: var(--ink); }
.voucher-name em {
  color: var(--ink-muted);
  font-size: 13px;
  margin-left: 4px;
  font-style: italic;
}
.voucher-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--brand);
  font-weight: 500;
  white-space: nowrap;
}

/* CHIPS */
.chip-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.chip {
  background: var(--bg-card);
  border: 1px solid var(--accent);
  color: var(--brand);
  padding: 16px 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  border-radius: 2px;
  min-width: 100px;
  text-align: center;
  transition: all 0.2s;
  cursor: pointer;
}

.chip:hover { background: var(--brand); color: var(--bg); border-color: var(--brand); }

/* NOTES BOX */
.notes {
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  padding: 24px 28px;
  margin-top: 32px;
  font-size: 14px;
  color: var(--ink-soft);
  border-radius: 0 4px 4px 0;
}

.notes h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brand);
  margin-bottom: 12px;
  font-weight: 600;
}

.notes ul { list-style: none; padding: 0; }
.notes li { padding: 4px 0 4px 20px; position: relative; }
.notes li::before {
  content: '·';
  position: absolute;
  left: 6px;
  color: var(--accent);
  font-weight: 700;
}

/* QUOTE */
.editorial-quote { text-align: center; padding: 72px 0; }

.editorial-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.45;
  max-width: 760px;
  margin: 0 auto;
  color: var(--brand);
  font-weight: 400;
}

.editorial-quote cite {
  display: block;
  margin-top: 24px;
  font-style: normal;
  font-family: 'Karla', sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

/* PAGE HEADER */
.page-header {
  padding: 132px 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.page-header .eyebrow { margin-bottom: 20px; display: block; }
.page-header h1 { margin-bottom: 16px; }
.page-header p {
  max-width: 580px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 16px;
}

/* DUAL CTA */
.dual-cta {
  background: var(--bg-card);
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dual-cta .grid { gap: 20px; }

.dual-cta .card {
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.dual-cta .card:hover { transform: none; }

.dual-cta .card-image { overflow: hidden; min-height: 320px; }
.dual-cta .card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.dual-cta .card:hover .card-image img { transform: scale(1.04); }

.dual-cta .card-body {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dual-cta .card-body h3 { margin: 8px 0 12px; }
.dual-cta .card-body p { font-size: 15px; margin-bottom: 20px; }

.dual-cta .arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Karla', sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--brand);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  align-self: flex-start;
  transition: gap 0.3s, color 0.3s;
}

.dual-cta .arrow:hover { gap: 12px; color: var(--accent); }

@media (max-width: 720px) {
  .dual-cta .card { grid-template-columns: 1fr; }
  .dual-cta .card-image { min-height: 220px; aspect-ratio: 16/10; }
}

/* SPLIT */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}

.split-image img { width: 100%; height: 100%; object-fit: cover; }

.split-text .eyebrow { margin-bottom: 16px; }
.split-text h2 { margin-bottom: 20px; }
.split-text p { margin-bottom: 14px; max-width: 480px; font-size: 16px; }

@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .split-reverse .split-text { order: 2; }
  .split-reverse .split-image { order: 1; }
}

/* FAQ */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq { border-bottom: 1px solid var(--line); padding: 22px 0; }

.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--brand);
  padding: 4px 0;
  gap: 16px;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s;
}

.faq[open] summary::after { transform: rotate(45deg); }

.faq-content {
  padding: 12px 0 4px;
  color: var(--ink-soft);
  max-width: 680px;
  font-size: 15px;
  line-height: 1.7;
}

.faq-content a { color: var(--brand); border-bottom: 1px solid var(--accent); }

/* CONTACT */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}

@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

.contact-info h3 { margin-bottom: 12px; }
.contact-info p { margin-bottom: 6px; color: var(--ink-soft); }
.contact-info a { color: var(--brand); border-bottom: 1px solid var(--line); }
.contact-info a:hover { border-color: var(--accent); }

.contact-divider { height: 1px; background: var(--line); margin: 28px 0; }

form .field { margin-bottom: 22px; }

form label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 8px;
  color: var(--ink-muted);
  font-weight: 600;
}

form input,
form textarea,
form select {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 12px 14px;
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  transition: border-color 0.25s;
  border-radius: 2px;
}

form input:focus, form textarea:focus, form select:focus {
  outline: none;
  border-color: var(--accent);
}

form textarea { min-height: 120px; resize: vertical; }

/* RESET WEEKS */
.reset-weeks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

@media (max-width: 820px) { .reset-weeks { grid-template-columns: 1fr 1fr; } }

.week {
  padding: 32px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-card);
}

.week-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 42px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.week h4 { font-style: italic; margin-bottom: 8px; font-size: 22px; }
.week p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

/* FOOTER */
footer {
  background: var(--brand);
  color: var(--highlight);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-logo img { height: 80px; width: auto; margin-bottom: 20px; }

footer p { color: rgba(245, 237, 224, 0.7); font-size: 14px; }

footer h5 {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--accent);
  font-weight: 600;
  font-family: 'Karla', sans-serif;
}

footer ul { list-style: none; }
footer ul li { margin-bottom: 10px; }

footer a {
  color: rgba(245, 237, 224, 0.85);
  font-size: 14px;
  transition: color 0.25s;
}

footer a:hover { color: var(--accent); }

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(201, 169, 92, 0.15);
  color: rgba(245, 237, 224, 0.78);
}

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

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(201, 169, 92, 0.2);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(245, 237, 224, 0.5);
}

.footer-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }

/* UTILITIES */
.center { text-align: center; }
.section-cream { background: var(--highlight); }
.section-white { background: var(--bg-card); }

/* ── BUNDLE CARDS ── */
.bundle-card { padding: 40px; }

.bundle-card-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.bundle-card-text { flex: 1; }

.bundle-card-text h3 {
  margin: 8px 0 12px;
  font-size: 30px;
}

.bundle-card-price {
  text-align: right;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.bundle-card-price .price {
  font-size: 52px;
}

@media (max-width: 680px) {
  .bundle-card-inner {
    flex-direction: column;
    gap: 24px;
  }
  .bundle-card-price {
    text-align: left;
    align-items: flex-start;
  }
}



/* For dark footer, use screen instead */
footer .footer-logo img {
  mix-blend-mode: screen;
}

.nav-logo img {
  mix-blend-mode: multiply;
}

/* ── SMALL BOOK BUTTON for pricing rows ── */
.btn-sm {
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

.voucher-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.voucher-row .btn-sm {
  flex-shrink: 0;
}

/* ── VOUCHER ROW ALIGNMENT FIX ── */
.voucher-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}

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

.voucher-name { flex: 1; }

.voucher-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--brand);
  text-align: right;
  white-space: nowrap;
  min-width: 52px;
}

.voucher-row .btn-sm {
  white-space: nowrap;
}





/* ── MOBILE FIXES ── */
@media (max-width: 768px) {
  section { padding: 48px 0; }
  .section-cream { padding: 48px 0; }
  .hero-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto auto auto; }
  .hero-mosaic .hero-feature { grid-column: 1 / -1; }
  .hero-text h1 { font-size: 42px; }
  .hero-text p { font-size: 15px; }
  .split { flex-direction: column; }
  .split-image { width: 100%; height: 260px; }
  .dual-cta .grid { grid-template-columns: 1fr; }
  .card-image { height: 220px; }
  .contact-grid { grid-template-columns: 1fr; }
  .tier-label { margin-top: 32px; }
}

/* ── MEMBERSHIP PRICE ROW ── */
.membership-price-row {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin: 12px 0 20px;
  padding: 16px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.membership-price-block {
  flex: 1;
  text-align: center;
}

.membership-price-divider {
  width: 1px;
  background: var(--line-soft);
  margin: 0 8px;
  align-self: stretch;
}

.membership-tier-label {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin-bottom: 4px;
  font-family: var(--font-sans, 'Karla', sans-serif);
}

.membership-price-block .price {
  font-size: 36px;
  line-height: 1;
}
