/* =========================================================================
   Banshee Jet Boats — Dark Synthwave Premium
   Phase 1 stylesheet. No framework, no bundler. Plain CSS with custom props.
   ========================================================================= */

/* --- Tokens ------------------------------------------------------------- */

:root {
  /* Backgrounds */
  --bg-primary:   #0a0a0f;
  --bg-secondary: #141420;
  --bg-tertiary:  #1c1c2a;

  /* Text */
  --text-primary:   #ffffff;
  --text-secondary: #a8a8b8;

  /* Structure */
  --border: #2a2a3a;

  /* Neon accents */
  --neon-pink:   #ff3b8d;
  --neon-yellow: #ffd23f;
  --neon-cyan:   #00e5ff;
  --neon-blue:   #2a6fff;

  /* Glows */
  --glow-pink-soft:   0 0 24px rgba(255, 59, 141, 0.25);
  --glow-pink:        0 0 32px rgba(255, 59, 141, 0.45), 0 0 80px rgba(255, 59, 141, 0.18);
  --glow-cyan-soft:   0 0 16px rgba(0, 229, 255, 0.35);

  /* Typography — primary pairing: Chakra Petch + Space Grotesk.
     Alternates (uncomment the pair + update the Google Fonts <link> in the
     template):
       • Orbitron + Inter:        --font-display: 'Orbitron', ...; --font-body: 'Inter', ...;
       • Chakra Petch + Inter:    --font-display: 'Chakra Petch', ...; --font-body: 'Inter', ...;
  */
  --font-display: 'Chakra Petch', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Space Grotesk', 'Inter', 'Segoe UI', system-ui, sans-serif;

  /* Layout */
  --max-w: 1400px;
  --header-h: 130px; /* 3-row desktop: logo + phone + nav */
}

@media (max-width: 768px) {
  :root { --header-h: 96px; } /* taller on mobile: logo row + click-to-call row */
}

/* --- Reset / base ------------------------------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

h1, h2, h3, h4, h5, h6 { margin: 0; font-family: var(--font-display); }
p { margin: 0; }

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

button {
  font: inherit;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--neon-cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* --- Ambience (subtle radial glows behind content) --------------------- */

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(60vw 60vw at 10% 110%, rgba(42, 111, 255, 0.08), transparent 60%),
    radial-gradient(50vw 50vw at 100% 0%, rgba(255, 59, 141, 0.06), transparent 60%);
}

/* --- Header / nav ------------------------------------------------------- */

/* Desktop: two-row header — logo centered on top, nav centered below.
   Mobile: single-row — logo centered, hamburger pinned to the right. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: var(--header-h);
  padding: 0.9rem clamp(1rem, 3vw, 1.75rem);
  background: rgba(10, 10, 15, 0.72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--border);
}

.logo-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.35rem, 3.5vw, 2rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  text-align: center;
  background: linear-gradient(90deg, var(--neon-pink) 0%, var(--neon-yellow) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 14px rgba(255, 59, 141, 0.35));
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

/* Click-to-call — visible in the header at every breakpoint */
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: none;
  color: var(--text-primary);
  text-decoration: none;
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
  transition: color 0.15s ease, background 0.15s ease;
}
.header-phone:hover,
.header-phone:focus-visible { color: var(--neon-pink); }
.header-phone:active {
  background: rgba(255, 59, 141, 0.12);
  color: var(--neon-pink);
}
.header-phone-icon {
  width: 12px;
  height: 12px;
  color: var(--neon-pink);
  filter: drop-shadow(0 0 4px rgba(255, 59, 141, 0.55));
  flex-shrink: 0;
}

.nav-menu a {
  position: relative;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0.5rem 0;
  transition: color 0.2s;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--text-primary);
}
.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
}

/* Hamburger */

.nav-toggle {
  display: none;
  padding: 8px;
  position: relative;
  z-index: 60;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px 0;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.75rem 1.25rem;
  }
  .nav-toggle {
    display: block;
    position: absolute;
    right: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
  }
  .logo-wordmark {
    letter-spacing: 0.24em;
  }
  .header-phone {
    font-size: 0.82rem;
  }
  .nav-menu {
    position: fixed;
    inset: 0;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 0 1.5rem;
    background: rgba(10, 10, 15, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
    z-index: 55;
  }
  .nav-menu.is-open {
    transform: translateX(0);
  }
  .nav-menu a {
    font-size: 1.5rem;
    letter-spacing: 0.18em;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
  }
  .nav-menu a::after {
    left: 50%; right: auto;
    width: 48px;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
  }
  .nav-menu a:hover::after,
  .nav-menu a:focus-visible::after {
    transform: translateX(-50%) scaleX(1);
  }
}

/* --- Hero --------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  margin-top: calc(-1 * var(--header-h)); /* let hero bleed under sticky header */
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  /* boat colors stay vivid — only the overlay darkens for legibility */
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(60% 50% at 50% 40%, rgba(42, 111, 255, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(10, 10, 15, 0.60) 0%, rgba(10, 10, 15, 0.85) 100%);
}

.hero-scanlines {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.05) 0 1px,
    transparent 1px 3px
  );
  mix-blend-mode: overlay;
  opacity: 0.45;
}

.hero-content {
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 840px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 8vw, 5.75rem);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 1.1rem;
  filter: drop-shadow(0 0 28px rgba(255, 59, 141, 0.35));
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  margin: 0 auto 2.25rem;
  max-width: 52ch;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--text-secondary);
}
.hero-scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, var(--neon-pink), transparent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.5; transform: scaleY(0.85); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

@media (max-width: 500px) {
  .hero-scroll-hint { display: none; }
}

/* --- Gradient text / underline utilities ------------------------------- */

.gradient-text {
  background: linear-gradient(90deg, var(--neon-pink) 0%, var(--neon-yellow) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.gradient-underline {
  display: inline-block;
  position: relative;
  padding-bottom: 0.35em;
}
.gradient-underline::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 2.75rem;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow));
  box-shadow: 0 0 12px rgba(255, 59, 141, 0.35);
}

/* --- Sections ----------------------------------------------------------- */

.section {
  padding: clamp(4rem, 9vw, 7rem) 0;
}

.section-title {
  font-weight: 700;
  font-size: clamp(1.8rem, 4.5vw, 2.75rem);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 2rem;
}

.lead {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 62ch;
  margin-bottom: 1rem;
}

.body {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 70ch;
  line-height: 1.7;
}

/* --- Dividers ----------------------------------------------------------- */

.divider {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 59, 141, 0.35) 35%,
    rgba(255, 210, 63, 0.35) 65%,
    transparent 100%
  );
}

/* --- Buttons ------------------------------------------------------------ */

.btn {
  display: inline-block;
  padding: 0.95rem 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  will-change: transform;
}

.btn-primary {
  background: var(--neon-pink);
  color: #ffffff;
  box-shadow: var(--glow-pink);
}
.btn-primary:hover {
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 0 40px rgba(255, 59, 141, 0.55), 0 0 100px rgba(255, 59, 141, 0.22);
}
.btn-primary:active { transform: translateY(0) scale(0.99); }

.btn-secondary {
  background: transparent;
  color: var(--neon-pink);
  border-color: var(--neon-pink);
  box-shadow: var(--glow-pink-soft);
}
.btn-secondary:hover {
  background: var(--neon-pink);
  color: #ffffff;
  box-shadow: var(--glow-pink);
}

/* --- Contact / Jotform container --------------------------------------- */

.jotform-container {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}
.jotform-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 0% 0%, rgba(255, 59, 141, 0.06), transparent 60%);
  pointer-events: none;
}
.jotform-container iframe {
  width: 100%;
  border: 0;
  background: transparent;
}

/* =========================================================================
   Jotform HTML embed overrides (form 260216270432143)
   We stripped Jotform's bundled CSS from the template, but Jotform's JS
   (prototype.forms.js / jotform.forms.js) can set inline style attributes
   at runtime (validation, error states). !important is used throughout
   for that reason — standard for third-party widget overrides.
   ========================================================================= */

.jotform-container .jotform-form,
.jotform-container .form-all,
.jotform-container .form-section,
.jotform-container .form-line,
.jotform-container .form-line-active,
.jotform-container .form-line-column,
.jotform-container .form-input,
.jotform-container .form-input-wide,
.jotform-container .form-header-group,
.jotform-container .header-text,
.jotform-container .form-buttons-wrapper,
.jotform-container .form-textarea-limit,
.jotform-container .form-textarea-limit > span,
.jotform-container .form-sub-label-container,
.jotform-container .form-phone,
.jotform-container .form-phone-container {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
}

.jotform-container .jotform-form { margin: 0 !important; padding: 0 !important; }

.jotform-container .form-all {
  max-width: calc(100% - 75px) !important;
  width: auto !important;
  margin: 0 auto !important;
  padding: 0 !important;
  color: var(--text-primary) !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
}

/* Grid: Name / Email / Phone across the top, textarea + submit full-width */
.jotform-container ul.form-section {
  list-style: none !important;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 0.9rem 1rem !important;
  padding: 0 !important;
  margin: 0 !important;
}
.jotform-container ul.form-section > li.form-line,
.jotform-container ul.form-section > li[data-type] {
  grid-column: 1 / -1;
  padding: 0 !important;
  margin: 0 !important;
  width: auto !important;
  min-width: 0 !important;
  clear: none !important;
  float: none !important;
}
.jotform-container li.form-line-column.form-col-1 { grid-column: 1 / 2 !important; }
.jotform-container li.form-line-column.form-col-2 { grid-column: 2 / 3 !important; }
.jotform-container li.form-line-column.form-col-3 { grid-column: 3 / 4 !important; }
.jotform-container li[data-type="control_textarea"],
.jotform-container li[data-type="control_button"] { grid-column: 1 / -1 !important; }

@media (max-width: 640px) {
  .jotform-container ul.form-section { grid-template-columns: 1fr !important; }
  .jotform-container li.form-line-column.form-col-1,
  .jotform-container li.form-line-column.form-col-2,
  .jotform-container li.form-line-column.form-col-3 { grid-column: 1 / -1 !important; }
}

/* Hide the redundant "Contact Us" h1 — the site section already has one */
.jotform-container li[data-type="control_head"]:nth-of-type(1) { display: none !important; }

.jotform-container .form-header-group,
.jotform-container .header-text {
  padding: 0 !important;
  margin: 0 !important;
  text-align: left !important;
}
.jotform-container .form-header {
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem) !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
  margin: 0 0 1rem !important;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow)) !important;
  -webkit-background-clip: text !important;
          background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 0 12px rgba(255, 59, 141, 0.35));
}

/* Labels visually hidden — placeholders label the fields; a11y preserved */
.jotform-container .form-label,
.jotform-container .form-label-top,
.jotform-container .form-label-auto,
.jotform-container .form-sub-label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Uniform field treatment — Name, Email, Phone, Message all match */
.jotform-container .form-input-wide {
  padding: 0 !important;
  width: 100% !important;
}
.jotform-container .form-textbox,
.jotform-container .form-textarea,
.jotform-container input[type="text"],
.jotform-container input[type="email"],
.jotform-container input[type="tel"],
.jotform-container textarea {
  box-sizing: border-box !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  padding: 0.8rem 0.95rem !important;
  background: var(--bg-tertiary) !important;
  border: 1px solid var(--border) !important;
  border-radius: 6px !important;
  color: var(--text-primary) !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  line-height: 1.4 !important;
  box-shadow: none !important;
  outline: none !important;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease !important;
}
.jotform-container .form-textarea {
  height: 160px !important;
  min-height: 160px !important;
  max-height: 400px !important;
  resize: vertical !important;
}
.jotform-container .form-textbox::placeholder,
.jotform-container .form-textarea::placeholder,
.jotform-container input::placeholder,
.jotform-container textarea::placeholder {
  color: rgba(168, 168, 184, 0.55) !important;
  opacity: 1 !important;
}
.jotform-container .form-textbox:hover,
.jotform-container .form-textarea:hover,
.jotform-container input:hover,
.jotform-container textarea:hover {
  border-color: rgba(255, 59, 141, 0.45) !important;
  background: rgba(28, 28, 42, 0.9) !important;
}
.jotform-container .form-textbox:focus,
.jotform-container .form-textarea:focus,
.jotform-container input:focus,
.jotform-container textarea:focus {
  border-color: var(--neon-pink) !important;
  background: var(--bg-secondary) !important;
  box-shadow: 0 0 0 3px rgba(255, 59, 141, 0.18), 0 0 22px rgba(255, 59, 141, 0.25) !important;
}
.jotform-container input:-webkit-autofill,
.jotform-container textarea:-webkit-autofill {
  -webkit-text-fill-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0 1000px var(--bg-tertiary) inset !important;
  transition: background-color 5000s ease-in-out 0s !important;
  caret-color: #ffffff !important;
}

/* Textarea word counter */
.jotform-container .form-textarea-limit { position: relative !important; }
.jotform-container .form-textarea-limit-indicator {
  position: absolute !important;
  bottom: 0.55rem !important;
  right: 0.75rem !important;
  font-family: var(--font-body) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.08em !important;
  color: var(--text-secondary) !important;
  opacity: 0.55 !important;
  background: transparent !important;
  pointer-events: none !important;
  border: 0 !important;
}

/* Inline error messages — same width as their field, no red strips */
.jotform-container .form-line.form-line-active,
.jotform-container .form-line.form-line-error,
.jotform-container .form-line-error {
  background: transparent !important;
  background-color: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}
.jotform-container .form-error-message {
  position: static !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0.4rem 0 0 !important;
  padding: 0.4rem 0.65rem !important;
  background: transparent !important;
  background-color: transparent !important;
  color: var(--neon-pink) !important;
  border: 1px solid rgba(255, 59, 141, 0.4) !important;
  border-radius: 4px !important;
  font-family: var(--font-body) !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.04em !important;
  line-height: 1.3 !important;
  box-shadow: none !important;
  text-align: left !important;
  float: none !important;
}
.jotform-container .form-error-arrow,
.jotform-container .form-error-arrow-inner { display: none !important; }
.jotform-container .form-textbox.form-validation-error,
.jotform-container .form-textarea.form-validation-error,
.jotform-container input.form-validation-error,
.jotform-container textarea.form-validation-error,
.jotform-container .form-line-error input,
.jotform-container .form-line-error textarea {
  border-color: var(--neon-pink) !important;
  box-shadow: 0 0 0 3px rgba(255, 59, 141, 0.25) !important;
}
.jotform-container .form-required {
  color: var(--neon-pink) !important;
  text-shadow: 0 0 8px rgba(255, 59, 141, 0.5);
}

/* Submit button — solid neon-pink, no white strip around it */
.jotform-container .form-buttons-wrapper {
  display: flex !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0.75rem 0 0 !important;
}
.jotform-container .form-submit-button,
.jotform-container button.form-submit-button,
.jotform-container button[type="submit"] {
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  min-width: 180px !important;
  padding: 0.95rem 2.25rem !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase !important;
  text-shadow: none !important;
  background: var(--neon-pink) !important;
  background-image: none !important;
  color: #ffffff !important;
  border: 1px solid transparent !important;
  border-radius: 2px !important;
  cursor: pointer !important;
  box-shadow: var(--glow-pink) !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.jotform-container .form-submit-button:hover {
  transform: translateY(-1px) scale(1.02) !important;
  box-shadow: 0 0 40px rgba(255, 59, 141, 0.55), 0 0 100px rgba(255, 59, 141, 0.22) !important;
}
.jotform-container .form-submit-button:active { transform: translateY(0) scale(0.99) !important; }
.jotform-container .form-submit-button:focus-visible {
  outline: 2px solid var(--neon-cyan) !important;
  outline-offset: 3px !important;
}

/* Honeypot + any Jotform branding / progress UI */
.jotform-container li[style*="display:none"],
.jotform-container li[style*="display: none"] { display: none !important; }
.jotform-container .formFooter,
.jotform-container #branding,
.jotform-container .form-powered-by-jotform,
.jotform-container .form-pagebreak-navigation-wrap,
.jotform-container .form-progressbar-mini { display: none !important; }

/* Jotform's screen-reader status region — keep it hidden visually */
.jotform-container .sr-only {
  position: absolute !important;
  width: 1px !important; height: 1px !important;
  padding: 0 !important; margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* --- Gallery / carousel ------------------------------------------------- */

.gallery {
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.carousel {
  position: relative; /* makes child offsetLeft work; also keeps JS scroll math sane */
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 1rem clamp(1rem, 4vw, 3rem) 2rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.carousel::-webkit-scrollbar { display: none; }

.carousel-slide {
  flex: 0 0 min(88vw, 900px);
  scroll-snap-align: center;
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}
.carousel-slide:hover,
.carousel-slide:focus-within {
  border-color: rgba(255, 59, 141, 0.6);
  box-shadow: 0 0 0 1px rgba(255, 59, 141, 0.4), 0 0 48px rgba(255, 59, 141, 0.25);
  transform: translateY(-2px);
}
.carousel-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 1rem 1rem;
}

.carousel-arrow {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 50%;
  background: rgba(20, 20, 32, 0.65);
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.carousel-arrow:hover {
  color: var(--neon-pink);
  border-color: rgba(255, 59, 141, 0.6);
  box-shadow: 0 0 20px rgba(255, 59, 141, 0.35);
}
.carousel-arrow:active { transform: scale(0.96); }

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 60vw;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--neon-cyan);
  opacity: 0.35;
  transition: transform 0.2s, opacity 0.2s, background 0.2s, box-shadow 0.2s;
}
.carousel-dot.is-active {
  background: var(--neon-pink);
  opacity: 1;
  transform: scale(1.35);
  box-shadow: 0 0 12px rgba(255, 59, 141, 0.6);
}
.carousel-dot:hover { opacity: 0.9; }

/* --- Footer ------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--border);
  padding: clamp(2rem, 5vw, 3rem) 0;
  background: var(--bg-secondary);
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.3em;
  font-size: 0.95rem;
  background: linear-gradient(90deg, var(--neon-pink), var(--neon-yellow));
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.footer-meta {
  color: var(--text-secondary);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

/* --- Thank-you page ---------------------------------------------------- */

.thanks-wrap {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 2rem 1.25rem;
}

.thanks-card {
  width: min(100%, 560px);
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(255, 59, 141, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.02);
  position: relative;
  overflow: hidden;
}
.thanks-card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(80% 60% at 50% 0%, rgba(255, 59, 141, 0.10), transparent 70%);
}

.thanks-mark {
  display: inline-block;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 0 22px rgba(255, 59, 141, 0.35));
}
.thanks-check {
  stroke-dasharray: 44;
  stroke-dashoffset: 44;
  animation: thanks-draw 0.6s 0.25s ease-out forwards;
}
.thanks-circle {
  stroke-dasharray: 180;
  stroke-dashoffset: 180;
  animation: thanks-draw 0.8s ease-out forwards;
}
@keyframes thanks-draw {
  to { stroke-dashoffset: 0; }
}

.thanks-eyebrow {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.thanks-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 6vw, 3rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 1rem;
  filter: drop-shadow(0 0 24px rgba(255, 59, 141, 0.3));
}

.thanks-lead {
  font-size: clamp(1rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0 0 0.5rem;
  max-width: 44ch;
  margin-inline: auto;
}

.thanks-phone {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0 0 2rem;
}
.thanks-phone a {
  color: var(--text-primary);
  padding-bottom: 1px;
  border-bottom: 1px solid rgba(255, 59, 141, 0.6);
  transition: color 0.15s ease, border-color 0.15s ease;
}
.thanks-phone a:hover,
.thanks-phone a:focus-visible {
  color: var(--neon-pink);
  border-bottom-color: var(--neon-pink);
}

.thanks-cta { margin-top: 0.25rem; }

/* --- Reduced motion ---------------------------------------------------- */

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