/* ── TOKENS ───────────────────────────────────────────────── */
:root {
  --pd:   #210c52;   /* purple deep   */
  --pm:   #5d1b8e;   /* purple mid    */
  --cy:   #00b8f1;   /* cyan accent   */
  --nv:   #2a3073;   /* navy          */
  --pl:   #ede8f8;   /* purple light  */
  --pp:   #f7f4fd;   /* purple pale   */
  --td:   #0F1923;   /* text dark     */
  --tm:   #374151;   /* text mid      */
  --mu:   #6B7280;   /* muted         */
  --wh:   #FFFFFF;
  --br:   #d0c4ec;   /* border        */
  --sc:   0 2px 16px rgba(33,12,82,.12);
  --sb:   0 4px 14px rgba(33,12,82,.35);
  --r:    10px;
  --rl:   18px;
  --ff:   'Poppins', system-ui, -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;
  --bg:   #FFFFFF;   /* card/page background */
  --fg:   #0F1923;   /* primary foreground   */
  --bd:   #d0c4ec;   /* border alias         */
}

/* ── RESET ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--ff); color: var(--td); background: var(--wh); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img  { display: block; max-width: 100%; height: auto; }
a    { color: var(--pm); }
ul   { list-style: none; }

/* ── UTILITY ──────────────────────────────────────────────── */
.container     { max-width: 1080px; margin: 0 auto; padding: 0 1.25rem; }
.section-title { font-size: clamp(1.4rem,3.5vw,2rem); font-weight: 800; color: var(--pd); margin-bottom: .5rem; }
.section-title--lg  { font-size: clamp(1.5rem,4vw,2.25rem); }
.section-title--xl  { font-size: clamp(2rem,5vw,3rem); }
.section-title--wh  { color: var(--wh); }
.section-title--underline { display: inline-block; border-bottom: 3px solid var(--cy); padding-bottom: .2rem; }
.section-sub   { color: var(--mu); font-size: 1rem; margin-bottom: 2.25rem; }
.label         { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--cy); margin-bottom: .5rem; }
section        { padding: 4rem 1.25rem; }
.section--dark    { background: var(--pd); color: var(--wh); }
.section--dark .section-title { color: var(--wh); }
.section--dark p  { color: rgba(255,255,255,.8); }
.section--light   { background: var(--wh); }
.section--surface { background: var(--pp); }

/* ── BUTTONS ──────────────────────────────────────────────── */
.btn { display: inline-flex; align-items: center; justify-content: center; font-family: var(--ff); font-weight: 700; font-size: 1rem; border-radius: 50px; cursor: pointer; text-decoration: none; transition: transform .15s, box-shadow .15s; border: none; gap: .4rem; -webkit-font-smoothing: antialiased; transform: translateZ(0); }
.btn:hover { transform: translateY(-2px) translateZ(0); }
.btn-primary  { background: var(--cy); color: var(--pd); padding: .85rem 2rem; box-shadow: var(--sb); font-weight: 800; }
.btn-primary:hover { background: #00a8db; color: var(--pd); box-shadow: 0 6px 20px rgba(0,184,241,.45); }
.btn-outline  { background: transparent; color: var(--pm); padding: .8rem 1.9rem; border: 2px solid var(--pm); font-size: .95rem; }
.btn-outline:hover { background: var(--pm); color: var(--wh); }
.btn-outline--wh { color: var(--wh); border-color: rgba(255,255,255,.5); }
.btn-outline--wh:hover { background: rgba(255,255,255,.12); color: var(--wh); }

/* ── NAV ──────────────────────────────────────────────────── */
.site-nav {
  background: var(--wh);
  border-bottom: 1px solid var(--br);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 8px rgba(33,12,82,.08);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: .75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.nav-logo img { max-width: 150px; height: auto; }
.nav-links {
  display: none;
  flex: 1;
  justify-content: center;
  gap: .25rem;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 600;
  color: var(--td);
  text-decoration: none;
  padding: .45rem .85rem;
  border-radius: var(--r);
  transition: background .15s, color .15s;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { background: var(--pl); color: var(--pm); }
.nav-icon-group {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-left: auto;
}
.nav-phone-icon, .nav-maps-icon {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: var(--pd);
  background: var(--pl);
  text-decoration: none;
  transition: background .15s;
  flex-shrink: 0;
}
.nav-phone-icon:hover, .nav-maps-icon:hover { background: var(--br); }
.nav-btn { font-size: .85rem; padding: .55rem 1.3rem; flex-shrink: 0; }
.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 4px;
  background: none; border: none; cursor: pointer; padding: .4rem;
  width: 34px; height: 34px; flex-shrink: 0;
}
.nav-toggle span { display: block; height: 2px; background: var(--pd); border-radius: 2px; transition: all .2s; }
.nav-cta { display: none; }
@media (min-width: 820px) {
  .nav-links    { display: flex; }
  .nav-toggle   { display: none; }
  .nav-cta      { display: flex; }
  .nav-maps-icon { display: none; }
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero { background: linear-gradient(135deg, var(--pd) 0%, var(--nv) 100%); color: var(--wh); padding: 4rem 1.25rem 11rem; position: relative; overflow: hidden; }
.hero-content { max-width: 640px; position: relative; z-index: 1; }
.hero-eyebrow { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--cy); margin-bottom: .75rem; }
.hero-sub { font-size: clamp(.975rem,2.5vw,1.1rem); color: rgba(255,255,255,.82); margin-top: .875rem; max-width: 560px; }
.hero-rating { display: flex; align-items: center; gap: .5rem; margin-top: 1.5rem; font-size: .875rem; color: rgba(255,255,255,.7); }
.hero-rating__stars { color: #F59E0B; font-size: 1rem; }
.hero-waves { position: absolute; bottom: 0; left: 0; width: 100%; line-height: 0; z-index: 0; pointer-events: none; }
.hero-waves svg { display: block; width: 100%; }

/* ── TRUST BAR ────────────────────────────────────────────── */
.trust-bar { background: var(--pd); border-top: 1px solid rgba(255,255,255,.08); padding: .9rem 1.25rem; }
.trust-bar__items { display: flex; flex-wrap: wrap; justify-content: center; gap: .65rem 2rem; }
.trust-bar__items span { display: flex; align-items: center; gap: .45rem; color: rgba(255,255,255,.88); font-size: .82rem; font-weight: 600; }

/* ── PHOTO STRIP ──────────────────────────────────────────── */
.photo-strip { position: relative; max-height: 380px; overflow: hidden; }
.photo-strip img { width: 100%; height: 380px; object-fit: cover; }
.photo-strip__cta { position: absolute; bottom: 1.5rem; right: 1.5rem; }

/* ── EDITORIAL ROWS ───────────────────────────────────────── */
.editorial-section { padding: 0; }
.editorial-row { display: flex; flex-direction: column; }
.editorial-row--reverse { flex-direction: column-reverse; }
.editorial-row__image { flex: 1; overflow: hidden; min-height: 280px; }
.editorial-row__image img { width: 100%; height: 100%; object-fit: cover; }
.editorial-row__body { flex: 1; padding: 3rem 1.75rem; display: flex; flex-direction: column; justify-content: center; gap: 1rem; }
.editorial-row__body p { color: var(--tm); line-height: 1.75; }
@media (min-width: 768px) {
  .editorial-row { flex-direction: row; min-height: 420px; }
  .editorial-row--reverse { flex-direction: row-reverse; }
  .editorial-row__body { padding: 3.5rem 3rem; }
}

/* ── SPOTLIGHT GRID ───────────────────────────────────────── */
.spotlight-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem; }
.spotlight-card { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--rl); padding: 2rem 1.75rem; display: flex; flex-direction: column; gap: .75rem; }
.spotlight-card img { width: 72px; height: 72px; }
.spotlight-card__badge { font-size: .7rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--pd); background: var(--cy); border-radius: 50px; padding: .2rem .75rem; display: inline-block; align-self: flex-start; }
.spotlight-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--wh); }
.spotlight-card p  { font-size: .9rem; color: rgba(255,255,255,.75); line-height: 1.65; }
@media (min-width: 640px) { .spotlight-grid { grid-template-columns: repeat(3, 1fr); } }

/* ── CONTACT STRIP ────────────────────────────────────────── */
.contact-strip { background: var(--nv); padding: 2.5rem 1.25rem; }
.contact-strip__inner { max-width: 1080px; margin: 0 auto; display: flex; flex-direction: column; gap: 2rem; align-items: center; }
.contact-strip__grid { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: center; }
.contact-strip__item { display: flex; align-items: flex-start; gap: .75rem; }
.contact-strip__icon { font-size: 1.3rem; }
.contact-strip__item h3 { font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .06em; margin-bottom: .2rem; }
.contact-strip__item a, .contact-strip__item p { font-size: .975rem; color: var(--wh); text-decoration: none; font-weight: 600; }
.contact-strip__item a:hover { color: var(--cy); }
.contact-strip__sub { font-size: .82rem !important; font-weight: 400 !important; color: rgba(255,255,255,.6) !important; }
.contact-strip__cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* ── REVIEWS MASONRY ──────────────────────────────────────── */
.reviews-header { display: flex; align-items: center; gap: 1.25rem; margin-bottom: 2rem; }
.reviews-score { font-size: 2.5rem; font-weight: 800; color: var(--pd); line-height: 1; }
.reviews-stars  { color: #F59E0B; font-size: 1.25rem; letter-spacing: 2px; }
.reviews-count  { font-size: .875rem; color: var(--mu); margin-top: .2rem; }
.reviews-masonry { columns: 1; gap: 1.25rem; }
.review-card { break-inside: avoid; margin-bottom: 1.25rem; background: var(--wh); border: 1px solid var(--br); border-radius: var(--r); padding: 1.25rem; }
.review-card__top { display: flex; align-items: center; gap: .75rem; margin-bottom: .65rem; }
.review-name  { font-size: .9rem; font-weight: 700; color: var(--td); }
.review-date  { font-size: .75rem; color: var(--mu); }
.review-stars { color: #F59E0B; font-size: .85rem; margin-bottom: .5rem; }
.review-text  { font-size: .875rem; color: var(--tm); line-height: 1.65; }
.platform-logo { display: inline-block; margin-left: .4rem; vertical-align: middle; }
.reviews-footer { text-align: center; margin-top: 1.5rem; font-size: .875rem; font-weight: 600; }
.review-link { color: var(--pm); text-decoration: none; border-bottom: 1px solid rgba(93,27,142,.25); transition: border-color .15s; }
.review-link:hover { border-bottom-color: var(--pm); }
[data-theme="dark"] .review-link { color: var(--cy); border-bottom-color: rgba(0,184,241,.3); }
[data-theme="dark"] .review-link:hover { border-bottom-color: var(--cy); }
.reviews-footer a { color: var(--pm); text-decoration: none; }
.reviews-footer a:hover { text-decoration: underline; }
@media (min-width: 640px) { .reviews-masonry { columns: 2; } }
@media (min-width: 900px) { .reviews-masonry { columns: 3; } }

/* ── CTA STRIP ────────────────────────────────────────────── */
.cta-strip { background: var(--cy); padding: 3.5rem 1.25rem; text-align: center; }
.cta-strip h2 { font-size: clamp(1.4rem,3.5vw,2rem); font-weight: 800; color: var(--pd); margin-bottom: .875rem; }
.cta-strip p  { color: var(--pd); max-width: 520px; margin: 0 auto 2rem; font-weight: 600; line-height: 1.65; }
.cta-strip__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── WATER TYPES GRID ─────────────────────────────────────── */
.water-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; margin-top: 2rem; }
.water-card { background: var(--wh); border: 1.5px solid var(--br); border-radius: var(--rl); padding: 1.5rem; box-shadow: var(--sc); }
.water-card--featured { border-color: var(--pm); }
.water-card__ph { display: inline-block; font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; color: var(--pm); background: var(--pl); border-radius: 50px; padding: .2rem .75rem; margin-bottom: .6rem; }
.water-card h3 { font-size: 1rem; font-weight: 800; color: var(--pd); margin-bottom: .35rem; }
.water-card p  { font-size: .875rem; color: var(--tm); line-height: 1.6; margin: 0; }
@media (min-width: 640px) { .water-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .water-grid { grid-template-columns: repeat(3,1fr); } }

/* ── PAGE HERO (interior) ─────────────────────────────────── */
.page-hero { background: linear-gradient(135deg, var(--pd) 0%, var(--nv) 100%); color: var(--wh); padding: 3rem 1.25rem 2.5rem; text-align: center; }
.page-hero h1 { font-size: clamp(1.75rem,4.5vw,2.75rem); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; }
.page-hero p  { font-size: clamp(1rem,2.5vw,1.1rem); color: rgba(255,255,255,.82); margin-top: .875rem; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ── PROSE ────────────────────────────────────────────────── */
.prose { max-width: 780px; margin: 0 auto; }
.prose h2 { font-size: clamp(1.25rem,3vw,1.6rem); font-weight: 800; color: var(--pd); margin: 2.5rem 0 .75rem; }
.prose h3 { font-size: 1.05rem; font-weight: 700; color: var(--pd); margin: 1.5rem 0 .4rem; }
.prose p  { color: var(--tm); line-height: 1.75; margin-bottom: 1rem; }
.prose strong { color: var(--td); }

/* ── CTA BAND (interior pages) ───────────────────────────── */
.cta-band { background: var(--pd); color: var(--wh); text-align: center; padding: 3.5rem 1.25rem; }
.cta-band h2 { font-size: clamp(1.4rem,3.5vw,2rem); font-weight: 800; margin-bottom: .75rem; }
.cta-band p  { color: rgba(255,255,255,.8); max-width: 520px; margin: 0 auto 1.75rem; }
.cta-band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2rem; }
.testimonial-card { background: var(--pp); border: 1px solid var(--br); border-left: 4px solid var(--cy); border-radius: var(--r); padding: 1.5rem; }
.testimonial-card p { font-size: .95rem; color: var(--tm); line-height: 1.65; font-style: italic; margin-bottom: .65rem; }
.testimonial-card cite { font-size: .82rem; font-style: normal; font-weight: 700; color: var(--mu); display: block; }
.testimonial-source { font-size: .7rem; color: var(--pm); display: block; margin-top: .15rem; }
.stars { color: #F59E0B; letter-spacing: 1px; margin-bottom: .4rem; font-size: .9rem; }
@media (min-width: 640px) { .testimonials-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .testimonials-grid { grid-template-columns: repeat(3,1fr); } }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { border-top: 1px solid var(--br); }
.faq-item { border-bottom: 1px solid var(--br); padding: 1.5rem 0; }
.faq-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; cursor: pointer; padding: 1.1rem 0;
  font-family: var(--ff); font-size: 1rem; font-weight: 700; color: var(--pd); text-align: left; gap: 1rem;
}
.faq-chevron { font-size: .875rem; color: var(--mu); transition: transform .2s; flex-shrink: 0; }
.faq-trigger[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }
.faq-body { display: none; padding: 0 0 1.1rem; }
.faq-body p  { font-size: .925rem; color: var(--tm); line-height: 1.7; }
.faq-body a  { color: var(--pm); }
.faq-item__q { font-size: 1rem; font-weight: 700; color: var(--pd); margin-bottom: .65rem; }
.faq-item__a { font-size: .925rem; color: var(--tm); line-height: 1.7; }
.faq-item__a a { color: var(--pm); }

/* ── LOCATION ─────────────────────────────────────────────── */
.location-layout { display: flex; flex-direction: column; gap: 1.5rem; align-items: stretch; }
.location-map-link { display: block; border-radius: var(--rl); overflow: hidden; box-shadow: var(--sc); flex: 1; min-height: 220px; }
.location-map-img { width: 100%; height: 100%; object-fit: cover; display: block; min-height: 220px; }
@media (min-width: 768px) {
  .location-layout { flex-direction: row; align-items: flex-start; }
  .location-map-link { flex: 1; min-height: 280px; }
  .location-map-img { min-height: 280px; }
  .location-layout .location-card { flex: 0 0 300px; margin: 0; }
}
.location-card { background: var(--pp); border: 1px solid var(--br); border-radius: var(--rl); padding: 2rem; text-align: center; box-shadow: var(--sc); max-width: 480px; margin: 0 auto; }
.location-card h3 { font-size: 1.15rem; font-weight: 800; color: var(--pd); margin-bottom: .75rem; }
.location-card address { font-style: normal; color: var(--tm); font-size: .95rem; line-height: 1.7; margin-bottom: .5rem; }
.location-card .phone { font-size: 1.15rem; font-weight: 700; color: var(--pm); text-decoration: none; display: block; margin-bottom: .5rem; }
.location-card .phone:hover { color: var(--pd); }
.location-card .hours { font-size: .875rem; color: var(--mu); margin-bottom: 1.25rem; line-height: 1.6; }
.maps-link { display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; font-size: .925rem; color: var(--pm); text-decoration: none; border: 2px solid var(--pm); border-radius: 50px; padding: .6rem 1.4rem; transition: all .15s; }
.maps-link:hover { background: var(--pm); color: var(--wh); }

/* ── FOOTER ───────────────────────────────────────────────── */
.site-footer { background: #100625; padding: 3.5rem 1.25rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 2.5rem; }
.footer-logo { max-width: 140px; margin-bottom: 1rem; opacity: .85; }
.footer-col p { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.7; margin-bottom: .3rem; }
.footer-col a { font-size: .85rem; color: rgba(255,255,255,.45); text-decoration: none; }
.footer-col a:hover { color: rgba(255,255,255,.75); }
.footer-col h4 { font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: .9rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .4rem; }
.footer-col ul li a { font-size: .85rem; color: rgba(255,255,255,.5); text-decoration: none; }
.footer-col ul li a:hover { color: rgba(255,255,255,.8); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 1.5rem; text-align: center; }
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-bottom a { color: rgba(255,255,255,.3); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }
.footer-disclaimer { font-size: .72rem; color: rgba(255,255,255,.25); line-height: 1.65; max-width: 600px; margin-top: .75rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }
.footer-social { display: flex; gap: .75rem; margin-top: 1rem; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.1); color: rgba(255,255,255,.55); text-decoration: none; transition: background .2s, color .2s; }
.footer-social a:hover { background: var(--cy); color: #fff; }
.footer-social svg { width: 15px; height: 15px; fill: currentColor; }

/* ── MODAL ────────────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(33,12,82,.7); z-index: 500; display: flex; align-items: center; justify-content: center; padding: 1rem; backdrop-filter: blur(3px); overflow-y: auto; }
.modal-overlay[hidden] { display: none; }
.modal { background: var(--wh); border-radius: var(--rl); padding: 2rem 1.75rem; max-width: 420px; width: 100%; position: relative; box-shadow: 0 24px 64px rgba(33,12,82,.45); max-height: calc(100vh - 2rem); overflow-y: auto; -webkit-overflow-scrolling: touch; }
.modal__close { position: absolute; top: .9rem; right: .9rem; background: none; border: none; cursor: pointer; font-size: 1.35rem; color: var(--mu); line-height: 1; padding: .25rem .5rem; border-radius: 6px; transition: background .15s; }
.modal__close:hover { background: var(--pl); }
.modal__img { width: 100%; border-radius: var(--r); margin-bottom: 1.25rem; display: block; }
.modal__headline { font-size: 1.35rem; font-weight: 800; color: var(--pd); margin-bottom: .3rem; }
.modal__sub { font-size: .875rem; color: var(--mu); margin-bottom: 1.5rem; line-height: 1.5; }
.modal-field { margin-bottom: .9rem; }
.modal-field label { display: block; font-size: .78rem; font-weight: 700; color: var(--tm); margin-bottom: .3rem; letter-spacing: .03em; text-transform: uppercase; }
.modal-field input { width: 100%; padding: .8rem 1rem; font-family: var(--ff); font-size: .975rem; border: 1.5px solid var(--br); border-radius: var(--r); color: var(--td); transition: border-color .15s; }
.modal-field input:focus { outline: none; border-color: var(--pm); }
.modal-field input[aria-invalid="true"] { border-color: #e53e3e; }
.modal-field-error { display: block; font-size: .72rem; color: #e53e3e; margin-top: .3rem; font-weight: 600; }
.modal-sms { font-size: .7rem; color: var(--mu); margin-top: .65rem; line-height: 1.5; }
.modal-success { text-align: center; padding: .5rem 0; display: none; }
.modal-success__icon { font-size: 2.25rem; margin-bottom: .75rem; }
.modal-success h3 { font-size: 1.1rem; font-weight: 800; color: var(--pd); margin-bottom: .5rem; }
.modal-success p { font-size: .875rem; color: var(--tm); line-height: 1.65; }

/* ── RESPONSIVE PADDING ───────────────────────────────────── */
@media (min-width: 768px) { section { padding: 5rem 1.25rem; } }

/* ── PHOTO FEATURE (2-col on desktop, tall portrait mobile) ── */
.photo-feature { display: flex; flex-direction: column; }
.photo-feature__img { width: 100%; background: var(--pd); }
.photo-feature__img img { width: 100%; height: auto; min-height: 420px; object-fit: cover; display: block; }
.photo-feature__body {
  padding: 2.75rem 1.5rem;
  display: flex; flex-direction: column; gap: .9rem;
  background: var(--pp);
  justify-content: center;
}
.photo-feature__body address { color: var(--tm); font-size: .975rem; line-height: 1.75; }
.photo-feature__body p { color: var(--tm); font-size: .925rem; line-height: 1.7; }
@media (min-width: 768px) {
  .photo-feature { flex-direction: row; min-height: 520px; }
  .photo-feature__img { flex: 0 0 40%; }
  .photo-feature__img img { height: 100%; min-height: 0; }
  .photo-feature__body { flex: 1; padding: 3.5rem 3rem; }
}

/* ── SERVICE GRID (6 cards) ──────────────────────────────── */
.service-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; margin-top: 2.5rem; }
@media (min-width: 480px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }
.svc-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--rl);
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: .7rem;
  transition: background .15s;
}
.svc-card:hover { background: rgba(255,255,255,.09); }
.svc-card__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,184,241,.15);
  color: var(--cy);
  flex-shrink: 0;
  margin-bottom: .25rem;
}
.svc-card__icon--kangen { background: rgba(107,31,168,.35); color: #c084fc; }
.svc-card__price {
  font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--pm); background: #fff; border-radius: 50px;
  padding: .25rem .85rem; display: inline-block; align-self: flex-start;
}
.svc-card h3 { font-size: 1rem; font-weight: 800; color: var(--wh); }
.svc-card p  { font-size: .875rem; color: rgba(255,255,255,.7); line-height: 1.6; flex: 1; }
.svc-card a  { margin-top: .25rem; align-self: flex-start; font-size: .85rem; padding: .6rem 1.35rem; }

/* ── FILTRATION CARDS ────────────────────────────────────── */
.filtration-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 640px) { .filtration-grid { grid-template-columns: repeat(3, 1fr); } }
.filtration-card {
  background: var(--pp);
  border: 1px solid var(--br);
  border-radius: var(--rl);
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: .6rem;
}
.filtration-card__icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--pl);
  color: var(--pm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: .25rem;
  flex-shrink: 0;
}
.filtration-card h3 { font-size: 1rem; font-weight: 800; color: var(--pd); }
.filtration-card p  { font-size: .875rem; color: var(--tm); line-height: 1.65; }

/* ── SVC-CARD BADGE IMAGE ────────────────────────────────── */
.svc-card__badge-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r);
  margin-bottom: .5rem;
}

/* ── VENDING FEATURE (dark section with image) ───────────── */
.vending-feature__inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
.vending-feature__img {
  border-radius: var(--rl);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.45);
  max-width: 420px;
  width: 100%;
  flex-shrink: 0;
}
.vending-feature__img img { width: 100%; height: auto; display: block; }
.vending-feature__body { max-width: 500px; }
.vending-feature__body p { color: rgba(255,255,255,.82); line-height: 1.75; margin-bottom: .875rem; }
.vending-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(0,184,241,.12); border: 1.5px solid var(--cy);
  border-radius: 50px; padding: .35rem 1rem;
  font-size: .78rem; font-weight: 700; color: var(--cy);
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .vending-feature__inner { flex-direction: row; align-items: center; }
  .vending-feature__body h2 { text-align: left; }
}

/* ── SPARKLE ANIMATION ───────────────────────────────────── */
@keyframes sparkle-pop {
  0%, 100% { opacity: 0; transform: scale(.2) rotate(0deg); }
  35%, 65% { opacity: 1; transform: scale(1) rotate(18deg); }
}
.hero-heading { position: relative; }
.hero-heading::before,
.hero-heading::after {
  content: '✦';
  position: absolute;
  color: var(--cy);
  pointer-events: none;
  animation: sparkle-pop 3s ease-in-out infinite;
}
.hero-heading::before {
  font-size: .9rem;
  top: -.6rem;
  right: 12%;
  animation-delay: 0s;
}
.hero-heading::after {
  font-size: .5rem;
  top: .15rem;
  right: calc(12% + 1.4rem);
  animation-delay: 1.3s;
}

/* ── YELP REVIEW AVATAR ──────────────────────────────────── */

/* ── NAV DARK MODE TOGGLE ────────────────────────────────── */
.nav-theme-toggle {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; color: var(--pd);
  background: var(--pl); border: none; cursor: pointer;
  transition: background .15s; flex-shrink: 0;
}
.nav-theme-toggle:hover { background: var(--br); }
.icon-moon { display: block; }
.icon-sun  { display: none; }

/* ── DARK MODE ───────────────────────────────────────────── */


[data-theme="dark"] { --bg: #1e0848; --fg: #ddd4f5; --bd: #3d1f70; --tm: #bba8d8; --mu: #8b6fb5; }
[data-theme="dark"] body { background: #0f0523; color: #ddd4f5; }
[data-theme="dark"] a { color: #a78bfa; }
[data-theme="dark"] a.btn-primary,
[data-theme="dark"] .btn-primary { color: var(--pd); }
[data-theme="dark"] a.btn-outline:not(.btn-outline--wh),
[data-theme="dark"] .btn-outline:not(.btn-outline--wh) { color: var(--pm); border-color: var(--pm); }
[data-theme="dark"] a.btn-outline:hover,
[data-theme="dark"] .btn-outline:hover { color: var(--wh) !important; background: var(--pm); border-color: var(--pm); }
[data-theme="dark"] .btn-outline--wh:hover { color: var(--cy) !important; background: rgba(255,255,255,.1); }

[data-theme="dark"] .site-nav { background: #1a0a35; border-color: #3d1f70; }
[data-theme="dark"] .nav-links a { color: #e0d4f8; }
[data-theme="dark"] .nav-links a:hover,
[data-theme="dark"] .nav-links a[aria-current="page"] { background: rgba(255,255,255,.08); color: var(--cy); }
[data-theme="dark"] .nav-phone-icon,
[data-theme="dark"] .nav-maps-icon { background: rgba(255,255,255,.07); color: #e0d4f8; }
[data-theme="dark"] .nav-toggle span { background: #e0d4f8; }
[data-theme="dark"] .icon-moon { display: none; }
[data-theme="dark"] .icon-sun  { display: block; }
[data-theme="dark"] .nav-theme-toggle { background: rgba(255,255,255,.08); color: var(--cy); }

[data-theme="dark"] .section--light  { background: #0f0523; }
[data-theme="dark"] .section--surface { background: #1a0a35; }
[data-theme="dark"] .editorial-section { background: #0f0523; }

[data-theme="dark"] .section-title:not(.section-title--wh) { color: #e8d8ff; }
[data-theme="dark"] .editorial-row__body p { color: #bba8d8; }
[data-theme="dark"] .label { color: var(--cy); }
[data-theme="dark"] p { color: #bba8d8; }

[data-theme="dark"] .photo-feature__body { background: #1a0a35; }
[data-theme="dark"] .photo-feature__body address,
[data-theme="dark"] .photo-feature__body p { color: #bba8d8; }

[data-theme="dark"] .filtration-card { background: #1e0848; border-color: #3d1f70; }
[data-theme="dark"] .filtration-card__icon { background: rgba(255,255,255,.07); }
[data-theme="dark"] .filtration-card h3 { color: #e8d8ff; }
[data-theme="dark"] .filtration-card p  { color: #bba8d8; }

[data-theme="dark"] .faq-list { border-color: #3d1f70; }
[data-theme="dark"] .faq-item { border-color: #3d1f70; }
[data-theme="dark"] .faq-trigger { color: #e8d8ff; }
[data-theme="dark"] .faq-body p { color: #bba8d8; }
[data-theme="dark"] .faq-chevron { color: #8b6fb5; }
[data-theme="dark"] .faq-item__q { color: #e8d8ff; }
[data-theme="dark"] .faq-item__a { color: #bba8d8; }

[data-theme="dark"] .review-card { background: #1e0848; border-color: #3d1f70; }
[data-theme="dark"] .review-name  { color: #e8d8ff; }
[data-theme="dark"] .review-text  { color: #bba8d8; }

[data-theme="dark"] .water-card { background: #1e0848; border-color: #3d1f70; }
[data-theme="dark"] .water-card h3 { color: #e8d8ff; }
[data-theme="dark"] .water-card p  { color: #bba8d8; }

[data-theme="dark"] .prose h2, [data-theme="dark"] .prose h3 { color: #e8d8ff; }
[data-theme="dark"] .prose p { color: #bba8d8; }

[data-theme="dark"] .site-footer { background: #080215; }
[data-theme="dark"] .reviews-score { color: var(--cy); }
[data-theme="dark"] .yelp-score { color: #ff6b6b; }
[data-theme="dark"] .filtration-card__icon { color: var(--cy); }

/* testimonial cards — no separate CSS class, override explicitly */
[data-theme="dark"] .testimonial-card { background: #1e0848; border-color: #3d1f70; }
[data-theme="dark"] .testimonial-card p { color: #bba8d8; }
[data-theme="dark"] .testimonial-card cite { color: #8b6fb5; }
[data-theme="dark"] .testimonial-source { color: var(--cy); }

/* Price pills: always white bg / purple text regardless of theme */
[data-theme="dark"] .svc-card__price { background: #fff; color: var(--pm); }

/* ── 9-STAGE PROCESS GRID ────────────────────────────────── */
.stages-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px)  { .stages-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .stages-grid { grid-template-columns: repeat(3, 1fr); } }
.stage-card {
  display: flex; gap: 1rem; align-items: flex-start;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r);
  padding: 1.25rem 1.25rem 1.25rem 1rem;
}
.stage-card__num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cy);
  color: var(--pd);
  font-size: .8rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-top: .1rem;
}
.stage-card__body h3 { font-size: .95rem; font-weight: 800; color: var(--wh); margin-bottom: .3rem; }
.stage-card__body p  { font-size: .84rem; color: rgba(255,255,255,.72); line-height: 1.6; margin: 0; }

/* ── DELIVERY PRODUCT CARDS ──────────────────────────────── */
.delivery-products { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2rem; }
@media (min-width: 640px) { .delivery-products { grid-template-columns: repeat(2, 1fr); } }
.delivery-product-card {
  background: var(--pp);
  border: 1.5px solid var(--br);
  border-radius: var(--rl);
  padding: 1.75rem 1.5rem;
  display: flex; flex-direction: column; gap: .75rem;
}
.delivery-product-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--pd); }
.delivery-product-card p  { font-size: .875rem; color: var(--tm); line-height: 1.65; flex: 1; }
.delivery-pricing { border-top: 1px solid var(--br); padding-top: .9rem; display: flex; flex-direction: column; gap: .5rem; }
.delivery-pricing__row { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; font-size: .9rem; }
.delivery-pricing__row span { color: var(--mu); }
.delivery-pricing__row strong { color: var(--pd); font-size: 1.05rem; font-weight: 800; white-space: nowrap; }

[data-theme="dark"] .delivery-product-card { background: #1e0848; border-color: #3d1f70; }
[data-theme="dark"] .delivery-product-card h3 { color: #e8d8ff; }
[data-theme="dark"] .delivery-product-card p  { color: #bba8d8; }
[data-theme="dark"] .delivery-pricing { border-color: #3d1f70; }
[data-theme="dark"] .delivery-pricing__row strong { color: var(--cy); }

/* ── REMOVES TABLE (purification page) ───────────────────── */
.removes-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.removes-table th { text-align: left; font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--mu); padding: .5rem .75rem .5rem 0; border-bottom: 2px solid var(--br); }
.removes-table td { padding: .7rem .75rem .7rem 0; border-bottom: 1px solid var(--br); color: var(--tm); vertical-align: top; line-height: 1.5; }
.removes-table td:first-child { width: 38%; color: var(--td); }

[data-theme="dark"] .removes-table th { color: #8b6fb5; border-color: #3d1f70; }
[data-theme="dark"] .removes-table td { color: #bba8d8; border-color: #3d1f70; }
[data-theme="dark"] .removes-table td:first-child { color: #e8d8ff; }

/* ── VENDING PAGE ────────────────────────────────────────── */
.vending-layout { display: flex; flex-direction: column; gap: 2.5rem; }
.vending-layout__img { border-radius: var(--rl); overflow: hidden; box-shadow: var(--sc); }
.vending-layout__img img { width: 100%; height: auto; display: block; }
.vending-layout__body { display: flex; flex-direction: column; gap: 1rem; }
.vending-layout__body h2 { font-size: clamp(1.25rem,3vw,1.75rem); font-weight: 800; color: var(--pd); }
.vending-layout__body p { color: var(--tm); line-height: 1.75; }
@media (min-width: 768px) {
  .vending-layout { flex-direction: row; align-items: center; }
  .vending-layout__img { flex: 1; }
  .vending-layout__body { flex: 1; }
}
.vending-water-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-top: 2rem; }
@media (min-width: 480px) { .vending-water-grid { grid-template-columns: repeat(2, 1fr); } }
.vending-water-card { background: var(--bg); border: 1.5px solid var(--bd); border-radius: var(--rl); padding: 1.75rem; }
.vending-water-card__top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .75rem; }
.vending-water-card__ph { font-size: .78rem; font-weight: 700; color: var(--pm); background: var(--pl); border-radius: 50px; padding: .2rem .75rem; }
.vending-water-card__price { font-size: 1.1rem; font-weight: 800; color: var(--pd); }
.vending-water-card h3 { font-size: 1rem; font-weight: 800; color: var(--pd); margin-bottom: .5rem; }
.vending-water-card p { font-size: .875rem; color: var(--tm); line-height: 1.65; margin: 0; }
.payment-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 480px) { .payment-grid { grid-template-columns: repeat(3, 1fr); } }
.payment-card { background: var(--bg); border: 1px solid var(--bd); border-radius: var(--r); padding: 1.25rem; }
.payment-card h3 { font-size: .9rem; font-weight: 800; color: var(--pd); margin-bottom: .4rem; }
.payment-card p { font-size: .85rem; color: var(--tm); line-height: 1.6; margin: 0; }
[data-theme="dark"] .vending-layout__body h2 { color: #e8d8ff; }
[data-theme="dark"] .vending-layout__body p { color: #bba8d8; }
[data-theme="dark"] .vending-water-card { background: #1e0848; border-color: #3d1f70; }
[data-theme="dark"] .vending-water-card h3 { color: #e8d8ff; }
[data-theme="dark"] .vending-water-card__price { color: var(--cy); }
[data-theme="dark"] .vending-water-card p { color: #bba8d8; }
[data-theme="dark"] .payment-card { background: #1e0848; border-color: #3d1f70; }
[data-theme="dark"] .payment-card h3 { color: #e8d8ff; }
[data-theme="dark"] .payment-card p { color: #bba8d8; }

/* ── WATER MENU PAGE ─────────────────────────────────────── */
.water-menu-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 900px) { .water-menu-grid { grid-template-columns: repeat(2, 1fr); } }
.water-menu-card { background: var(--bg); border: 1.5px solid var(--bd); border-radius: var(--rl); padding: 2rem 2rem 2.5rem; display: flex; flex-direction: column; gap: 1.1rem; box-shadow: var(--sc); }
.water-menu-card__header { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.water-menu-card__badge { font-size: .72rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--wh); border-radius: 50px; padding: .25rem .85rem; }
.water-menu-card__badge--nv  { background: var(--nv); }
.water-menu-card__badge--pm  { background: var(--pm); }
.water-menu-card__badge--pd  { background: var(--pd); }
.water-menu-card__ph { font-size: .78rem; font-weight: 700; color: var(--mu); }
.water-menu-card__price { margin-left: auto; font-size: .8rem; font-weight: 800; color: var(--pm); background: var(--pl); border-radius: 50px; padding: .3rem .9rem; white-space: nowrap; }
.water-menu-card__name { font-size: 1.2rem; font-weight: 800; color: var(--pd); margin: 0; line-height: 1.25; }
.water-menu-card__desc { color: var(--tm); line-height: 1.75; margin: 0; font-size: .95rem; }
.water-menu-card__pills { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; margin: 0; padding: 0; }
.water-menu-card__pills li { font-size: .78rem; font-weight: 600; color: var(--pm); background: var(--pl); border-radius: 50px; padding: .2rem .75rem; }
.water-menu-card__link { align-self: flex-start; font-size: .875rem; font-weight: 700; color: var(--pm); text-decoration: none; border-bottom: 1.5px solid rgba(93,27,142,.25); padding-bottom: .1rem; transition: border-color .15s, color .15s; margin-top: .15rem; }
.water-menu-card__link:hover { color: var(--pd); border-color: var(--pm); }
.water-menu-note { font-size: .82rem; color: var(--mu); margin-top: 2.5rem; text-align: center; line-height: 1.6; }
[data-theme="dark"] .water-menu-card { background: #1e0848; border-color: #3d1f70; }
[data-theme="dark"] .water-menu-card__name { color: #e8d8ff; }
[data-theme="dark"] .water-menu-card__desc { color: #bba8d8; }
[data-theme="dark"] .water-menu-card__price { color: var(--cy); background: rgba(0,184,241,.12); }
[data-theme="dark"] .water-menu-card__pills li { background: rgba(255,255,255,.07); color: var(--cy); }
[data-theme="dark"] .water-menu-card__link { color: var(--cy); border-color: rgba(0,184,241,.3); }
[data-theme="dark"] .water-menu-card__link:hover { border-color: var(--cy); }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-layout { display: flex; flex-direction: column; gap: 2rem; }
@media (min-width: 768px) { .contact-layout { flex-direction: row; align-items: flex-start; gap: 3rem; }
  .contact-layout .location-map-link { flex: 1; min-height: 400px; }
  .contact-layout .location-map-img { min-height: 400px; }
  .contact-details { flex: 0 0 320px; } }
.contact-details { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-block h2 { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--mu); margin-bottom: .5rem; }
.contact-block address { font-style: normal; line-height: 1.65; }
.contact-block p { line-height: 1.65; }
.hours-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.hours-table td { padding: .35rem 0; color: var(--tm); }
.hours-table td:first-child { font-weight: 600; color: var(--td); padding-right: 1.5rem; white-space: nowrap; }
[data-theme="dark"] .contact-block h2 { color: #8b6fb5; }
[data-theme="dark"] .hours-table td { color: #bba8d8; }
[data-theme="dark"] .hours-table td:first-child { color: #e8d8ff; }

/* ── FORM SELECT (delivery form) ─────────────────────────── */
.modal-field select {
  width: 100%; padding: .8rem 1rem; font-family: var(--ff); font-size: .975rem;
  border: 1.5px solid var(--br); border-radius: var(--r); color: var(--td);
  background: var(--wh); appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1rem center;
  transition: border-color .15s; cursor: pointer;
}
.modal-field select:focus { outline: none; border-color: var(--pm); }

[data-theme="dark"] .modal-field select { background-color: #1e0848; color: #e8d8ff; border-color: #3d1f70; }
[data-theme="dark"] .modal { background: #1a0a35; }
[data-theme="dark"] .modal__headline { color: #e8d8ff; }
[data-theme="dark"] .modal-field input { background: #1e0848; color: #e8d8ff; border-color: #3d1f70; }

/* ── SKIP LINK ───────────────────────────────────────────── */
.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--cy); color: var(--pd); padding: .5rem 1.25rem; border-radius: 0 0 var(--r) var(--r); font-weight: 700; font-size: .875rem; z-index: 9999; text-decoration: none; }
.skip-link:focus { top: 0; outline: 3px solid var(--pd); outline-offset: 2px; }

/* ── DELIVERY COVERAGE GRID ──────────────────────────────── */
.delivery-schedule-grid { display: grid; grid-template-columns: 1fr; gap: 1.75rem; align-items: center; }
@media (min-width: 600px) { .delivery-schedule-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }

/* ── HOME FILTRATION PRODUCT CARDS ──────────────────────── */
.hf-product-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 780px) { .hf-product-grid { grid-template-columns: repeat(3, 1fr); } }
.hf-product-card { background: #fff; border: 1.5px solid rgba(0,0,0,.07); border-radius: var(--rl); overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 2px 20px rgba(33,12,82,.07); }
.hf-product-card__img-wrap { background: #fff; padding: 2rem; display: flex; align-items: center; justify-content: center; }
.hf-product-card__img-wrap img { width: 100%; max-width: 220px; height: auto; object-fit: contain; }
.hf-product-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.hf-product-card__name { font-size: 1.15rem; font-weight: 800; color: var(--pd); margin: 0; }
.hf-product-card__tagline { font-size: .85rem; color: var(--mu); margin: 0; }
.hf-product-card__features { padding-left: 1.1rem; list-style: disc; display: flex; flex-direction: column; gap: .35rem; flex: 1; margin: .25rem 0; }
.hf-product-card__features li { color: var(--tm); font-size: .875rem; line-height: 1.5; }
.hf-badge { font-size: .68rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--pm); background: rgba(93,27,142,.07); border: 1px solid rgba(93,27,142,.18); border-radius: 50px; padding: .25rem .75rem; display: inline-block; align-self: flex-start; }
/* dark-bg variant kept for potential reuse */
.editorial-row__image--inset { background: rgba(255,255,255,.04); border-radius: var(--rl); padding: 2.5rem; display: flex; align-items: center; justify-content: center; }

/* ── REWARDS PAGE ────────────────────────────────────────── */
.rewards-steps { display: flex; flex-direction: column; gap: 2rem; }
.rewards-step { display: flex; gap: 1.25rem; align-items: flex-start; }
.rewards-step__num { flex-shrink: 0; width: 2.5rem; height: 2.5rem; background: var(--cy); color: var(--pd); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.1rem; margin-top: .2rem; }
.rewards-step__body h3 { font-size: 1.1rem; font-weight: 800; color: var(--pd); margin-bottom: .4rem; }
.rewards-step__body p { color: var(--tm); line-height: 1.75; }
[data-theme="dark"] .rewards-step__body h3 { color: #e8d8ff; }
.rewards-math-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
@media (max-width: 600px) { .rewards-math-grid { grid-template-columns: 1fr; max-width: 240px; margin: 0 auto; } }
.rewards-math-card { background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.12); border-radius: var(--rl); padding: 1.75rem 1rem; }
.rewards-math-card--accent { background: rgba(0,184,241,.12); border-color: rgba(0,184,241,.3); }
.rewards-math-card__val { font-size: 2.25rem; font-weight: 900; color: var(--wh); margin: 0; line-height: 1; }
.rewards-math-card--accent .rewards-math-card__val { color: var(--cy); }
.rewards-math-card__label { font-size: .8rem; color: rgba(255,255,255,.55); margin-top: .4rem; letter-spacing: .02em; }
