/* =========================================================================
   BelArosa Migration — PROTOTYPE overlay for Magnolia Wellness Massage
   Loaded AFTER styles.css. Overrides STRUCTURE only.
   Brand colors are inherited untouched: --green #3b7c22 / --gold #d1b96d.

   BelArosa signatures adopted (green/gold remapped from teal/alpine-gold):
   • Paper-white + warm-linen canvas, crisp & editorial
   • Flat surfaces — shadows removed, replaced by 1px hairlines
   • Ghost / outline PILL buttons as the default (80px radius)
   • Bigger serif display type + wide letter-spacing on labels
   • Thin gold hairline accents + deep-green immersive panels
   ========================================================================= */

:root {
  /* Canvas shifted toward BelArosa's paper-white + warm linen.
     (Backgrounds only — brand green/gold ramps are NOT touched.) */
  --cream:      #ffffff;   /* Paper White canvas          */
  --cream-100:  #f4f1ea;   /* Warm Linen (light surface)  */
  --cream-200:  #ebe7e1;   /* Warm Linen (deeper)         */
  --surface:    #ffffff;
  --line:       #e4ded2;   /* quiet hairline              */
  --bg:         var(--cream);

  /* Softer, flatter elevation — BelArosa avoids heavy shadows */
  --shadow-sm:  none;
  --shadow-md:  0 1px 0 var(--line);
  --shadow-lg:  0 18px 50px rgba(31,66,19,.10);

  --radius:     4px;
  --radius-lg:  10px;
  --radius-xl:  16px;
}

/* ---------- Typography: larger, more editorial ---------- */
body { font-size: 17px; }
h1 { font-size: clamp(2.9rem, 7vw, 5rem); letter-spacing: -.015em; }
h2 { font-size: clamp(2.15rem, 5vw, 3.6rem); letter-spacing: -.012em; }
h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); }

/* Wide-tracked uppercase labels — the BelArosa typographic signature */
.eyebrow { letter-spacing: .28em; font-size: .76rem; }
.eyebrow::before, .eyebrow.center::after { width: 42px; }
.nav-link { letter-spacing: .06em; }
.pill, .post-meta, .info-item h4, .footer-col h4 { letter-spacing: .16em; }

/* ---------- Buttons: ghost / outline PILL by default ---------- */
.btn { border-radius: 80px; padding: 18px 34px; box-shadow: none; letter-spacing: .08em; text-transform: uppercase; font-size: .82rem; }
.btn-lg { padding: 21px 42px; font-size: .86rem; }

/* Outline is now the primary treatment (green on light) */
.btn-primary {
  background: transparent; color: var(--green-800);
  box-shadow: inset 0 0 0 1.5px var(--green); }
.btn-primary:hover {
  background: var(--green); color: #fff; transform: none;
  box-shadow: inset 0 0 0 1.5px var(--green); }

/* Gold "Book" stays a solid accent — intentional: it's the conversion CTA.
   (BelArosa uses ghosts, but a spa's booking button earns one solid anchor.) */
.btn-gold { background: var(--gold); color: var(--green-900); box-shadow: none; }
.btn-gold:hover { background: var(--gold-400); transform: none; box-shadow: inset 0 0 0 1.5px var(--gold-600); }

.btn-outline { box-shadow: inset 0 0 0 1.5px var(--green); }
.btn-outline:hover { transform: none; }
.btn-ghost-light:hover { transform: none; }
.btn:hover { transform: none; }

/* ---------- Flat surfaces: cards become hairline panels ---------- */
.card, .service-card, .quote-card, .post-card, .accred-card, .form-card,
.faq-item, .tech-chip, .info-item .ic, .price-table {
  box-shadow: none;
  border: 1px solid var(--line);
  background: var(--surface);
}
.card { border-radius: var(--radius-lg); padding: 34px 30px; }
.card:hover, .service-card:hover, .post-card:hover, .accred-card:hover {
  transform: none; box-shadow: none; border-color: var(--gold);
}
.card-icon { border-radius: 50%; background: transparent; border: 1px solid var(--gold); color: var(--green); }

/* Thin gold hairline on framed media instead of a drop shadow */
.split-media img { box-shadow: none; border: 1px solid var(--line); }
.split-media.framed::before { border-color: var(--gold); }
.media-tag { box-shadow: none; border: 1px solid var(--line); }
.gallery a { box-shadow: none; border: 1px solid var(--line); }

/* ---------- Immersive green panels ---------- */
.bg-green { background: var(--green); }                  /* matches footer green (#3b7c22) */
.bg-surface { background: var(--cream-100); }            /* alternate w/ warm linen */
.hero-media::after {
  background: linear-gradient(100deg, rgba(15,36,9,.90) 0%, rgba(15,36,9,.60) 45%, rgba(15,36,9,.20) 100%);
}
.cta-band-media::after {
  background: linear-gradient(120deg, rgba(15,36,9,.94), rgba(31,66,19,.82));
}

/* Header: flatter, crisper */
.site-header { background: rgba(255,255,255,.9); border-bottom: 1px solid var(--line); }
.site-header.scrolled { box-shadow: none; background: rgba(255,255,255,.97); }

/* Chips → outlined pills, no shadow */
.tech-chip { box-shadow: none; }
.tech-chip:hover { transform: none; border-color: var(--gold); }
.pill { background: transparent; border: 1px solid var(--gold-600); color: var(--green-700); }

/* =========================================================================
   LENIS SMOOTH SCROLL — the BelArosa momentum-scroll feel
   (required base CSS from studio-freight/lenis)
   ========================================================================= */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-smooth iframe { pointer-events: none; }

/* Slightly richer reveal to match BelArosa's slower, weighted entrance */
[data-reveal] { transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }

/* Hero background video — cover the frame like the old hero image did */
.hero-media video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
/* On mobile the tall crop hides the right-side bowl — recenter the subject */
@media (max-width: 620px) {
  .hero-media video { object-position: 65% center; }
}

/* Utility: hide on phones, show from tablet (>=768px) up */
@media (max-width: 767px) {
  .hide-below-tablet { display: none !important; }
}

/* ---------- Techniques → numbered editorial list (replaces pills) ---------- */
.tech-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 44px; width: 100%; }
.tech-list li {
  display: flex; align-items: baseline; gap: 16px;
  padding: 15px 2px; border-bottom: 1px solid rgba(255,255,255,.16);
}
.tech-list .n { display: none; }   /* numbers removed */
.tech-list .t {
  display: inline-flex; align-items: center; gap: 11px;
  font-size: 1.04rem; color: #fff; letter-spacing: .005em;
}
/* Small gold leaf marker before each label */
.tech-list .t::before {
  content: ""; flex: 0 0 auto; width: 16px; height: 16px;
  background-color: var(--gold-300);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.05 8.05c-2.73 2.73-2.73 7.15-.02 9.88 1.47-3.4 4.09-6.24 7.36-7.93-2.77 2.34-4.71 5.61-5.39 9.32 2.6 1.23 5.8.78 7.95-1.37C19.43 14.47 20 4 20 4S9.53 4.57 6.05 8.05z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.05 8.05c-2.73 2.73-2.73 7.15-.02 9.88 1.47-3.4 4.09-6.24 7.36-7.93-2.77 2.34-4.71 5.61-5.39 9.32 2.6 1.23 5.8.78 7.95-1.37C19.43 14.47 20 4 20 4S9.53 4.57 6.05 8.05z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.tech-list li:hover .t { color: var(--gold-300); }
@media (max-width: 620px) { .tech-list { grid-template-columns: 1fr; gap: 0; } }
