/* ==========================================================================
   Wonder Turf — styles.css
   Premium sports-infrastructure look · white base, turf-green accents
   ========================================================================== */

:root {
  --green: #476833;
  --green-dark: #364f26;
  --green-deep: #26371b;
  --sage: #b1b080;
  --orange: #e4b36e;
  --sky: #dbeefc;
  --clay: #a25636;
  --ink: #1e2a16;
  --muted: #5f6b52;
  --bg: #ffffff;
  --tint: #f4f6ec;
  --white: #ffffff;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 10px 30px rgba(38, 55, 27, 0.10);
  --shadow-lg: 0 24px 60px rgba(38, 55, 27, 0.16);
  --font-head: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Barlow", "Helvetica Neue", Arial, sans-serif;
  --nav-h: 76px;
  --ease-spring: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

section[id], main section { scroll-margin-top: calc(var(--nav-h) + 10px); }

/* ---------- shared type ---------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
}
.tag::before {
  content: "";
  width: 26px;
  height: 3px;
  border-radius: 2px;
  background: var(--orange);
}

.section { padding: 96px 0; position: relative; }
.section--tint { background: var(--tint); }

.section__head { max-width: 640px; margin-bottom: 52px; }
.section__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(2.1rem, 4.6vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: 0.005em;
  color: var(--ink);
  margin: 14px 0 16px;
}
.section__lead { color: var(--muted); font-size: 1.06rem; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 14px 30px;
  cursor: pointer;
  transition: transform 0.25s var(--ease-spring), background 0.25s, color 0.25s,
    border-color 0.25s, box-shadow 0.25s;
  will-change: transform;
}
.btn__icon { width: 18px; height: 18px; transition: transform 0.25s var(--ease-spring); }
.btn:hover .btn__icon { transform: translateX(4px); }

.btn--primary { background: var(--green); color: var(--white); box-shadow: 0 10px 24px rgba(71, 104, 51, 0.35); }
.btn--primary:hover { background: var(--green-dark); transform: translateY(-2px); }

.btn--ghost { background: rgba(255, 255, 255, 0.08); color: var(--white); border-color: rgba(255, 255, 255, 0.65); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255, 255, 255, 0.18); border-color: var(--white); transform: translateY(-2px); }

.btn--outline { border-color: var(--green); color: var(--green); background: transparent; }
.btn--outline:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }

.btn--whatsapp { background: #1faf5e; color: var(--white); }
.btn--whatsapp:hover { background: #17924e; transform: translateY(-2px); }

.btn--sm { padding: 10px 22px; font-size: 0.95rem; }
.btn--lg { padding: 16px 36px; font-size: 1.12rem; }
.btn--block { width: 100%; }

/* ---------- chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--tint);
  border: 1px solid #e3e7d6;
  border-radius: 999px;
  padding: 5px 14px;
}
.chip--green { color: var(--green); background: rgba(71, 104, 51, 0.08); border-color: rgba(71, 104, 51, 0.22); }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.35s, box-shadow 0.35s, height 0.35s;
  /* entrance */
  opacity: 0;
  transform: translateY(-16px);
}
html.is-loaded .navbar {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s var(--ease-spring) 0.1s, transform 0.7s var(--ease-spring) 0.1s,
    background 0.35s, box-shadow 0.35s, height 0.35s;
}

.navbar__inner { display: flex; align-items: center; gap: 28px; }

.navbar__brand { flex-shrink: 0; display: flex; align-items: center; }
.navbar__logo { height: 46px; width: auto; }

.navbar__nav { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.navbar__link {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  padding: 8px 20px;
  border-radius: 999px;
  transition: color 0.25s, background 0.25s;
  position: relative;
}
.navbar__link:hover { background: rgba(255, 255, 255, 0.14); }
.navbar__link.is-active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 3px;
  height: 3px;
  border-radius: 2px;
  background: var(--orange);
}

.navbar__cta { margin-left: 4px; }
.navbar__cta-mobile { display: none; }

/* solid state on scroll */
.navbar.is-scrolled {
  background: var(--white);
  box-shadow: 0 6px 24px rgba(38, 55, 27, 0.10);
  height: 64px;
}
.navbar.is-scrolled .navbar__logo { height: 36px; }
.navbar.is-scrolled .navbar__link { color: var(--ink); }
.navbar.is-scrolled .navbar__link:hover { background: rgba(71, 104, 51, 0.08); }
.navbar.is-scrolled .navbar__link.is-active::after { background: var(--green); }

/* hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  z-index: 110;
  margin-left: auto;
}
.navbar__toggle span {
  width: 26px; height: 3px;
  border-radius: 2px;
  background: var(--white);
  transition: transform 0.3s var(--ease-spring), opacity 0.2s, background 0.3s;
}
.navbar.is-scrolled .navbar__toggle span { background: var(--ink); }
body.nav-open .navbar__toggle span { background: var(--ink); }
body.nav-open .navbar__toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .navbar__toggle span:nth-child(2) { opacity: 0; }
body.nav-open .navbar__toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.hero__media { position: absolute; inset: 0; z-index: -1; }
.hero__img--day {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  /* image reveal — last step of the entrance choreography */
  opacity: 0;
  transform: scale(1.08);
}
html.is-loaded .hero__img--day {
  opacity: 1;
  transform: scale(1.02);
  transition: opacity 1.2s ease 0.55s, transform 2.6s var(--ease-spring) 0.55s;
}

.hero__img--night {
  position: absolute; inset: 0;
  background-image: url("../assets/img/hero-night.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0;
}
html.is-loaded .hero__img--night { opacity: 1; transition: opacity 0.8s ease 1.6s; }

.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 32, 13, 0.78) 0%, rgba(21, 32, 13, 0.45) 46%, rgba(21, 32, 13, 0.12) 78%),
    linear-gradient(0deg, rgba(21, 32, 13, 0.55) 0%, rgba(21, 32, 13, 0) 34%);
}

.hero__lines {
  position: absolute;
  top: -6%; right: -4%;
  width: min(46vw, 620px);
  color: rgba(255, 255, 255, 0.10);
  z-index: -1;
  transform: rotate(-8deg);
}

.hero__content { position: relative; padding-top: calc(var(--nav-h) + 28px); padding-bottom: 110px; max-width: 100%; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sky);
  background: rgba(21, 32, 13, 0.35);
  border: 1px solid rgba(219, 238, 252, 0.25);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 9px 20px;
}
.hero__pulse {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(228, 179, 110, 0.7);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(228, 179, 110, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(228, 179, 110, 0); }
  100% { box-shadow: 0 0 0 0 rgba(228, 179, 110, 0); }
}

.hero__title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.98;
  letter-spacing: 0.005em;
  margin: 26px 0 22px;
  text-transform: none;
}
.hero__line { display: block; overflow: hidden; }
.hero__line-inner { display: inline-block; will-change: transform; }
.hero__accent { font-style: normal; color: var(--orange); position: relative; }
.hero__accent::after {
  content: "";
  position: absolute;
  left: 2%; right: 4%; bottom: 0.04em;
  height: 0.14em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 12' preserveAspectRatio='none'%3E%3Cpath d='M2 8 Q 30 2 60 7 T 118 5' fill='none' stroke='%23b1b080' stroke-width='3.5' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  opacity: 0.9;
}

.hero__sub {
  max-width: 520px;
  font-size: 1.14rem;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 34px;
}

.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 54px; }

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 56px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  max-width: 760px;
}
.stat__num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1;
  color: var(--white);
}
.stat__num::after { content: attr(data-suffix); color: var(--orange); }
.stat__label {
  font-size: 0.86rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 4px;
}

.hero__hint {
  position: absolute;
  right: 4%;
  bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
  background: rgba(21, 32, 13, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 8px 16px;
  backdrop-filter: blur(4px);
}
.hero__hint svg { width: 16px; height: 16px; }
.hero__hint.hidden { display: none; }

/* ---------- load choreography (framer-motion-style, staggered) ---------- */
[data-load] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s var(--ease-spring), transform 0.75s var(--ease-spring);
}
[data-load="1"] { transition-delay: 0.15s; }
[data-load="2"] { transition-delay: 0.3s; }
[data-load="3"] { transition-delay: 0.45s; }
[data-load="4"] { transition-delay: 0.6s; }
[data-load="5"] { transition-delay: 0.75s; }
[data-load="6"] { transition-delay: 0.9s; }
html.is-loaded [data-load] { opacity: 1; transform: none; }

/* headline lines: masked slide-up */
.hero__line[data-load] { transform: none; opacity: 1; }
.hero__line[data-load] .hero__line-inner {
  transform: translateY(110%);
  transition: transform 0.9s var(--ease-spring);
}
.hero__line[data-load="2"] .hero__line-inner { transition-delay: 0.3s; }
.hero__line[data-load="3"] .hero__line-inner { transition-delay: 0.45s; }
html.is-loaded .hero__line[data-load] .hero__line-inner { transform: none; }

/* ---------- scroll reveals ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s var(--ease-spring), transform 0.75s var(--ease-spring);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].is-inview { opacity: 1; transform: none; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.about__media { position: relative; }
.about__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.6;
  object-fit: cover;
  width: 100%;
}
.about__media::before {
  content: "";
  position: absolute;
  inset: 22px -22px -22px 22px;
  border: 3px solid var(--sage);
  border-radius: var(--radius);
  z-index: -1;
}
.about__badge {
  position: absolute;
  left: -26px;
  bottom: 30px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px 22px;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.about__badge-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  color: var(--green);
}
.about__badge-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.about__copy { color: var(--muted); margin-bottom: 30px; }
.about__body .section__title { margin-bottom: 14px; }
.about__body .section__lead { margin-bottom: 18px; }

.amenities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 30px;
}
.amenity {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 1px solid #e7ead9;
  border-radius: 14px;
  padding: 13px 16px;
  font-weight: 600;
  font-size: 0.94rem;
}
.amenity__icon {
  flex: 0 0 auto;
  width: 42px; height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(71, 104, 51, 0.10);
  color: var(--green);
}
.amenity__icon svg { width: 22px; height: 22px; }

.about__specs { display: flex; flex-wrap: wrap; gap: 10px; }

/* ==========================================================================
   SPORTS
   ========================================================================== */
.sports { overflow: hidden; }
.sports__lines {
  position: absolute;
  left: -180px; bottom: -120px;
  width: 560px;
  color: rgba(71, 104, 51, 0.07);
  pointer-events: none;
}

.sports__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.sport-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #eef0e2;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}
.sport-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }

.sport-card__media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; }
.sport-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-spring);
}
.sport-card:hover .sport-card__media img { transform: scale(1.07); }

.sport-card__flag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--orange);
  color: var(--green-deep);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 6px 14px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.22);
}

.sport-card__body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.sport-card__toprow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.sport-card__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.05;
  color: var(--ink);
}
.sport-card__dim {
  flex-shrink: 0;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  color: var(--green);
  background: rgba(71, 104, 51, 0.10);
  border-radius: 999px;
  padding: 4px 12px;
}
.sport-card__copy { color: var(--muted); font-size: 0.96rem; margin-bottom: 18px; }
.sport-card__equip-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 10px;
}
.sport-card__body .chips { margin-bottom: 22px; }

.sport-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}
.sport-card__link svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease-spring); }
.sport-card__link:hover svg { transform: translateX(5px); }
.sport-card__link:hover { color: var(--green-dark); }

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.price-card {
  background: var(--white);
  border: 1px solid #eef0e2;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.price-card--featured { border: 2px solid var(--green); position: relative; }

.price-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}
.price-card__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.65rem;
  color: var(--ink);
  line-height: 1.1;
}
.price-card__badge {
  background: var(--orange);
  color: var(--green-deep);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 5px 13px;
}
.price-card__badge--new { background: var(--sky); color: #23527c; }

.price-card__rows { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--tint);
  border-radius: 12px;
  padding: 12px 16px;
}
.price-row--night { background: var(--sky); }
.price-row__slot {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.price-row--night .price-row__slot { color: #2c4a63; }
.moon {
  width: 11px; height: 11px;
  border-radius: 50%;
  box-shadow: inset -3px 0 0 0 currentColor;
  display: inline-block;
  transform: rotate(-18deg);
  color: #2c4a63;
}
.price-row__val {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--green);
  line-height: 1;
}
.price-row__val small { font-size: 0.78rem; font-weight: 600; color: var(--muted); margin-left: 2px; }

.price-card .btn { margin-top: auto; }

.pricing__notes {
  margin-top: 40px;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  background: var(--bg);
  border: 1px dashed var(--sage);
  border-radius: 14px;
  padding: 18px 26px;
}
.pricing__notes strong { color: var(--green); }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery__grid {
  columns: 4 260px;
  column-gap: 18px;
}
.g-item {
  break-inside: avoid;
  margin-bottom: 18px;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
  box-shadow: var(--shadow);
}
.g-item img {
  width: 100%;
  display: block;
  transition: transform 0.7s var(--ease-spring);
}
.g-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(21, 32, 13, 0.55) 0%, transparent 45%);
  opacity: 0;
  transition: opacity 0.35s;
}
.g-item:hover::after { opacity: 1; }
.g-item:hover img { transform: scale(1.06); }

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(16, 24, 10, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vh 4vw;
  backdrop-filter: blur(6px);
}
.lightbox[hidden] { display: none; }
.lightbox__fig { max-width: min(1100px, 92vw); text-align: center; }
.lightbox__fig img {
  max-width: 100%;
  max-height: 78vh;
  border-radius: 14px;
  margin-inline: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}
.lightbox__fig figcaption {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-top: 16px;
}
.lightbox__close, .lightbox__nav {
  position: absolute;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.25s, transform 0.25s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255, 255, 255, 0.25); transform: scale(1.06); }
.lightbox__close { top: 22px; right: 26px; width: 46px; height: 46px; font-size: 1.6rem; line-height: 1; }
.lightbox__nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; }
.lightbox__nav--prev { left: 20px; }
.lightbox__nav--next { right: 20px; }
.lightbox__nav:hover { transform: translateY(-50%) scale(1.06); }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.quote-card {
  background: var(--white);
  border: 1px solid #eef0e2;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s;
}
.quote-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.quote-card__stars {
  color: var(--orange);
  font-size: 1.2rem;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
}
.quote-card__stars .half {
  background: linear-gradient(90deg, var(--orange) 50%, rgba(228, 179, 110, 0.25) 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.quote-card__text {
  color: var(--ink);
  font-size: 1.02rem;
  margin-bottom: 24px;
  flex: 1;
}

.quote-card__who { display: flex; align-items: center; gap: 14px; font-size: 0.92rem; color: var(--muted); line-height: 1.45; }
.quote-card__who strong { color: var(--ink); font-size: 1rem; }
.quote-card__avatar {
  flex: 0 0 auto;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
  align-items: start;
}

.contact__block { margin-bottom: 30px; }
.contact__block-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 12px;
}
.contact__address { color: var(--muted); line-height: 1.75; }

.contact__btns { display: flex; flex-wrap: wrap; gap: 12px; }
.contact__hours { color: var(--muted); }

.contact__form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid #eef0e2;
  padding: 34px 32px;
}

.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__field { margin-bottom: 16px; display: flex; flex-direction: column; }
.form__field label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 7px;
}
.form__optional { color: var(--sage); letter-spacing: 0.04em; text-transform: none; }
.form__field input, .form__field select, .form__field textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--tint);
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 12px 15px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  width: 100%;
  appearance: none;
}
.form__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%235f6b52' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form__field textarea { resize: vertical; min-height: 84px; }
.form__field input:focus, .form__field select:focus, .form__field textarea:focus {
  border-color: var(--green);
  background: var(--white);
}
.form__field input::placeholder, .form__field textarea::placeholder { color: #9aa48d; }

.form__success {
  margin-top: 16px;
  background: rgba(31, 175, 94, 0.10);
  border: 1px solid rgba(31, 175, 94, 0.4);
  color: #157343;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 600;
}
.form__error {
  margin-top: 16px;
  background: rgba(162, 86, 54, 0.08);
  border: 1px solid rgba(162, 86, 54, 0.45);
  color: var(--clay);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact__map {
  margin-top: 56px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #eef0e2;
  line-height: 0;
}
.contact__map iframe { width: 100%; display: block; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.82);
  margin-top: 0;
}
.footer__grass { display: block; width: 100%; height: 40px; color: var(--tint); }

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding: 58px 0 44px;
}

.footer__logo { height: 44px; width: auto; margin-bottom: 18px; }
.footer__blurb { font-size: 0.94rem; color: rgba(255, 255, 255, 0.62); max-width: 300px; margin-bottom: 22px; }

.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: background 0.25s, transform 0.25s var(--ease-spring);
}
.footer__social a:hover { background: var(--green); transform: translateY(-3px); }
.footer__social svg { width: 19px; height: 19px; }

.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.footer__col a { font-size: 0.95rem; color: rgba(255, 255, 255, 0.72); transition: color 0.2s, transform 0.2s; width: fit-content; }
.footer__col a:hover { color: var(--white); transform: translateX(3px); }
.footer__hours { font-size: 0.9rem; color: rgb(221, 218, 218); }

.footer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  padding-bottom: 26px;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1080px) {
  .navbar__nav {
    position: fixed;
    top: 0; right: 0;
    height: 100dvh;
    width: min(340px, 86vw);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 4px;
    padding: 110px 30px 30px;
    box-shadow: -18px 0 50px rgba(38, 55, 27, 0.18);
    transform: translateX(105%);
    transition: transform 0.45s var(--ease-spring);
  }
  body.nav-open .navbar__nav { transform: translateX(0); }
  .navbar__link { color: var(--ink) !important; font-size: 1.3rem; padding: 10px 4px; width: 100%; }
  .navbar__link.is-active::after { background: var(--green); }
  .navbar__cta { display: none; }
  .navbar__cta-mobile { display: inline-flex; margin-top: 18px; }
  .navbar__toggle { display: flex; }

  .about__grid { grid-template-columns: 1fr; gap: 56px; }
  .about__media { max-width: 560px; }
  .sports__grid { grid-template-columns: 1fr 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .testimonials__grid { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .contact__grid { grid-template-columns: 1fr; gap: 44px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .sports__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 18px 34px; }
  .hero__hint { display: none; }
  .hero__content { padding-bottom: 80px; }
  .gallery__grid { columns: 2 140px; column-gap: 12px; }
  .g-item { margin-bottom: 12px; border-radius: 12px; }
  .amenities { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .about__badge { left: 12px; }
  .about__media::before { inset: 14px -14px -14px 14px; }
  .footer__inner { grid-template-columns: 1fr; gap: 30px; padding: 44px 0 36px; }
  .footer__bar { justify-content: center; text-align: center; }
  .lightbox__nav { width: 42px; height: 42px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
}

/* ==========================================================================
   REDUCED MOTION — simple fades only, per the brief
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.2s !important;
    transition-delay: 0s !important;
  }
  [data-load], [data-reveal] { transform: none !important; }
  .hero__img--day { transform: none !important; }
  .hero__img--night { mask-image: none !important; -webkit-mask-image: none !important; opacity: 0 !important; }
  .hero__hint { display: none; }
}
