/* ============================================================
   Events 412 — Dark / Nightlife theme
   ============================================================ */

:root {
  --bg:        #07060a;
  --bg-soft:   #0e0c09;
  --bg-card:   #141109;
  --border:    #2a2218;
  --text:      #f4f0e8;
  --text-dim:  #a89e88;
  --neon-1:    #d4af37;   /* gold        */
  --neon-2:    #c9a227;   /* deep gold   */
  --neon-3:    #b8860b;   /* dark gold   */
  --max:       1200px;
  --radius:    14px;
  --shadow:    0 10px 40px rgba(0,0,0,.55);
  --grad:      linear-gradient(90deg, var(--neon-1), var(--neon-3), var(--neon-2));
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body {
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(212,175,55,.12), transparent 60%),
    radial-gradient(1000px 600px at -10% 30%, rgba(184,134,11,.08), transparent 60%),
    var(--bg);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

img { max-width: 100%; display: block; }
a   { color: var(--neon-2); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--neon-1); }

h1, h2, h3, h4 {
  font-family: 'Bebas Neue', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.1;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; }

p  { margin: 0 0 1em; color: var(--text-dim); }

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

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   Header / Nav
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7,7,11,.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212,175,55,.20);
  box-shadow: 0 4px 18px rgba(0,0,0,.45);
}
body.menu-open .site-header {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.site-header::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: var(--grad);
  opacity: .65;
  pointer-events: none;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}
.site-header .brand img { height: 95px !important; width: auto !important; margin: -20px 0; }

.brand {
  display: flex;
  align-items: center;
}
.brand:hover { opacity: .85; }

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links a {
  color: var(--text);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  position: relative;
  padding: .25rem 0;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--neon-2);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
}

/* dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .5rem;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  box-shadow: var(--shadow);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown li a {
  display: block;
  padding: .6rem .85rem;
  border-radius: 8px;
  text-transform: none;
  letter-spacing: 0;
  font-size: .95rem;
}
.dropdown li a:hover { background: rgba(255,255,255,.04); color: var(--neon-1); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  width: 52px;
  height: 52px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.6rem;
  line-height: 1;
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-block;
  padding: .9rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: .9rem;
  cursor: pointer;
  border: none;
  transition: transform .15s ease, box-shadow .15s ease, background .2s ease;
}
.btn-primary {
  background: var(--grad);
  color: #0a0a00;
  box-shadow: 0 8px 24px rgba(212,175,55,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212,175,55,.55);
  color: #0a0a00;
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { border-color: var(--neon-2); color: var(--neon-2); }

/* ============================================================
   Sections
   ============================================================ */

main { flex: 1; }

section { padding: 5rem 0; }
.section-narrow { padding: 3.5rem 0; }

.eyebrow {
  display: inline-block;
  font-size: .8rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--neon-2);
  margin-bottom: .75rem;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}

/* Hero */
.hero {
  position: relative;
  padding: 7rem 0 6rem;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 50% 20%, rgba(212,175,55,.15), transparent 70%),
    radial-gradient(800px 500px at 50% 90%, rgba(184,134,11,.08), transparent 70%);
  z-index: -1;
}
.hero-splash {
  padding: 10rem 0 9rem;
  background: #0b0a10;
  isolation: isolate;
}
.hero-splash .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero-splash::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(7,6,10,.65), rgba(7,6,10,.85));
  z-index: 1;
  pointer-events: none;
}
.hero-splash::before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  background-repeat: repeat;
  opacity: .09;
  mix-blend-mode: overlay;
  z-index: 2;
  pointer-events: none;
}
.hero-splash > .container {
  position: relative;
  z-index: 3;
}
.hero h1 { margin-bottom: 1rem; }
.hero p.lede {
  font-size: 1.2rem;
  max-width: 640px;
  margin: 0 auto 2rem;
  color: var(--text-dim);
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.page-hero {
  padding: 5rem 0 3rem;
  text-align: center;
}
.page-hero p { max-width: 640px; margin: 0 auto; }

/* Cards / grids */
.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 820px) {
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 520px) { .grid-4 { grid-template-columns: 1fr; } }

.lighting-grid .card { min-height: 420px; display: flex; flex-direction: column; }
.lighting-grid .card p { margin-top: auto; }
@media (max-width: 820px) { .lighting-grid .card { min-height: 320px; } }

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--neon-3);
  box-shadow: 0 12px 30px rgba(212,175,55,.18);
}
.card-bg {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: var(--bg-card);
}
.card-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7,6,10,.50), rgba(7,6,10,.70)),
    var(--card-img);
  background-size: cover;
  background-position: center;
  z-index: -1;
  transition: transform .35s ease;
}
.card-bg:hover::before { transform: scale(1.04); }
.card-bg h3, .card-bg p { color: var(--text); }

/* Contact form */
.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 720px;
  margin: 0 auto;
}
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 640px) { .contact-form .row { grid-template-columns: 1fr; } }
.contact-form label {
  display: block;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--text-dim);
  margin-bottom: .4rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .85rem 1rem;
  color: var(--text);
  font: inherit;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--neon-2);
  box-shadow: 0 0 0 3px rgba(212,175,55,.18);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .submit-row { display: flex; justify-content: center; margin-top: .5rem; }
.form-success {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  max-width: 720px;
  margin: 0 auto;
}
.form-success-mark {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--grad);
  color: #0b0a10;
  font-size: 2rem;
  display: grid; place-items: center;
  margin: 0 auto 1.25rem;
  box-shadow: 0 12px 32px rgba(212,175,55,.4);
}
.form-success h3 {
  font-size: 2rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: .5rem;
}
.contact-form .checkbox-group { border: 0; padding: 0; margin: 0; }
.contact-form .checkbox-group legend {
  display: block; font-size: .8rem; text-transform: uppercase; letter-spacing: .15em;
  color: var(--text-dim); margin-bottom: .6rem; padding: 0;
}
.contact-form .checkbox-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: .6rem .9rem;
}
@media (max-width: 640px) { .contact-form .checkbox-grid { grid-template-columns: 1fr; } }
.contact-form .checkbox {
  display: flex; align-items: center; gap: .65rem;
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px;
  padding: .7rem .9rem; cursor: pointer; color: var(--text);
  text-transform: none; letter-spacing: 0; font-size: 1rem; margin: 0;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.contact-form .checkbox:hover { border-color: var(--neon-2); }
.contact-form .checkbox input[type="checkbox"] {
  appearance: none; -webkit-appearance: none;
  width: 18px; height: 18px; flex: 0 0 18px; margin: 0; padding: 0;
  border: 1px solid var(--border); border-radius: 4px;
  background: var(--bg); cursor: pointer; position: relative;
  transition: border-color .15s ease, background .15s ease;
}
.contact-form .checkbox input[type="checkbox"]:checked {
  background: var(--grad); border-color: transparent;
}
.contact-form .checkbox input[type="checkbox"]:checked::after {
  content: ''; position: absolute; left: 5px; top: 1px;
  width: 5px; height: 10px; border: solid #0b0a10;
  border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.contact-form .checkbox input[type="checkbox"]:focus-visible {
  outline: none; box-shadow: 0 0 0 3px rgba(212,175,55,.25);
}
.contact-form .checkbox:has(input:checked) {
  border-color: var(--neon-2);
  box-shadow: 0 0 0 1px rgba(212,175,55,.25) inset;
}
.card h3 { color: var(--text); margin-bottom: .5rem; }
.card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--grad);
  display: grid; place-items: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #0a0a12;
  font-weight: 700;
}
.card a.more {
  display: inline-block;
  margin-top: .5rem;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* Service feature blocks (alternating image/text rows) */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 4rem 0;
}
.feature-row.reverse > :first-child { order: 2; }
@media (max-width: 820px) {
  .feature-row, .feature-row.reverse > :first-child { grid-template-columns: 1fr; order: initial; }
}
.feature-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(212,175,55,.25), rgba(184,134,11,.18));
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 4rem;
  color: rgba(255,255,255,.35);
  letter-spacing: .1em;
}
.feature-iframe {
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  padding: 0;
  aspect-ratio: 1600 / 856;
}
.feature-iframe iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  display: block;
}

/* Pricing */
.price-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr !important; } }

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border: 1px solid transparent;
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    var(--grad) border-box;
  transform: translateY(-8px);
}
.price-card .badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #0a0a12;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  padding: .35rem .8rem;
  border-radius: 999px;
}
.price-card h3 { font-size: 1.6rem; }
.price-card .price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: .5rem 0 1rem;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  text-align: left;
  flex: 1;
}
.price-card ul li {
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-dim);
  font-size: .95rem;
}
.price-card ul li::before {
  content: '✦';
  color: var(--neon-2);
  margin-right: .5rem;
}

/* Reviews */
.review {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}
.review .stars { color: #ffd700; margin-bottom: .75rem; letter-spacing: .15em; }
.review blockquote {
  margin: 0 0 1rem;
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
}
.review cite {
  display: block;
  font-style: normal;
  color: var(--neon-2);
  font-weight: 600;
  font-size: .9rem;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(212,175,55,.3), rgba(184,134,11,.25));
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.5rem;
  color: rgba(255,255,255,.5);
  letter-spacing: .1em;
  overflow: hidden;
  cursor: pointer;
  transition: transform .25s ease;
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-item img { width:100%; height:100%; object-fit: cover; }

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info p { color: var(--text); font-size: 1.05rem; margin: .5rem 0; }
.contact-info .label {
  font-size: .75rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--neon-2); display: block; margin-top: 1.25rem;
}

form .field { margin-bottom: 1.25rem; }
form label {
  display: block;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--text-dim);
  margin-bottom: .5rem;
}
form input,
form select,
form textarea {
  width: 100%;
  padding: .9rem 1rem;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
form input:focus,
form select:focus,
form textarea:focus {
  outline: none;
  border-color: var(--neon-2);
  box-shadow: 0 0 0 3px rgba(212,175,55,.18);
}
form textarea { min-height: 140px; resize: vertical; }

/* CTA strip */
.cta-strip {
  text-align: center;
  padding: 4rem 1.25rem;
  background:
    radial-gradient(600px 300px at 50% 50%, rgba(212,175,55,.15), transparent 70%),
    var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-strip h2 { margin-bottom: 1rem; }
.cta-strip--image {
  background:
    linear-gradient(rgba(7,6,10,.60), rgba(7,6,10,.75)),
    var(--cta-img) center/cover no-repeat;
}
.jump-banner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none; color: var(--text);
  margin-bottom: 1.5rem;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  position: relative; overflow: hidden;
}
.jump-banner::before {
  content: ''; position: absolute; inset: 0;
  background: var(--grad); opacity: .08; pointer-events: none;
}
.jump-banner:hover {
  border-color: var(--neon-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,175,55,.15);
}
.jump-banner-text { display: flex; flex-direction: column; gap: .15rem; }
.jump-banner-text .eyebrow { margin: 0; }
.jump-banner-text strong {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem; letter-spacing: .03em;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.jump-banner-cta {
  font-weight: 600; font-size: .95rem;
  padding: .65rem 1.2rem;
  border-radius: 999px;
  background: var(--grad); color: #0b0a10;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .jump-banner { flex-direction: column; align-items: flex-start; padding: 1rem 1.1rem; }
  .jump-banner-cta { width: 100%; text-align: center; }
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
  margin-top: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-grid h4 {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  font-size: .8rem;
  letter-spacing: .2em;
  color: var(--neon-2);
  margin-bottom: 1rem;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: .5rem; }
.footer-grid a { color: var(--text-dim); }
.footer-grid a:hover { color: var(--neon-1); }

.socials { display: flex; gap: .75rem; margin-top: 1rem; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid; place-items: center;
  color: var(--text);
  font-weight: 700;
  font-size: .8rem;
}
.socials a:hover { border-color: var(--neon-1); color: var(--neon-1); }

.copyright {
  text-align: center;
  color: var(--text-dim);
  font-size: .85rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}

/* ============================================================
   Mobile nav
   ============================================================ */

@media (max-width: 880px) {
  .nav-toggle { display: grid; place-items: center; position: relative; z-index: 60; }
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    left: auto;
    width: min(82vw, 340px);
    flex-direction: column;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    box-shadow: -16px 0 40px rgba(0,0,0,.5);
    padding: 5rem 1.5rem 2rem;
    gap: .25rem;
    align-items: stretch;
    display: flex;
    transform: translateX(100%);
    transition: transform .25s ease-out;
    z-index: 55;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { padding: .75rem .25rem; }
  /* Services becomes a non-collapsible section label with sub-items shown */
  .has-dropdown > a {
    pointer-events: none;
    color: var(--neon-2);
    font-size: .85rem !important;
    letter-spacing: .22em !important;
    padding: 1rem .25rem .35rem !important;
    border-bottom: 1px solid var(--border);
    margin-bottom: .25rem;
  }
  .has-dropdown > a .caret { display: none; }
  .has-dropdown .dropdown,
  .has-dropdown:hover .dropdown,
  .has-dropdown:focus-within .dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 .75rem;
    min-width: 0;
  }
  .has-dropdown .dropdown li a { padding: .65rem .25rem; font-size: 1rem; text-transform: uppercase; letter-spacing: .12em; font-family: 'Bebas Neue', sans-serif; }
}

/* ============================================================
   Mobile refinements
   ============================================================ */

@media (max-width: 640px) {
  .container { padding: 0 1rem; }
  section { padding: 3.25rem 0; }
  .section-narrow { padding: 2.5rem 0; }
  .section-head { margin-bottom: 2rem; }

  .hero { padding: 4rem 0 3.5rem; }
  .hero-splash { padding: 5rem 0 4.5rem; }
  .hero p.lede { font-size: 1.05rem; margin-bottom: 1.5rem; }
  .page-hero { padding: 3rem 0 2rem; }

  .hero-actions { flex-direction: column; align-items: stretch; gap: .75rem; }
  .hero-actions .btn { width: 100%; text-align: center; }

  .btn { padding: .85rem 1.25rem; min-height: 44px; }

  .grid { gap: 1rem; }
  .card { padding: 1.5rem; }

  .feature-row { gap: 1.5rem; margin: 2.5rem 0; }
  .feature-img { font-size: 2.4rem; aspect-ratio: 16/10; }

  .price-card { padding: 1.75rem 1.25rem; }

  .site-header .nav { padding: 0; }
  .site-header .brand img { height: 110px !important; margin: -10px 0; }
  .site-header .nav-toggle { margin-right: .5rem; }

  .footer-grid { gap: 2rem; }
  .site-footer { padding: 2.5rem 0 1.5rem; }
}

@media (max-width: 520px) {
  .photo-grid { columns: 2 140px !important; column-gap: .5rem !important; }
  .photo-item { margin-bottom: .5rem !important; }
  .video-grid { grid-template-columns: 1fr !important; gap: 1.25rem !important; }
}
