/* ==========================================================================
   Caribe Surf School — San Bernardo del Viento
   ========================================================================== */

:root {
  --blue: #143da8;
  --blue-deep: #0c2b7c;
  --navy: #081c4a;
  --sky: #e8f2ff;
  --sand: #f7f1e6;
  --sand-2: #efe5d2;
  --char: #484e50;
  --ink: #17202a;
  --muted: #5d6770;
  --teal: #4fc3ba;
  --teal-deep: #2c9d95;
  --coral: #ff6a3d;
  --coral-deep: #e5522a;
  --wa: #25d366;
  --wa-deep: #1ebe5b;
  --white: #ffffff;

  --font-display: "Bebas Neue", "Oswald", "Arial Narrow", Impact, sans-serif;
  --font-body: "Manrope", "Segoe UI", system-ui, -apple-system, sans-serif;

  --container: 1180px;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(8, 28, 74, 0.10);
  --shadow-lg: 0 24px 60px rgba(8, 28, 74, 0.18);
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--sand);
  overflow-x: hidden;
}
img, picture, video { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; line-height: 1.05; }
p { margin: 0 0 1em; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding-block: clamp(4rem, 9vw, 7.5rem); position: relative; }
.section--tight { padding-block: clamp(3rem, 6vw, 5rem); }
.section--sky { background: var(--sky); }
.section--white { background: var(--white); }
.section--navy { background: var(--navy); color: var(--white); }

/* Typography ------------------------------------------------------------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.h1 { font-size: clamp(3rem, 9vw, 6.75rem); line-height: 0.95; }
.h2 { font-size: clamp(2.4rem, 5.2vw, 4.25rem); line-height: 0.98; }
.h3 { font-size: clamp(1.5rem, 2.4vw, 2rem); line-height: 1.05; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .8rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; background: var(--coral); border-radius: 2px; }
.section--navy .eyebrow { color: var(--teal); }
.lead { font-size: clamp(1.1rem, 1.6vw, 1.3rem); color: var(--muted); max-width: 62ch; }
.section--navy .lead { color: rgba(255,255,255,.78); }
.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.accent { color: var(--coral); }
.accent-teal { color: var(--teal); }

/* Buttons ---------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  padding: .95rem 1.6rem;
  border-radius: 999px;
  font-weight: 800; font-size: 1rem; letter-spacing: .01em;
  border: 2px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 1.25em; height: 1.25em; flex: none; }
.btn--wa { background: var(--wa); color: #06341a; box-shadow: 0 10px 24px rgba(37,211,102,.35); }
.btn--wa:hover { background: var(--wa-deep); box-shadow: 0 14px 30px rgba(37,211,102,.45); }
.btn--coral { background: var(--coral); color: var(--white); box-shadow: 0 10px 24px rgba(255,106,61,.35); }
.btn--coral:hover { background: var(--coral-deep); }
.btn--blue { background: var(--blue); color: var(--white); box-shadow: 0 10px 24px rgba(20,61,168,.3); }
.btn--blue:hover { background: var(--blue-deep); }
.btn--ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,.55); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn--outline { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn--outline:hover { background: var(--blue); color: var(--white); }
.btn--sm { padding: .65rem 1.1rem; font-size: .9rem; }
.btn--lg { padding: 1.15rem 2.1rem; font-size: 1.1rem; }

/* Header ----------------------------------------------------------------- */
.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-block: 1rem;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.header__logo { display: block; width: clamp(64px, 7vw, 84px); position: relative; }
.header__logo img { width: 100%; height: auto; transition: opacity .3s; }
.header__logo .logo--color { position: absolute; inset: 0; opacity: 0; }
.nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }
.nav a { color: var(--white); font-weight: 700; font-size: .95rem; position: relative; padding: .35rem 0; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--coral); transition: width .3s var(--ease); }
.nav a:hover::after { width: 100%; }
.header__cta { margin-left: .5rem; }
.header.is-scrolled { background: rgba(255,255,255,.92); backdrop-filter: blur(12px); box-shadow: 0 6px 24px rgba(8,28,74,.08); padding-block: .5rem; }
.header.is-scrolled .nav a { color: var(--ink); }
.header.is-scrolled .header__logo .logo--white { opacity: 0; }
.header.is-scrolled .header__logo .logo--color { opacity: 1; }
.header.is-scrolled .header__logo { width: clamp(52px, 5vw, 64px); }
.header.is-open { background: var(--navy); }

.burger { display: none; width: 46px; height: 46px; border-radius: 12px; border: 0; background: rgba(255,255,255,.14); position: relative; }
.burger span { position: absolute; left: 12px; right: 12px; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s, top .3s; }
.burger span:nth-child(1) { top: 15px; } .burger span:nth-child(2) { top: 22px; } .burger span:nth-child(3) { top: 29px; }
.header.is-scrolled .burger { background: var(--sky); }
.header.is-scrolled .burger span { background: var(--blue); }
.header.is-open .burger span { background: var(--white); }
.header.is-open .burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.header.is-open .burger span:nth-child(2) { opacity: 0; }
.header.is-open .burger span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: block; }
  .nav {
    position: fixed; inset: 0; top: 0; padding: 6.5rem 2rem 2rem;
    background: var(--navy);
    flex-direction: column; align-items: flex-start; gap: 1.4rem;
    transform: translateX(100%); transition: transform .4s var(--ease);
    z-index: -1;
  }
  .nav a { font-size: 1.6rem; font-family: var(--font-display); letter-spacing: .03em; text-transform: uppercase; }
  .header.is-open .nav { transform: translateX(0); }
  .header.is-scrolled .nav a { color: var(--white); }
  .header__cta { display: none; }
  .header.is-open .header__logo .logo--white { opacity: 1; }
  .header.is-open .header__logo .logo--color { opacity: 0; }
}

/* Hero ------------------------------------------------------------------- */
.hero {
  position: relative; min-height: 100svh; display: grid; align-items: end;
  color: var(--white); overflow: hidden; isolation: isolate;
  padding-top: 8rem;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg picture { height: 100%; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 55% 45%; transform: scale(1.06); animation: heroZoom 14s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__shade {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(8,28,74,.55) 0%, rgba(8,28,74,.05) 30%, rgba(8,28,74,.35) 65%, rgba(8,28,74,.85) 100%),
    linear-gradient(90deg, rgba(8,28,74,.55) 0%, rgba(8,28,74,0) 60%);
}
.hero__content { position: relative; padding-bottom: clamp(5.5rem, 10vw, 8rem); max-width: 900px; }
.hero__eyebrow { color: rgba(255,255,255,.85); }
.hero__eyebrow::before { background: var(--teal); }
.hero .h1 { text-shadow: 0 6px 30px rgba(0,0,0,.35); }
.hero .h1 span { color: var(--teal); }
.hero__lead { font-size: clamp(1.1rem, 1.8vw, 1.35rem); color: rgba(255,255,255,.9); max-width: 58ch; margin: 1.4rem 0 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero__badges { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin-top: 2.2rem; font-size: .9rem; font-weight: 700; color: rgba(255,255,255,.85); }
.hero__badges li { display: inline-flex; align-items: center; gap: .5rem; }
.hero__badges svg { width: 18px; height: 18px; color: var(--teal); }

/* Ticker */
.ticker {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: var(--coral); color: var(--white);
  font-family: var(--font-display); font-size: clamp(1.1rem, 1.8vw, 1.5rem); letter-spacing: .08em; text-transform: uppercase;
  padding: .55rem 0; overflow: hidden; white-space: nowrap;
  transform: rotate(-1.2deg) scale(1.03); transform-origin: center;
}
.ticker__track { display: inline-flex; gap: 2.5rem; animation: ticker 40s linear infinite; will-change: transform; padding-left: 2.5rem; }
.ticker__track span::after { content: "✦"; margin-left: 2.5rem; opacity: .7; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* Feature strip ---------------------------------------------------------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.feature {
  background: var(--white); border-radius: var(--radius); padding: 1.6rem 1.5rem;
  box-shadow: var(--shadow); display: flex; gap: 1rem; align-items: flex-start;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature__icon { flex: none; width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; background: var(--sky); color: var(--blue); }
.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: .3rem; }
.feature p { font-size: .95rem; color: var(--muted); margin: 0; }
@media (max-width: 1000px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

/* Classes ---------------------------------------------------------------- */
.classes { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.class-card {
  position: relative; border-radius: var(--radius); overflow: hidden; background: var(--navy); color: var(--white);
  aspect-ratio: 3 / 4.6; display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: var(--shadow); isolation: isolate;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.class-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.class-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 25%; z-index: -2; transition: transform .8s var(--ease); }
.class-card:hover img { transform: scale(1.06); }
.class-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(8,28,74,.15) 0%, rgba(8,28,74,.1) 25%, rgba(8,28,74,.7) 55%, rgba(8,28,74,.97) 100%); }
.class-card__tag { position: absolute; top: 1rem; left: 1rem; background: rgba(8,28,74,.45); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.3); border-radius: 999px; padding: .3rem .8rem; font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.class-card__tag--hot { background: var(--coral); border-color: var(--coral); }
.class-card__body { padding: 1.4rem; }
.class-card h3 { font-family: var(--font-display); font-size: 1.9rem; letter-spacing: .02em; text-transform: uppercase; margin-bottom: .35rem; }
.class-card p { font-size: .93rem; color: rgba(255,255,255,.82); margin-bottom: .9rem; }
.class-card ul { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.class-card li { font-size: .75rem; font-weight: 700; padding: .25rem .6rem; border-radius: 999px; background: rgba(255,255,255,.12); }
.class-card .btn { width: 100%; }
@media (max-width: 1000px) { .classes { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .classes { grid-template-columns: 1fr; } .class-card { aspect-ratio: 4 / 5; } }
.classes-note { text-align: center; margin-top: 2rem; color: var(--muted); font-size: .95rem; }

/* How it works ----------------------------------------------------------- */
.how { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.steps { counter-reset: step; display: grid; gap: 1.2rem; }
.step { display: grid; grid-template-columns: 64px 1fr; gap: 1.2rem; align-items: start; }
.step__num { counter-increment: step; width: 64px; height: 64px; border-radius: 20px; background: var(--white); color: var(--blue); display: grid; place-items: center; font-family: var(--font-display); font-size: 2rem; box-shadow: var(--shadow); }
.step__num::before { content: "0" counter(step); }
.step h3 { font-size: 1.15rem; font-weight: 800; margin-bottom: .3rem; }
.step p { color: var(--muted); font-size: .98rem; margin: 0; }
.how__media { position: relative; }
.how__media picture { display: block; }
.how__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.how__card {
  position: absolute; left: -1.5rem; bottom: 2rem; background: var(--white); border-radius: var(--radius-sm); padding: 1rem 1.2rem;
  box-shadow: var(--shadow-lg); max-width: 300px;
}
.how__card strong { display: block; font-family: var(--font-display); font-size: 1.4rem; color: var(--blue); letter-spacing: .02em; }
.how__card span { font-size: .9rem; color: var(--muted); }
.includes { display: grid; grid-template-columns: repeat(2, 1fr); gap: .6rem 1.2rem; margin-top: 2rem; }
.includes li { display: flex; align-items: center; gap: .6rem; font-weight: 700; font-size: .95rem; }
.includes svg { width: 20px; height: 20px; color: var(--teal-deep); flex: none; }
@media (max-width: 900px) { .how { grid-template-columns: 1fr; } .how__media { order: -1; } .how__card { left: 1rem; } }

/* CTA band --------------------------------------------------------------- */
.band { position: relative; color: var(--white); overflow: hidden; isolation: isolate; padding-block: clamp(5rem, 12vw, 9rem); }
.band__bg { position: absolute; inset: 0; z-index: -2; }
.band__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 30% 50%; }
.band__shade { position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(8,28,74,.05) 0%, rgba(8,28,74,.35) 45%, rgba(8,28,74,.85) 100%); }
.band__content { display: flex; flex-direction: column; align-items: flex-end; text-align: right; }
.band__content .eyebrow { color: var(--teal); flex-direction: row-reverse; }
.band__content .eyebrow::before { background: var(--coral); }
.band__content .h2 { max-width: 12ch; text-shadow: 0 6px 30px rgba(0,0,0,.35); }
.band__content .lead { color: rgba(255,255,255,.85); max-width: 46ch; margin: 1.2rem 0 1.8rem; }
@media (max-width: 700px) {
  .band__shade { background: linear-gradient(180deg, rgba(8,28,74,.5) 0%, rgba(8,28,74,.92) 100%); }
  .band__bg img { object-position: 60% 50%; }
  .band__content { align-items: flex-start; text-align: left; }
  .band__content .eyebrow { flex-direction: row; }
}

/* About ------------------------------------------------------------------ */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.about__collage { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); grid-template-rows: repeat(6, 1fr); aspect-ratio: 1; }
.about__collage img { position: absolute; width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about__collage .c1 { grid-area: 1 / 1 / 5 / 5; position: relative; }
.about__collage .c2 { grid-area: 3 / 3 / 7 / 7; position: relative; border: 6px solid var(--white); }
.about__badge {
  position: absolute; z-index: 2; left: -.5rem; bottom: 12%; background: var(--coral); color: var(--white); border-radius: 50%;
  width: 128px; height: 128px; display: grid; place-items: center; text-align: center;
  font-family: var(--font-display); font-size: 1.15rem; line-height: 1; letter-spacing: .04em; text-transform: uppercase; padding: 1rem;
  box-shadow: 0 16px 40px rgba(255,106,61,.4);
  animation: spin 18s linear infinite;
}
.about__badge svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.about__badge b { position: relative; font-weight: 400; animation: spin 18s linear infinite reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.about p { color: var(--muted); }
.about__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 2rem; }
.fact { border-left: 3px solid var(--coral); padding-left: 1rem; }
.fact strong { display: block; font-family: var(--font-display); font-size: 2.2rem; color: var(--blue); line-height: 1; }
.fact span { font-size: .85rem; color: var(--muted); font-weight: 700; }
@media (max-width: 900px) { .about { grid-template-columns: 1fr; } .about__collage { max-width: 520px; } }
@media (max-width: 560px) { .about__facts { grid-template-columns: 1fr 1fr; } }

/* Experiences ------------------------------------------------------------ */
.exp { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.exp-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); color: var(--ink); display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.exp-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.exp-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.exp-card__media picture { height: 100%; }
.exp-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.exp-card:hover .exp-card__media img { transform: scale(1.06); }
.exp-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.exp-card h3 { font-family: var(--font-display); font-size: 1.9rem; letter-spacing: .02em; text-transform: uppercase; color: var(--navy); }
.exp-card p { color: var(--muted); font-size: .97rem; flex: 1; }
.exp-card a.link { font-weight: 800; color: var(--blue); display: inline-flex; align-items: center; gap: .4rem; }
.exp-card a.link svg { width: 18px; height: 18px; transition: transform .3s; }
.exp-card a.link:hover svg { transform: translateX(4px); }
@media (max-width: 900px) { .exp { grid-template-columns: 1fr; } }

/* Gallery ---------------------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; grid-auto-flow: dense; gap: .8rem; }
.gallery picture { height: 100%; }
.gallery a { position: relative; overflow: hidden; border-radius: var(--radius-sm); display: block; background: var(--navy); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease), opacity .3s; }
.gallery a:hover img { transform: scale(1.06); opacity: .9; }
.gallery .tall { grid-row: span 2; }
.gallery .wide { grid-column: span 2; }
@media (max-width: 900px) { .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; } }
.gallery-cta { text-align: center; margin-top: 2rem; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(8,28,74,.92); z-index: 200; display: none; align-items: center; justify-content: center; padding: 2rem; }
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); }
.lightbox__close, .lightbox__prev, .lightbox__next { position: absolute; background: rgba(255,255,255,.12); border: 0; color: var(--white); width: 48px; height: 48px; border-radius: 50%; font-size: 1.4rem; display: grid; place-items: center; }
.lightbox__close { top: 1.2rem; right: 1.2rem; }
.lightbox__prev { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.2rem; top: 50%; transform: translateY(-50%); }

/* Location --------------------------------------------------------------- */
.location { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(2rem, 4vw, 4rem); align-items: stretch; }
.location__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); min-height: 420px; background: var(--sky); }
.location__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; filter: saturate(.9); }
.location__list { display: grid; gap: 1.1rem; margin-top: 1.6rem; }
.location__list li { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; align-items: start; }
.location__list svg { width: 44px; height: 44px; padding: 10px; border-radius: 12px; background: var(--white); color: var(--blue); box-shadow: var(--shadow); }
.location__list strong { display: block; font-weight: 800; }
.location__list span { color: var(--muted); font-size: .95rem; }
@media (max-width: 900px) { .location { grid-template-columns: 1fr; } }

/* FAQ -------------------------------------------------------------------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: .8rem; }
.faq details { background: var(--white); border-radius: var(--radius-sm); box-shadow: var(--shadow); overflow: hidden; }
.faq summary { list-style: none; cursor: pointer; padding: 1.2rem 1.4rem; font-weight: 800; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-display); font-size: 1.8rem; color: var(--coral); line-height: 1; transition: transform .3s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.4rem 1.3rem; color: var(--muted); margin: 0; }

/* Contact ---------------------------------------------------------------- */
.contact { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.contact__cards { display: grid; gap: 1rem; margin-top: 2rem; }
.contact-card { display: flex; align-items: center; gap: 1rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-sm); padding: 1rem 1.2rem; transition: background .3s, transform .3s var(--ease); }
.contact-card:hover { background: rgba(255,255,255,.12); transform: translateX(4px); }
.contact-card__icon { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; flex: none; }
.contact-card__icon svg { width: 24px; height: 24px; }
.contact-card__icon--wa { background: var(--wa); color: #06341a; }
.contact-card__icon--ig { background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7); color: var(--white); }
.contact-card__icon--mail { background: var(--teal); color: var(--navy); }
.contact-card__icon--pin { background: var(--coral); color: var(--white); }
.contact-card strong { display: block; font-size: 1.05rem; }
.contact-card span { font-size: .88rem; color: rgba(255,255,255,.7); }
.contact__media { position: relative; }
.contact__media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 65% 50%; }
.contact__quote { position: absolute; right: -1rem; bottom: 2rem; background: var(--coral); color: var(--white); border-radius: var(--radius-sm); padding: 1rem 1.2rem; max-width: 280px; font-family: var(--font-display); font-size: 1.4rem; letter-spacing: .03em; text-transform: uppercase; line-height: 1.1; box-shadow: var(--shadow-lg); }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } .contact__media { max-width: 480px; } .contact__quote { right: 0; } }

/* Footer ----------------------------------------------------------------- */
.footer { background: #050f2b; color: rgba(255,255,255,.7); padding: 3rem 0 2rem; font-size: .92rem; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; align-items: start; }
.footer__logo { width: 120px; margin-bottom: 1rem; }
.footer h4 { color: var(--white); font-family: var(--font-display); font-size: 1.3rem; letter-spacing: .05em; text-transform: uppercase; margin-bottom: .8rem; }
.footer ul { display: grid; gap: .45rem; }
.footer a:hover { color: var(--white); }
.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: .82rem; color: rgba(255,255,255,.5); }
@media (max-width: 800px) { .footer__inner { grid-template-columns: 1fr; } }

/* Floating WhatsApp ------------------------------------------------------ */
.wa-float {
  position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 90;
  width: 60px; height: 60px; border-radius: 50%; background: var(--wa); color: #06341a;
  display: grid; place-items: center; box-shadow: 0 12px 30px rgba(37,211,102,.45);
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 32px; height: 32px; }
.wa-float::before { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--wa); opacity: .6; animation: pulse 2s ease-out infinite; }
@keyframes pulse { 0% { transform: scale(.9); opacity: .7; } 100% { transform: scale(1.35); opacity: 0; } }

/* Reveal animations ------------------------------------------------------ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg img, .ticker__track, .about__badge, .about__badge b, .wa-float::before { animation: none; }
  html { scroll-behavior: auto; }
}

/* Wave divider ----------------------------------------------------------- */
.wave-top { position: relative; }
.wave-top::before { content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 60px; background: inherit; clip-path: ellipse(60% 100% at 50% 100%); transform: translateY(-99%); }

/* Screenshot / reduced-motion helper */
.is-noanim .hero { min-height: 820px; }
.is-noanim .hero__bg img, .is-noanim .ticker__track, .is-noanim .about__badge, .is-noanim .about__badge b { animation: none; }

/* Location CTA */
.location__cta { margin-top: 1.6rem; }

/* Footer RNT + legal */
.footer__rnt { margin-top: 1.2rem; padding: .9rem 1.1rem; border: 1px solid rgba(255,255,255,.14); border-radius: 12px; display: grid; gap: .25rem; font-size: .85rem; max-width: 360px; }
.footer__rnt strong { color: var(--white); font-weight: 800; }
.footer__rnt a { color: var(--teal); font-weight: 800; }
.footer__rnt a:hover { color: var(--white); }
.footer__legal { margin: 2.5rem 0 0; font-size: .78rem; color: rgba(255,255,255,.5); max-width: 70ch; }
.footer__legal + .footer__bottom { margin-top: 1.2rem; }

/* Google rating badge */
.gbadge { display: inline-flex; align-items: center; gap: .7rem; margin-top: 1.6rem; padding: .55rem 1rem .55rem .7rem; border-radius: 999px; background: rgba(255,255,255,.92); color: var(--ink); box-shadow: 0 10px 30px rgba(8,28,74,.25); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.gbadge:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(8,28,74,.3); }
.gbadge__g { width: 26px; height: 26px; flex: none; background: var(--white); border-radius: 50%; padding: 3px; }
.gbadge__text { display: inline-flex; align-items: center; gap: .4rem; font-size: .95rem; font-weight: 700; line-height: 1; white-space: nowrap; }
.gbadge__text strong { font-weight: 800; font-size: 1.05rem; }
.gbadge__stars { color: #f5b301; letter-spacing: .05em; font-size: 1rem; }
.gbadge__meta { color: var(--muted); font-weight: 600; font-size: .85rem; }
.gbadge--light { margin-top: .6rem; margin-bottom: 1rem; }
.hero__badges { margin-top: 1.4rem; }
@media (max-width: 560px) { .gbadge__meta { display: none; } }

/* Classes includes */
.classes-includes { display: flex; flex-wrap: wrap; justify-content: center; gap: .8rem 2.2rem; margin-top: 2.2rem; }
.classes-includes li { display: inline-flex; align-items: center; gap: .6rem; font-weight: 700; font-size: .98rem; }
.classes-includes svg { width: 22px; height: 22px; color: var(--coral); flex: none; }
.classes-note { margin-top: 1.2rem; }

/* Team ------------------------------------------------------------------- */
.team { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.team-card { background: var(--sand); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-card__media { aspect-ratio: 4 / 3; overflow: hidden; }
.team-card__media picture { height: 100%; }
.team-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.team-card:hover .team-card__media img { transform: scale(1.05); }
.team-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; position: relative; }
.team-card__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--white); color: var(--blue); display: grid; place-items: center; box-shadow: var(--shadow); margin-top: -3.2rem; position: relative; z-index: 1; }
.team-card__icon svg { width: 26px; height: 26px; }
.team-card h3 { font-family: var(--font-display); font-size: 1.6rem; letter-spacing: .02em; text-transform: uppercase; color: var(--navy); line-height: 1.02; }
.team-card p { color: var(--muted); font-size: .97rem; margin: 0; }
.team-card p strong { color: var(--ink); }
.team-values { margin-top: 2.2rem; border-radius: var(--radius); background: var(--navy); color: var(--white); padding: 1.6rem 2rem; display: grid; gap: 1.2rem; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.team-values::before { content: ""; position: absolute; inset: auto -10% -60% -10%; height: 120%; background: radial-gradient(ellipse at center, rgba(79,195,186,.25), transparent 60%); pointer-events: none; }
.team-values__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; position: relative; }
.team-values__list li { display: flex; align-items: center; gap: .8rem; font-weight: 800; font-size: 1rem; padding-right: 1rem; }
.team-values__list li + li { border-left: 1px solid rgba(255,255,255,.18); padding-left: 1.2rem; }
.team-values__list svg { width: 30px; height: 30px; color: var(--teal); flex: none; }
.team-values__tagline { position: relative; margin: 0; text-align: center; font-size: clamp(1.8rem, 4vw, 3rem); letter-spacing: .08em; border-top: 1px solid rgba(255,255,255,.14); padding-top: 1.1rem; }
.team-values__tagline span { color: var(--coral); }
@media (max-width: 900px) { .team { grid-template-columns: 1fr; } .team-values__list { grid-template-columns: 1fr; } .team-values__list li + li { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,.18); padding-top: 1rem; } }

/* Social links */
.social { display: flex; flex-wrap: wrap; gap: .7rem; }
.social a { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); color: var(--white); transition: background .3s, transform .3s var(--ease), color .3s; }
.social a:hover { background: var(--teal); color: var(--navy); transform: translateY(-3px); }
.social svg { width: 22px; height: 22px; }
.contact__social { margin-top: 1.6rem; }
.contact__social-title { font-size: .8rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; color: var(--teal); margin-bottom: .7rem; }
.social--footer { margin-top: 1.2rem; }
.social--footer a { width: 40px; height: 40px; border-radius: 10px; }
.social--footer svg { width: 19px; height: 19px; }

.footer ul.social { display: flex; grid-template-columns: none; gap: .6rem; }
