/* =========================================================
   Utsavyogi.com — SYS Power Yoga
   Design system + global styles
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --clay:        #b56b4a;
  --clay-dark:   #8f4f30;
  --clay-soft:   #e7c3ad;
  --sage:        #7e8c6a;
  --sage-dark:   #59654a;
  --gold:        #c9a86a;
  --sand:        #f6f0e6;
  --cream:       #fcf8f1;
  --ink:         #2b2724;
  --ink-soft:    #4a443d;
  --muted:       #786f63;
  --line:        #e8ddcb;
  --white:       #ffffff;

  --shadow-sm: 0 4px 16px rgba(43, 39, 36, .06);
  --shadow-md: 0 14px 40px rgba(43, 39, 36, .10);
  --shadow-lg: 0 30px 70px rgba(43, 39, 36, .16);

  --radius:    18px;
  --radius-lg: 28px;
  --container:  1180px;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; color: var(--ink); }
button { font-family: inherit; cursor: pointer; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding: 96px 0; position: relative; }
.section--tight { padding: 70px 0; }
.bg-cream { background: var(--cream); }
.bg-ink   { background: var(--ink); color: var(--sand); }
.center   { text-align: center; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: 12px;
  font-weight: 600;
  color: var(--clay);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--clay); display: inline-block; }
.center .eyebrow::after { content: ""; width: 28px; height: 2px; background: var(--clay); display: inline-block; }

.section-title {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  margin: 16px 0 0;
  letter-spacing: -.01em;
}
.section-title em { color: var(--clay); font-style: italic; }
.lead { color: var(--muted); font-size: 1.05rem; max-width: 60ch; margin-top: 18px; }
.center .lead { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--clay); color: #fff; box-shadow: 0 12px 28px rgba(181,107,74,.32); }
.btn-primary:hover { background: var(--clay-dark); transform: translateY(-3px); box-shadow: 0 18px 36px rgba(143,79,48,.38); }
.btn-outline { border-color: var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--sand); transform: translateY(-3px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-ghost { border-color: rgba(255,255,255,.55); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
  padding: 18px 0;
}
.site-header.is-scrolled { background: rgba(252,248,241,.92); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); padding: 12px 0; }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--clay), var(--gold));
  color: #fff; font-family: var(--serif); font-weight: 700; font-size: 1.35rem;
  box-shadow: var(--shadow-sm); flex: none;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-family: var(--serif); font-weight: 600; font-size: 1.25rem; color: var(--ink); }
.brand-sub  { font-size: .64rem; letter-spacing: .26em; text-transform: uppercase; color: var(--muted); }

/* color states: over-hero (light text) vs scrolled (dark text) */
.site-header:not(.is-scrolled) .brand-name { color: #fff; }
.site-header:not(.is-scrolled) .brand-sub  { color: rgba(255,255,255,.8); }
.site-header:not(.is-scrolled) .nav-links a { color: rgba(255,255,255,.92); }
.site-header:not(.is-scrolled) .nav-toggle span { background: #fff; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative; padding: 8px 14px; font-size: .92rem; font-weight: 500; color: var(--ink-soft); border-radius: 8px;
  transition: color .25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
  background: var(--clay); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--clay); }
.site-header:not(.is-scrolled) .nav-links a.active { color: #fff; }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px;
}
.nav-toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,16,12,.55) 0%, rgba(20,16,12,.25) 35%, rgba(20,16,12,.65) 100%),
    linear-gradient(90deg, rgba(30,22,16,.55), rgba(30,22,16,.05));
}
.hero__inner { padding: 140px 0 90px; max-width: 720px; }
.hero .eyebrow { color: var(--clay-soft); }
.hero .eyebrow::before { background: var(--clay-soft); }
.hero h1 {
  color: #fff; font-size: clamp(2.6rem, 7vw, 5rem); margin: 20px 0 0; letter-spacing: -.015em;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { font-size: 1.18rem; margin-top: 22px; max-width: 52ch; color: rgba(255,255,255,.9); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 38px; }
.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-size: .72rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(255,255,255,.75);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll span { width: 1px; height: 38px; background: rgba(255,255,255,.6); animation: scrolldot 2s var(--ease) infinite; }
@keyframes scrolldot { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* page hero (interior pages) */
.page-hero { position: relative; padding: 168px 0 70px; color: #fff; overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; z-index: -2; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.page-hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,16,12,.6), rgba(20,16,12,.55)); }
.page-hero h1 { color: #fff; font-size: clamp(2.3rem, 5.4vw, 3.6rem); }
.page-hero .eyebrow { color: var(--clay-soft); }
.page-hero .eyebrow::before { background: var(--clay-soft); }
.breadcrumb { margin-top: 16px; font-size: .9rem; color: rgba(255,255,255,.8); }
.breadcrumb a:hover { color: #fff; text-decoration: underline; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat { text-align: center; padding: 8px; }
.stat__num { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3rem); color: var(--clay); font-weight: 600; }
.stat__label { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }
.bg-ink .stat__num { color: var(--gold); }
.bg-ink .stat__label { color: rgba(246,240,230,.7); }

/* ---------- Two-column feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); object-fit: cover; }
.media-frame { position: relative; }
.media-frame::before {
  content: ""; position: absolute; inset: -18px -18px 18px 18px; border: 1.5px solid var(--clay-soft);
  border-radius: var(--radius-lg); z-index: -1;
}
.media-badge {
  position: absolute; bottom: -26px; left: 50%; transform: translateX(-50%);
  background: var(--cream); border-radius: var(--radius); padding: 16px 26px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 14px; white-space: nowrap;
}
.media-badge b { font-family: var(--serif); font-size: 1.5rem; color: var(--clay); }
.media-badge small { color: var(--muted); font-size: .8rem; line-height: 1.3; display: block; }

.feature-list { display: grid; gap: 18px; margin-top: 26px; }
.feature-list li { display: flex; gap: 14px; align-items: flex-start; }
.feature-list .ic {
  flex: none; width: 38px; height: 38px; border-radius: 50%; background: var(--clay-soft);
  display: grid; place-items: center; color: var(--clay-dark);
}
.feature-list .ic svg { width: 18px; height: 18px; }
.feature-list b { display: block; font-family: var(--serif); font-size: 1.05rem; }
.feature-list span { color: var(--muted); font-size: .95rem; }

/* ---------- Cards / Services ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--cream); border-radius: var(--radius); padding: 34px 30px; border: 1px solid var(--line);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
  position: relative; overflow: hidden;
}
.card::after {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--clay), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::after { transform: scaleX(1); }
.card__icon {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--clay-soft), #f3e2d2); color: var(--clay-dark); margin-bottom: 20px;
}
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .96rem; }
.card__more { margin-top: 18px; display: inline-flex; align-items: center; gap: 7px; color: var(--clay); font-weight: 600; font-size: .9rem; }
.card__more svg { width: 16px; height: 16px; transition: transform .3s; }
.card:hover .card__more svg { transform: translateX(4px); }

/* ---------- Schedule table ---------- */
.schedule-table { width: 100%; border-collapse: separate; border-spacing: 0; background: var(--cream); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.schedule-table th, .schedule-table td { padding: 18px 22px; text-align: left; border-bottom: 1px solid var(--line); }
.schedule-table thead th { background: var(--ink); color: var(--sand); font-family: var(--sans); font-weight: 600; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; }
.schedule-table tbody tr:last-child td { border-bottom: 0; }
.schedule-table tbody tr:hover { background: rgba(181,107,74,.05); }
.schedule-table td b { font-family: var(--serif); }
.pill { display: inline-block; padding: 4px 12px; border-radius: 100px; font-size: .75rem; font-weight: 600; background: var(--clay-soft); color: var(--clay-dark); }
.pill--sage { background: #dfe5d2; color: var(--sage-dark); }

/* ---------- Pricing ---------- */
.price-card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 38px 32px; position: relative; transition: transform .35s var(--ease), box-shadow .35s; }
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.price-card.is-featured { background: var(--ink); color: var(--sand); border-color: var(--ink); transform: scale(1.03); }
.price-card.is-featured h3, .price-card.is-featured .price { color: #fff; }
.price-tag { position: absolute; top: 22px; right: 22px; background: var(--gold); color: var(--ink); font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; }
.price-card h3 { font-size: 1.35rem; }
.price { font-family: var(--serif); font-size: 2.6rem; color: var(--clay); margin: 14px 0; }
.price-card.is-featured .price { color: var(--gold); }
.price span { font-size: .9rem; font-family: var(--sans); color: var(--muted); }
.price-card.is-featured .price span { color: rgba(246,240,230,.7); }
.price-feats { display: grid; gap: 12px; margin: 22px 0 28px; }
.price-feats li { display: flex; gap: 10px; align-items: flex-start; font-size: .95rem; color: var(--ink-soft); }
.price-card.is-featured .price-feats li { color: rgba(246,240,230,.85); }
.price-feats svg { flex: none; width: 18px; height: 18px; color: var(--sage); margin-top: 3px; }
.price-card.is-featured .price-feats svg { color: var(--gold); }

/* ---------- Videos ---------- */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.video-card { background: var(--cream); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); transition: transform .35s var(--ease), box-shadow .35s; }
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.video-thumb { position: relative; aspect-ratio: 16/9; background: linear-gradient(135deg, var(--sage-dark), var(--clay-dark)); display: grid; place-items: center; }
.video-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-play { position: relative; z-index: 2; width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.92); display: grid; place-items: center; box-shadow: var(--shadow-md); transition: transform .3s; }
.video-card:hover .video-play { transform: scale(1.12); }
.video-play svg { width: 26px; height: 26px; color: var(--clay); margin-left: 3px; }
.video-card__body { padding: 20px 22px; }
.video-card__body h3 { font-size: 1.08rem; }
.video-card__body p { color: var(--muted); font-size: .88rem; margin-top: 6px; }
.video-embed { position: relative; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.yt-cta { display: flex; align-items: center; gap: 12px; padding: 14px 28px; background: #ff0000; color: #fff; border-radius: 100px; font-weight: 600; transition: transform .3s, box-shadow .3s; box-shadow: 0 12px 28px rgba(255,0,0,.28); }
.yt-cta:hover { transform: translateY(-3px); box-shadow: 0 18px 36px rgba(255,0,0,.34); }
.yt-cta svg { width: 24px; height: 24px; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 16px; }
.gallery figure { position: relative; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery figure:hover img { transform: scale(1.08); }
.gallery figure::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(20,16,12,.5)); opacity: 0; transition: opacity .4s; }
.gallery figure:hover::after { opacity: 1; }
.gallery figcaption { position: absolute; left: 18px; bottom: 14px; color: #fff; font-family: var(--serif); font-size: 1.05rem; z-index: 2; opacity: 0; transform: translateY(8px); transition: opacity .4s, transform .4s; }
.gallery figure:hover figcaption { opacity: 1; transform: translateY(0); }
.span-2 { grid-column: span 2; }
.row-2 { grid-row: span 2; }

/* ---------- Testimonials ---------- */
.quote-card { background: var(--cream); border-radius: var(--radius); padding: 34px 30px; border: 1px solid var(--line); position: relative; }
.quote-card .qmark { font-family: var(--serif); font-size: 4rem; color: var(--clay-soft); line-height: .6; }
.quote-card p { font-size: 1.02rem; color: var(--ink-soft); font-style: italic; margin: 6px 0 22px; }
.quote-author { display: flex; align-items: center; gap: 14px; }
.quote-author .avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--clay), var(--gold)); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-weight: 600; flex: none; }
.quote-author b { display: block; font-family: var(--serif); }
.quote-author small { color: var(--muted); }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 14px; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: 64px 48px; text-align: center; color: #fff; }
.cta-band__bg { position: absolute; inset: 0; z-index: -2; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(143,79,48,.92), rgba(89,101,74,.85)); }
.cta-band h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.8rem); }
.cta-band p { color: rgba(255,255,255,.9); max-width: 56ch; margin: 16px auto 30px; }
.cta-band .hero__actions { justify-content: center; margin-top: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.info-card { display: flex; gap: 16px; padding: 22px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 16px; transition: transform .3s, box-shadow .3s; }
.info-card:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.info-card .ic { flex: none; width: 50px; height: 50px; border-radius: 14px; background: var(--clay-soft); color: var(--clay-dark); display: grid; place-items: center; }
.info-card .ic svg { width: 22px; height: 22px; }
.info-card b { font-family: var(--serif); font-size: 1.05rem; }
.info-card p, .info-card a { color: var(--muted); font-size: .95rem; }
.info-card a:hover { color: var(--clay); }

.form { background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 8px; color: var(--ink-soft); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 12px; background: #fff;
  font-family: inherit; font-size: .95rem; color: var(--ink); transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--clay); box-shadow: 0 0 0 4px rgba(181,107,74,.12); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 14px; text-align: center; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(246,240,230,.78); padding: 72px 0 28px; }
.footer a { color: rgba(246,240,230,.78); transition: color .25s; }
.footer a:hover { color: var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; }
.footer .brand-name { color: #fff; }
.footer .brand-sub { color: rgba(246,240,230,.55); }
.footer-about { margin: 18px 0; font-size: .95rem; max-width: 34ch; }
.footer h4 { color: #fff; font-size: 1.05rem; margin-bottom: 18px; }
.footer-links { display: grid; gap: 11px; font-size: .94rem; }
.footer-contact li { display: flex; gap: 11px; margin-bottom: 12px; font-size: .94rem; align-items: flex-start; }
.footer-contact svg { flex: none; width: 18px; height: 18px; color: var(--gold); margin-top: 3px; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(246,240,230,.22); display: grid; place-items: center; transition: background .3s, border-color .3s, transform .3s; }
.socials a:hover { background: var(--clay); border-color: var(--clay); transform: translateY(-3px); }
.socials svg { width: 19px; height: 19px; }
.footer-bottom { margin-top: 50px; padding-top: 24px; border-top: 1px solid rgba(246,240,230,.14); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: rgba(246,240,230,.55); }

/* ---------- Floating WhatsApp ---------- */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 58px; height: 58px; border-radius: 50%; background: #25d366; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.45); transition: transform .3s; }
.wa-float:hover { transform: scale(1.1) rotate(6deg); }
.wa-float svg { width: 30px; height: 30px; color: #fff; }

/* ---------- Scroll reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-visible { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .1s; }
[data-reveal][data-delay="2"] { transition-delay: .2s; }
[data-reveal][data-delay="3"] { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* ---------- Misc ---------- */
.divider-leaf { display: flex; align-items: center; justify-content: center; gap: 14px; color: var(--clay); margin: 0 auto; }
.divider-leaf::before, .divider-leaf::after { content: ""; height: 1px; width: 60px; background: var(--line); }
.tag-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.tag { padding: 7px 16px; border-radius: 100px; background: var(--cream); border: 1px solid var(--line); font-size: .85rem; color: var(--ink-soft); }

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(320px, 84vw); background: var(--cream);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 4px;
    padding: 100px 28px 40px; box-shadow: var(--shadow-lg); transform: translateX(110%); transition: transform .4s var(--ease); z-index: 95;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-links a { color: var(--ink-soft) !important; padding: 14px 12px; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; z-index: 96; }
  .site-header:not(.is-scrolled) .nav-toggle span { background: #fff; }
  .nav-cta .btn:not(.nav-toggle) { display: none; }

  .split { grid-template-columns: 1fr; gap: 48px; }
  .split--reverse .split__media { order: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px 16px; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .price-card.is-featured { transform: none; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .section { padding: 68px 0; }
  .grid-3, .grid-4, .grid-2, .video-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .span-2 { grid-column: span 2; }
  .form-row { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 24px; }
  .form { padding: 26px 20px; }
  .hero__actions .btn { flex: 1; justify-content: center; }
  .schedule-table { font-size: .85rem; }
  .schedule-table th, .schedule-table td { padding: 13px 12px; }
}
