:root {
  --bg: #09111f;
  --bg-2: #0f1c32;
  --bg-3: #132744;
  --surface: rgba(13, 23, 40, 0.78);
  --surface-2: rgba(255, 255, 255, 0.06);
  --text: #eef3fb;
  --text-soft: rgba(238, 243, 251, 0.76);
  --text-faint: rgba(238, 243, 251, 0.56);
  --gold: #d1ab61;
  --gold-deep: #a97d2e;
  --gold-soft: rgba(209, 171, 97, 0.12);
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: 1260px;
  --ease: 240ms ease;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(209,171,97,0.16), transparent 22%),
    radial-gradient(circle at top left, rgba(71,122,214,0.10), transparent 24%),
    linear-gradient(180deg, #07101d 0%, #0b1526 38%, #0b1526 100%);
  color: var(--text);
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img, video { display: block; max-width: 100%; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  padding: 0.8rem 1rem;
  background: var(--gold);
  color: #111;
  border-radius: 999px;
  z-index: 120;
  font-weight: 800;
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(calc(100% - 1.5rem), var(--container));
  margin: 0 auto;
}

.site-topbar {
  background: rgba(6, 12, 21, 0.88);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
}
.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-inner p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.86rem;
}
.topbar-inner span { color: var(--gold); }
.topbar-inner a {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.9rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 110;
  background: rgba(7, 16, 29, 0.78);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-shell {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
.brand img {
  width: clamp(138px, 22vw, 190px);
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.25));
}
.brand-copy {
  display: grid;
  gap: 0.12rem;
}
.brand-copy strong {
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  color: #fff;
  line-height: 1.05;
}
.brand-copy span {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
}
.brand-copy small {
  color: var(--text-faint);
  font-size: 0.75rem;
  font-weight: 700;
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  border-radius: 14px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 2.5px 0;
  background: #fff;
  transition: transform var(--ease), opacity var(--ease);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 0;
  right: 0;
  display: grid;
  gap: 0.7rem;
  background: rgba(11, 21, 38, 0.98);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 1rem;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--ease), visibility var(--ease), transform var(--ease);
}
.site-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-nav a {
  min-height: 48px;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  border-radius: 14px;
  color: #fff;
  font-weight: 700;
}
.site-nav a:hover,
.site-nav a.active { background: rgba(209,171,97,0.14); color: var(--gold); }
.site-nav .nav-cta {
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #111;
}

.section {
  position: relative;
  padding: 5rem 0;
}
.section-stack { display: grid; gap: 2rem; }
.section-heading {
  max-width: 880px;
}
.section-heading.center {
  text-align: center;
  margin-inline: auto;
}
.eyebrow {
  margin: 0 0 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  font-size: 0.76rem;
  color: var(--gold);
}
.eyebrow.light { color: #f7ddaa; }

h1, h2, h3 {
  margin: 0 0 1rem;
  font-family: 'Cormorant Garamond', serif;
  line-height: 0.96;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(3rem, 8vw, 6.1rem); }
h2 { font-size: clamp(2rem, 6vw, 3.8rem); }
h3 { font-size: clamp(1.35rem, 5vw, 2rem); }
p { margin: 0; color: var(--text-soft); }

.btn {
  min-height: 50px;
  padding: 0.92rem 1.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  text-align: center;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease), border-color var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  color: #0f1116;
  box-shadow: 0 18px 34px rgba(209,171,97,0.26);
}
.btn-secondary {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}
.btn-block { width: 100%; }

.hero {
  min-height: calc(100vh - 42px);
  display: grid;
  align-items: end;
  overflow: clip;
}
.hero-media,
.hero-overlay,
.hero-shimmer {
  position: absolute;
  inset: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.08) brightness(0.72);
}
.hero-overlay {
  background:
    linear-gradient(180deg, rgba(4,8,14,0.42) 0%, rgba(5,11,20,0.56) 30%, rgba(5,11,20,0.86) 100%),
    radial-gradient(circle at top right, rgba(209,171,97,0.24), transparent 24%),
    radial-gradient(circle at 18% 18%, rgba(84,148,255,0.12), transparent 20%);
}
.hero-shimmer {
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.04) 18%, transparent 36%);
  mix-blend-mode: screen;
  animation: shimmer 11s linear infinite;
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1.3rem;
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.hero-copy {
  display: grid;
  gap: 1.1rem;
}
.hero-brandline {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  width: fit-content;
  padding: 0.6rem 0.8rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}
.hero-brandline img {
  width: 118px;
  height: auto;
}
.hero-brandline span {
  display: block;
  color: #fff;
  font-weight: 800;
}
.hero-brandline small {
  color: var(--gold);
  font-weight: 700;
}
.hero-copy h1 {
  max-width: 11ch;
  color: #fff;
  text-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.lead {
  font-size: clamp(1.05rem, 2.7vw, 1.24rem);
  color: rgba(255,255,255,0.95);
  font-weight: 600;
  max-width: 52ch;
}
.support-copy {
  max-width: 64ch;
  color: rgba(255,255,255,0.78);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.hero-points span {
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}
.hero-panel {
  background: linear-gradient(180deg, rgba(13,23,40,0.92), rgba(10,18,32,0.9));
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  padding: 1.3rem;
  box-shadow: var(--shadow);
}
.panel-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 800;
}
.hero-panel h2 { color: #fff; }
.panel-subtitle {
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.panel-note {
  color: var(--text-faint);
  margin-bottom: 1rem;
}
.hero-panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.7rem;
}
.hero-panel li {
  position: relative;
  padding-left: 1rem;
  color: var(--text-soft);
}
.hero-panel li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.glass-card,
.service-card,
.portfolio-card,
.benefit-card,
.team-card,
.contact-panel,
.contact-form,
.player-shell {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.dark-card {
  background: linear-gradient(180deg, rgba(14,25,42,0.95), rgba(9,18,32,0.92));
}
.mini-label {
  margin-bottom: 0.7rem;
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}
.feature-list li {
  position: relative;
  padding-left: 1.15rem;
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(209,171,97,0.45);
}
.light-list li { color: var(--text-soft); }

.showcase-grid {
  display: grid;
  gap: 1rem;
}
.showcase-copy .glass-card {
  padding: 1.25rem;
  height: 100%;
}
.player-shell {
  padding: 0.8rem;
  position: relative;
  overflow: hidden;
}
.player-frame {
  position: relative;
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  background: #02060c;
  min-height: 320px;
  border: 1px solid rgba(255,255,255,0.06);
}
.showcase-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}
.big-play,
.video-hitbox,
.control-btn,
.lightbox-trigger,
.filter-btn,
.lightbox-close {
  cursor: pointer;
}
.big-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: clamp(78px, 16vw, 118px);
  height: clamp(78px, 16vw, 118px);
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: radial-gradient(circle at 30% 30%, rgba(209,171,97,0.95), rgba(124,84,20,0.92));
  box-shadow: 0 22px 50px rgba(0,0,0,0.4);
  display: grid;
  place-items: center;
  z-index: 4;
  transition: transform var(--ease), opacity var(--ease), box-shadow var(--ease);
}
.big-play:hover {
  transform: translate(-50%, -50%) scale(1.04);
  box-shadow: 0 28px 70px rgba(0,0,0,0.5);
}
.big-play.is-hidden {
  opacity: 0;
  pointer-events: none;
}
.big-play-icon {
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 22px solid #10151d;
  margin-left: 6px;
}
.video-hitbox {
  position: absolute;
  inset: 0;
  background: transparent;
  border: 0;
  z-index: 2;
}
.player-gradient {
  position: absolute;
  inset: auto 0 0 0;
  height: 36%;
  background: linear-gradient(180deg, transparent, rgba(2, 6, 12, 0.84));
  pointer-events: none;
  z-index: 2;
}
.player-ui {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem;
  z-index: 5;
  transition: opacity 280ms ease, transform 280ms ease;
}
.player-ui.is-hidden {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}
.progress-wrap {
  position: relative;
  margin-bottom: 0.85rem;
}
#progress-range,
#volume-range {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  background: transparent;
}
#progress-range {
  height: 24px;
}
#progress-range::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(209,171,97,0.95) var(--progress, 0%), rgba(255,255,255,0.18) var(--progress, 0%));
}
#progress-range::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
}
#progress-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold);
  margin-top: -6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}
#progress-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold);
}
.time-preview {
  position: absolute;
  bottom: calc(100% + 0.45rem);
  left: 0;
  transform: translateX(-50%);
  padding: 0.3rem 0.45rem;
  border-radius: 10px;
  background: rgba(9,18,32,0.92);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease);
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.08);
}
.time-preview.show { opacity: 1; }
.controls-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.controls-left,
.controls-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.control-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  display: inline-grid;
  place-items: center;
  color: #fff;
  transition: background var(--ease), transform var(--ease), border-color var(--ease);
}
.control-btn:hover {
  transform: translateY(-1px);
  background: rgba(209,171,97,0.18);
  border-color: rgba(209,171,97,0.38);
}
.time-display {
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}
#volume-range {
  width: 94px;
  height: 20px;
}
#volume-range::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(209,171,97,0.95) var(--volume, 100%), rgba(255,255,255,0.18) var(--volume, 100%));
}
#volume-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--gold);
  margin-top: -5px;
}
.icon {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
}
.icon-play::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid currentColor;
}
.icon-pause::before,
.icon-pause::after {
  content: '';
  position: absolute;
  top: 1px;
  width: 4px;
  height: 14px;
  background: currentColor;
  border-radius: 2px;
}
.icon-pause::before { left: 2px; }
.icon-pause::after { right: 2px; }
.icon-volume::before,
.icon-volume::after {
  content: '';
  position: absolute;
}
.icon-volume::before {
  left: 1px;
  top: 4px;
  width: 6px;
  height: 8px;
  background: currentColor;
  clip-path: polygon(0 30%, 45% 30%, 80% 0, 80% 100%, 45% 70%, 0 70%);
}
.icon-volume::after {
  right: 0;
  top: 2px;
  width: 7px;
  height: 11px;
  border: 2px solid currentColor;
  border-left: 0;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
.icon-mute::before,
.icon-mute::after {
  content: '';
  position: absolute;
  background: currentColor;
}
.icon-mute::before {
  inset: 1px 7px 1px 7px;
  width: 2px;
  transform: rotate(45deg);
}
.icon-mute::after {
  inset: 1px 7px 1px 7px;
  width: 2px;
  transform: rotate(-45deg);
}
.icon-fullscreen::before,
.icon-fullscreen::after,
.icon-fullscreen span::before,
.icon-fullscreen span::after {
  content: '';
  position: absolute;
}
.icon-fullscreen::before { left: 0; top: 0; width: 6px; height: 6px; border-left: 2px solid currentColor; border-top: 2px solid currentColor; }
.icon-fullscreen::after { right: 0; top: 0; width: 6px; height: 6px; border-right: 2px solid currentColor; border-top: 2px solid currentColor; }
.icon-fullscreen span::before { left: 0; bottom: 0; width: 6px; height: 6px; border-left: 2px solid currentColor; border-bottom: 2px solid currentColor; }
.icon-fullscreen span::after { right: 0; bottom: 0; width: 6px; height: 6px; border-right: 2px solid currentColor; border-bottom: 2px solid currentColor; }

.about-layout,
.contact-layout,
.footer-grid,
.card-grid,
.portfolio-grid,
.team-grid,
.why-grid { display: grid; gap: 1rem; }
.about-layout { align-items: stretch; }
.glass-card { padding: 1.35rem; }
.about-visual {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}
.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.services-grid,
.why-grid,
.team-grid {
  grid-template-columns: 1fr;
}
.service-card,
.benefit-card,
.team-card {
  padding: 1.3rem;
  position: relative;
  overflow: hidden;
}
.service-card::after,
.benefit-card::after,
.team-card::after,
.contact-panel::after,
.contact-form::after {
  content: '';
  position: absolute;
  inset: auto -20% -55% auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(209,171,97,0.14), transparent 62%);
  pointer-events: none;
}
.card-number,
.team-card-top {
  display: inline-flex;
  width: fit-content;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: rgba(209,171,97,0.12);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.82rem;
  margin-bottom: 1rem;
}
.service-card h3,
.benefit-card h3,
.team-card h3,
.contact-panel h2 { color: #fff; }
.benefit-card strong {
  display: inline-block;
  font-size: clamp(2.3rem, 9vw, 3.5rem);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 0.5rem;
}

.filter-bar {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding-bottom: 0.25rem;
}
.filter-btn {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: #fff;
  font-weight: 700;
}
.filter-btn.active,
.filter-btn:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-deep));
  border-color: transparent;
  color: #111;
}
.portfolio-grid {
  grid-template-columns: 1fr;
}
.portfolio-card {
  overflow: hidden;
  transition: transform var(--ease), opacity var(--ease);
}
.portfolio-card.is-hidden {
  display: none;
}
.lightbox-trigger {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}
.portfolio-card img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
}
.portfolio-copy {
  padding: 1rem 1rem 1.15rem;
}
.portfolio-copy span {
  display: inline-block;
  margin-bottom: 0.6rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.portfolio-copy h3 {
  color: #fff;
  font-size: clamp(1.4rem, 5vw, 1.8rem);
}

.contact-layout {
  align-items: stretch;
}
.contact-panel,
.contact-form {
  padding: 1.3rem;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0;
  display: grid;
  gap: 0.8rem;
}
.contact-list strong { color: #fff; }
.contact-list a { color: var(--gold); }
.contact-form {
  display: grid;
  gap: 0.95rem;
}
.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #fff;
  padding: 0.95rem 1rem;
  outline: none;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(255,255,255,0.45); }
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: rgba(209,171,97,0.55);
  box-shadow: 0 0 0 4px rgba(209,171,97,0.12);
}
.form-note {
  font-size: 0.84rem;
  color: var(--text-faint);
}
.map-wrap {
  margin-top: 1.2rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrap iframe {
  width: 100%;
  min-height: 330px;
  border: 0;
}

.site-footer {
  padding: 2rem 0 1.3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(5, 10, 18, 0.5);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.footer-brand img { width: clamp(148px, 22vw, 190px); }
.footer-brand h3 { color: #fff; }
.footer-copy p,
.footer-copy a { color: var(--text-soft); }
.footer-bottom {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p { color: var(--text-faint); }

.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 120;
  min-height: 56px;
  padding: 0.9rem 1rem 0.9rem 3rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #26d366, #159b4f);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 40px rgba(17, 115, 55, 0.45);
}
.whatsapp-float::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 50%;
  width: 28px;
  height: 28px;
  transform: translateY(-50%);
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.1);
}
.whatsapp-float::after {
  content: '✆';
  position: absolute;
  left: 1.54rem;
  top: 50%;
  transform: translateY(-52%);
  font-size: 0.95rem;
}
.whatsapp-float {
  animation: pulse 2.4s infinite;
}

.lightbox {
  width: min(100% - 1rem, 1080px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 28px;
  background: rgba(7, 14, 25, 0.96);
  color: #fff;
  padding: 0;
  box-shadow: 0 30px 100px rgba(0,0,0,0.6);
}
.lightbox::backdrop {
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(6px);
}
.lightbox figure {
  margin: 0;
}
.lightbox img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  background: #02060c;
}
.lightbox figcaption {
  display: grid;
  gap: 0.4rem;
  padding: 1rem 1.15rem 1.2rem;
}
.lightbox-title,
#lightbox-title {
  font-size: 1.1rem;
  color: #fff;
}
#lightbox-description { color: var(--text-soft); }
.lightbox-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.38);
  color: #fff;
  font-size: 1.55rem;
  display: grid;
  place-items: center;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 100ms; }
.delay-2 { transition-delay: 180ms; }

@keyframes shimmer {
  0% { transform: translateX(-12%); }
  100% { transform: translateX(12%); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 18px 40px rgba(17, 115, 55, 0.45), 0 0 0 0 rgba(38,211,102,0.3); }
  50% { box-shadow: 0 18px 40px rgba(17, 115, 55, 0.45), 0 0 0 16px rgba(38,211,102,0); }
}

@media (min-width: 700px) {
  .hero-grid,
  .about-layout,
  .showcase-grid,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1.08fr 0.92fr;
  }
  .services-grid,
  .why-grid,
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .showcase-copy { order: 1; }
  .player-shell { order: 2; }
}

@media (min-width: 960px) {
  .menu-toggle { display: none; }
  .site-nav {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
  }
  .site-nav a {
    min-height: 46px;
    padding: 0.8rem 1rem;
  }
  .hero-grid {
    grid-template-columns: 1.08fr 0.72fr;
    gap: 1.4rem;
    padding-bottom: 3rem;
  }
  .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .portfolio-grid.enhanced-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .team-grid,
  .why-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-grid {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}

@media (max-width: 699px) {
  .brand-copy small { display: none; }
  .hero-copy h1 { max-width: 12ch; }
  .hero-brandline { width: 100%; }
  .hero-brandline img { width: 104px; }
  .hero-panel { padding: 1.15rem; }
  .controls-bar {
    align-items: stretch;
    gap: 0.7rem;
  }
  .controls-left,
  .controls-right {
    width: 100%;
    justify-content: space-between;
  }
  .controls-right { gap: 0.6rem; }
  #volume-range { flex: 1 1 auto; }
  .whatsapp-float span { display: none; }
  .whatsapp-float {
    width: 62px;
    height: 62px;
    min-height: 62px;
    padding: 0;
    border-radius: 50%;
  }
  .whatsapp-float::before {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
  }
  .whatsapp-float::after {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -54%);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal,
  .hero-shimmer,
  .whatsapp-float,
  .btn,
  .control-btn,
  .big-play,
  .portfolio-card,
  .site-nav,
  .menu-toggle span {
    animation: none !important;
    transition: none !important;
  }
}
