/* ============================================================
   Connect in Spanish — Julia Gómez
   Brand palette: terracotta #D95132 / navy #023C4D / mustard #FAAE32
   Headings: Playfair Display (serif, echoes the logo)
   Body: Nunito Sans (friendly, approachable)
   ============================================================ */

:root {
  /* Brand */
  --terracotta: #d95132;
  --terracotta-dark: #b53f24;
  --navy: #023c4d;
  --navy-soft: #0a4f63;
  --mustard: #faae32;
  --mustard-dark: #e89a18;
  --teal: #1f7a7a; /* 4th pillar accent, harmonised with the palette */

  /* Neutrals */
  --cream: #fbf5ec;
  --cream-deep: #f5ebdc;
  --white: #ffffff;
  --ink: #06303d; /* near-navy body text */
  --muted: #5b6f76;
  --line: rgba(2, 60, 77, 0.12);

  /* System */
  --maxw: 1180px;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow-sm: 0 6px 20px rgba(2, 60, 77, 0.08);
  --shadow: 0 18px 50px rgba(2, 60, 77, 0.14);
  --shadow-lg: 0 30px 80px rgba(2, 60, 77, 0.20);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: "Nunito Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 700; line-height: 1.12; color: var(--navy); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.4rem, 5.2vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p { color: var(--ink); }
.lead { font-size: clamp(1.1rem, 1.7vw, 1.3rem); color: var(--muted); }

/* ---------- Layout ---------- */
.wrap { width: min(100% - 2.5rem, var(--maxw)); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--terracotta);
  margin-bottom: 0.9rem;
}
.eyebrow--light { color: var(--mustard); }
.section-head { max-width: 720px; margin-inline: auto; margin-bottom: clamp(2.2rem, 4vw, 3.4rem); }
.section-head p { margin-top: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-weight: 800; font-size: 1rem;
  padding: 0.95rem 1.7rem; border-radius: 100px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.15em; height: 1.15em; }
.btn--primary { background: var(--terracotta); color: #fff; box-shadow: 0 10px 24px rgba(217, 81, 50, 0.32); }
.btn--primary:hover { background: var(--terracotta-dark); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(217, 81, 50, 0.4); }
.btn--mustard { background: var(--mustard); color: var(--navy); box-shadow: 0 10px 24px rgba(250, 174, 50, 0.4); }
.btn--mustard:hover { background: var(--mustard-dark); transform: translateY(-2px); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-soft); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }
.btn--whatsapp { background: #25d366; color: #fff; box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35); }
.btn--whatsapp:hover { background: #1fb959; transform: translateY(-2px); }
.btn--lg { padding: 1.1rem 2.1rem; font-size: 1.08rem; }
.btn--block { width: 100%; justify-content: center; white-space: normal; text-align: center; }

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 245, 236, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); border-color: var(--line); background: rgba(251, 245, 236, 0.95); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 0.7rem 0; }
.nav__logo img { height: 48px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 1.35rem; }
.nav__links a { font-weight: 700; font-size: 0.9rem; color: var(--navy); position: relative; padding: 0.2rem 0; white-space: nowrap; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--terracotta); transition: width 0.3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 0.6rem; }
.nav__cta .btn { padding: 0.6rem 1.15rem; font-size: 0.88rem; }
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; }
.nav__toggle span, .nav__toggle span::before, .nav__toggle span::after {
  content: ""; display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav__toggle span { position: relative; }
.nav__toggle span::before { position: absolute; top: -7px; }
.nav__toggle span::after { position: absolute; top: 7px; }
body.menu-open .nav__toggle span { background: transparent; }
body.menu-open .nav__toggle span::before { transform: translateY(7px) rotate(45deg); }
body.menu-open .nav__toggle span::after { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(2rem, 4vw, 4rem); align-items: center; }
.hero__pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff; border: 1px solid var(--line); border-radius: 100px;
  padding: 0.45rem 1rem; font-weight: 700; font-size: 0.85rem; color: var(--navy);
  box-shadow: var(--shadow-sm); margin-bottom: 1.5rem;
}
.hero__pill .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--terracotta); }
.hero h1 { margin-bottom: 1.2rem; }
.hero h1 em { font-style: italic; color: var(--terracotta); }
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--muted); max-width: 36ch; margin-bottom: 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-bottom: 2rem; }
.hero__trust { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; color: var(--muted); font-size: 0.92rem; font-weight: 600; }
.stars { color: var(--mustard); letter-spacing: 2px; font-size: 1.05rem; }

.hero__media { position: relative; }
.hero__photo {
  position: relative; border-radius: 30px; overflow: hidden;
  background:
    radial-gradient(120% 120% at 70% 10%, #fde3c4 0%, transparent 55%),
    linear-gradient(160deg, var(--mustard) 0%, var(--terracotta) 100%);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.4;
}
.hero__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; mix-blend-mode: multiply; }
/* keep her colours true: overlay a white knockout behind via blend trick not ideal — use plain image instead */
.hero__photo--plain img { mix-blend-mode: normal; background: #fff; }
.hero__badge {
  position: absolute; background: #fff; border-radius: 18px; box-shadow: var(--shadow);
  padding: 0.85rem 1.1rem; display: flex; align-items: center; gap: 0.7rem; font-weight: 800; color: var(--navy);
}
.hero__badge small { display: block; font-weight: 600; color: var(--muted); font-size: 0.78rem; }
.hero__badge .ic { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; color: #fff; flex: none; }
.hero__badge--tl { top: 8%; left: -22px; }
.hero__badge--br { bottom: 9%; right: -18px; }
.float { animation: float 6s ease-in-out infinite; }
.float--slow { animation-duration: 8s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* Transform band — "Go from… to…" */
.transform-band { background: var(--navy); color: #fff; padding: clamp(2rem, 4vw, 2.8rem) 0; }
.transform-band__text {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  max-width: 52ch;
  margin-inline: auto;
}
.transform-band__text strong { color: var(--mustard); font-weight: 700; }

/* Logo strip / mini trust bar */
.marquee { background: var(--navy); color: #fff; }
.marquee .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1rem 2.4rem; padding: 1.1rem 0; }
.marquee span { font-weight: 700; font-size: 0.95rem; opacity: 0.92; display: inline-flex; align-items: center; gap: 0.5rem; }
.marquee span .em { color: var(--mustard); }

/* ============================================================
   Intro / "Do you love Spain"
   ============================================================ */
.intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.intro__media { position: relative; }
.intro__media img { border-radius: var(--radius); box-shadow: var(--shadow); background: #fff; }
.intro h2 em { font-style: italic; color: var(--terracotta); }
.no-list { display: grid; gap: 0.6rem; margin: 1.4rem 0; }
.no-list li { font-weight: 800; color: var(--navy); font-size: 1.1rem; }
.no-list li span { color: var(--terracotta); }

.check-list { display: grid; gap: 0.9rem; margin: 1.6rem 0; }
.check-list li { display: flex; gap: 0.8rem; align-items: flex-start; color: var(--ink); }
.check-list .tick {
  flex: none; width: 26px; height: 26px; border-radius: 50%; background: var(--mustard);
  color: var(--navy); display: grid; place-items: center; font-weight: 900; font-size: 0.85rem; margin-top: 2px;
}

/* ============================================================
   Pillars (4 colours)
   ============================================================ */
.pillars { background: var(--navy); color: #fff; }
.pillars h2, .pillars .eyebrow { color: #fff; }
.pillars .eyebrow { color: var(--mustard); }
.pillars .section-head p { color: rgba(255,255,255,0.8); }
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.pillar {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 2rem 1.6rem; position: relative; overflow: hidden;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.pillar:hover { transform: translateY(-6px); background: rgba(255,255,255,0.07); }
.pillar::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--c); }
.pillar__ic { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; color: #fff; background: var(--c); margin-bottom: 1.2rem; }
.pillar__ic svg { width: 28px; height: 28px; }
.pillar h3 { color: #fff; margin-bottom: 0.2rem; }
.pillar .es { color: var(--c); font-weight: 800; font-style: italic; font-family: var(--font-serif); font-size: 1.05rem; }
.pillar p { color: rgba(255,255,255,0.78); font-size: 0.97rem; margin-top: 0.6rem; }
.pillar--1 { --c: var(--terracotta); }
.pillar--2 { --c: var(--mustard); }
.pillar--3 { --c: var(--teal); }
.pillar--4 { --c: #e0719a; }

/* ============================================================
   Programme + what's included
   ============================================================ */
.programme__top { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; margin-bottom: clamp(2.5rem,5vw,4rem); }
.programme__media img { border-radius: var(--radius); box-shadow: var(--shadow); background:#fff; }
.tag { display:inline-block; background: var(--cream-deep); color: var(--navy); font-weight: 800; border-radius: 100px; padding: 0.4rem 1rem; font-size: 0.85rem; }

.includes {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 3rem); box-shadow: var(--shadow-sm);
}
.includes h3 { text-align: center; margin-bottom: 0.4rem; }
.includes > p { text-align: center; color: var(--muted); margin-bottom: 2rem; }
.includes-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.inc {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.3rem; border-radius: var(--radius-sm); background: var(--cream);
  transition: transform 0.3s var(--ease);
}
.inc:hover { transform: translateY(-4px); }
.inc .ic { flex: none; width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; color:#fff; }
.inc .ic svg { width: 22px; height: 22px; }
.inc h4 { font-family: var(--font-sans); font-weight: 800; font-size: 1.02rem; color: var(--navy); margin-bottom: 0.15rem; }
.inc p { font-size: 0.92rem; color: var(--muted); }

/* ============================================================
   How it works (steps)
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; counter-reset: step; }
.step { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 2rem 1.5rem; position: relative; }
.step__num {
  width: 46px; height: 46px; border-radius: 50%; background: var(--terracotta); color:#fff;
  display: grid; place-items:center; font-family: var(--font-serif); font-weight: 700; font-size: 1.25rem; margin-bottom: 1rem;
}
.step:nth-child(2) .step__num { background: var(--mustard); color: var(--navy); }
.step:nth-child(3) .step__num { background: var(--teal); }
.step:nth-child(4) .step__num { background: var(--navy); }
.step h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.95rem; color: var(--muted); }

/* ============================================================
   Pricing & payment
   ============================================================ */
.pricing { background: var(--cream-deep); }
.price-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 1.8rem; align-items: stretch; }
.price-card {
  background:#fff; border-radius: var(--radius); padding: clamp(1.8rem,3.5vw,2.6rem);
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.price-card--feature { background: var(--navy); color:#fff; }
.price-card--feature h3, .price-card--feature .price { color:#fff; }
.price-card__ribbon { position:absolute; top: 1.4rem; right: -2.6rem; transform: rotate(45deg); background: var(--mustard); color: var(--navy); font-weight: 800; font-size: 0.75rem; padding: 0.35rem 3rem; letter-spacing: 0.05em; }
.price { font-family: var(--font-serif); font-weight: 800; font-size: clamp(2.4rem,5vw,3.2rem); color: var(--navy); line-height: 1; margin: 0.6rem 0; }
.price small { font-size: 1rem; font-family: var(--font-sans); color: var(--mustard); font-weight: 700; }
.price-card--feature .check-list li { color: rgba(255,255,255,0.9); }
.price-note { font-size: 0.9rem; color: rgba(255,255,255,0.7); margin-top: 1rem; }
.pay-card { background:#fff; border-radius: var(--radius); padding: clamp(1.8rem,3.5vw,2.4rem); box-shadow: var(--shadow-sm); display:flex; flex-direction:column; }
.pay-card h3 { margin-bottom: 1rem; }
.pay-methods { display:flex; flex-wrap: wrap; gap: 0.6rem; margin: 0.4rem 0 1.2rem; }
.pay-methods span { background: var(--cream); border:1px solid var(--line); border-radius: 10px; padding: 0.5rem 0.9rem; font-weight: 700; font-size: 0.85rem; color: var(--navy); }
.installment { background: var(--cream); border-left: 4px solid var(--mustard); border-radius: 12px; padding: 1rem 1.2rem; font-size: 0.95rem; }

/* ============================================================
   About (brief landing-page version)
   ============================================================ */
.about-brief__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.about-brief__media img { border-radius: var(--radius); box-shadow: var(--shadow); background: #fff; height: auto; }

/* ============================================================
   About (full)
   ============================================================ */
.about__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius); box-shadow: var(--shadow); background:#fff; }
.about__media .stat {
  position:absolute; bottom: -22px; left: 50%; transform: translateX(-50%);
  background:#fff; box-shadow: var(--shadow); border-radius: 16px; padding: 0.9rem 1.4rem; display:flex; gap:1.4rem;
}
.about__media .stat b { font-family: var(--font-serif); font-size: 1.6rem; color: var(--terracotta); display:block; line-height:1; }
.about__media .stat small { color: var(--muted); font-weight:700; font-size:0.78rem; }
.about p + p { margin-top: 1rem; }
.signature { font-family: var(--font-serif); font-style: italic; font-size: 1.6rem; color: var(--navy); margin-top: 1.2rem; }
.about .forces { display:grid; gap:0.7rem; margin: 1.4rem 0; }
.about .forces li { display:flex; gap:0.7rem; align-items:center; font-weight:700; color: var(--navy); }
.about .forces .dot { width:10px;height:10px;border-radius:50%; background: var(--terracotta); flex:none; }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials { background: var(--terracotta); color:#fff; }
.testimonials .eyebrow, .testimonials h2 { color:#fff; }
.testimonials .section-head p { color: rgba(255,255,255,0.85); }
.t-grid { display:grid; grid-template-columns: repeat(3,1fr); gap: 1.3rem; }
.t-card { background:#fff; border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow); display:flex; flex-direction:column; }
.t-card .stars { margin-bottom: 0.8rem; }
.t-card blockquote { font-size: 1rem; color: var(--ink); flex:1; }
.t-card .who { display:flex; align-items:center; gap:0.8rem; margin-top: 1.3rem; }
.t-card .avatar { width:46px;height:46px;border-radius:50%; display:grid;place-items:center; font-weight:800; color:#fff; font-family:var(--font-serif); }
.t-card .who b { color: var(--navy); display:block; }
.t-card .who small { color: var(--muted); }
.google-badge { display:inline-flex; align-items:center; gap:0.6rem; background:#fff; color: var(--navy); border-radius:100px; padding:0.6rem 1.2rem; font-weight:800; box-shadow: var(--shadow-sm); }
.google-badge .stars { font-size: 1rem; }

/* ============================================================
   Lead magnet — Survival Kit
   ============================================================ */
.kit__card {
  background: linear-gradient(155deg, var(--mustard) 0%, #f7c45e 100%);
  border-radius: 30px; overflow: hidden; box-shadow: var(--shadow-lg);
  display:grid; grid-template-columns: 1.05fr 0.95fr; align-items:center;
}
.kit__body { padding: clamp(2rem, 4vw, 3.4rem); }
.kit__body .eyebrow { color: var(--terracotta); }
.kit__body h2 { color: var(--navy); }
.kit__body p { color: #5a4316; font-weight: 600; margin-top: 0.6rem; }
.kit__form { margin-top: 1.6rem; display:grid; gap: 0.8rem; max-width: 420px; }
.kit__form .row { display:flex; gap:0.6rem; flex-wrap:wrap; }
.field { flex:1; min-width: 160px; }
.field input {
  width:100%; padding: 0.95rem 1.1rem; border-radius: 100px; border: 2px solid transparent;
  background:#fff; font-family: inherit; font-size: 1rem; color: var(--ink);
}
.field input:focus { outline: none; border-color: var(--navy); }
.kit__form .consent { font-size: 0.8rem; color: #5a4316; font-weight:600; }
.kit__media { align-self: stretch; position: relative; min-height: 320px; background: rgba(255,255,255,0.25); }
.kit__media img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; object-position: top center; background:#fff; }
.form-success { background:#fff; border-radius: var(--radius-sm); padding: 1.2rem 1.4rem; color: var(--navy); font-weight: 700; display:none; }
.form-success.show { display:block; }

/* ============================================================
   Contact / Booking
   ============================================================ */
.contact-slim { max-width: 800px; margin-inline: auto; text-align: center; }
.contact-slim .calendly-embed { margin-top: 0; }
.calendly-fallback { text-align: center; margin-top: 1rem; }
.calendly-fallback__link { margin-top: 0; font-size: 0.95rem; }
.calendly-fallback__link a { color: var(--navy); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.calendly-fallback__link a:hover { color: var(--terracotta); }
.contact-slim__direct { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-top: 1.4rem; }
.contact__grid { display:grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,4vw,3rem); align-items: start; }
.contact-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: clamp(1.8rem,3.5vw,2.6rem); box-shadow: var(--shadow-sm); }
.contact-card h3 { margin-bottom: 0.6rem; display:flex; align-items:center; gap:0.6rem; }
.contact-card .ic-round { width:42px;height:42px;border-radius:12px; display:grid;place-items:center;color:#fff; flex:none; }
.calendly-embed {
  margin-top: 1.2rem;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.calendly-inline-widget { width: 100%; min-height: 700px; }
.contact-list { display:grid; gap: 1rem; margin-top: 1.2rem; }
.contact-list a { display:flex; align-items:center; gap:0.9rem; padding: 0.9rem 1.1rem; border-radius: 14px; background: var(--cream); font-weight:700; color: var(--navy); transition: background .25s var(--ease), transform .25s var(--ease); }
.contact-list a:hover { background: var(--cream-deep); transform: translateX(4px); }
.contact-list .ic { width:40px;height:40px;border-radius:11px; display:grid;place-items:center;color:#fff; flex:none; }
.contact-list small { display:block; font-weight:600; color: var(--muted); }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--navy); color: rgba(255,255,255,0.78); padding: clamp(3rem,5vw,4.5rem) 0 2rem; }
.footer__grid { display:grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer__grid--simple { grid-template-columns: 1.4fr 1fr; }
.footer__logo { background:#fff; border-radius: 16px; padding: 0.8rem 1rem; display:inline-block; }
.footer__logo img { height: 46px; }
.footer h4 { color:#fff; font-family: var(--font-sans); font-size: 0.95rem; letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1rem; }
.footer p { color: rgba(255,255,255,0.78); }
.footer a { color: rgba(255,255,255,0.78); }
.footer a:hover { color: var(--mustard); }
.footer ul { display:grid; gap: 0.6rem; }
.footer .social { display:flex; gap:0.7rem; margin-top: 1rem; }
.footer .social a { width:40px;height:40px;border-radius:11px; background: rgba(255,255,255,0.1); display:grid; place-items:center; color:#fff; transition: background .25s var(--ease); }
.footer .social a:hover { background: var(--terracotta); }
.footer__bottom { border-top:1px solid rgba(255,255,255,0.14); margin-top: 2.5rem; padding-top: 1.5rem; display:flex; justify-content:space-between; flex-wrap:wrap; gap:0.6rem; font-size: 0.85rem; }

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

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* Image reveal — photo scales + fades up as it scrolls into view */
.reveal-img img {
  opacity: 0;
  transform: scale(1.06) translateY(20px);
  transition: opacity 0.9s var(--ease), transform 1.1s var(--ease);
  will-change: opacity, transform;
}
.reveal-img.in img { opacity: 1; transform: none; }

/* Safety: keep natural aspect ratio on standalone photos (never stretch) */
.intro__media img, .programme__media img, .about__media img { height: auto; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .pillar-grid { grid-template-columns: repeat(2, 1fr); }
  .includes-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .t-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav__cta .btn--ghost { display: none; }
  .nav__toggle { display: flex; }
  .nav__cta .btn--primary { padding: 0.65rem 1.1rem; font-size: 0.92rem; }
  .nav__logo img { height: 44px; }
  .nav__links {
    position: fixed; inset: 72px 0 auto 0; display: flex; flex-direction: column; align-items: stretch;
    background: var(--cream); padding: 1.5rem; gap: 0; box-shadow: var(--shadow);
    transform: translateY(-130%); transition: transform 0.4s var(--ease); z-index: 99;
    visibility: hidden;
  }
  body.menu-open .nav__links { visibility: visible; }
  body.menu-open .nav__links { transform: none; }
  .nav__links a { padding: 1rem 0.5rem; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
  .hero__grid, .intro__grid, .programme__top, .price-grid, .about__grid, .about-brief__grid, .contact__grid, .kit__card { grid-template-columns: 1fr; }
  .about-brief__media { max-width: 420px; margin-inline: auto; }
  .hero__media { width: min(100%, 380px); margin-inline: auto; }
  .hero__copy { text-align: center; }
  .hero__pill, .hero__trust { margin-inline: auto; }
  .hero__trust { justify-content: center; }
  .hero__sub { max-width: none; }
  .hero__actions { justify-content: center; }
  .about__media { max-width: 420px; margin-inline: auto; }
  .kit__media { min-height: 280px; }
}
@media (max-width: 560px) {
  .pillar-grid, .includes-grid, .steps, .footer__grid { grid-template-columns: 1fr; }
  .hero__actions .btn { flex: 1 1 100%; justify-content: center; }
  .about__media .stat { position: static; transform: none; margin: 1.2rem auto 0; justify-content: center; }
  .footer__bottom { flex-direction: column; }
  .wa-float { right: 16px; bottom: 16px; }

  /* Keep the floating badges ON the image (corners, scaled down) — never off-page */
  .hero__badge { padding: 0.5rem 0.7rem; font-size: 0.78rem; gap: 0.45rem; border-radius: 14px; }
  .hero__badge .ic { width: 30px; height: 30px; border-radius: 9px; }
  .hero__badge .ic svg { width: 16px; height: 16px; }
  .hero__badge small { font-size: 0.66rem; }
  .hero__badge--tl { top: 12px; left: 12px; }
  .hero__badge--br { bottom: 12px; right: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
