/* ==========================================================================
   THE SPORTS MASSEUSE — Pure CSS Design System
   No framework, no CDN. All hand-written.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  --navy:  #062A40;
  --teal:  #006D77;
  --aqua:  #00C2CB;
  --fresh: #6BCB3C;
  --light: #F5FAFC;
  --soft:  #E8F0F2;
  --ink:   #102027;
  --white: #FFFFFF;
  --wa:    #25D366;

  --grad-hero: linear-gradient(135deg, #062A40 0%, #006D77 60%, #00C2CB 100%);
  --grad-cta:  linear-gradient(135deg, #006D77 0%, #00C2CB 50%, #6BCB3C 100%);
  --grad-soft: linear-gradient(180deg, #F5FAFC 0%, #E8F0F2 100%);
  --grad-text: linear-gradient(135deg, #006D77 0%, #00C2CB 50%, #6BCB3C 100%);
  --grad-card: linear-gradient(135deg, #006D77 0%, #00C2CB 100%);
  --grad-dark: linear-gradient(135deg, #062A40 0%, #006D77 100%);

  --shadow-sm: 0 4px 16px -4px rgba(6,42,64,.10);
  --shadow:    0 10px 40px -10px rgba(6,42,64,.15);
  --shadow-lg: 0 20px 60px -20px rgba(0,194,203,.45);
  --shadow-xl: 0 30px 80px -20px rgba(0,109,119,.30);

  --radius-sm: .75rem;
  --radius:    1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --radius-full: 9999px;

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

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  font-size: 16px; line-height: 1.55; color: var(--ink);
  background: #fff; min-height: 100vh; -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 640px) { .container { padding: 0 2rem; } }

.section { padding: 4rem 0; }
@media (min-width: 640px) { .section { padding: 6rem 0; } }
.section--tight { padding: 3rem 0; }
.section--soft  { background: var(--light); border-top: 1px solid var(--soft); border-bottom: 1px solid var(--soft); }
.section--alt   { border-top: 1px solid var(--soft); }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { letter-spacing: -.02em; line-height: 1.15; color: var(--navy); font-weight: 700; }
.h-hero { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.05; font-weight: 800; }
.h-section { font-size: clamp(1.875rem, 3vw, 3rem); font-weight: 700; }
.h-3 { font-size: 1.5rem; font-weight: 700; }
.t-lead { font-size: 1.1rem; color: rgba(16,32,39,.7); max-width: 36rem; }
.t-muted { color: rgba(16,32,39,.65); }
.t-sm { font-size: .875rem; }
.t-xs { font-size: .75rem; }
.t-center { text-align: center; }
.t-gradient {
  background-image: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.t-navy { color: var(--navy); }
.t-teal { color: var(--teal); }
.t-fresh { color: var(--fresh); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  border-radius: var(--radius-full);
  padding: .85rem 1.55rem; font-size: .875rem; font-weight: 600;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-position .5s var(--ease), background .3s var(--ease);
  position: relative; overflow: hidden; white-space: nowrap;
  border: 1px solid transparent;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn--primary {
  color: #fff;
  background-image: var(--grad-cta);
  background-size: 220% 100%; background-position: 0% 0%;
  box-shadow: var(--shadow-lg);
}
.btn--primary:hover { background-position: 100% 0%; transform: translateY(-3px); box-shadow: var(--shadow-xl); }
.btn--ghost {
  background: #fff; color: var(--navy); border-color: rgba(6,42,64,.15);
}
.btn--ghost:hover { border-color: var(--aqua); color: var(--teal); box-shadow: var(--shadow); transform: translateY(-2px); }
.btn--whatsapp { background: var(--wa); color: #fff; box-shadow: 0 12px 28px -8px rgba(37,211,102,.5); }
.btn--whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--navy); box-shadow: var(--shadow); }
.btn--light:hover { background: var(--soft); transform: translateY(-2px); }
.btn--lg { padding: 1rem 1.85rem; font-size: 1rem; }
.btn--sm { padding: .6rem 1.1rem; font-size: .8rem; }
.btn--block { width: 100%; }
.btn--outline-white {
  background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.4);
}
.btn--outline-white:hover { background: rgba(255,255,255,.2); }

.icon { width: 1rem; height: 1rem; display: inline-block; flex-shrink: 0; }
.icon--lg { width: 1.5rem; height: 1.5rem; }

/* ---------- Badge ---------- */
.badge {
  display: inline-flex; align-items: center; gap: .5rem;
  border: 1px solid rgba(0,194,203,.3);
  background: rgba(0,194,203,.10);
  color: var(--teal);
  border-radius: var(--radius-full);
  padding: .4rem 1rem; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
}
.badge--on-dark { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); color: #fff; }

/* ---------- Card ---------- */
.card {
  background: #fff; border-radius: var(--radius);
  border: 1px solid var(--soft);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  position: relative;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(0,194,203,.4);
  box-shadow: var(--shadow-lg);
}
.card--feature { padding: 1.75rem; }
.card-icon {
  width: 3rem; height: 3rem;
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  background: var(--grad-card);
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  transition: transform .35s var(--ease);
}
.card:hover .card-icon { transform: scale(1.08) rotate(-3deg); }
.card-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: .35rem; }
.card-text { font-size: .9rem; color: rgba(16,32,39,.7); }
.card-link {
  display: inline-flex; align-items: center; gap: .3rem;
  margin-top: 1rem; font-size: .8rem; font-weight: 700;
  color: var(--teal); transition: color .2s, gap .25s;
}
.card-link:hover { color: var(--aqua); gap: .55rem; }

/* ---------- Glass effects & meshes ---------- */
.glass {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.7);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.bg-mesh {
  background-image:
    radial-gradient(60% 50% at 20% 20%, rgba(0,194,203,.25) 0%, transparent 60%),
    radial-gradient(50% 50% at 80% 30%, rgba(107,203,60,.18) 0%, transparent 60%),
    radial-gradient(60% 50% at 50% 100%, rgba(0,109,119,.20) 0%, transparent 60%);
}
.bg-soft { background: var(--grad-soft); }
.bg-hero-grad { background: var(--grad-hero); }
.bg-navy { background: var(--navy); }
.bg-light { background: var(--light); }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
  padding: 0;
}
.navbar.is-scrolled {
  background: rgba(255,255,255,.85);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--soft);
  box-shadow: 0 4px 24px -8px rgba(6,42,64,.10);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
.brand { display: flex; align-items: center; gap: .55rem; }
.brand-mark {
  width: 2.25rem; height: 2.25rem;
  background: var(--grad-hero); color: #fff;
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  box-shadow: var(--shadow-lg);
}
.brand-text { line-height: 1.1; }
.brand-text small { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .22em; color: var(--teal); margin-top: -2px; }
.brand-text strong { font-size: .9rem; color: var(--navy); }

.nav { display: none; gap: .15rem; align-items: center; }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav-link {
  padding: .55rem 1rem; border-radius: var(--radius-full);
  font-size: .9rem; font-weight: 500; color: rgba(6,42,64,.8);
  transition: background .2s, color .2s;
}
.nav-link:hover { background: var(--soft); color: var(--navy); }
.nav-link.is-active { background: rgba(0,194,203,.12); color: var(--teal); }

.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: inline-flex; } }

.nav-toggle {
  width: 2.5rem; height: 2.5rem; border-radius: var(--radius-sm);
  border: 1px solid var(--soft); background: #fff;
  display: grid; place-items: center;
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }

.nav-mobile {
  display: none; border-top: 1px solid var(--soft); background: #fff;
}
.nav-mobile.is-open { display: block; }
.nav-mobile-inner { padding: 1rem 0; display: flex; flex-direction: column; gap: .35rem; }
.nav-mobile a { padding: .85rem 1rem; border-radius: var(--radius-sm); font-weight: 500; color: var(--navy); }
.nav-mobile a:hover { background: var(--soft); }
.nav-mobile .btn { margin-top: .6rem; width: 100%; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: relative; display: grid; gap: 2.5rem; align-items: center;
  padding: 4rem 0 5rem;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1.05fr 1fr; padding: 6rem 0 7rem; gap: 3rem; }
}
.hero-eyebrow { margin-bottom: 1.25rem; }
.hero-title { margin-bottom: 1.25rem; }
.hero-sub { margin-bottom: 1.5rem; max-width: 32rem; color: rgba(16,32,39,.7); font-size: clamp(1rem, 1.5vw, 1.15rem); }
.hero-pills { display: grid; grid-template-columns: repeat(2, 1fr); gap: .25rem .8rem; max-width: 28rem; margin-bottom: 2rem; }
.hero-pill { display: flex; align-items: center; gap: .5rem; font-size: .875rem; color: rgba(16,32,39,.85); padding: .25rem 0; }
.hero-tick {
  width: 1.25rem; height: 1.25rem; border-radius: 50%;
  background: rgba(107,203,60,.15); color: var(--fresh);
  display: grid; place-items: center; font-size: .75rem; flex-shrink: 0;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: .65rem; margin-bottom: 1.75rem; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 1rem; font-size: .72rem; color: rgba(16,32,39,.6); }
.hero-meta span { display: inline-flex; align-items: center; gap: .35rem; }

.hero-visual {
  position: relative;
  height: 460px;
}
@media (min-width: 1024px) { .hero-visual { height: 580px; } }
.hero-frame {
  position: absolute; inset: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: var(--shadow-lg);
}
.hero-frame::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,42,64,.45), transparent 60%);
}
.hero-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-blur {
  position: absolute; inset: 1.5rem;
  background: var(--grad-hero); opacity: .15; filter: blur(48px);
  border-radius: var(--radius-xl); z-index: -1;
}
.hero-badge {
  position: absolute; z-index: 4;
  padding: .55rem 1rem;
  font-size: .72rem; font-weight: 700; color: var(--navy);
  border-radius: var(--radius-full);
}
.hero-badge::before {
  content: ""; display: inline-block; width: .5rem; height: .5rem;
  border-radius: 50%; background: var(--fresh); margin-right: .5rem;
  vertical-align: middle;
}
.hero-badge--1 { top: 1.25rem; left: -.5rem; }
.hero-badge--2 { top: 30%; right: -.5rem; }
.hero-badge--3 { bottom: 30%; left: -.5rem; }
.hero-badge--4 { bottom: 1.25rem; right: -.5rem; }

.hero-card {
  position: absolute; left: 50%; bottom: -1.5rem; transform: translateX(-50%);
  width: 88%;
  padding: .85rem 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  z-index: 5;
}
.hero-card-eyebrow {
  font-size: .68rem; color: var(--teal); font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
}
.hero-card-title { font-size: .9rem; color: var(--navy); font-weight: 700; }

/* ---------- Trust strip ---------- */
.trust-strip {
  position: relative; z-index: 6;
  margin-top: -2.5rem;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
  padding: 1.25rem;
}
@media (min-width: 1024px) { .trust-strip { grid-template-columns: repeat(4, 1fr); margin-top: -3rem; } }
.trust-item { display: flex; align-items: center; gap: .8rem; }
.trust-icon {
  width: 2.5rem; height: 2.5rem; border-radius: var(--radius-sm);
  background: var(--grad-card); color: #fff;
  display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0;
}
.trust-text strong { display: block; font-size: .85rem; color: var(--navy); }
.trust-text span { display: block; font-size: .72rem; color: rgba(16,32,39,.6); }

/* ---------- Section header ---------- */
.section-header { margin-bottom: 2.5rem; }
.section-header--center { text-align: center; max-width: 42rem; margin-left: auto; margin-right: auto; }
.section-header .badge { margin-bottom: 1rem; }
.section-header h2 { font-size: clamp(1.875rem, 3vw, 3rem); }
.section-header p { margin-top: 1rem; color: rgba(16,32,39,.65); font-size: 1.05rem; max-width: 38rem; }
.section-header--center p { margin-left: auto; margin-right: auto; }
.section-header-row { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1.25rem; margin-bottom: 2.5rem; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 1.25rem; }
.grid-2 { display: grid; gap: 1.25rem; }
.grid-3 { display: grid; gap: 1.25rem; }
.grid-4 { display: grid; gap: 1.25rem; }
.grid-5 { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } .grid-5 { grid-template-columns: repeat(5, 1fr); } }

/* ---------- Process step ---------- */
.step { position: relative; }
.step-num {
  position: absolute; top: -1rem; right: -.75rem;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: var(--grad-hero); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1rem;
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

/* ---------- Pain card ---------- */
.pain-card .card-icon { background: var(--grad-dark); }

/* ---------- Why us ---------- */
.whyus { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .whyus { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.whyus-img { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.whyus-img img { width: 100%; height: 100%; object-fit: cover; }
.whyus-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,42,64,.7), transparent 60%); }
.whyus-card { position: absolute; left: 1.5rem; right: 1.5rem; bottom: 1.5rem; padding: 1.25rem; }
.whyus-card-eyebrow { font-size: .7rem; text-transform: uppercase; letter-spacing: .15em; color: var(--teal); font-weight: 700; }
.whyus-card-title { color: var(--navy); font-weight: 700; margin-top: .35rem; }
.whyus-list { }
.whyus-list li { display: flex; align-items: flex-start; gap: .65rem; padding: .85rem 0; border-bottom: 1px solid var(--soft); color: rgba(16,32,39,.85); font-size: .95rem; }
.whyus-list li:last-child { border-bottom: 0; }
.whyus-list li svg, .whyus-list li .check { color: var(--fresh); flex-shrink: 0; margin-top: .15rem; }

/* ---------- Gallery (masonry) ---------- */
.gallery { columns: 1; column-gap: 1rem; }
@media (min-width: 640px) { .gallery { columns: 2; } }
@media (min-width: 1024px) { .gallery { columns: 3; } }
.gallery-item {
  display: block; width: 100%; margin-bottom: 1rem;
  border-radius: var(--radius); overflow: hidden;
  background: #fff; border: 1px solid var(--soft);
  box-shadow: var(--shadow-sm);
  break-inside: avoid;
  position: relative;
  cursor: zoom-in;
}
.gallery-item img { width: 100%; transition: transform .7s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(6,42,64,.75), transparent 50%);
  opacity: 0; transition: opacity .35s var(--ease);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay .badge { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.3); color: #fff; }
.gallery-item-title { color: #fff; font-weight: 700; font-size: .9rem; margin-top: .35rem; }

/* ---------- Testimonial card ---------- */
.testimonial { position: relative; }
.testimonial-quote {
  position: absolute; top: -.5rem; right: 0;
  font-size: 4rem; line-height: 1; color: rgba(0,194,203,.18); font-family: Georgia, serif;
}
.stars { display: flex; gap: .15rem; color: var(--fresh); }
.testimonial-text { margin-top: .65rem; font-size: .9rem; color: rgba(16,32,39,.8); line-height: 1.6; }
.testimonial-foot { display: flex; align-items: center; gap: .65rem; margin-top: 1.25rem; }
.testimonial-avatar {
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: var(--grad-hero); color: #fff;
  display: grid; place-items: center; font-weight: 700;
}
.testimonial-name { font-size: .85rem; font-weight: 700; color: var(--navy); }
.testimonial-tag { font-size: .7rem; color: rgba(16,32,39,.55); }

/* ---------- Blog card ---------- */
.blog-card {
  border-radius: var(--radius); overflow: hidden;
  background: #fff; border: 1px solid var(--soft);
  box-shadow: var(--shadow-sm);
  display: block;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.blog-card-img { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--soft); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.blog-card:hover .blog-card-img img { transform: scale(1.08); }
.blog-card-body { padding: 1.25rem; }
.blog-card-meta { font-size: .72rem; color: rgba(16,32,39,.55); }
.blog-card h3 { font-size: 1.05rem; margin-top: .5rem; line-height: 1.3; }
.blog-card p { font-size: .875rem; color: rgba(16,32,39,.7); margin-top: .55rem; }
.blog-card-link { display: inline-flex; gap: .3rem; margin-top: 1rem; font-size: .8rem; font-weight: 700; color: var(--teal); }
.blog-card:hover .blog-card-link { gap: .6rem; }

/* ---------- Service detail (alternating rows) ---------- */
.service-row { display: grid; gap: 2rem; align-items: center; padding: 1.5rem 0; }
@media (min-width: 1024px) { .service-row { grid-template-columns: 2fr 3fr; gap: 3rem; } }
.service-row.is-flipped .service-row-media { order: 2; }
.service-row-media { position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.service-row-media img { width: 100%; height: 100%; object-fit: cover; }
.service-row-icon {
  display: inline-grid; place-items: center;
  width: 2.75rem; height: 2.75rem; border-radius: var(--radius-sm);
  background: var(--grad-card); color: #fff; margin-right: .75rem;
}
.benefits-list { list-style: none; padding: 0; margin: 1.25rem 0 0; display: grid; gap: .5rem; }
@media (min-width: 640px) { .benefits-list { grid-template-columns: 1fr 1fr; } }
.benefits-list li { display: flex; gap: .55rem; align-items: flex-start; font-size: .9rem; color: rgba(16,32,39,.85); }
.benefits-list li::before { content: "✓"; color: var(--fresh); font-weight: 800; margin-top: 1px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .75rem; max-width: 44rem; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--soft); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow .25s; }
.faq-item.is-open { box-shadow: var(--shadow); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  width: 100%; padding: 1.1rem 1.25rem; text-align: left;
  font-weight: 600; color: var(--navy); font-size: .95rem;
}
.faq-toggle {
  width: 2rem; height: 2rem; border-radius: 50%; background: var(--soft); color: var(--teal);
  display: grid; place-items: center; font-size: 1.1rem; flex-shrink: 0;
  transition: transform .3s var(--ease), background .25s;
}
.faq-item.is-open .faq-toggle { background: var(--aqua); color: var(--navy); transform: rotate(45deg); }
.faq-a {
  max-height: 0; opacity: 0; padding: 0 1.25rem;
  font-size: .9rem; color: rgba(16,32,39,.7);
  overflow: hidden;
  transition: max-height .4s var(--ease), opacity .25s var(--ease), padding .3s;
}
.faq-item.is-open .faq-a { max-height: 360px; opacity: 1; padding: 0 1.25rem 1.25rem; }

/* ---------- CTA strip ---------- */
.cta-strip {
  position: relative; overflow: hidden; color: #fff;
  background: var(--grad-hero);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
@media (min-width: 768px) { .cta-strip { padding: 3.5rem; } }
.cta-strip::before, .cta-strip::after {
  content: ""; position: absolute; width: 18rem; height: 18rem; border-radius: 50%; filter: blur(60px); opacity: .35;
}
.cta-strip::before { top: -5rem; right: -5rem; background: var(--aqua); }
.cta-strip::after { bottom: -5rem; left: -5rem; background: var(--fresh); }
.cta-strip-grid { position: relative; display: grid; gap: 1.5rem; align-items: center; }
@media (min-width: 1024px) { .cta-strip-grid { grid-template-columns: 1.5fr 1fr; } }
.cta-strip h2 { color: #fff; font-size: clamp(1.5rem, 2.5vw, 2.25rem); }
.cta-strip p { color: rgba(255,255,255,.85); margin-top: .75rem; }
.cta-strip-actions { display: flex; flex-wrap: wrap; gap: .65rem; }
@media (min-width: 1024px) { .cta-strip-actions { justify-content: flex-end; } }

/* ---------- Forms ---------- */
.form { display: grid; gap: 1rem; }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-row--3 { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-row--3 { grid-template-columns: 1fr 1fr 1fr; } }
.label {
  display: block; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(6,42,64,.7); margin-bottom: .35rem;
}
.input, .textarea, .select {
  width: 100%; border-radius: var(--radius-sm);
  border: 1px solid var(--soft); background: #fff;
  padding: .75rem 1rem; font-size: .9rem; color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
  font-family: inherit;
}
.input:focus, .textarea:focus, .select:focus {
  outline: none; border-color: var(--aqua);
  box-shadow: 0 0 0 3px rgba(0,194,203,.2);
}
.textarea { min-height: 110px; resize: vertical; }
.select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23006D77'><path d='M4 6l4 4 4-4'/></svg>"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 1rem; padding-right: 2.5rem; }

.form-card {
  background: #fff; border: 1px solid var(--soft);
  border-radius: var(--radius-lg); padding: 1.75rem;
  box-shadow: var(--shadow);
}
@media (min-width: 640px) { .form-card { padding: 2.25rem; } }
.form-error { color: #be123c; font-size: .85rem; }
.form-success {
  background: rgba(107,203,60,.08); border: 1px solid rgba(107,203,60,.35);
  border-radius: var(--radius-lg); padding: 2rem; text-align: center;
}
.form-success-icon {
  font-size: 2.75rem; margin-bottom: .5rem;
}
.form-success h3 { font-size: 1.5rem; }
.form-success p { color: rgba(16,32,39,.7); margin-top: .5rem; }
.form-success .code {
  display: inline-block; padding: .25rem 1rem; margin-top: 1rem;
  background: #fff; color: var(--teal); font-weight: 700;
  border-radius: var(--radius-full); box-shadow: var(--shadow-sm);
}
.form-success-actions { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-top: 1.25rem; }
.form-disclaimer { font-size: .72rem; color: rgba(16,32,39,.5); }

/* ---------- Booking page right sidebar ---------- */
.booking-grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .booking-grid { grid-template-columns: 1.6fr 1fr; align-items: start; } }
.aside { display: grid; gap: 1rem; }

.cta-card {
  background: var(--grad-hero); color: #fff; padding: 1.5rem;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
}
.cta-card h3 { color: #fff; }
.cta-card p { color: rgba(255,255,255,.85); margin-top: .35rem; font-size: .875rem; }

/* ---------- Floating WhatsApp ---------- */
.float-wa {
  position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 40;
  display: inline-flex; align-items: center; gap: .55rem;
  background: var(--wa); color: #fff;
  padding: .9rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: .875rem; font-weight: 700;
  box-shadow: 0 20px 60px -20px rgba(37,211,102,.65);
}
.float-wa span { display: none; }
@media (min-width: 640px) { .float-wa span { display: inline; } }
.float-wa::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: var(--wa); opacity: .35; z-index: -1;
  animation: ping 2s cubic-bezier(0,0,.2,1) infinite;
}
@keyframes ping {
  0% { transform: scale(1); opacity: .35; }
  75%,100% { transform: scale(1.45); opacity: 0; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; background: rgba(6,42,64,.88);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  z-index: 100;
  display: none; align-items: center; justify-content: center; padding: 1rem;
}
.lightbox.is-open { display: flex; animation: lbIn .25s var(--ease); }
@keyframes lbIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox img { max-width: 92vw; max-height: 85vh; border-radius: var(--radius-lg); box-shadow: 0 30px 80px -20px rgba(0,0,0,.7); }
.lightbox-close {
  position: absolute; top: 1rem; right: 1rem;
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  background: #fff; color: var(--navy);
  display: grid; place-items: center; font-size: 1.6rem;
}

/* ---------- Footer ---------- */
.footer { position: relative; background: var(--navy); color: rgba(255,255,255,.9); margin-top: 5rem; overflow: hidden; }
.footer-mesh { position: absolute; inset: 0; opacity: .25; }
.footer-grid { position: relative; display: grid; gap: 2.5rem; padding: 4rem 0; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer h4 { color: #fff; font-size: .9rem; margin-bottom: 1rem; }
.footer-col p { font-size: .875rem; color: rgba(255,255,255,.7); margin-top: 1rem; }
.footer-col ul { display: grid; gap: .5rem; }
.footer-col li a { font-size: .875rem; color: rgba(255,255,255,.7); transition: color .2s; }
.footer-col li a:hover { color: var(--aqua); }
.footer-contact li { display: flex; align-items: flex-start; gap: .55rem; font-size: .875rem; color: rgba(255,255,255,.7); }
.footer-socials { display: flex; gap: .55rem; margin-top: 1.25rem; }
.footer-socials a {
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  background: rgba(255,255,255,.1); color: #fff;
  display: grid; place-items: center; transition: background .2s, color .2s;
}
.footer-socials a:hover { background: var(--aqua); color: var(--navy); }
.footer-socials a.wa { background: var(--wa); }
.footer-socials a.wa:hover { background: #1ebe5d; color: #fff; }
.footer-base { position: relative; border-top: 1px solid rgba(255,255,255,.1); }
.footer-base-inner { padding: 1.25rem 0; display: flex; flex-direction: column; gap: .5rem; align-items: center; justify-content: space-between; font-size: .75rem; color: rgba(255,255,255,.6); }
@media (min-width: 640px) { .footer-base-inner { flex-direction: row; } }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { position: relative; overflow: hidden; padding: 5rem 0; text-align: center; }
.page-hero-bg { position: absolute; inset: 0; }
.page-hero h1 { margin-top: 1rem; font-size: clamp(2rem, 3.5vw, 3rem); }
.page-hero p { margin: 1rem auto 0; max-width: 40rem; color: rgba(16,32,39,.7); }

/* ---------- Article (blog detail) ---------- */
.article { max-width: 48rem; margin: 0 auto; }
.article-back { display: inline-flex; align-items: center; gap: .3rem; font-size: .85rem; color: var(--teal); }
.article-meta { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1rem; font-size: .72rem; color: rgba(16,32,39,.55); }
.article h1 { font-size: clamp(1.875rem, 3vw, 2.5rem); margin-top: .5rem; }
.article-hero {
  margin-top: 1.5rem; position: relative; aspect-ratio: 16 / 9; overflow: hidden;
  border-radius: var(--radius-xl); box-shadow: var(--shadow-lg);
}
.article-hero img { width: 100%; height: 100%; object-fit: cover; }
.article-body { margin-top: 2rem; font-size: 1rem; line-height: 1.75; color: rgba(16,32,39,.8); white-space: pre-line; }
.article-cta {
  margin-top: 2.5rem; padding: 1.75rem; text-align: center;
  background: rgba(0,194,203,.05); border: 1px solid rgba(0,194,203,.25);
  border-radius: var(--radius-lg);
}

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.contact-mini { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.contact-mini > * { grid-column: span 1; }
.contact-mini > .span-2 { grid-column: span 2; }
.contact-mini h3 { font-size: 1rem; margin-top: .65rem; }
.contact-mini .ico { font-size: 1.5rem; }
.map-wrap { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--soft); box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 360px; border: 0; display: block; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* ---------- Float animation ---------- */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.float-anim { animation: float 5.5s ease-in-out infinite; }
.float-anim.d1 { animation-delay: -1s; }
.float-anim.d2 { animation-delay: -2s; }
.float-anim.d3 { animation-delay: -3s; }

/* ---------- Status pills (admin) ---------- */
.pill { display: inline-block; padding: .15rem .7rem; border-radius: var(--radius-full); font-size: .7rem; font-weight: 700; }
.pill-pending   { background: #FEF3C7; color: #92400E; }
.pill-confirmed { background: rgba(0,194,203,.18); color: var(--teal); }
.pill-completed { background: rgba(107,203,60,.20); color: #357C00; }
.pill-cancelled { background: #FEE2E2; color: #991B1B; }

/* ---------- Admin layout ---------- */
.admin-body { background: var(--light); min-height: 100vh; }
.admin-shell { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 100%; background: var(--navy); color: rgba(255,255,255,.85);
  position: fixed; inset: 0 0 auto 0; z-index: 30; display: none;
}
.admin-sidebar.is-open { display: block; }
@media (min-width: 1024px) {
  .admin-sidebar { display: block; position: sticky; top: 0; height: 100vh; width: 16rem; }
}
.admin-brand { display: none; }
@media (min-width: 1024px) {
  .admin-brand { display: flex; align-items: center; gap: .55rem; padding: 0 1.5rem; height: 4rem; border-bottom: 1px solid rgba(255,255,255,.1); }
}
.admin-brand-mark { width: 2.25rem; height: 2.25rem; background: var(--grad-hero); border-radius: var(--radius-sm); display: grid; place-items: center; }
.admin-nav { padding: .75rem; display: grid; gap: .25rem; }
.admin-nav a {
  display: flex; align-items: center; gap: .65rem;
  padding: .65rem .85rem; border-radius: var(--radius-sm);
  color: rgba(255,255,255,.8); font-size: .9rem; transition: background .2s;
}
.admin-nav a:hover { background: rgba(255,255,255,.1); }
.admin-nav a.is-active { background: var(--aqua); color: var(--navy); font-weight: 700; }
.admin-main { flex: 1; min-width: 0; }
.admin-topbar {
  display: none; align-items: center; justify-content: space-between;
  height: 4rem; padding: 0 2rem; background: #fff; border-bottom: 1px solid var(--soft);
}
@media (min-width: 1024px) { .admin-topbar { display: flex; } }
.admin-mobile-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 1rem; background: #fff; border-bottom: 1px solid var(--soft);
  position: sticky; top: 0; z-index: 25;
}
@media (min-width: 1024px) { .admin-mobile-bar { display: none; } }
.admin-content { padding: 1.5rem; }
@media (min-width: 640px) { .admin-content { padding: 2rem; } }

.admin-card { background: #fff; border: 1px solid var(--soft); border-radius: var(--radius); box-shadow: var(--shadow-sm); padding: 1.25rem; }
.admin-table { width: 100%; font-size: .875rem; border-collapse: collapse; }
.admin-table th { background: rgba(232,240,242,.6); color: var(--navy); text-align: left; padding: .75rem; font-weight: 700; font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; }
.admin-table td { padding: .75rem; border-top: 1px solid var(--soft); vertical-align: top; }
.admin-table tr:hover td { background: var(--light); }

.modal-overlay {
  position: fixed; inset: 0; background: rgba(6,42,64,.6); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  z-index: 60; display: flex; align-items: center; justify-content: center; padding: 1rem;
  overflow-y: auto;
}
.modal {
  width: 100%; max-width: 40rem;
  background: #fff; border-radius: var(--radius-xl); padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  max-height: 92vh; overflow-y: auto;
}
@media (min-width: 640px) { .modal { padding: 2rem; } }
.modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.modal-close {
  width: 2.25rem; height: 2.25rem; border-radius: 50%; border: 1px solid var(--soft);
  display: grid; place-items: center; font-size: 1.25rem; color: var(--ink); background: #fff;
}
.kv { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; font-size: .875rem; }
.kv .k { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(16,32,39,.55); }
.kv .v { font-weight: 600; color: var(--navy); }

/* ---------- Saved chip ---------- */
.chip {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .35rem .75rem; border-radius: var(--radius-full);
  font-size: .8rem; font-weight: 600;
  background: rgba(107,203,60,.12); color: #357C00;
}

/* ---------- Login page ---------- */
.login-wrap {
  min-height: 100vh; display: grid; place-items: center; padding: 1rem;
  position: relative; background: var(--light);
}
.login-wrap::before { content: ""; position: absolute; inset: 0; opacity: .6; }
.login-card {
  position: relative; width: 100%; max-width: 26rem;
  background: #fff; border: 1px solid var(--soft); border-radius: var(--radius-xl); padding: 2rem;
  box-shadow: var(--shadow-lg);
}

/* ---------- Utilities ---------- */
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: .25rem; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.mt-1 { margin-top: .25rem; } .mt-2 { margin-top: .5rem; } .mt-3 { margin-top: .75rem; }
.mt-4 { margin-top: 1rem; } .mt-5 { margin-top: 1.25rem; } .mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; } .mt-10 { margin-top: 2.5rem; }
.mb-2 { margin-bottom: .5rem; } .mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; }
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.scroll-strip { overflow-x: auto; }
.scroll-strip::-webkit-scrollbar { display: none; }

/* ---------- Page transitions ---------- */
@keyframes pageIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
main { animation: pageIn .35s var(--ease); }

/* ---------- Print ---------- */
@media print {
  .navbar, .footer, .float-wa, .lightbox { display: none !important; }
}
