/* ==========================================================================
   Yoga24Fitness — Shared Landing Page Stylesheet
   Tagline: Refreshing body and soul
   ========================================================================== */

:root {
  /* Brand green palette */
  --color-50:  #EEF6F2;
  --color-100: #D9EBE2;
  --color-200: #B2D7C4;
  --color-300: #94C7AD;
  --color-400: #76B796;
  --color-500: #58A780;
  --color-600: #488969;
  --color-700: #386B52;
  --color-800: #284D3B;
  --color-900: #192F24;
  --color-950: #09110D;

  /* Semantic tokens */
  --brand:        var(--color-500);
  --brand-dark:   var(--color-700);
  --brand-darker: var(--color-900);
  --brand-light:  var(--color-100);
  --accent:       var(--color-400);

  --ink:      #1c261f;
  --ink-soft: #4a5750;
  --paper:    #ffffff;
  --paper-2:  var(--color-50);
  --line:     rgba(56, 107, 82, 0.14);

  --radius:    18px;
  --radius-sm: 10px;
  --shadow:    0 10px 30px rgba(25, 47, 36, 0.10);
  --shadow-lg: 0 24px 60px rgba(25, 47, 36, 0.16);

  --font-head: "Poppins", "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;

  --wrap: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--brand-darker);
  margin: 0 0 .5em;
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { margin: 0 0 1rem; }

a { color: var(--brand-dark); text-decoration: none; }
a:hover { color: var(--brand); }

img { max-width: 100%; display: block; }

.wrap { width: min(100% - 2.5rem, var(--wrap)); margin-inline: auto; }

.section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section--tint { background: var(--paper-2); }
.section--brand { background: var(--brand-darker); color: #dfeee6; }
.section--brand h2,
.section--brand h3 { color: #ffffff; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: .75rem;
}

.section-head { max-width: 720px; margin: 0 auto 2.5rem; text-align: center; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }

.lead { font-size: 1.15rem; color: var(--ink-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(88,167,128,.35); }
.btn--primary:hover { background: var(--brand-dark); color: #fff; }
.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn--outline { background: #fff; color: var(--brand-dark); border-color: var(--color-200); }
.btn--outline:hover { border-color: var(--brand); color: var(--brand-dark); }
.btn--wa { background: #25D366; color: #fff; }
.btn--wa:hover { background: #1eb457; color: #fff; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(1.4) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; gap: 1.5rem; padding: .6rem 0; }
.brand-logo {
  font-family: var(--font-head); font-weight: 700; font-size: 1.25rem;
  color: var(--brand-darker); display: inline-flex; align-items: center; gap: .55rem;
  flex: 0 0 auto; line-height: 1;
}
.brand-logo__img {
  display: block; height: 58px; width: auto; max-width: 100%;
  object-fit: contain;
  transition: transform .18s ease;
}
.brand-logo:hover .brand-logo__img { transform: scale(1.04); }
.nav-links { display: flex; gap: 1.35rem; margin-left: auto; align-items: center; }
.nav-links a { font-weight: 500; color: var(--ink); font-size: .95rem; }
.nav-links a:hover { color: var(--brand); }
.nav-cta { display: flex; gap: .6rem; align-items: center; }
@media (min-width: 861px) and (max-width: 1080px) {
  .nav-links { gap: .85rem; }
  .nav-links a { font-size: .88rem; }
  .nav { gap: 1rem; }
  .brand-logo__img { height: 48px; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .brand-logo__img { height: 48px; }
  .nav-cta { margin-left: auto; }
}
@media (max-width: 420px) {
  .brand-logo__img { height: 40px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(118,183,150,.35), transparent 60%),
    linear-gradient(180deg, var(--color-50), #ffffff 70%);
  overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 3rem; align-items: center;
  padding: clamp(2.5rem, 6vw, 5rem) 0;
}
.hero h1 { margin-bottom: .4rem; }
.hero .lead { max-width: 40ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.6rem; }
.hero-media {
  position: relative; border-radius: 26px; overflow: hidden;
  aspect-ratio: 4/3.4; box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--color-300), var(--color-700));
  display: grid; place-items: center; color: #fff; text-align: center; padding: 2rem;
}
.hero-media .emoji { font-size: clamp(4rem, 12vw, 8rem); line-height: 1; }
.hero-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.4rem; }
.badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: #fff; border: 1px solid var(--line); color: var(--brand-dark);
  font-size: .82rem; font-weight: 600; padding: .4rem .8rem; border-radius: 999px;
  box-shadow: 0 3px 10px rgba(25,47,36,.05);
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-media { aspect-ratio: 16/11; }
}

/* ---------- Icons (Line Awesome) ----------
   Loaded from cdnjs in each page head. Glyphs are 1em, so they scale with
   whatever context they sit in; these rules only fix baseline and rhythm. */
.las, .lar, .lab { line-height: 1; vertical-align: -.08em; }
.badge .las, .badge .lar, .badge .lab { font-size: 1.05em; color: var(--brand); }
.chip .las, .chip .lab { margin-right: .3rem; }
.strip .las, .strip .lab { margin-right: .4rem; font-size: 1.1em; opacity: .9; }
.svc-link .las { font-size: 1.05em; vertical-align: -.18em; transition: transform .15s ease; }
.svc-link:hover .las { transform: translateX(3px); }
.footer-contact .las { margin-top: .15em; color: var(--color-300); }
.card .ico .las, .card .ico .lab { font-size: 1.75rem; }
.svc-media .las, .svc-media .lab { font-size: 3.6rem; }
.stars .las { font-size: .95em; }
.num .las { font-size: .8em; vertical-align: .02em; }

/* ---------- Marquee callout strip ---------- */
.strip {
  background: var(--brand-dark); color: #eaf5ef; padding: .8rem 0;
  font-family: var(--font-head); font-weight: 500; font-size: .9rem;
}
.strip .wrap { display: flex; flex-wrap: wrap; gap: .5rem 2rem; justify-content: center; }
.strip span { display: inline-flex; align-items: center; gap: .45rem; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow); transition: transform .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .ico {
  width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center;
  font-size: 1.6rem; margin-bottom: 1rem;
  background: var(--color-100); color: var(--brand-dark);
}
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--ink-soft); margin: 0; font-size: .96rem; }

/* Service cards (hub) */
.svc-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.svc-card .svc-media {
  /* 4/3 rather than 16/9 — kinder crop for portrait phone photos */
  aspect-ratio: 4/3; display: grid; place-items: center; font-size: 3.4rem; color: #fff;
  background: linear-gradient(135deg, var(--color-400), var(--color-700));
}
.svc-card .svc-body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.svc-card .tag {
  align-self: flex-start; font-size: .72rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--brand-dark); background: var(--color-100);
  padding: .25rem .6rem; border-radius: 999px; margin-bottom: .7rem;
}
.svc-card h3 { margin-bottom: .35rem; }
.svc-card p { flex: 1; }
.svc-card .svc-link { margin-top: 1rem; font-weight: 600; color: var(--brand-dark); display: inline-flex; gap: .4rem; }

/* ---------- Feature list ---------- */
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; gap: .9rem; }
.feature-list li { display: flex; gap: .75rem; align-items: flex-start; }
.feature-list .tick {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--color-100); color: var(--brand-dark); display: grid; place-items: center;
  font-size: .8rem; font-weight: 700; margin-top: .15rem;
}

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split .media {
  border-radius: var(--radius); aspect-ratio: 4/3; box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--color-200), var(--color-600));
  display: grid; place-items: center; font-size: 5rem; color: #fff;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; text-align: center; }
.stats .num { font-family: var(--font-head); font-weight: 700; font-size: clamp(2rem,4vw,2.8rem); color: var(--color-300); }
.stats .lbl { font-size: .9rem; opacity: .85; }
@media (max-width: 620px) { .stats { grid-template-columns: repeat(2,1fr); } }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; align-items: stretch; }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }
.price {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.price.is-featured { border: 2px solid var(--brand); box-shadow: var(--shadow-lg); position: relative; }
.price.is-featured::before {
  content: "Most Popular"; position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .05em;
  padding: .3rem .9rem; border-radius: 999px; text-transform: uppercase;
}
.price .plan { font-family: var(--font-head); font-weight: 600; color: var(--brand-dark); }
.price .amt { font-family: var(--font-head); font-weight: 700; font-size: 2.4rem; color: var(--brand-darker); margin: .4rem 0; }
.price .amt small { font-size: .9rem; font-weight: 500; color: var(--ink-soft); }
.price ul { list-style: none; padding: 0; margin: 1.2rem 0; display: grid; gap: .6rem; }
.price li { display: flex; gap: .5rem; font-size: .94rem; color: var(--ink-soft); }
.price li::before { content: "✓"; color: var(--brand); font-weight: 700; }
.price .btn { margin-top: auto; justify-content: center; }
.note { text-align: center; color: var(--ink-soft); font-size: .88rem; margin-top: 1.2rem; }

/* ---------- Photo fill for media blocks ----------
   .hero-media, .split .media and .svc-media keep their gradient as a fallback;
   an <img> child fills the block edge to edge. Absolute + inset:0 covers the
   parent's padding box, so .hero-media's padding doesn't frame the photo. */
.hero-media img,
.split .media img,
.svc-card .svc-media img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
.split .media { position: relative; overflow: hidden; }
.svc-card .svc-media { position: relative; }
/* Nudge the crop when the subject sits high in the frame and would lose a head */
.hero-media img.focus-top,
.split .media img.focus-top,
.svc-card .svc-media img.focus-top { object-position: center 18%; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.gallery-grid .g-item {
  position: relative; display: block; overflow: hidden;
  aspect-ratio: 1 / 1; border-radius: var(--radius-sm);
  background: var(--color-100); box-shadow: var(--shadow);
}
.gallery-grid .g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .35s ease;
}
.gallery-grid .g-item::after {
  content: "🔍"; position: absolute; inset: 0; display: grid; place-items: center;
  background: rgba(25, 47, 36, .38); color: #fff; font-size: 1.5rem;
  opacity: 0; transition: opacity .25s ease;
}
.gallery-grid .g-item:hover img { transform: scale(1.06); }
.gallery-grid .g-item:hover::after,
.gallery-grid .g-item:focus-visible::after { opacity: 1; }
/* First tile reads as the feature shot — only on galleries with enough images
   to fill the space around it (see .gallery-grid--featured). */
@media (min-width: 621px) {
  .gallery-grid--featured .g-item:first-child {
    grid-column: span 2; grid-row: span 2;
  }
}
@media (prefers-reduced-motion: reduce) {
  .gallery-grid .g-item img { transition: none; }
  .gallery-grid .g-item:hover img { transform: none; }
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; counter-reset: step; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: .5rem; }
.step .n {
  width: 44px; height: 44px; border-radius: 50%; background: var(--brand); color: #fff;
  font-family: var(--font-head); font-weight: 700; display: grid; place-items: center; margin-bottom: .8rem;
}
.step h3 { font-size: 1.1rem; }
.step p { color: var(--ink-soft); font-size: .94rem; margin: 0; }

/* ---------- Testimonials ---------- */
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem;
  box-shadow: var(--shadow);
}
.quote .stars { color: #f5a623; letter-spacing: .1em; margin-bottom: .6rem; }
.quote p { font-size: 1rem; color: var(--ink); font-style: italic; }
.quote .who { display: flex; align-items: center; gap: .7rem; margin-top: 1rem; }
.quote .ava {
  width: 42px; height: 42px; border-radius: 50%; background: var(--color-300); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-family: var(--font-head);
}
.quote .who b { display: block; color: var(--brand-darker); }
.quote .who span { font-size: .84rem; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: .3rem 1.3rem; margin-bottom: .8rem; box-shadow: 0 3px 10px rgba(25,47,36,.04);
}
.faq summary {
  cursor: pointer; font-family: var(--font-head); font-weight: 600; color: var(--brand-darker);
  padding: 1rem 0; list-style: none; display: flex; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--brand); font-size: 1.4rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq details p { color: var(--ink-soft); padding-bottom: 1rem; margin: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--color-700), var(--color-500));
  color: #fff; text-align: center; border-radius: 26px; padding: clamp(2.2rem,5vw,3.5rem);
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #eaf5ef; max-width: 560px; margin: 0 auto 1.6rem; }
.cta-band .hero-cta { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--color-950); color: #b9cdc2; padding: 3.5rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: 1rem; }
.site-footer a { color: #b9cdc2; }
.site-footer a:hover { color: var(--color-300); }
.footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .55rem; font-size: .92rem; }
.footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; font-size: .92rem; }
.footer-contact li { display: flex; gap: .55rem; align-items: flex-start; }
.social { display: flex; gap: .6rem; margin-top: 1rem; }
.social a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: grid; place-items: center; font-size: 1.25rem; color: #d6e6dc;
}
.social a:hover { background: var(--brand); }
.footer-brand p { color: #93a89c; font-size: .92rem; }
/* logo artwork is solid dark — flip it to white on the dark footer */
.site-footer .brand-logo__img { height: 58px; filter: brightness(0) invert(1); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); margin-top: 2.5rem; padding-top: 1.5rem;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem;
  font-size: .84rem; color: #7e948a;
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; font-size: 2rem; box-shadow: 0 10px 24px rgba(37,211,102,.45);
  transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.08); color: #fff; }

/* ---------- Breadcrumb ---------- */
.crumb { font-size: .85rem; color: var(--ink-soft); padding: 1rem 0 0; }
.crumb a { color: var(--brand-dark); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.2rem; }
.chip { background: var(--color-100); color: var(--brand-dark); font-weight: 600; font-size: .84rem; padding: .35rem .8rem; border-radius: 999px; }
