/* ============================
   Champions Cricket Club — styles
   Theme: Deep Green + Gold (from logo)
   ============================ */

:root {
  --green-900: #0a2e1c;
  --green-800: #0f4d2e;
  --green-700: #14653c;
  --green-600: #1a8c52;
  --gold-500: #d4a843;
  --gold-400: #e8c46a;
  --gold-300: #f0d68a;
  --cream-50: #fbf6e8;
  --cream-100: #f4ecd2;
  --ink-900: #0d1a13;
  --ink-700: #2a3a30;
  --ink-500: #5a6b62;
  --white: #ffffff;
  --red-500: #c44545;

  --shadow-sm: 0 2px 8px rgba(10, 46, 28, 0.08);
  --shadow-md: 0 8px 24px rgba(10, 46, 28, 0.14);
  --shadow-lg: 0 20px 50px rgba(10, 46, 28, 0.25);
  --shadow-gold: 0 8px 24px rgba(212, 168, 67, 0.35);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --font-display: 'Bebas Neue', 'Inter', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --container: 1180px;
  --nav-height: 76px;
}

/* ===== Reset ===== */
* { box-sizing: border-box; }
*, *::before, *::after { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body {
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--cream-50);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
input, textarea, select { font: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.text-gold { color: var(--gold-500); }
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  letter-spacing: 0.18em;
  color: var(--gold-500);
  font-size: 14px;
  margin-bottom: 14px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 14px 26px;
  border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 18px 34px; font-size: 17px; }
.btn--block { width: 100%; }

.btn--gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  color: var(--green-900);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(212,168,67,.45); }

.btn--green {
  background: var(--green-800);
  color: var(--white);
}
.btn--green:hover { background: var(--green-700); transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.4);
}
.btn--ghost:hover { background: rgba(255,255,255,.1); border-color: var(--gold-400); color: var(--gold-300); }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 100;
  background: rgba(10, 46, 28, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
  transition: background .25s ease, box-shadow .25s ease;
}
.nav.is-scrolled {
  background: rgba(10, 46, 28, 0.96);
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
}
.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}
.nav__logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream-50);
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
}
.nav__title {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  line-height: 1;
}
.nav__title em {
  display: block;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--gold-400);
  font-family: var(--font-body);
  font-weight: 600;
  margin-top: 2px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__links a {
  color: rgba(255,255,255,.85);
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color .18s;
}
.nav__links a:not(.btn):hover { color: var(--gold-400); }
.nav__links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav__links a:not(.btn):hover::after { transform: scaleX(1); }

.nav__toggle {
  display: none;
  width: 42px; height: 42px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  transition: transform .25s ease, opacity .25s;
}
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
  color: var(--white);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background:
    /* TO ADD GBP PHOTOS: replace 'none' with url('https://your-gbp-photo-url.jpg') */
    url('none'),
    radial-gradient(ellipse at 70% 20%, rgba(212,168,67,.18), transparent 50%),
    radial-gradient(ellipse at 20% 80%, rgba(26,140,82,.25), transparent 50%),
    linear-gradient(135deg, #07210f 0%, #0f4d2e 60%, #0a2e1c 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.025) 0 1px, transparent 1px 60px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 60px);
  pointer-events: none;
}
.hero::after {
  content: '🏏';
  position: absolute;
  top: 12%; right: 6%;
  font-size: clamp(120px, 22vw, 280px);
  opacity: 0.06;
  filter: hue-rotate(30deg);
  pointer-events: none;
  transform: rotate(-15deg);
}
.hero__overlay {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(212,168,67,.06), transparent 40%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: 60px 24px 100px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 168, 67, 0.14);
  border: 1px solid rgba(212, 168, 67, 0.4);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold-300);
  margin-bottom: 28px;
}
.hero__badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #41e088;
  box-shadow: 0 0 10px #41e088;
  animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.3)} }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 92px);
  line-height: 1.02;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
  text-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.hero__sub {
  font-size: clamp(15px, 1.6vw, 19px);
  max-width: 640px;
  color: rgba(255,255,255,.82);
  margin-bottom: 38px;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 520px;
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 30px;
}
.hero__stats > div { display: flex; flex-direction: column; gap: 4px; }
.hero__stats strong {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--gold-400);
  line-height: 1;
}
.hero__stats span {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero__scroll span {
  width: 4px; height: 8px;
  border-radius: 2px;
  background: var(--gold-400);
  animation: scroll 1.6s infinite;
}
@keyframes scroll { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(14px);opacity:0} }

/* ===== OFFER STRIP ===== */
.offer-strip {
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400), var(--gold-500));
  background-size: 200% 100%;
  color: var(--green-900);
  padding: 16px 0;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer { 0%{background-position:0% 0} 100%{background-position:200% 0} }
.offer-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  font-weight: 600;
}
.offer-strip__pill {
  background: var(--green-900);
  color: var(--gold-400);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.15em;
}
.offer-strip__link {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ===== SECTION BASE ===== */
.section { padding: 100px 0; position: relative; }
.section--dark {
  background: linear-gradient(180deg, #07210f 0%, #0a2e1c 100%);
  color: var(--white);
}
.section--dark::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(212,168,67,.04) 0 1px, transparent 1px 80px);
  pointer-events: none;
}
.section--cream { background: var(--cream-50); }
.section--green {
  background:
    radial-gradient(ellipse at 30% 0%, rgba(212,168,67,.18), transparent 50%),
    linear-gradient(135deg, var(--green-800), var(--green-900));
  color: var(--white);
}
.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
  position: relative;
  z-index: 2;
}
.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
.section__head--light h2 { color: var(--white); }
.section__lead { color: var(--ink-500); font-size: 17px; }
.section--dark .section__lead,
.section--green .section__lead { color: rgba(255,255,255,.78); }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  position: relative;
  z-index: 2;
}
.service-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(212,168,67,.22);
  border-radius: var(--radius-lg);
  padding: 40px;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.service-card::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,168,67,.18), transparent 70%);
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,168,67,.5);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.service-card__icon {
  width: 64px; height: 64px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(212,168,67,.14);
  color: var(--gold-400);
  margin-bottom: 24px;
}
.service-card__icon svg { width: 32px; height: 32px; }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 36px;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.service-card__tag {
  font-size: 14px;
  color: var(--gold-300);
  margin-bottom: 24px;
  font-weight: 500;
}
.service-card__list {
  list-style: none;
  margin-bottom: 28px;
}
.service-card__list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: rgba(255,255,255,.82);
}
.service-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 0;
  color: var(--gold-400);
  font-weight: 700;
}
.service-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 16px 20px;
  background: rgba(0,0,0,.25);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}
.service-card__price .from { font-size: 13px; color: rgba(255,255,255,.6); }
.service-card__price strong {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--gold-400);
  line-height: 1;
}
.service-card__price em {
  font-style: normal;
  font-size: 14px;
  color: rgba(255,255,255,.7);
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.price-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(10,46,28,.08);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: var(--shadow-sm);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card--featured {
  background: linear-gradient(160deg, var(--green-800), var(--green-900));
  color: var(--white);
  border: none;
  box-shadow: var(--shadow-lg);
  transform: translateY(-12px);
}
.price-card--featured:hover { transform: translateY(-16px); }
.price-card--family {
  background: linear-gradient(160deg, var(--gold-400), var(--gold-500));
  color: var(--green-900);
}
.price-card--student {
  background: linear-gradient(160deg, #1a3a6b, #0e2347);
  color: var(--white);
  border: none;
  box-shadow: var(--shadow-lg);
}
.price-card--student:hover { transform: translateY(-6px); }
.price-card__ribbon--student {
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  color: var(--white);
}
.price-card__type--student {
  background: rgba(37,99,235,.25);
  color: #93c5fd;
}
.price-card--student .price-card__rows > div { border-color: rgba(255,255,255,.15); }
.price-card--student .price-card__rows strong { color: #93c5fd; font-size: 38px; }
.price-card--student .price-card__feat { color: rgba(255,255,255,.9); }
.price-card--student .price-card__feat li::marker { color: #93c5fd; }
.price-card--student h3 { color: var(--white); }
.price-card--student .price-card__time { opacity: .7; }

/* ===== UNIFIED PRICING + SPECIALS SUB-HEADINGS ===== */
.pricing-subhead {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 14px;
  margin: 50px 0 24px;
  padding-bottom: 14px;
  border-bottom: 2px dashed rgba(15, 77, 46, 0.2);
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--green-800);
}
.pricing-subhead:first-of-type { margin-top: 30px; }
.pricing-subhead span {
  display: inline-block;
}
.pricing-subhead em {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink-500);
  margin-left: auto;
}
.pricing-subhead--specials {
  border-bottom-color: rgba(212, 168, 67, 0.4);
  background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.08), transparent);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  border-bottom: 2px dashed rgba(212, 168, 67, 0.4);
}
@media (max-width: 720px) {
  .pricing-subhead { font-size: 22px; margin: 40px 0 18px; }
  .pricing-subhead em { width: 100%; margin-left: 0; }
}

/* ===== CHAMPIONS SPECIALS ===== */
.specials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 0;
}
@media (max-width: 1180px) {
  .specials-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
.special-card {
  position: relative;
  padding: 36px 30px 30px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  color: var(--white);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: var(--shadow-md);
}
.special-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.special-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  pointer-events: none;
}
.special-card--refer {
  background: linear-gradient(155deg, #ff7a45 0%, #d94c1f 100%);
}
.special-card--corporate {
  background: linear-gradient(155deg, #0d9488 0%, #115e59 100%);
}
.special-card--loyalty {
  background: linear-gradient(155deg, #6b21a8 0%, #4c1d95 100%);
}
.special-card--student {
  background: linear-gradient(155deg, #1a3a6b 0%, #0e2347 100%);
}
.special-card__badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  color: var(--white);
  margin-bottom: 18px;
  align-self: flex-start;
  position: relative;
  z-index: 1;
}
.special-card__title {
  font-family: var(--font-display);
  font-size: 38px;
  letter-spacing: 0.02em;
  margin: 0 0 6px;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.special-card__hook {
  font-size: 15px;
  opacity: .9;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}
.special-card__hook strong { color: var(--gold-400); }
.special-card__hero {
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.special-card__hero strong {
  display: block;
  font-family: var(--font-display);
  font-size: 52px;
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--gold-400);
}
.special-card__hero strong em {
  font-style: normal;
  font-size: 22px;
  margin-left: 6px;
  color: var(--gold-400);
  opacity: .85;
}
.special-card__hero span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: .8;
}
.special-card__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.special-card__list li {
  padding: 6px 0;
  border-bottom: 1px dashed rgba(255,255,255,.12);
}
.special-card__list li:last-child { border-bottom: none; }
.special-card__list strong { color: var(--gold-400); }
.special-card .btn {
  position: relative;
  z-index: 1;
  margin-top: auto;
}

/* responsive specials */
@media (max-width: 980px) {
  .specials-grid { grid-template-columns: 1fr; gap: 20px; }
  .special-card { padding: 28px 24px 24px; }
  .special-card__title { font-size: 32px; }
  .special-card__hero strong { font-size: 44px; }
}
.price-card__ribbon {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold-500);
  color: var(--green-900);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-card__head { margin-bottom: 22px; }
.price-card__head h3 {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
}
.price-card__time {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.7;
}
.price-card__type {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(212,168,67,.18);
  color: #a17c2a;
  margin-bottom: 10px;
}
.price-card--featured .price-card__type {
  background: rgba(212,168,67,.25);
  color: var(--gold-300);
}
.price-card__type--pro {
  background: rgba(196,69,69,.14);
  color: var(--red-500);
}
.price-card__type--fam {
  background: rgba(10,46,28,.18);
  color: var(--green-900);
}
.price-card__rows small {
  font-size: 11px;
  opacity: .7;
  font-weight: 500;
  margin-left: 4px;
}
.service-card__price em small {
  font-size: 11px;
  opacity: 0.75;
  font-weight: 500;
  display: block;
}
.price-card__rows { margin-bottom: 22px; }
.price-card__rows > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0,0,0,.12);
}
.price-card--featured .price-card__rows > div { border-color: rgba(255,255,255,.15); }
.price-card__rows span { font-size: 14px; opacity: .8; }
.price-card__rows strong {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.02em;
}
.price-card--featured .price-card__rows strong { color: var(--gold-400); }
.price-card__rows em { font-style: normal; font-size: 12px; opacity: .75; margin-left: 4px; }
.price-card__feat {
  list-style: none;
  font-size: 14px;
  margin-top: auto;
}
.price-card__feat li { padding: 6px 0; opacity: .85; }

.pricing__note {
  text-align: center;
  margin-top: 36px;
  color: var(--ink-500);
  font-size: 14px;
}

/* ===== BOOKING — TABS + INLINE CALENDAR ===== */
.book-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}
.book-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 16px 18px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(212,168,67,.25);
  border-radius: var(--radius-md);
  color: var(--white);
  cursor: pointer;
  transition: transform .2s, background .2s, border-color .2s;
  text-align: center;
}
.book-tab:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--gold-400);
  transform: translateY(-2px);
}
.book-tab.is-active {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  border-color: var(--gold-300);
  color: var(--green-900);
  box-shadow: var(--shadow-gold);
}
.book-tab__type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.8;
}
.book-tab.is-active .book-tab__type { opacity: 1; }
.book-tab--pro:not(.is-active) .book-tab__type { color: #ff8b8b; }
.book-tab__name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  line-height: 1;
}

.book-frames {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 14px;
  border: 1px solid rgba(212,168,67,.3);
  box-shadow: var(--shadow-lg);
  min-height: 640px;
  overflow: hidden;
}
.book-frame {
  display: none;
  position: relative;
  min-height: 620px;
}
.book-frame.is-active { display: block; }
.book-frame__loading {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-500);
  font-weight: 600;
  background: var(--cream-50);
  border-radius: var(--radius-md);
}
.book-frame__loading--failed {
  background: linear-gradient(135deg, #fff8e7 0%, #fff 100%);
  border: 2px dashed var(--gold-400);
}
.book-frame__fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  max-width: 420px;
  margin: 0 auto;
}
.book-frame__fallback-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--green-800);
  margin: 0 0 4px;
}
.book-frame__fallback-sub {
  font-size: 14px;
  color: var(--ink-500);
  margin: 0 0 20px;
  font-weight: 500;
}
.book-frame__fallback-btn {
  margin-bottom: 14px;
  min-width: 220px;
}
.book-frame__fallback-wa {
  font-size: 13px;
  color: var(--green-800);
  text-decoration: underline;
  font-weight: 600;
}
.book-frame__fallback-wa:hover { color: var(--gold-500); }
.book-frame iframe {
  width: 100%;
  border: 0;
  border-radius: var(--radius-md);
  min-height: 620px;
}
.book-note {
  text-align: center;
  margin-top: 24px;
  color: rgba(255,255,255,.75);
  font-size: 14px;
}
.book-note a {
  color: var(--gold-400);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.book-note a:hover { color: var(--gold-300); }

/* ===== ABOUT ===== */
.about {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}
.about__copy h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.05;
  margin-bottom: 24px;
}
.about__copy p {
  margin-bottom: 18px;
  color: var(--ink-700);
  font-size: 17px;
}
.about__list {
  list-style: none;
  margin: 28px 0 36px;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(10,46,28,.08);
}
.about__list span {
  display: grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gold-400);
  color: var(--green-900);
  font-weight: 800;
  flex-shrink: 0;
}
.about__visual {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
.about__badge {
  width: 80%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--green-700), var(--green-900));
  display: grid;
  place-items: center;
  padding: 14%;
  box-shadow: var(--shadow-lg), inset 0 0 60px rgba(0,0,0,.3);
  border: 4px solid var(--gold-500);
}
.about__badge img {
  width: 100%;
  border-radius: 50%;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,.4));
}
.about__chip {
  position: absolute;
  background: var(--white);
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(212,168,67,.3);
  animation: float 4s ease-in-out infinite;
}
.about__chip--1 { top: 10%; right: 0; }
.about__chip--2 { bottom: 18%; left: -8%; animation-delay: 1.2s; }
.about__chip--3 { bottom: 4%; right: 6%; animation-delay: 2.2s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }

/* ===== RULES ===== */
.rules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.rule-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(212,168,67,.18);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: transform .25s ease, border-color .25s;
}
.rule-card:hover { transform: translateY(-4px); border-color: var(--gold-400); }
.rule-card__icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: rgba(212,168,67,.14);
  border-radius: 14px;
  font-size: 28px;
  margin-bottom: 18px;
}
.rule-card h3 {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  color: var(--gold-400);
}
.rule-card p { color: rgba(255,255,255,.78); font-size: 15px; }

/* ===== FAQ ===== */
.faq {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq__item {
  background: var(--white);
  border: 1px solid rgba(10,46,28,.08);
  border-radius: var(--radius-md);
  padding: 0;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s;
  overflow: hidden;
}
.faq__item[open] {
  border-color: var(--gold-400);
  box-shadow: var(--shadow-md);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 700;
  font-size: 17px;
  color: var(--green-800);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: relative;
  transition: color .2s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  background: rgba(212,168,67,.16);
  color: var(--gold-500);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform .25s, background .2s;
}
.faq__item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
  background: var(--gold-400);
  color: var(--green-900);
}
.faq__item summary:hover { color: var(--gold-500); }
.faq__item p {
  padding: 0 24px 22px;
  color: var(--ink-700);
  font-size: 15.5px;
  line-height: 1.65;
}
.faq__item p a {
  color: var(--green-700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.faq__item p a:hover { color: var(--gold-500); }

/* ===== CONTACT ===== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}
.contact__info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact__item {
  display: flex;
  gap: 18px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(10,46,28,.06);
  box-shadow: var(--shadow-sm);
}
.contact__icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--green-800);
  border-radius: 12px;
  font-size: 22px;
  flex-shrink: 0;
}
.contact__item h4 {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  color: var(--green-800);
}
.contact__item p { color: var(--ink-700); }
.contact__item a { color: var(--green-700); font-weight: 600; }
.contact__item a:hover { color: var(--gold-500); }
.contact__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: 13px;
  color: var(--gold-500) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== MAP ===== */
.map {
  grid-column: 1 / -1;
  margin-top: 50px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid rgba(10,46,28,.08);
  box-shadow: var(--shadow-md);
}
.map__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}
.map__head h3 {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--green-800);
}
.map__frame {
  position: relative;
  width: 100%;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid rgba(212,168,67,.25);
}
.map__frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(10,46,28,.08);
  box-shadow: var(--shadow-md);
}
.contact__form h3 {
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.02em;
  color: var(--green-800);
  margin-bottom: 22px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact__form label {
  display: block;
  margin-bottom: 14px;
}
.contact__form span {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  margin-bottom: 6px;
}
.contact__form input,
.contact__form select,
.contact__form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(10,46,28,.12);
  border-radius: var(--radius-sm);
  background: var(--cream-50);
  color: var(--ink-900);
  transition: border-color .18s, background .18s;
}
.contact__form input:focus,
.contact__form select:focus,
.contact__form textarea:focus {
  outline: 0;
  border-color: var(--gold-500);
  background: var(--white);
}
.contact__form textarea { resize: vertical; }
.form-status { margin-top: 14px; font-size: 14px; min-height: 20px; font-weight: 600; }
.form-status.is-success { color: var(--green-700); }
.form-status.is-error { color: var(--red-500); }

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, #07210f, #04150a);
  color: rgba(255,255,255,.7);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 24px 40px;
}
.footer__brand { display: flex; align-items: center; gap: 14px; }
.footer__brand img { width: 56px; height: 56px; border-radius: 50%; background: var(--cream-50); }
.footer__brand strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
}
.footer__brand span { font-size: 13px; color: var(--gold-400); }
.footer__links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer__links a {
  color: rgba(255,255,255,.7);
  font-size: 14px;
  font-weight: 500;
  transition: color .18s;
}
.footer__links a:hover { color: var(--gold-400); }
.footer__cta {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  font-size: 13px;
}
.footer__bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,.4);
  z-index: 99;
  transition: transform .2s;
}
.whatsapp-fab svg { width: 28px; height: 28px; }
.whatsapp-fab:hover { transform: scale(1.08); }

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .book-tabs { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; gap: 50px; }
  .about__visual { max-width: 360px; margin: 0 auto; }
  .rules-grid { grid-template-columns: repeat(2, 1fr); }
  .contact { grid-template-columns: 1fr; }
  .map__head { flex-direction: column; align-items: flex-start; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__brand { justify-content: center; }
  .footer__cta { justify-content: center; }
}

@media (max-width: 720px) {
  :root { --nav-height: 68px; }
  .section { padding: 70px 0; }
  .nav__title em { display: none; }
  .nav__title { font-size: 18px; }
  .nav__links {
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: rgba(7, 33, 15, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 4px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s, transform .25s;
    border-bottom: 1px solid rgba(212,168,67,.15);
  }
  .nav__links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .nav__links a {
    padding: 14px 8px;
    border-bottom: 1px solid rgba(255,255,255,.06);
    font-size: 16px;
  }
  .nav__links a:not(.btn)::after { display: none; }
  .nav__links .btn { margin-top: 10px; align-self: stretch; }
  .nav__toggle { display: flex; }

  .hero__inner { padding: 40px 24px 80px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__stats { gap: 12px; }

  .pricing-grid { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-4px); }

  .rules-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  .service-card { padding: 30px 24px; }
  .contact__form { padding: 26px; }

  .about__chip { font-size: 12px; padding: 8px 14px; }

  .book-tabs { grid-template-columns: 1fr 1fr; gap: 8px; }
  .book-tab { padding: 12px 14px; }
  .book-tab__name { font-size: 18px; }
  .book-frames { padding: 8px; min-height: 560px; }
  .book-frame, .book-frame iframe { min-height: 540px; }
  .map__frame { height: 300px; }
}
