/* =====================================================================
   v7 VERTICAL LANDING PAGES — shared companion styles
   Loads AFTER v7-shared.css. Used by:
     female-wellness.php · find-a-teacher.php · corporate-yoga.php
   Never redefines tokens/chrome — only adds new .v* rules + per-page accents.
   Per-page accent is set on the .vwrap wrapper (see .v-female/.v-teacher/.v-corp).
   ===================================================================== */

/* ---- Per-page accent palettes (drive gradients, chips, buttons, icons) ---- */
.vwrap { --accent: var(--saffron); --accent-2: var(--saffron-deep); --accent-soft: var(--saffron-soft); --accent-grad: var(--g-sunset); }
.v-female    { --accent: var(--coral);      --accent-2: var(--pink);         --accent-soft: #FCE4EA; --accent-grad: var(--g-twilight); }
.v-teacher   { --accent: var(--saffron);    --accent-2: var(--saffron-deep); --accent-soft: var(--saffron-soft); --accent-grad: var(--g-sunset); }
.v-corp      { --accent: var(--teal);       --accent-2: var(--teal-bright);  --accent-soft: #E0F0EC; --accent-grad: linear-gradient(135deg, #15A47A 0%, #0F6B5F 55%, #0A3D37 100%); }

/* Accent-tinted gradient text (overrides shared g-sunset default; keeps clip/fill) */
.vwrap .page-hero h1 .accent,
.vwrap .section-title .accent,
.vwrap .accent-txt { background-image: var(--accent-grad); }
/* Accent-tinted section-label bar + eyebrow tag */
.vwrap .section-label::before { background: var(--accent); }
.vwrap .hero-eyebrow-tag { background: var(--accent); }

/* ---- Band helpers ---- */
.soft-band { background: var(--bg-soft); }
.warm-band { background: var(--bg-warm); }
.v-head { max-width: 660px; margin-bottom: 44px; }
.v-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---- Buttons (accent + on-color variants; sizes) ---- */
.btn-accent { display: inline-flex; align-items: center; gap: 8px; background: var(--accent-grad); color: #fff; font-weight: 800; font-size: 14px; padding: 12px 22px; border-radius: var(--r-sm); border: none; cursor: pointer; box-shadow: var(--shadow-cta); transition: transform 0.2s, box-shadow 0.2s, filter 0.2s; }
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -8px rgba(31,6,23,0.5); filter: saturate(1.08); }
.btn-white { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--ink); font-weight: 800; font-size: 14px; padding: 12px 22px; border-radius: var(--r-sm); box-shadow: var(--shadow-md); transition: transform 0.2s; }
.btn-white:hover { transform: translateY(-2px); }
.btn-outline-white { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff; font-weight: 800; font-size: 14px; padding: 12px 22px; border-radius: var(--r-sm); border: 1.5px solid rgba(255,255,255,0.6); transition: all 0.2s; }
.btn-outline-white:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-accent svg, .btn-white svg, .btn-outline-white svg, .btn-lg svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ---- HERO (2-column: copy + media) ---- */
.vhero { padding: 64px 0 68px; }
.vhero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.vhero h1 { font-size: 60px; margin-top: 20px; }
.vhero .lead { max-width: 560px; }
.vhero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.vpills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.vpill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-full); font-size: 13px; font-weight: 600; color: var(--ink-2); box-shadow: var(--shadow-sm); }
.vpill::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.vhero-media { position: relative; }
.vhero-media img { position: relative; z-index: 1; width: 100%; aspect-ratio: 5/6; object-fit: cover; border-radius: var(--r-2xl); box-shadow: var(--shadow-xl); }
.vhero-media::before { content: ''; position: absolute; inset: -10% -8% -6% -8%; background: var(--accent-grad); filter: blur(64px); opacity: 0.26; border-radius: 50%; z-index: 0; }
.vhero-badge { position: absolute; z-index: 2; bottom: 20px; left: -18px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 14px 18px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 12px; max-width: 250px; }
.vhero-badge .vb-dot { width: 40px; height: 40px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.vhero-badge .vb-dot svg { width: 22px; height: 22px; }
.vhero-badge strong { display: block; font-family: 'Inter Tight', sans-serif; font-size: 14px; font-weight: 800; color: var(--ink); line-height: 1.15; }
.vhero-badge span { font-size: 12px; color: var(--muted); }

/* ---- CHIPS (conditions / styles) ---- */
.vchips { display: flex; flex-wrap: wrap; gap: 12px; }
.vchip { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; background: var(--bg); border: 1px solid var(--line-strong); border-radius: var(--r-full); font-size: 15px; font-weight: 600; color: var(--ink); transition: transform 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s; }
.vchip::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
.vchip:hover { border-color: var(--accent); color: var(--accent-2); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---- GRADIENT FEATURE CARDS (the v7 "value" cards) ---- */
.vfeatures { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vfeature { position: relative; overflow: hidden; border-radius: var(--r-2xl); padding: 32px 28px; min-height: 296px; display: flex; flex-direction: column; color: #fff; background: var(--accent-grad); box-shadow: var(--shadow-lg); transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease; }
.vfeature::before { content: ''; position: absolute; inset: 0; background: radial-gradient(120% 80% at 82% 0%, rgba(255,255,255,0.22), transparent 60%); pointer-events: none; }
.vfeature:hover { transform: translateY(-8px); box-shadow: 0 28px 56px -16px rgba(31,14,24,0.35); }
.vf-num { position: absolute; top: 22px; right: 28px; font-family: 'Inter Tight', sans-serif; font-size: 42px; font-weight: 800; opacity: 0.20; letter-spacing: -0.02em; }
.vf-body { position: relative; z-index: 1; display: flex; flex-direction: column; flex: 1; }
.vf-ic { width: 52px; height: 52px; border-radius: 14px; background: rgba(255,255,255,0.22); border: 1px solid rgba(255,255,255,0.28); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; color: #fff; }
.vf-ic svg { width: 26px; height: 26px; }
.vfeature h3 { font-family: 'Inter Tight', sans-serif; font-size: 22px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.18; margin-bottom: 12px; }
.vfeature p { font-size: 14px; line-height: 1.6; opacity: 0.94; }

/* ---- LIGHT ICON CARDS (secondary "what's included / offer") ---- */
.vcards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vcard { background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-xl); padding: 30px 28px; transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.vcard:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.vc-ic { width: 52px; height: 52px; border-radius: 14px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.vc-ic svg { width: 26px; height: 26px; }
.vcard h3 { font-family: 'Inter Tight', sans-serif; font-size: 19px; font-weight: 800; letter-spacing: -0.015em; color: var(--ink); margin-bottom: 8px; }
.vcard p { font-size: 14px; line-height: 1.6; color: var(--muted); }

/* ---- STEPS (how it works) ---- */
.vsteps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.vsteps.cols-3 { grid-template-columns: repeat(3, 1fr); }
.vstep { position: relative; padding: 28px 24px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--r-xl); transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s; }
.vstep:hover { border-color: transparent; box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.vs-num { width: 46px; height: 46px; border-radius: 50%; background: var(--accent-grad); color: #fff; font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 18px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; box-shadow: var(--shadow-md); }
.vstep h3 { font-family: 'Inter Tight', sans-serif; font-size: 18px; font-weight: 800; letter-spacing: -0.015em; color: var(--ink); margin-bottom: 8px; }
.vstep p { font-size: 14px; line-height: 1.55; color: var(--muted); }

/* ---- CLOSING CTA (footer-style gradient card) ---- */
.vcta { position: relative; overflow: hidden; border-radius: var(--r-2xl); padding: 56px 48px; background: var(--accent-grad); color: #fff; box-shadow: 0 24px 60px -20px rgba(31,6,23,0.4); }
.vcta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(90% 120% at 100% 0%, rgba(255,255,255,0.18), transparent 55%); pointer-events: none; }
.vcta-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: center; }
.vcta h2 { font-family: 'Inter Tight', sans-serif; font-size: 40px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.06; margin-bottom: 14px; }
.vcta p { font-size: 16px; line-height: 1.55; opacity: 0.95; max-width: 460px; }
.vcta-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; }
.vcta.center { text-align: center; }
.vcta.center .vcta-grid { grid-template-columns: 1fr; justify-items: center; }
.vcta.center p { margin-left: auto; margin-right: auto; }
.vcta.center .vcta-actions { justify-content: center; }
.vcta-aside { text-align: center; }
.vcta-aside .big { font-family: 'Inter Tight', sans-serif; font-weight: 800; font-size: 26px; letter-spacing: -0.02em; line-height: 1.2; }
.vcta-aside .small { font-size: 13px; opacity: 0.9; margin-top: 8px; }

/* ---- Reveal-on-scroll (JS in foot.php toggles .is-visible).
   Hidden state is gated behind .js-reveal (set on <html> via $extraHead),
   so content is always visible if JS is disabled. ---- */
.js-reveal .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.js-reveal .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .js-reveal .reveal { opacity: 1; transform: none; transition: none; } }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .vhero-grid { grid-template-columns: 1fr; gap: 40px; }
  .vhero h1 { font-size: 44px; }
  .vhero-media { max-width: 520px; }
  .vhero-badge { left: 12px; }
  .vfeatures, .vcards { grid-template-columns: 1fr 1fr; }
  .vsteps, .vsteps.cols-3 { grid-template-columns: 1fr 1fr; }
  .vcta { padding: 40px 32px; }
  .vcta-grid { grid-template-columns: 1fr; text-align: left; }
  .vcta h2 { font-size: 32px; }
  .vcta-aside { display: none; }
}
@media (max-width: 640px) {
  .vhero h1 { font-size: 36px; }
  .vfeatures, .vcards, .vsteps, .vsteps.cols-3 { grid-template-columns: 1fr; }
  .vhero-badge { display: none; }
}
