/* ===========================================================
   Pulse Pilates — Growth Package / Styled
   Calm · soft · elegant · wellness-focused
   =========================================================== */

:root {
  /* Palette */
  --ivory:      #F8F4ED;
  --ivory-2:    #FBF8F2;
  --beige:      #EDE4D6;
  --beige-2:    #E3D7C5;
  --clay:       #BE8A6E;
  --clay-deep:  #A6745A;
  --sage:       #A6B49E;
  --sage-deep:  #88987F;
  --brown:      #6E5C4B;
  --brown-soft: #8A7A68;
  --ink:        #3B342B;
  --line:       rgba(110, 92, 75, 0.14);

  /* Typography */
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Shape & depth */
  --radius:    22px;
  --radius-sm: 14px;
  --radius-lg: 34px;
  --shadow-sm: 0 6px 24px rgba(110, 92, 75, 0.07);
  --shadow:    0 18px 50px rgba(110, 92, 75, 0.12);
  --shadow-lg: 0 30px 70px rgba(110, 92, 75, 0.16);

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Organic floating background shapes ---------------------- */
.bg-shapes {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  animation: float 22s ease-in-out infinite;
}
.blob.b1 { width: 460px; height: 460px; top: -120px; left: -100px;
  background: radial-gradient(circle at 30% 30%, #E8D9C5, transparent 70%); }
.blob.b2 { width: 520px; height: 520px; top: 30%; right: -160px;
  background: radial-gradient(circle at 30% 30%, #CFE0C7, transparent 70%);
  animation-delay: -7s; }
.blob.b3 { width: 400px; height: 400px; bottom: -120px; left: 20%;
  background: radial-gradient(circle at 30% 30%, #E9D2C2, transparent 70%);
  animation-delay: -13s; }

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -40px) scale(1.06); }
  66%      { transform: translate(-25px, 25px) scale(0.96); }
}

/* Layout helpers ----------------------------------------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
section { padding: 96px 0; }
.section-tight { padding: 64px 0; }

.eyebrow {
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--clay-deep);
  font-weight: 600;
  margin-bottom: 18px;
  display: inline-block;
}
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; color: var(--ink); line-height: 1.12; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: 1.45rem; }
p  { color: var(--brown); }
.lead { font-size: 1.18rem; color: var(--brown-soft); max-width: 60ch; }

.section-head { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.section-head p { margin-top: 16px; }

/* Buttons ------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 0.95rem; font-weight: 500;
  padding: 15px 30px; border-radius: 100px;
  cursor: pointer; border: 1px solid transparent;
  text-decoration: none; position: relative; white-space: nowrap;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), background .4s, color .4s;
}
.btn .arrow { transition: transform .5s var(--ease); }
.btn:hover .arrow { transform: translateX(5px); }

.btn-primary { background: var(--clay); color: #fff; box-shadow: 0 12px 28px rgba(166,116,90,0.28); }
.btn-primary:hover { background: var(--clay-deep); transform: translateY(-3px); box-shadow: 0 18px 38px rgba(166,116,90,0.34); }

.btn-ghost { background: transparent; color: var(--brown); border-color: var(--line); }
.btn-ghost:hover { background: #fff; transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: transparent; }

.btn-sage { background: var(--sage-deep); color: #fff; box-shadow: 0 12px 28px rgba(136,152,127,0.28); }
.btn-sage:hover { background: #74846b; transform: translateY(-3px); }

/* Navigation --------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(248, 244, 237, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color .4s, background .4s, box-shadow .4s;
}
.nav.scrolled { border-color: var(--line); box-shadow: 0 4px 24px rgba(110,92,75,0.05); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; color: var(--ink); }
.brand .mark {
  width: 34px; height: 34px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, var(--clay), var(--clay-deep));
  position: relative; flex-shrink: 0;
  box-shadow: inset 0 0 0 4px rgba(255,255,255,0.35);
}
.brand .mark::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  animation: pulsering 3s ease-out infinite;
  border: 1.5px solid var(--clay);
}
@keyframes pulsering {
  0%   { transform: scale(1); opacity: .6; }
  100% { transform: scale(1.8); opacity: 0; }
}
.brand b { font-family: var(--serif); font-weight: 600; font-size: 1.3rem; letter-spacing: -0.01em; }
.brand span { font-size: 0.62rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--clay-deep); display: block; margin-top: -4px; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--brown); font-size: 0.93rem; font-weight: 500;
  padding: 9px 16px; border-radius: 100px; transition: background .3s, color .3s;
}
.nav-links a:hover { background: rgba(190,138,110,0.1); color: var(--ink); }
.nav-links a.active { color: var(--clay-deep); }
/* Keep the CTA button readable even when it's the active page */
.nav-links a.btn-primary.active,
.nav-cta a.btn { color: #fff; }
.nav-cta { margin-left: 12px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; width: 40px; height: 40px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px auto; border-radius: 2px; transition: .3s; }

/* Cards --------------------------------------------------- */
.card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); border: 1px solid var(--line);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }

/* Reveal on scroll --------------------------------------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
.reveal.d4 { transition-delay: .4s; }

/* ===========================  HERO  =========================== */
.hero { padding: 80px 0 90px; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 60px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero h1 em { font-style: italic; color: var(--clay-deep); }
.hero .lead { margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 34px; margin-top: 46px; }
.hero-meta .num { font-family: var(--serif); font-size: 2rem; color: var(--ink); display: block; }
.hero-meta .lbl { font-size: 0.82rem; color: var(--brown-soft); }

.hero-visual { position: relative; }
.hero-img {
  border-radius: 40% 40% 38% 42% / 46% 44% 42% 44%;
  overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, var(--beige), var(--sage) 130%);
  animation: morph 14s ease-in-out infinite;
}
@keyframes morph {
  0%, 100% { border-radius: 40% 40% 38% 42% / 46% 44% 42% 44%; }
  50%      { border-radius: 44% 38% 44% 38% / 40% 48% 40% 46%; }
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: 26px; left: -22px;
  background: #fff; padding: 16px 22px; border-radius: 18px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px;
  animation: bob 5s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-9px)} }
.hero-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--sage-deep); box-shadow: 0 0 0 5px rgba(136,152,127,0.18); }
.hero-badge small { font-size: 0.72rem; color: var(--brown-soft); display: block; }
.hero-badge b { font-size: 0.92rem; color: var(--ink); }

/* ===========================  IMAGE TREATMENTS  ============= */
.img-soft {
  width: 100%; height: 100%; object-fit: cover; display: block;
  filter: saturate(0.92) brightness(1.02);
}
.media { overflow: hidden; background: linear-gradient(150deg, var(--beige), var(--beige-2)); }

/* ===========================  CLASS PREVIEW  =============== */
.class-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.class-card { overflow: hidden; display: flex; flex-direction: column; }
.class-card .media { aspect-ratio: 16/11; position: relative; }
.class-card .media img { transition: transform 1s var(--ease); }
.class-card:hover .media img { transform: scale(1.07); }
.class-card .tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: rgba(255,255,255,0.92); color: var(--clay-deep);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em;
  padding: 6px 13px; border-radius: 100px; text-transform: uppercase;
}
.class-card .body { padding: 24px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.class-card h3 { margin-bottom: 8px; }
.class-card p { font-size: 0.96rem; margin-bottom: 16px; }
.class-card .meta { display: flex; gap: 16px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); font-size: 0.82rem; color: var(--brown-soft); }
.class-card .meta b { color: var(--ink); font-weight: 600; }
.class-card .link { color: var(--clay-deep); font-weight: 600; font-size: 0.9rem; text-decoration: none; margin-top: 14px; display: inline-flex; gap: 6px; align-items: center; }
.class-card .link .arrow { transition: transform .4s var(--ease); }
.class-card:hover .link .arrow { transform: translateX(5px); }

/* ===========================  PHILOSOPHY  ================= */
.philo { background: linear-gradient(180deg, transparent, rgba(237,228,214,0.5)); }
.philo-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.philo-img { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 5/6; box-shadow: var(--shadow); }
.pillars { display: grid; gap: 14px; margin-top: 28px; }
.pillar { display: flex; gap: 16px; align-items: flex-start; }
.pillar .ic {
  width: 46px; height: 46px; border-radius: 14px; flex-shrink: 0;
  display: grid; place-items: center; background: rgba(166,180,158,0.22); color: var(--sage-deep);
}
.pillar h4 { font-family: var(--sans); font-size: 1rem; font-weight: 600; margin-bottom: 2px; }
.pillar p { font-size: 0.92rem; }

/* ===========================  INSTRUCTORS  ================ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.team-card { overflow: hidden; text-align: center; padding-bottom: 24px; }
.team-card .media { aspect-ratio: 1; border-radius: var(--radius) var(--radius) 0 0; }
.team-card .media img { transition: transform 1s var(--ease); }
.team-card:hover .media img { transform: scale(1.06); }
.team-card h3 { margin: 20px 0 2px; }
.team-card .role { color: var(--clay-deep); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.team-card p { font-size: 0.9rem; padding: 12px 24px 0; }

/* ===========================  TESTIMONIALS  ============== */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.testi { padding: 30px 28px; background: #fff; }
.testi .stars { color: var(--clay); letter-spacing: 3px; margin-bottom: 14px; font-size: 0.9rem; }
.testi blockquote { font-family: var(--serif); font-size: 1.18rem; line-height: 1.5; color: var(--ink); font-style: italic; margin-bottom: 20px; }
.testi .who { display: flex; align-items: center; gap: 12px; }
.testi .who .av { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(140deg, var(--beige), var(--sage)); display: grid; place-items: center; font-family: var(--serif); color: #fff; font-size: 1.05rem; }
.testi .who b { font-size: 0.92rem; display: block; }
.testi .who small { color: var(--brown-soft); font-size: 0.8rem; }

/* ===========================  CTA BAND  ================== */
.cta-band { background: linear-gradient(135deg, var(--clay), var(--clay-deep)); border-radius: var(--radius-lg); padding: 70px 50px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.cta-band::before, .cta-band::after { content: ''; position: absolute; border-radius: 50%; background: rgba(255,255,255,0.08); }
.cta-band::before { width: 280px; height: 280px; top: -120px; right: -60px; }
.cta-band::after { width: 220px; height: 220px; bottom: -110px; left: -40px; }
.cta-band h2 { color: #fff; position: relative; }
.cta-band p { color: rgba(255,255,255,0.85); margin: 16px auto 30px; max-width: 50ch; position: relative; }
.cta-band .btn-primary { background: #fff; color: var(--clay-deep); position: relative; box-shadow: 0 14px 30px rgba(0,0,0,0.15); }
.cta-band .btn-primary:hover { background: var(--ivory); }

/* ===========================  PAGE HEADER  ============== */
.page-hero { padding: 70px 0 40px; text-align: center; }
.page-hero .lead { margin: 18px auto 0; }
.breadcrumb { font-size: 0.82rem; color: var(--brown-soft); margin-bottom: 18px; }
.breadcrumb a { color: var(--clay-deep); text-decoration: none; }

/* ===========================  CLASSES PAGE  ============= */
.class-row { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 0; overflow: hidden; margin-bottom: 30px; }
.class-row:nth-child(even) { grid-template-columns: 1.2fr 0.8fr; }
.class-row:nth-child(even) .cr-media { order: 2; }
.cr-media { min-height: 320px; }
.cr-body { padding: 44px; display: flex; flex-direction: column; justify-content: center; }
.cr-body .level { display: inline-flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--sage-deep); margin-bottom: 14px; }
.cr-body h2 { font-size: 2.1rem; margin-bottom: 14px; }
.cr-specs { display: flex; flex-wrap: wrap; gap: 12px; margin: 22px 0 26px; }
.spec { background: var(--ivory); border: 1px solid var(--line); border-radius: 100px; padding: 8px 16px; font-size: 0.84rem; color: var(--brown); display: flex; align-items: center; gap: 8px; }
.spec b { color: var(--ink); font-weight: 600; }

/* ===========================  SCHEDULE PAGE  =========== */
.day-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.day-tab { padding: 11px 22px; border-radius: 100px; border: 1px solid var(--line); background: #fff; cursor: pointer; font-family: var(--sans); font-size: 0.9rem; font-weight: 500; color: var(--brown); transition: .35s var(--ease); }
.day-tab:hover { border-color: var(--clay); color: var(--clay-deep); }
.day-tab.active { background: var(--clay); color: #fff; border-color: var(--clay); box-shadow: 0 10px 22px rgba(166,116,90,0.25); }

.sched-day { display: none; }
.sched-day.active { display: block; animation: fadeUp .6s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.slot-list { display: grid; gap: 14px; }
.slot {
  display: grid; grid-template-columns: 130px 1fr auto auto; gap: 24px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 20px 26px; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.slot:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); border-color: var(--clay); }
.slot .time { font-family: var(--serif); font-size: 1.2rem; color: var(--ink); }
.slot .time small { display: block; font-family: var(--sans); font-size: 0.74rem; color: var(--brown-soft); letter-spacing: 0.05em; }
.slot .cls b { font-size: 1.02rem; display: block; color: var(--ink); }
.slot .cls span { font-size: 0.86rem; color: var(--brown-soft); }
.slot .with { font-size: 0.86rem; color: var(--brown); }
.slot .with span { color: var(--brown-soft); }
.slot .pill { font-size: 0.72rem; font-weight: 600; padding: 6px 13px; border-radius: 100px; white-space: nowrap; }
.pill.beg { background: rgba(166,180,158,0.22); color: var(--sage-deep); }
.pill.all { background: rgba(190,138,110,0.16); color: var(--clay-deep); }
.pill.adv { background: rgba(110,92,75,0.14); color: var(--brown); }
.slot .res { text-decoration: none; color: var(--clay-deep); font-weight: 600; font-size: 0.88rem; white-space: nowrap; }

/* ===========================  BOOKING PAGE  ============ */
.booking-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: start; }
.form-card { padding: 40px; }
.offer-card { background: linear-gradient(160deg, var(--sage), var(--sage-deep)); color: #fff; padding: 38px; position: relative; overflow: hidden; }
.offer-card::after { content: ''; position: absolute; width: 200px; height: 200px; border-radius: 50%; background: rgba(255,255,255,0.1); bottom: -90px; right: -50px; }
.offer-card .eyebrow { color: rgba(255,255,255,0.85); }
.offer-card h3 { color: #fff; font-size: 1.9rem; position: relative; }
.offer-card .big { font-family: var(--serif); font-size: 3.2rem; display: block; margin: 8px 0; }
.offer-card ul { list-style: none; margin: 22px 0; position: relative; }
.offer-card li { padding: 9px 0; display: flex; gap: 11px; align-items: center; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.18); }
.offer-card li:last-child { border: none; }

.field { margin-bottom: 20px; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 0.96rem; color: var(--ink);
  padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--ivory-2); transition: border-color .3s, box-shadow .3s, background .3s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--clay); background: #fff;
  box-shadow: 0 0 0 4px rgba(190,138,110,0.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-note { font-size: 0.82rem; color: var(--brown-soft); margin-top: 6px; }
.form-success {
  display: none; text-align: center; padding: 30px;
  background: rgba(166,180,158,0.15); border-radius: var(--radius-sm); border: 1px solid rgba(136,152,127,0.3);
}
.form-success.show { display: block; animation: fadeUp .5s var(--ease); }
.form-success .check { width: 56px; height: 56px; border-radius: 50%; background: var(--sage-deep); color: #fff; display: grid; place-items: center; margin: 0 auto 14px; font-size: 1.6rem; }

/* ===========================  FAQ  ===================== */
.faq-list { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: box-shadow .4s; }
.faq-item.open { box-shadow: var(--shadow-sm); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 22px 26px; font-family: var(--serif); font-size: 1.12rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-q .pm { width: 26px; height: 26px; flex-shrink: 0; position: relative; transition: transform .4s var(--ease); }
.faq-q .pm::before, .faq-q .pm::after { content: ''; position: absolute; background: var(--clay); border-radius: 2px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-q .pm::before { width: 14px; height: 2px; }
.faq-q .pm::after { width: 2px; height: 14px; transition: transform .4s var(--ease); }
.faq-item.open .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.faq-a p { padding: 0 26px 24px; font-size: 0.96rem; }

/* ===========================  CONTACT PAGE  =========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.info-card { padding: 40px; }
.info-row { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.info-row:last-child { border: none; }
.info-row .ic { width: 44px; height: 44px; border-radius: 13px; flex-shrink: 0; display: grid; place-items: center; background: rgba(190,138,110,0.13); color: var(--clay-deep); }
.info-row h4 { font-family: var(--sans); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brown-soft); margin-bottom: 4px; }
.info-row p, .info-row a { font-size: 1rem; color: var(--ink); text-decoration: none; }
.info-row a:hover { color: var(--clay-deep); }
.hours-list { list-style: none; }
.hours-list li { display: flex; justify-content: space-between; padding: 7px 0; font-size: 0.94rem; color: var(--brown); border-bottom: 1px dashed var(--line); }
.hours-list li:last-child { border: none; }
.hours-list li span { color: var(--ink); font-weight: 500; }
.map { border-radius: var(--radius); overflow: hidden; min-height: 320px; background: linear-gradient(150deg, var(--beige), var(--sage-deep)); position: relative; display: grid; place-items: center; height: 100%; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map .pin { text-align: center; color: var(--brown); background: rgba(255,255,255,0.86); padding: 22px 30px; border-radius: 18px; box-shadow: var(--shadow-sm); }
.map .pin .dot { width: 16px; height: 16px; background: var(--clay); border-radius: 50%; margin: 0 auto 10px; box-shadow: 0 0 0 8px rgba(190,138,110,0.2); animation: pulsering2 2.4s ease-out infinite; }
@keyframes pulsering2 { 0%{box-shadow:0 0 0 0 rgba(190,138,110,0.4)} 100%{box-shadow:0 0 0 18px rgba(190,138,110,0)} }
.social-row { display: flex; gap: 12px; margin-top: 8px; }
.social-row a { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--ivory); border: 1px solid var(--line); color: var(--brown); transition: .4s var(--ease); text-decoration: none; }
.social-row a:hover { transform: translateY(-4px); color: var(--clay-deep); border-color: var(--clay); }
.whatsapp-btn { background: #25D366 !important; color: #fff !important; border: none !important; gap: 10px; }
.whatsapp-btn:hover { background: #1da851 !important; transform: translateY(-3px); }

/* ===========================  FOOTER  ================= */
footer { background: var(--ink); color: rgba(255,255,255,0.72); padding: 70px 0 30px; margin-top: 40px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 50px; }
footer .brand b { color: #fff; }
footer .brand span { color: var(--beige-2); }
footer p { color: rgba(255,255,255,0.6); font-size: 0.92rem; margin-top: 16px; max-width: 32ch; }
.foot-col h5 { font-family: var(--sans); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--beige-2); margin-bottom: 16px; }
.foot-col a { display: block; color: rgba(255,255,255,0.66); text-decoration: none; padding: 6px 0; font-size: 0.93rem; transition: color .3s, padding-left .3s; }
.foot-col a:hover { color: #fff; padding-left: 5px; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: 0.84rem; color: rgba(255,255,255,0.5); }

/* ===========================  RESPONSIVE  ============= */
@media (max-width: 940px) {
  .hero-grid, .philo-grid, .booking-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .philo-img { max-width: 460px; }
  .class-grid, .team-grid, .testi-grid { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .class-row, .class-row:nth-child(even) { grid-template-columns: 1fr; }
  .class-row:nth-child(even) .cr-media { order: 0; }
  .cr-media { min-height: 240px; }
}
@media (max-width: 720px) {
  section { padding: 70px 0; }
  .nav-links { position: fixed; inset: 76px 0 auto 0; flex-direction: column; background: var(--ivory-2); padding: 18px 28px 28px; gap: 4px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); transform: translateY(-130%); transition: transform .45s var(--ease); align-items: stretch; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 13px 16px; }
  .nav-cta { margin: 8px 0 0; }
  .nav-toggle { display: block; }
  .class-grid, .team-grid, .testi-grid, .field-row { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero-meta { gap: 24px; }
  .slot { grid-template-columns: 1fr; gap: 8px; text-align: left; }
  .slot .pill { justify-self: start; }
  .cta-band { padding: 50px 26px; }
  .form-card, .info-card, .offer-card { padding: 28px; }
}
@media (max-width: 460px) {
  .foot-grid { grid-template-columns: 1fr; }
  .hero-badge { left: 8px; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
