/* ═══════════════════════════════════════════
   THE BLUES OTHERS — Shared Styles
   ═══════════════════════════════════════════ */

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

:root {
  --blue: #009ee2;
  --blue-light: #6fecf8;
  --blue-dark: #006fa0;
  --black: #0a0a0a;
  --grey: #141414;
  --grey-light: #1e1e1e;
  --white: #ffffff;
  --text: rgba(255,255,255,0.8);
  --text-muted: rgba(255,255,255,0.5);
  --radius: 8px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── Typography ── */
.font-display { font-family: 'Bebas Neue', sans-serif; }
.gradient-text {
  background: linear-gradient(135deg, var(--white) 40%, var(--blue-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.section-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text);
  max-width: 600px;
  line-height: 1.7;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
section { padding: 6rem 2rem; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  border-radius: 50px;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--black);
  box-shadow: 0 4px 30px rgba(0,158,226,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 50px rgba(0,158,226,0.5);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover {
  border-color: var(--blue-light);
  color: var(--blue-light);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--black);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(255,255,255,0.15);
}

/* ══════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, transparent 100%);
  transition: background var(--transition), padding var(--transition);
}
.topbar.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 1.5rem;
}
.topbar-logo img { height: 60px; width: auto; display: block; transition: height var(--transition); }
.topbar.scrolled .topbar-logo img { height: 48px; }

/* ── Desktop Horizontal Nav ── */
.topbar-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.topbar-nav a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
  padding: 0.25rem 0;
}
.topbar-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transition: width var(--transition);
}
.topbar-nav a:hover { color: var(--blue-light); }
.topbar-nav a:hover::after { width: 100%; }
.topbar-nav a.active { color: var(--blue-light); }
.topbar-nav a.active::after { width: 100%; }
.topbar-nav .nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--black);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: all var(--transition);
}
.topbar-nav .nav-cta::after { display: none; }
.topbar-nav .nav-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0,158,226,0.4);
  color: var(--black);
}

/* Hamburger — hidden on desktop, visible on mobile */
.hamburger {
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  position: relative;
  z-index: 201;
  transition: all var(--transition);
}
.hamburger:hover {
  border-color: var(--blue);
  background: rgba(0,158,226,0.08);
}
.hamburger-lines {
  width: 20px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hamburger-lines span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  transform-origin: center;
}
.hamburger.active { border-color: var(--blue-light); }
.hamburger.active .hamburger-lines span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.hamburger.active .hamburger-lines span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.active .hamburger-lines span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ── Slide-out Navigation Panel ── */
.nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 85vw);
  height: 100vh;
  height: 100dvh;
  z-index: 200;
  background: var(--grey);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1), visibility 0s linear 0.5s;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.nav-panel.open { transform: translateX(0); visibility: visible; transition-delay: 0s; }

.nav-panel-header {
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-panel-logo img { height: 40px; width: auto; }

.nav-panel-links {
  list-style: none;
  padding: 1.5rem 2rem;
  flex: 1;
}
.nav-panel-links li {
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.nav-panel-links a {
  display: block;
  padding: 0.9rem 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  color: var(--white);
  transition: all var(--transition);
}
.nav-panel-links a:hover { color: var(--blue-light); padding-left: 0.5rem; }
.nav-panel-links a.active { color: var(--blue-light); }

.nav-panel-cta {
  padding: 0 2rem 2rem;
}

.nav-panel-footer {
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.nav-socials {
  display: flex;
  gap: 1rem;
}
.nav-socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.nav-socials a:hover {
  border-color: var(--blue);
  background: rgba(0,158,226,0.1);
  transform: translateY(-2px);
}
.nav-socials a svg { width: 18px; height: 18px; fill: var(--white); }

.nav-panel-footer .nav-location {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Nav overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 199;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.nav-overlay.active { opacity: 1; visibility: visible; }

/* ══════════════════════════════════════════
   HERO (Homepage)
   ══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
}
.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}
.carousel-slide.active { opacity: 1; }
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 8s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from { transform: scale(1.0); }
  to { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 40%,
    rgba(0,0,0,0.6) 75%, rgba(10,10,10,1) 100%);
  z-index: 2;
}
.hero-content {
  position: absolute;
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
  width: 90%;
  max-width: 900px;
}
.hero-title { margin-bottom: 1.25rem; }
.hero-kicker {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.7rem, 1.5vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--blue-light);
  text-shadow: 0 1px 3px rgba(0,0,0,0.9), 0 0 18px rgba(0,0,0,0.8);
  margin-bottom: 1rem;
}
.hero-kicker span { white-space: nowrap; }
.hero-tagline {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}
.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.2rem);
  font-weight: 300;
  color: var(--text);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.carousel-indicators {
  position: absolute;
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.carousel-indicators button {
  width: 36px;
  height: 3px;
  border: none;
  background: rgba(255,255,255,0.25);
  cursor: pointer;
  transition: all var(--transition);
  border-radius: 2px;
  padding: 0;
}
.carousel-indicators button.active {
  background: var(--blue-light);
  width: 56px;
}

.scroll-cue {
  position: absolute;
  bottom: 2%;
  right: 2rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bobble 2s ease-in-out infinite;
}
.scroll-cue span {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  writing-mode: vertical-rl;
  color: var(--text-muted);
}
.scroll-cue .line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--blue-light), transparent); }
@keyframes bobble { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

/* ── Marquee ── */
.marquee-section {
  padding: 1.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: var(--grey);
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  white-space: nowrap;
  padding: 0 1.5rem;
  color: rgba(255,255,255,0.08);
  letter-spacing: 0.08em;
}
.marquee-track span.hl { color: var(--blue); opacity: 0.4; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ══════════════════════════════════════════
   PAGE HERO (Interior pages)
   ══════════════════════════════════════════ */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  padding: 6rem 2rem 3rem;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.85) 70%, rgba(10,10,10,1) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
.page-hero-content .section-label { margin-bottom: 0.75rem; }
.page-hero-content h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 7vw, 5rem);
  line-height: 0.95;
  margin-bottom: 1rem;
}
.page-hero-content p {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text);
  max-width: 550px;
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   ABOUT GRID (Home)
   ══════════════════════════════════════════ */
.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-image:hover img { transform: scale(1.03); }
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0,158,226,0.15);
  border-radius: var(--radius);
  pointer-events: none;
}
.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.about-text .accent {
  font-size: 1.3rem;
  font-weight: 600;
  font-style: italic;
  color: var(--blue-light);
  line-height: 1.5;
}

/* ── Stats ── */
.stats-bar {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  padding: 3rem 2rem;
}
.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-number {
  display: block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.85;
  margin-top: 0.4rem;
}

/* ── Photo Grid ── */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-top: 2rem;
}
.grid-item {
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}
.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  aspect-ratio: 16/10;
}
.grid-item:hover img { transform: scale(1.05); }
.grid-item.wide { grid-column: span 2; }

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--grey);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,158,226,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.service-card .icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: block;
}
.service-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}
.service-card p { font-weight: 300; line-height: 1.7; color: var(--text); font-size: 0.95rem; }
.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-light);
  transition: gap var(--transition);
}
.service-card:hover .card-link { gap: 0.75rem; }

/* ── Quote Section ── */
.quote-section {
  text-align: center;
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: '\201C';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18rem;
  color: rgba(0,158,226,0.05);
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}
.quote-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.15;
  max-width: 850px;
  margin: 0 auto;
}

/* ── CTA Section ── */
.cta-section {
  text-align: center;
  padding: 7rem 2rem;
  position: relative;
  background: var(--grey);
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(0,158,226,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cta-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  margin-bottom: 1.25rem;
}
.cta-sub {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--text);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   FAQ ACCORDION
   ══════════════════════════════════════════ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  padding: 1.5rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  cursor: pointer;
  transition: color var(--transition);
  line-height: 1.4;
}
.faq-question:hover { color: var(--blue-light); }
.faq-question .faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
}
.faq-question .faq-icon::before,
.faq-question .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--white);
  transition: all 0.3s ease;
}
.faq-question .faq-icon::before { width: 12px; height: 1.5px; }
.faq-question .faq-icon::after { width: 1.5px; height: 12px; }
.faq-item.active .faq-question { color: var(--blue-light); }
.faq-item.active .faq-icon {
  border-color: var(--blue);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease, visibility 0s linear 0.4s;
}
.faq-item.active .faq-answer { visibility: visible; transition-delay: 0s; }
.faq-answer-inner {
  padding: 0 0 1.5rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.8;
  font-size: 0.95rem;
}

/* ══════════════════════════════════════════
   AUDIO PLAYER
   ══════════════════════════════════════════ */
.audio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.audio-card {
  background: var(--grey-light);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: all var(--transition);
}
.audio-card:hover {
  border-color: rgba(0,158,226,0.2);
  background: rgba(255,255,255,0.04);
}
.audio-card .track-name {
  font-weight: 600;
  font-size: 1.05rem;
}
.audio-card .track-artist {
  display: none;
}
.audio-card audio {
  width: 100%;
  height: 36px;
  filter: invert(1) hue-rotate(180deg) brightness(0.8);
}

/* ══════════════════════════════════════════
   CONTACT FORM
   ══════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info-item {
  margin-bottom: 2rem;
}
.contact-info-item .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.contact-info-item .value {
  font-size: 1.05rem;
  font-weight: 500;
}
.contact-info-item .value a {
  color: var(--blue-light);
  transition: opacity var(--transition);
}
.contact-info-item .value a:hover { opacity: 0.7; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--grey-light);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-group select option { background: var(--grey); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}
.form-success.show { display: block; }
.form-success h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  color: var(--blue-light);
}

/* ══════════════════════════════════════════
   WEDDING-SPECIFIC
   ══════════════════════════════════════════ */
.wedding-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.wedding-feature {
  background: var(--grey);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.04);
  transition: all var(--transition);
}
.wedding-feature:hover {
  border-color: rgba(0,158,226,0.15);
  transform: translateY(-2px);
}
.wedding-feature h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0.75rem 0 0.5rem;
}
.wedding-feature p { font-weight: 300; color: var(--text); font-size: 0.9rem; line-height: 1.7; }

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.site-footer {
  padding: 3rem 2rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-brand img { height: 35px; width: auto; opacity: 0.5; }
.footer-nav { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--blue-light); }
.footer-socials { display: flex; gap: 1rem; }
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.footer-socials a:hover {
  border-color: var(--blue);
  background: rgba(0,158,226,0.08);
}
.footer-socials a svg { width: 16px; height: 16px; fill: var(--white); }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
}
.footer-bottom .legal { max-width: 700px; }

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 92vw;
  max-height: 92vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
}
.lightbox-close:hover { opacity: 1; }

/* ══════════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════════ */
/* Only hide content when JS is running to reveal it again */
.js .reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js .reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ══════════════════════════════════════════
   LOADER
   ══════════════════════════════════════════ */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.js #loader { display: flex; }
.loader-seen #loader { display: none; }
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
#loader svg {
  width: min(55vw, 280px);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(0,158,226,0.35));
}
#loader svg .anim-gradient {
  stroke: url(#loader-stroke-grad);
  stroke-width: 2;
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  fill-opacity: 0;
  animation: drawStroke 0.9s ease forwards, fillShape 0.3s ease 0.8s forwards;
}
#loader svg .anim-white {
  stroke: #fff;
  stroke-width: 1;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
  fill-opacity: 0;
  animation: drawStroke2 0.9s ease 0.15s forwards, fillShape 0.3s ease 0.9s forwards;
}
@keyframes drawStroke { to { stroke-dashoffset: 0 } }
@keyframes drawStroke2 { to { stroke-dashoffset: 0 } }
@keyframes fillShape { to { fill-opacity: 1 } }

/* ══════════════════════════════════════════
   BREADCRUMB
   ══════════════════════════════════════════ */
.breadcrumb {
  padding: 1rem 2rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--blue-light); transition: opacity var(--transition); }
.breadcrumb a:hover { opacity: 0.7; }
.breadcrumb .sep { margin: 0 0.5rem; }

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 900px) {
  .topbar-nav { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 768px) {
  section { padding: 4rem 1.25rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image { aspect-ratio: 16/10; }
  .photo-grid { grid-template-columns: 1fr 1fr; }
  .grid-item.wide { grid-column: span 2; }
  .services-grid { grid-template-columns: 1fr; }
  .page-hero { min-height: 45vh; padding: 6.5rem 1.5rem 2.5rem; }
  .scroll-cue { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; align-items: center; text-align: center; }
  .footer-nav { justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .audio-card { flex-direction: column; align-items: flex-start; }
  .audio-card audio { max-width: 100%; }
}

@media (max-width: 480px) {
  .photo-grid { grid-template-columns: 1fr; }
  .grid-item.wide { grid-column: span 1; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-tagline { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .nav-panel-links a { font-size: 1.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0s !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .marquee-track, .carousel-slide img, .scroll-cue { animation: none !important; }
  .js #loader { display: none; }
}
