/* ============================================================
   CO2B_PB — PICKLEBALL COACHING SITE
   Dark athletic palette: #0D0D0D bg, #C8F135 neon green accent
   Fonts: Bebas Neue (display) + Inter (body)
   ============================================================ */

:root {
  /* Brand palette */
  --green:        #C8F135;
  --green-dim:    #9FBF25;
  --green-glow:   rgba(200,241,53,0.18);
  --green-subtle: rgba(200,241,53,0.08);

  --bg:           #0D0D0D;
  --bg-2:         #111111;
  --bg-3:         #161616;
  --bg-card:      #131313;
  --border:       rgba(255,255,255,0.07);
  --border-green: rgba(200,241,53,0.25);

  --text:         #F0F0EE;
  --text-muted:   #888884;
  --text-faint:   #444441;

  /* Type */
  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', sans-serif;

  /* Scale */
  --text-xs:   clamp(0.75rem,  0.7rem  + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem  + 0.35vw, 1rem);
  --text-base: clamp(1rem,     0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem    + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem,   1.2rem  + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem,     1.2rem  + 2.5vw,  3.5rem);
  --text-3xl:  clamp(2.5rem,   1rem    + 4vw,    5rem);
  --text-hero: clamp(3.5rem,   1rem    + 7vw,    8rem);

  /* Spacing */
  --sp-1: 0.25rem; --sp-2: 0.5rem;  --sp-3: 0.75rem;
  --sp-4: 1rem;    --sp-5: 1.25rem; --sp-6: 1.5rem;
  --sp-8: 2rem;    --sp-10: 2.5rem; --sp-12: 3rem;
  --sp-16: 4rem;   --sp-20: 5rem;   --sp-24: 6rem;

  /* Radii */
  --r-sm: 0.375rem;
  --r-md: 0.625rem;
  --r-lg: 1rem;
  --r-xl: 1.5rem;

  /* Transitions */
  --ease: 200ms cubic-bezier(0.16,1,0.3,1);

  /* Shadows */
  --shadow-card: 0 2px 16px rgba(0,0,0,0.5);
  --shadow-green: 0 0 24px rgba(200,241,53,0.2);

  --content-default: 1100px;
}

/* BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.65;
  min-height: 100dvh;
}

img, video { display: block; max-width: 100%; height: auto; }
ul[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1,h2,h3,h4 { text-wrap: balance; line-height: 1.1; }
p, li { text-wrap: pretty; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--green); color: #000; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: var(--r-sm); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: var(--content-default);
  margin-inline: auto;
  padding-inline: clamp(var(--sp-4), 5vw, var(--sp-12));
}

/* SECTIONS */
.section {
  padding-block: clamp(var(--sp-12), 8vw, var(--sp-24));
}

/* ============================================================ NAV */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.6); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
  height: 68px;
}

.logo-link { display: flex; align-items: center; flex-shrink: 0; }
.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: var(--r-sm);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  list-style: none;
}
.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  transition: color var(--ease), background var(--ease);
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,0.05); }

.nav-ig {
  display: flex !important;
  align-items: center;
  padding: var(--sp-2) !important;
  color: var(--text-muted) !important;
}
.nav-ig:hover { color: var(--green) !important; }

.nav-cta {
  background: var(--green) !important;
  color: #000 !important;
  font-weight: 700 !important;
  padding: var(--sp-2) var(--sp-4) !important;
  border-radius: var(--r-md) !important;
  transition: background var(--ease), box-shadow var(--ease) !important;
}
.nav-cta:hover {
  background: #d8ff45 !important;
  box-shadow: var(--shadow-green) !important;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: var(--sp-2);
  border-radius: var(--r-sm);
}
.mobile-menu {
  display: none;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: var(--sp-4) 0 var(--sp-6);
}
.mobile-menu ul { list-style: none; }
.m-link {
  display: block;
  padding: var(--sp-3) clamp(var(--sp-4), 5vw, var(--sp-12));
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-muted);
  border-left: 3px solid transparent;
  transition: color var(--ease), border-color var(--ease);
}
.m-link:hover { color: var(--text); border-color: var(--green); }
.m-cta {
  color: var(--green) !important;
  font-weight: 700 !important;
  border-color: var(--green) !important;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .mobile-menu.open { display: block; }
}

/* ============================================================ HERO */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,241,53,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,241,53,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(ellipse, rgba(200,241,53,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero-inner {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
  padding-top: clamp(var(--sp-12), 8vw, var(--sp-24));
  padding-bottom: clamp(var(--sp-8), 4vw, var(--sp-16));
  position: relative;
  z-index: 1;
}

.hero-copy { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-subtle);
  border: 1px solid var(--border-green);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-xl);
  margin-bottom: var(--sp-6);
}
.badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: var(--sp-5);
}
.hero-accent { color: var(--green); display: block; }

.hero-sub {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
  max-width: 48ch;
}

.hero-actions {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

/* Hero logo */
.hero-logo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo-glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(ellipse, rgba(200,241,53,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-logo-img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: var(--r-lg);
  filter: drop-shadow(0 0 40px rgba(200,241,53,0.2));
  animation: float 5s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Hero strip */
.hero-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
}
.hero-strip-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  padding-block: var(--sp-4);
  flex-wrap: wrap;
}
.strip-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.strip-item svg { color: var(--green); flex-shrink: 0; }
.strip-ig { color: var(--green) !important; transition: opacity var(--ease); }
.strip-ig:hover { opacity: 0.75; }
.strip-div {
  width: 1px;
  height: 16px;
  background: var(--border);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
    padding-top: var(--sp-10);
  }
  .hero-logo-wrap { order: -1; }
  .hero-logo-img { max-width: 260px; margin-inline: auto; }
  .hero-glow { right: -30%; width: 80vw; }
  .hero-strip-inner { gap: var(--sp-4); }
  .strip-div { display: none; }
}

/* ============================================================ BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.5rem;
  border-radius: var(--r-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease);
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--green);
  color: #000;
  border-color: var(--green);
}
.btn-primary:hover {
  background: #d8ff45;
  box-shadow: 0 0 20px rgba(200,241,53,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green-subtle);
  box-shadow: 0 0 16px rgba(200,241,53,0.15);
}
.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================ SECTION HEADERS */
.section-header {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  margin-bottom: clamp(var(--sp-8), 5vw, var(--sp-16));
}
.eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: var(--sp-3);
}
.section-title {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: var(--sp-4);
}
.section-desc {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================ SERVICES */
.services { background: var(--bg); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  align-items: start;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.card:hover {
  border-color: var(--border-green);
  box-shadow: 0 0 32px rgba(200,241,53,0.08);
  transform: translateY(-2px);
}
.card--featured {
  border-color: var(--green);
  background: linear-gradient(160deg, rgba(200,241,53,0.06) 0%, var(--bg-card) 60%);
  box-shadow: 0 0 32px rgba(200,241,53,0.1);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-1);
}
.card-icon {
  width: 48px; height: 48px;
  background: var(--green-subtle);
  border: 1px solid var(--border-green);
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  color: var(--green);
  flex-shrink: 0;
}
.card-pill {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #000;
  background: var(--green);
  padding: 0.2em 0.75em;
  border-radius: var(--r-xl);
}

.card h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.card-price {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.02em;
  color: var(--green);
  line-height: 1;
}
.card-price span { font-size: var(--text-base); color: var(--text-muted); font-family: var(--font-body); letter-spacing: 0; }
.card-desc { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.65; }

.card-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
}
.card-list li {
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding-left: var(--sp-5);
  position: relative;
  line-height: 1.5;
}
.card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px; height: 10px;
  background: var(--green);
  border-radius: 50%;
  opacity: 0.7;
}

.services-note {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: var(--text-faint);
  margin-top: var(--sp-8);
  text-align: center;
  justify-content: center;
}
.services-note svg { color: var(--text-faint); flex-shrink: 0; }

@media (max-width: 900px) {
  .cards-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

/* ============================================================ ABOUT */
.about { background: var(--bg-2); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(var(--sp-10), 8vw, var(--sp-20));
  align-items: center;
}

.about-visual {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  align-items: center;
}
.about-logo-wrap {
  position: relative;
  width: 100%;
  max-width: 340px;
}
.about-logo-wrap::before {
  content: '';
  position: absolute;
  inset: -8%;
  background: radial-gradient(ellipse, rgba(200,241,53,0.12), transparent 70%);
  border-radius: 50%;
}
.about-logo-img {
  width: 100%;
  border-radius: var(--r-lg);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 32px rgba(0,0,0,0.6));
}

.about-cred-stack {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  width: 100%;
  max-width: 340px;
}
.cred-tile {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  transition: border-color var(--ease);
}
.cred-tile:hover { border-color: var(--border-green); }
.cred-tile svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.cred-name { font-size: var(--text-sm); font-weight: 600; color: var(--text); }
.cred-where { font-size: var(--text-xs); color: var(--text-muted); margin-top: 2px; }

.about-copy { display: flex; flex-direction: column; gap: var(--sp-5); }
.about-copy .eyebrow { margin-bottom: 0; }
.about-copy .section-title { margin-bottom: 0; }
.about-copy p { font-size: var(--text-base); color: var(--text-muted); line-height: 1.75; }

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}
.tag {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--green);
  background: var(--green-subtle);
  border: 1px solid var(--border-green);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-xl);
}

@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .about-logo-wrap, .about-cred-stack { max-width: 100%; }
}

/* ============================================================ SPONSORS */
.sponsors { background: var(--bg); }

.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.sponsor-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  text-decoration: none;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
  cursor: pointer;
}
.sponsor-card:hover {
  border-color: var(--border-green);
  box-shadow: 0 0 28px rgba(200,241,53,0.08);
  transform: translateY(-2px);
}

.sponsor-icon {
  width: 56px; height: 56px;
  background: var(--green-subtle);
  border: 1px solid var(--border-green);
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  color: var(--green);
}
.sponsor-name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text);
}
.sponsor-role {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
}
.sponsor-detail {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.6;
}
.sponsor-link { color: var(--green); }

@media (max-width: 768px) {
  .sponsors-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

/* ============================================================ TESTIMONIALS */
.testimonials { background: var(--bg-2); }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}

.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  transition: border-color var(--ease);
}
.testi-card:hover { border-color: var(--border-green); }

.stars { color: var(--green); font-size: 1.1rem; letter-spacing: 2px; }
.testi-card > p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}
.testi-card footer {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: auto;
}
.testi-avatar {
  width: 40px; height: 40px;
  background: var(--green-subtle);
  border: 1px solid var(--border-green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--green);
  flex-shrink: 0;
}
.testi-name { font-size: var(--text-sm); font-weight: 600; color: var(--text); }
.testi-detail { font-size: var(--text-xs); color: var(--text-muted); margin-top: 2px; }

@media (max-width: 900px) {
  .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

/* ============================================================ FAQ */
.faq { background: var(--bg); }
.faq-wrap { max-width: 760px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--ease);
}
.faq-item[open] { border-color: var(--border-green); }

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: color var(--ease), background var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(255,255,255,0.03); color: var(--green); }
.faq-item[open] summary { color: var(--green); }

.chev {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: var(--text-muted);
}
.faq-item[open] .chev { transform: rotate(180deg); color: var(--green); }

.faq-body {
  padding: 0 var(--sp-6) var(--sp-5);
  border-top: 1px solid var(--border);
}
.faq-body p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.75;
  padding-top: var(--sp-4);
  max-width: none;
}
.faq-body a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================ CONTACT */
.contact { background: var(--bg-2); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(var(--sp-10), 8vw, var(--sp-20));
  align-items: start;
}

.contact-copy { display: flex; flex-direction: column; gap: var(--sp-5); }
.contact-copy .section-title { margin-bottom: 0; }
.contact-copy > p { font-size: var(--text-base); color: var(--text-muted); line-height: 1.7; }

.contact-perks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.contact-perks li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  color: var(--text-muted);
}
.contact-perks svg { color: var(--green); flex-shrink: 0; }

.contact-era-link {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: var(--text-faint);
}
.contact-era-link svg { color: var(--green); flex-shrink: 0; }
.contact-era-link a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

/* FORM */
.form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: clamp(var(--sp-6), 4vw, var(--sp-10));
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.form-group label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.req { color: var(--green); margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0.75rem var(--sp-4);
  font-size: var(--text-sm);
  color: var(--text);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  width: 100%;
  -webkit-appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888884' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-faint); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(200,241,53,0.12);
}
.form-group input.error,
.form-group select.error { border-color: #ff6b6b; }

/* Form success */
.form-success {
  text-align: center;
  padding: var(--sp-10) var(--sp-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}
.success-icon {
  width: 72px; height: 72px;
  background: var(--green-subtle);
  border: 2px solid var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green);
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green);
}
.form-success p { font-size: var(--text-base); color: var(--text-muted); max-width: 40ch; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================ FOOTER */
.site-footer {
  background: #0A0A0A;
  border-top: 1px solid var(--border);
  padding-block: var(--sp-12);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
  text-align: center;
}

.footer-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  border-radius: var(--r-sm);
  margin-inline: auto;
}
.footer-brand p { font-size: var(--text-sm); color: var(--text-muted); margin-top: var(--sp-2); }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  justify-content: center;
}
.footer-nav a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-sm);
  transition: color var(--ease);
}
.footer-nav a:hover { color: var(--green); }

.footer-affiliates {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-3);
  justify-content: center;
  font-size: var(--text-xs);
  color: var(--text-faint);
}
.footer-affiliates a {
  color: var(--text-faint);
  transition: color var(--ease);
}
.footer-affiliates a:hover { color: var(--green); }
.ig-footer-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-weight: 600;
}

.footer-copy {
  font-size: var(--text-xs);
  color: var(--text-faint);
}

/* ============================================================ ERA DISCOUNT BANNER */
.era-discount-banner {
  margin-top: var(--sp-6);
  background: linear-gradient(135deg, rgba(200,241,53,0.07) 0%, rgba(200,241,53,0.03) 100%);
  border: 1px solid var(--border-green);
  border-radius: var(--r-xl);
  padding: var(--sp-6) var(--sp-8);
}
.era-discount-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  flex-wrap: wrap;
}
.era-discount-icon {
  width: 48px; height: 48px;
  background: var(--green-subtle);
  border: 1px solid var(--border-green);
  border-radius: var(--r-md);
  display: grid;
  place-items: center;
  color: var(--green);
  flex-shrink: 0;
}
.era-discount-copy {
  flex: 1;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.era-discount-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text);
}
.era-discount-sub {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.6;
}
.era-discount-sub a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.era-discount-btn {
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .era-discount-inner { flex-direction: column; align-items: flex-start; }
  .era-discount-btn { width: 100%; justify-content: center; }
}

.contact-perks a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.contact-perks a:hover { opacity: 0.8; }
.footer-email {
  display: inline-block;
  font-size: var(--text-sm);
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: var(--sp-1);
  transition: opacity var(--ease);
}
.footer-email:hover { opacity: 0.75; }

/* ============================================================ HERO PHOTO */
.hero-photo-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.hero-action-img {
  width: 100%;
  max-width: 480px;
  height: 580px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--r-xl);
  display: block;
  filter: brightness(0.92);
  box-shadow: 0 0 60px rgba(200,241,53,0.15), 0 24px 60px rgba(0,0,0,0.6);
  border: 1px solid var(--border-green);
}
.hero-photo-overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  background: linear-gradient(to top, rgba(13,13,13,0.4) 0%, transparent 50%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-action-img {
    max-width: 100%;
    height: 320px;
  }
}

/* ============================================================ GALLERY */
.gallery { background: var(--bg-2); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: var(--sp-3);
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color var(--ease), transform var(--ease);
}
.gallery-item:hover {
  border-color: var(--border-green);
  transform: scale(1.01);
}
.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item--tall {
  grid-row: span 2;
}
.gallery-item--tall img {
  height: 100%;
  min-height: 400px;
}

.gallery-item--wide {
  grid-column: span 2;
}
.gallery-item--wide img {
  height: 280px;
  object-position: center 30%;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--tall { grid-row: span 1; }
  .gallery-item--tall img { height: 220px; min-height: unset; }
  .gallery-item--wide { grid-column: span 2; }
  .gallery-item img { height: 220px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--wide { grid-column: span 1; }
  .gallery-item img, .gallery-item--tall img { height: 260px; }
}

/* Intake nav link */
.nav-intake {
  font-size: var(--text-sm) !important;
  font-weight: 600 !important;
  color: var(--green) !important;
  border: 1px solid var(--border-green) !important;
  border-radius: var(--r-md) !important;
  padding: var(--sp-2) var(--sp-3) !important;
  transition: background var(--ease) !important;
}
.nav-intake:hover { background: var(--green-subtle) !important; }

/* Intake callout block in contact section */
.intake-link-block {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: var(--green-subtle);
  border: 1px solid var(--border-green);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  text-decoration: none;
  transition: background var(--ease), box-shadow var(--ease);
  margin-top: var(--sp-2);
}
.intake-link-block:hover {
  background: rgba(200,241,53,0.12);
  box-shadow: 0 0 16px rgba(200,241,53,0.1);
}
.intake-link-block > svg:first-child { color: var(--green); flex-shrink: 0; }
.intake-link-block > svg:last-child { color: var(--green); flex-shrink: 0; margin-left: auto; }
.intake-link-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text);
}
.intake-link-sub {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-top: 2px;
}
