/* ============================================================================
   HOMEPAGE STYLES — Maximalist Lakers aesthetic
   ============================================================================ */

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding-block: 30px 30px;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--purple), transparent 65%);
  filter: blur(60px);
  opacity: 0.55;
  z-index: 0;
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -300px; left: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, var(--gold), transparent 60%);
  filter: blur(80px);
  opacity: 0.18;
  z-index: 0;
  border-radius: 50%;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(244,238,223,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,238,223,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 1;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
@media (min-width: 900px) { .hero { padding-block: 50px 60px; } }

.hero-deco-burst {
  position: absolute;
  top: 6%;
  right: 4%;
  width: 110px;
  height: 110px;
  display: none;
  place-items: center;
  z-index: 4;
  animation: spin 22s linear infinite;
  pointer-events: none;
}
.hero-deco-burst svg { width: 100%; height: 100%; }
.hero-deco-burst span {
  position: absolute;
  font-family: var(--display);
  font-size: 18px;
  color: var(--ink);
  text-align: center;
  line-height: 0.95;
}
.hero-deco-burst span em {
  font-family: var(--script);
  font-style: italic;
  font-size: 1.4em;
  display: block;
  color: var(--purple-deep);
  text-transform: none;
}
@keyframes spin { to { transform: rotate(360deg); } }
@media (min-width: 980px) { .hero-deco-burst { display: grid; width: 130px; height: 130px; } }

.hero-deco-tape {
  position: absolute;
  top: 18%;
  left: -8px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  padding: 7px 18px;
  text-transform: uppercase;
  transform: rotate(-4deg);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
  z-index: 4;
  display: none;
}
@media (min-width: 980px) { .hero-deco-tape { display: block; } }

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
@media (min-width: 980px) {
  .hero-inner { grid-template-columns: 1.15fr 1fr; gap: 50px; }
}

.hero-content { position: relative; z-index: 4; }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(253, 208, 35, 0.1);
  border: 1px solid rgba(253, 208, 35, 0.3);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(253, 208, 35, 0.15);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(253, 208, 35, 0.15); }
  50%      { box-shadow: 0 0 0 10px rgba(253, 208, 35, 0); }
}

.hero-title {
  font-family: var(--display);
  font-size: clamp(38px, 8vw, 94px);
  line-height: 0.85;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0 0 14px;
  text-shadow: 0 0 60px rgba(244, 238, 223, 0.12);
}

/* === Mobile hero-title: stretch across full width === */
@media (max-width: 599px) {
  .hero-title {
    font-size: clamp(38px, 14vw, 94px);
    width: 100%;
  }
}
.hero-title .line { display: block; position: relative; }
.hero-title .word-gold { color: var(--gold); display: inline-block; }
.hero-title .word-strike { position: relative; display: inline-block; color: var(--bone); }
.hero-title .word-strike::after {
  content: "";
  position: absolute;
  left: -4%; right: -4%;
  top: 50%;
  height: 7px;
  background: var(--gold);
  transform: rotate(-3deg);
  z-index: -1;
}
.hero-title .script-line {
  font-family: var(--script);
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  text-transform: none;
  font-size: 0.82em;
  letter-spacing: 0;
  display: inline-block;
  line-height: 0.95;
}

.hero-sub {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.5;
  color: rgba(244, 238, 223, 0.78);
  max-width: 46ch;
  margin-bottom: 28px;
}
.hero-sub strong { color: var(--bone); font-weight: 700; }
.hero-sub em {
  font-family: var(--script);
  font-style: italic;
  color: var(--gold);
  font-size: 1.3em;
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 32px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.hero-stat { display: flex; align-items: center; gap: 10px; }
.hero-stat-num {
  font-family: var(--display);
  font-size: 30px;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-num .sm { font-size: 0.55em; }
.hero-stat-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(244, 238, 223, 0.6);
  text-transform: uppercase;
  line-height: 1.2;
  max-width: 14ch;
}

/* Hero phone-stage with real photo backdrop */
.hero-stage {
  position: relative;
  z-index: 4;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}
@media (min-width: 600px) { .hero-stage { min-height: 600px; } }

.hero-photo {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--purple-deep);
  border: 3px solid var(--gold);
  box-shadow:
    0 30px 80px -20px rgba(31, 0, 66, 0.7),
    10px 10px 0 var(--gold);
  transform: rotate(-2deg);
  z-index: 1;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(75, 37, 125, 0.18), transparent 50%, rgba(49, 0, 95, 0.5));
}
.hero-photo-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--purple-deep);
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 7px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  z-index: 2;
}
.hero-phone {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 9 / 19;
  background: #0a0a0a;
  border-radius: 38px;
  padding: 10px;
  box-shadow:
    0 0 0 2px #2a2a2a,
    0 40px 100px -20px rgba(31, 0, 66, 0.85),
    0 0 0 6px rgba(253, 208, 35, 0.18);
  transform: rotate(5deg) translate(20%, 5%);
  animation: float 8s ease-in-out infinite;
  z-index: 3;
  margin-left: auto;
}
@keyframes float {
  0%, 100% { transform: rotate(5deg) translate(20%, 5%); }
  50%      { transform: rotate(6deg) translate(20%, -1%); }
}
.hero-phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #2B0058 0%, #1F0042 100%);
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}
.hero-phone-notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 35%;
  height: 22px;
  background: #000;
  border-radius: 0 0 12px 12px;
  z-index: 5;
}
.hero-phone-header {
  background: var(--ink);
  color: var(--bone);
  padding: 38px 12px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.hero-phone-header img { width: 30px; height: 30px; margin-bottom: 4px; }
.hero-phone-header strong {
  display: block;
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--bone);
}
.hero-phone-header span {
  font-family: var(--mono);
  font-size: 8px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 2px;
}
.hero-phone-body {
  flex: 1;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow: hidden;
}
.bubble {
  padding: 8px 11px;
  border-radius: 16px;
  max-width: 82%;
  font-size: 11px;
  line-height: 1.35;
}
.bubble--in {
  background: rgba(244, 238, 223, 0.1);
  color: var(--bone);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.bubble--out {
  background: var(--purple);
  color: var(--bone);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.bubble--photo {
  align-self: flex-end;
  padding: 4px;
  border-radius: 16px;
  border-bottom-right-radius: 4px;
  width: 70%;
  background: rgba(244, 238, 223, 0.05);
}
.bubble--photo .ph {
  background:
    linear-gradient(135deg, rgba(0,0,0,0.5), transparent 60%),
    linear-gradient(180deg, #8b6230, #3a2510);
  width: 100%;
  height: 90px;
  border-radius: 11px;
  position: relative;
  overflow: hidden;
}
.bubble--photo .ph::after {
  content: "📸";
  position: absolute;
  top: 5px; left: 7px;
  font-size: 14px;
  opacity: 0.8;
}
.bubble--quote {
  background: var(--gold);
  color: var(--ink);
  align-self: flex-end;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--display);
  letter-spacing: 0.01em;
  border-bottom-right-radius: 4px;
  padding: 9px 12px;
  text-transform: uppercase;
}
.bubble--quote small {
  display: block;
  font-family: var(--body);
  font-size: 9px;
  font-weight: 600;
  opacity: 0.75;
  margin-top: 2px;
  letter-spacing: 0;
  text-transform: none;
}
.bubble--typing {
  align-self: flex-start;
  display: inline-flex;
  gap: 4px;
  padding: 9px 11px;
  background: rgba(244, 238, 223, 0.08);
  border-radius: 16px;
  border-bottom-left-radius: 4px;
}
.bubble--typing span {
  width: 5px; height: 5px;
  background: var(--bone);
  border-radius: 50%;
  opacity: 0.5;
  animation: typing 1.4s infinite;
}
.bubble--typing span:nth-child(2) { animation-delay: 0.2s; }
.bubble--typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing { 0%, 60%, 100% { opacity: 0.3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
.bubble-time {
  align-self: center;
  font-family: var(--mono);
  font-size: 8px;
  color: rgba(244, 238, 223, 0.4);
  letter-spacing: 0.1em;
  margin-block: 4px;
}

/* Phone badges */
.phone-badge {
  position: absolute;
  z-index: 5;
  pointer-events: none;
}
.phone-badge--price {
  top: 10%; right: -3%;
  background: var(--gold);
  color: var(--purple-deep);
  padding: 14px 18px;
  border-radius: 50%;
  font-family: var(--display);
  text-transform: uppercase;
  text-align: center;
  transform: rotate(12deg);
  box-shadow: 0 0 0 4px var(--purple), 0 10px 30px rgba(31, 0, 66, 0.5);
  width: 100px; height: 100px;
  display: grid;
  place-items: center;
  line-height: 0.85;
}
.phone-badge--price .big {
  font-size: 30px;
  display: block;
  letter-spacing: -0.02em;
}
.phone-badge--price small { font-size: 8px; letter-spacing: 0.1em; font-family: var(--mono); }
.phone-badge--time {
  bottom: 8%; left: -3%;
  background: var(--purple);
  color: var(--bone);
  padding: 11px 16px;
  border-radius: var(--radius-pill);
  transform: rotate(-6deg);
  box-shadow: 0 0 0 3px var(--gold), 4px 4px 0 var(--purple-darkest);
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.phone-badge--time em {
  font-family: var(--script);
  font-style: italic;
  color: var(--gold);
  font-size: 1.2em;
  text-transform: none;
}

/* ==========================================================================
   MARQUEE
   ========================================================================== */
.marquee {
  background: var(--gold);
  color: var(--ink);
  padding-block: 16px;
  overflow: hidden;
  position: relative;
  z-index: 3;
  border-block: 3px solid var(--ink);
}
.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: scroll 35s linear infinite;
  font-family: var(--display);
  font-size: clamp(18px, 2.5vw, 26px);
  letter-spacing: 0.005em;
  text-transform: uppercase;
}
.marquee-track > span {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  flex-shrink: 0;
}
.marquee-track .star { color: var(--purple); font-size: 0.7em; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   HOW IT WORKS — cream section
   ========================================================================== */
.how {
  background: var(--bone);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  border-block: 3px solid var(--ink);
}
.how::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(75, 37, 125, 0.08), transparent 65%);
  pointer-events: none;
}
.how-head {
  display: grid;
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
.how-head h2 {
  font-family: var(--display);
  font-size: clamp(36px, 7vw, 72px);
  text-transform: uppercase;
  line-height: 0.88;
  color: var(--ink);
  max-width: 20ch;
}
.how-head h2 em {
  font-family: var(--script);
  font-style: italic;
  color: var(--purple);
  text-transform: none;
  font-weight: 400;
  font-size: 1.05em;
  display: inline-block;
  transform: rotate(-3deg);
}
.how-head p {
  color: var(--ink-soft);
  font-size: 18px;
  max-width: 48ch;
}
@media (min-width: 880px) { .how-head { grid-template-columns: 1.5fr 1fr; align-items: end; } }

.how-steps {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 2;
}
.how-step {
  position: relative;
  background: var(--ink);
  color: var(--bone);
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  overflow: hidden;
  transition: transform 0.4s var(--ease), background 0.4s;
}
.how-step:hover {
  transform: translate(-4px, -4px);
  background: var(--purple);
  box-shadow: 8px 8px 0 var(--gold);
}
.how-step-num {
  font-family: var(--display);
  font-size: clamp(64px, 10vw, 96px);
  line-height: 0.8;
  color: var(--gold);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  display: block;
}
.how-step h3 {
  font-family: var(--display);
  font-size: 22px;
  margin-bottom: 8px;
  text-transform: uppercase;
  color: var(--bone);
}
.how-step p {
  color: rgba(244, 238, 223, 0.75);
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
}
.how-step p strong { color: var(--gold); font-weight: 700; }
.how-step-tag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  transform: rotate(4deg);
  font-weight: 700;
}
@media (min-width: 720px)  { .how-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .how-steps { grid-template-columns: repeat(4, 1fr); } }

/* ==========================================================================
   LIVE FEED — SMS-style cards
   ========================================================================== */
.feed {
  background: var(--purple-darkest);
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
}
.feed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 500px at 100% 0%, rgba(75, 37, 125, 0.4), transparent 60%);
  pointer-events: none;
}
.feed-head {
  display: grid;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
}
.feed-head h2 {
  font-family: var(--display);
  font-size: clamp(34px, 6vw, 64px);
  text-transform: uppercase;
  color: var(--bone);
  max-width: 18ch;
  line-height: 0.88;
}
.feed-head h2 em {
  font-family: var(--script);
  color: var(--gold);
  text-transform: none;
  font-style: italic;
  font-weight: 400;
  font-size: 1.05em;
  display: inline-block;
  transform: rotate(-2deg);
}
.feed-head p { color: rgba(244, 238, 223, 0.72); max-width: 50ch; font-size: 18px; }
@media (min-width: 880px) { .feed-head { grid-template-columns: 1.5fr 1fr; align-items: end; } }

.feed-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px)  { .feed-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .feed-grid { grid-template-columns: repeat(3, 1fr); } }

.feed-card {
  background: var(--ink);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 20px;
  transition: transform 0.3s var(--ease), border-color 0.3s;
  position: relative;
}
.feed-card:hover {
  transform: translate(-3px, -3px);
  border-color: var(--gold);
  box-shadow: 6px 6px 0 var(--gold);
}
.feed-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--gold);
  text-transform: uppercase;
}
.feed-card-meta .status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--bone);
}
.feed-card-meta .status::before {
  content: "";
  width: 6px; height: 6px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.2);
}
.feed-card-thread {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.feed-card-thread .bubble { font-size: 13px; max-width: 90%; }
.feed-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(253, 208, 35, 0.12);
  color: var(--gold);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid rgba(253, 208, 35, 0.25);
}
.feed-card-price {
  font-family: var(--display);
  font-size: 30px;
  color: var(--gold);
  letter-spacing: -0.005em;
  margin-top: 10px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.feed-card-price small {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(244, 238, 223, 0.5);
  text-transform: uppercase;
}

/* ==========================================================================
   STAT BAR
   ========================================================================== */
.statbar {
  background: var(--gold);
  color: var(--ink);
  padding-block: 56px;
  position: relative;
  overflow: hidden;
  border-block: 3px solid var(--ink);
}
.statbar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100' height='100'><circle cx='50' cy='50' r='1' fill='%23000' opacity='0.1'/></svg>");
  background-size: 30px 30px;
  pointer-events: none;
}
.statbar-grid {
  display: grid;
  gap: 30px 18px;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  z-index: 2;
}
.statbar-num {
  font-family: var(--display);
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.85;
  color: var(--ink);
  letter-spacing: -0.02em;
  display: block;
}
.statbar-num .small { font-size: 0.5em; }
.statbar-lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(31, 0, 66, 0.7);
  margin-top: 8px;
  display: block;
  font-weight: 600;
}
@media (min-width: 720px) { .statbar-grid { grid-template-columns: repeat(4, 1fr); } }

/* ==========================================================================
   WHY US — cream section with sticker collage
   ========================================================================== */
.why {
  background: var(--bone);
  color: var(--ink);
  position: relative;
  overflow: hidden;
  border-block: 3px solid var(--ink);
}
.why::before {
  content: "";
  position: absolute;
  bottom: -10%; left: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(75, 37, 125, 0.07), transparent 65%);
  pointer-events: none;
}
.why-inner {
  display: grid;
  gap: 48px;
  align-items: center;
  position: relative;
}
@media (min-width: 980px) { .why-inner { grid-template-columns: 1.1fr 1fr; gap: 56px; } }

.why-head h2 {
  font-family: var(--display);
  font-size: clamp(36px, 6vw, 64px);
  text-transform: uppercase;
  line-height: 0.88;
  color: var(--ink);
  margin-bottom: 20px;
}
.why-head h2 em {
  font-family: var(--script);
  color: var(--purple);
  text-transform: none;
  font-style: italic;
  font-weight: 400;
  font-size: 1.05em;
  display: inline-block;
}
.why-head > p {
  color: var(--ink-soft);
  font-size: 18px;
  max-width: 50ch;
  margin-bottom: 28px;
}
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.why-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(31, 0, 66, 0.12);
  align-items: start;
}
.why-list li:last-child { border-bottom: 0; }
.why-list .num {
  font-family: var(--display);
  font-size: 36px;
  color: var(--purple);
  line-height: 1;
  min-width: 60px;
  letter-spacing: -0.02em;
}
.why-list strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--ink);
  margin-bottom: 4px;
}
.why-list p { margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.55; }

/* Sticker collage */
.sticker-stack {
  position: relative;
  width: 100%;
  min-height: 520px;
  max-width: 520px;
  margin-inline: auto;
}
.sticker-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  z-index: 1;
  display: block;
  box-shadow: 0 8px 40px rgba(31, 0, 66, 0.25);
}
.sticker-stack::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: rgba(31, 0, 66, 0.35);
  z-index: 1;
  pointer-events: none;
}
.sticker {
  position: absolute;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--display);
  text-transform: uppercase;
  box-shadow: 0 0 0 4px var(--bone), 6px 6px 0 var(--ink);
  z-index: 2;
  transition: transform 0.4s var(--ease-bounce);
}
.sticker:hover { transform: scale(1.05) rotate(3deg) !important; z-index: 5; }
.sticker--gold { background: var(--gold); color: var(--ink); }
.sticker--purple { background: var(--purple); color: var(--bone); }
.sticker--ink { background: var(--ink); color: var(--gold); }

.sticker--1 { top: 0%; left: 8%; width: 180px; height: 180px; transform: rotate(-12deg); padding: 16px; line-height: 0.9; }
.sticker--1 .big { font-size: 42px; display: block; letter-spacing: -0.02em; }
.sticker--1 small { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; display: block; margin-top: 6px; font-weight: 600; }

.sticker--2 { top: 22%; right: 0%; width: 160px; height: 160px; transform: rotate(8deg); padding: 16px; }
.sticker--2 .big { font-size: 28px; display: block; letter-spacing: 0; line-height: 1; }
.sticker--2 em { font-family: var(--script); font-style: italic; text-transform: none; color: var(--gold); font-size: 1.5em; }

.sticker--3 { top: 48%; left: 0%; width: 170px; height: 170px; transform: rotate(15deg); padding: 16px; }
.sticker--3 .big { font-size: 56px; line-height: 0.85; display: block; letter-spacing: -0.04em; }
.sticker--3 small { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; display: block; margin-top: 4px; opacity: 0.75; font-weight: 600; }

.sticker--4 { bottom: 4%; right: 6%; width: 200px; height: 200px; transform: rotate(-8deg); padding: 18px; line-height: 0.95; }
.sticker--4 .big { font-size: 36px; display: block; letter-spacing: -0.01em; }
.sticker--4 small { font-family: var(--script); font-style: italic; text-transform: none; font-size: 16px; display: block; margin-top: 4px; color: var(--ink); }

.sticker--5 { bottom: 30%; right: 36%; width: 100px; height: 100px; transform: rotate(20deg); font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; padding: 8px; box-shadow: 0 0 0 3px var(--bone), 4px 4px 0 var(--ink); }
.sticker--5 strong { display: block; font-family: var(--display); font-size: 24px; color: var(--gold); }

/* ==========================================================================
   TESTIMONIAL
   ========================================================================== */
.quote-section {
  background: var(--purple);
  color: var(--bone);
  position: relative;
  overflow: hidden;
  border-block: 3px solid var(--ink);
}
.quote-section::before {
  content: "“";
  position: absolute;
  top: -8rem;
  left: -3rem;
  font-family: var(--serif);
  font-size: clamp(20rem, 50vw, 50rem);
  line-height: 0.7;
  color: rgba(253, 208, 35, 0.18);
  pointer-events: none;
  font-weight: 700;
}
.quote-section::after {
  content: "”";
  position: absolute;
  bottom: -12rem;
  right: -3rem;
  font-family: var(--serif);
  font-size: clamp(20rem, 50vw, 50rem);
  line-height: 0.7;
  color: rgba(253, 208, 35, 0.18);
  pointer-events: none;
  font-weight: 700;
}
.quote {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.quote-stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}
.quote blockquote {
  font-family: var(--display);
  font-size: clamp(26px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0 0 32px;
  text-transform: uppercase;
  color: var(--bone);
}
.quote blockquote em {
  font-family: var(--script);
  color: var(--gold);
  font-style: italic;
  text-transform: none;
  font-weight: 400;
  font-size: 1.15em;
  display: inline-block;
  transform: rotate(-1.5deg);
  letter-spacing: 0;
}
.quote blockquote .gold-mark {
  background: var(--gold);
  color: var(--ink);
  padding: 0 0.18em;
  display: inline-block;
  transform: rotate(-1deg);
}
.quote-author { display: inline-flex; align-items: center; gap: 14px; }
.quote-avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: grid; place-items: center;
  font-weight: 700;
  font-family: var(--display);
  font-size: 18px;
  box-shadow: 0 0 0 3px var(--ink);
}
.quote-author-info { text-align: left; }
.quote-author-info strong {
  display: block;
  font-family: var(--display);
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.quote-author-info span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  opacity: 0.7;
  text-transform: uppercase;
}

/* ==========================================================================
   AREAS PILLS
   ========================================================================== */
.areas { background: var(--ink); position: relative; overflow: hidden; }
.areas-head { text-align: center; max-width: 700px; margin: 0 auto 40px; }
.areas-head h2 {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: clamp(34px, 5.5vw, 56px);
  color: var(--bone);
  margin-bottom: 14px;
  line-height: 0.9;
}
.areas-head h2 em {
  font-family: var(--script);
  color: var(--gold);
  text-transform: none;
  font-style: italic;
  font-weight: 400;
}
.areas-head p { color: rgba(244, 238, 223, 0.68); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 900px;
  margin: 0 auto;
}
.area-pill {
  background: var(--purple-darkest);
  color: var(--bone);
  padding: 14px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.25s var(--ease);
  border: 2px solid var(--line);
  min-height: 48px;
}
.area-pill:hover {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--gold);
}
.area-pill::after {
  content: "→";
  opacity: 0.4;
  transition: transform 0.25s, opacity 0.25s;
}
.area-pill:hover::after { opacity: 1; transform: translateX(3px); }

@media (min-width: 720px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .areas-grid { grid-template-columns: repeat(4, 1fr); } }

/* ==========================================================================
   RELATED GRID (subpages)
   ========================================================================== */
.related-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
  margin-top: 30px;
}
@media (min-width: 720px) { .related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }

.related-card {
  background: var(--purple-darkest);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  transition: all 0.25s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--bone);
}
.related-card:hover {
  border-color: var(--gold);
  transform: translate(-3px, -3px);
  box-shadow: 6px 6px 0 var(--gold);
}
.related-card-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.related-card h4 {
  font-family: var(--display);
  font-size: 22px;
  text-transform: uppercase;
  color: var(--bone);
  line-height: 1;
  letter-spacing: 0.005em;
}
.related-card p { color: rgba(244, 238, 223, 0.72); font-size: 14px; margin: 0; flex: 1; line-height: 1.55; }
.related-card-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { max-width: 800px; margin: 24px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding-block: 4px;
}
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--bone);
  text-align: left;
  cursor: pointer;
  min-height: 56px;
}
.faq-q:hover { color: var(--gold); }
.faq-q-icon {
  font-family: var(--body);
  font-weight: 300;
  font-size: 28px;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-item.open .faq-a { max-height: 600px; }
.faq-a p { color: rgba(244, 238, 223, 0.78); padding: 0 0 18px; line-height: 1.65; font-size: 15px; }

/* ==========================================================================
   PROCESS STEPS (subpages)
   ========================================================================== */
.process { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .process { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  background: var(--purple-darkest);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: all 0.25s;
}
.process-step:hover { border-color: var(--gold); }
.process-step-num {
  font-family: var(--display);
  font-size: 60px;
  color: var(--gold);
  line-height: 0.85;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 8px;
}
.process-step h3 {
  font-family: var(--display);
  font-size: 20px;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 6px;
}
.process-step p { color: rgba(244, 238, 223, 0.72); font-size: 14px; margin: 0; }

/* ==========================================================================
   CONTACT CARDS
   ========================================================================== */
.contact-cards { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .contact-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .contact-cards { grid-template-columns: repeat(4, 1fr); } }
.contact-card {
  background: var(--purple-darkest);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: all 0.25s;
}
.contact-card:hover { border-color: var(--gold); }
.contact-card-icon {
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}
.contact-card-icon svg { width: 20px; height: 20px; }
.contact-card h3 {
  font-family: var(--display);
  font-size: 18px;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 6px;
}
.contact-card p { color: rgba(244, 238, 223, 0.72); margin: 0 0 8px; font-size: 14px; }
.contact-card a { color: var(--gold); font-weight: 600; }

/* ==========================================================================
   PRICING TIERS
   ========================================================================== */
.tiers { display: grid; gap: 18px; grid-template-columns: 1fr; margin-top: 32px; }
@media (min-width: 720px) { .tiers { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .tiers { grid-template-columns: repeat(3, 1fr); } }
.tier {
  background: var(--purple-darkest);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  position: relative;
  transition: all 0.3s var(--ease);
}
.tier:hover { transform: translate(-3px, -3px); border-color: var(--gold); box-shadow: 6px 6px 0 var(--gold); }
.tier--featured { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.tier--featured .tier-num { color: var(--purple-deep); }
.tier__badge {
  position: absolute;
  top: -12px;
  right: 22px;
  background: var(--ink);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.tier-name {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.tier-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.tier--featured .tier-tag { color: var(--purple-deep); }
.tier-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.tier--featured .tier-price { border-bottom-color: rgba(31, 0, 66, 0.2); }
.tier-num {
  font-family: var(--display);
  font-size: 52px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.03em;
}
.tier-suffix { font-family: var(--mono); font-size: 11px; color: rgba(244, 238, 223, 0.55); letter-spacing: 0.14em; text-transform: uppercase; }
.tier--featured .tier-suffix { color: rgba(31, 0, 66, 0.6); }
.tier-features { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 10px; }
.tier-features li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.55;
}
.tier-features li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}
.tier--featured .tier-features li::before { color: var(--purple-deep); }

/* ==========================================================================
   REVIEWS GRID
   ========================================================================== */
.reviews-grid { display: grid; gap: 16px; grid-template-columns: 1fr; margin-top: 32px; }
@media (min-width: 720px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card {
  background: var(--purple-darkest);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  transition: all 0.25s;
}
.review-card:hover { border-color: var(--gold); }
.review-stars { color: var(--gold); letter-spacing: 0.08em; margin-bottom: 14px; font-size: 15px; }
.review-card blockquote {
  font-family: var(--display);
  font-size: 18px;
  text-transform: none;
  line-height: 1.35;
  letter-spacing: 0.005em;
  margin: 0 0 20px;
  color: var(--bone);
  font-weight: 400;
}
.review-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: grid; place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
}
.review-name { font-family: var(--display); text-transform: uppercase; color: var(--bone); font-size: 14px; letter-spacing: 0.02em; }
.review-meta { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; }

/* ==========================================================================
   CARD LINK PATTERNS
   ========================================================================== */
.service-card-link {
  background: var(--purple-darkest);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.25s;
  position: relative;
}
.service-card-link:hover { border-color: var(--gold); transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--gold); }
.service-card-link .eyebrow { color: var(--gold); }
.service-card-link h3 {
  font-family: var(--display);
  font-size: 26px;
  text-transform: uppercase;
  color: var(--bone);
  line-height: 1;
}
.service-card-link p { color: rgba(244, 238, 223, 0.72); margin: 0; flex: 1; font-size: 14px; }
.service-card-link span.cta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
