﻿:root {
  --bg: #07141f;
  --bg-soft: #0c2030;
  --card: rgba(17, 44, 63, 0.55);
  --line: rgba(170, 208, 235, 0.2);
  --text: #eaf5ff;
  --muted: #aac2d7;
  --accent: #31d0ff;
  --accent-2: #90ffdc;
  --radius: 20px;
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  --container: 1180px;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, video, iframe, svg, canvas { max-width: 100%; }
body {
  font-family: "Roboto", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at 10% -10%, #19476a 0%, transparent 45%), radial-gradient(circle at 100% 10%, #0e3a45 0%, transparent 35%), linear-gradient(160deg, var(--bg) 0%, #081a26 45%, var(--bg-soft) 100%);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: none;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
.grain { position: fixed; inset: 0; pointer-events: none; opacity: 0.1; background-image: radial-gradient(#fff 0.4px, transparent 0.4px); background-size: 3px 3px; z-index: -1; }
.site-header { width: min(var(--container), calc(100% - 2rem)); margin: 1.3rem auto; padding: 0.8rem 1rem; border: 1px solid var(--line); backdrop-filter: blur(12px); border-radius: 999px; display: flex; justify-content: space-between; align-items: center; gap: 1rem; position: sticky; top: 1rem; z-index: 30; background: rgba(4, 15, 24, 0.65); }
.brand { display: flex; align-items: center; gap: 0.7rem; color: var(--text); text-decoration: none; font-weight: 700; }
.brand-mark { width: 2.2rem; height: 2.2rem; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(145deg, var(--accent), var(--accent-2)); color: #05202b; font-family: "Syne", sans-serif; }
.logo-mark {
  background: #ffffff;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.7);
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.site-nav { display: flex; gap: 1.2rem; }
.site-nav a { color: var(--muted); text-decoration: none; font-weight: 600; }
.site-nav a.active, .site-nav a:hover { color: var(--text); }
.menu-toggle { display: none; border: 1px solid var(--line); background: transparent; color: var(--text); border-radius: 999px; padding: 0.5rem 0.9rem; }
.btn { border-radius: 999px; padding: 0.72rem 1.2rem; text-decoration: none; font-weight: 700; display: inline-flex; align-items: center; justify-content: center; transition: transform 0.3s ease, box-shadow 0.3s ease; border: none; cursor: pointer; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #032333; background: linear-gradient(120deg, var(--accent), var(--accent-2)); box-shadow: 0 8px 25px rgba(47, 204, 248, 0.35); }
.btn-ghost { color: var(--text); border: 1px solid var(--line); background: rgba(255, 255, 255, 0.04); }
.text-link {
  display: inline-block;
  animation: pulse-attention 3.1s ease-in-out infinite;
}
.text-link:hover {
  animation: subtle-shake 0.48s ease-in-out;
}
.btn {
  animation: pulse-attention 3.1s ease-in-out infinite;
}
.btn:hover {
  animation: subtle-shake 0.48s ease-in-out;
}
.hero-actions .btn:nth-child(2n),
.site-header .btn,
.contact-panel .btn:nth-child(2n) {
  animation-delay: -1.2s;
}
.page { width: min(var(--container), calc(100% - 2rem)); margin: 0 auto; }
.premiere-hero {
  position: relative;
  min-height: clamp(600px, 82vh, 820px);
  margin-top: 1.6rem;
  border: 1px solid rgba(170, 208, 235, .22);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .45);
  background: #020c12;
}
.premiere-video-wrap {
  position: absolute;
  inset: -15% -8%;
  transform: scale(1.12);
  pointer-events: none;
}
.premiere-video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  filter: saturate(1.26) contrast(1.12) brightness(1.04);
}
.premiere-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 72% 24%, rgba(49, 208, 255, .08), transparent 28rem),
    linear-gradient(90deg, rgba(2, 12, 18, .54) 0%, rgba(2, 12, 18, .22) 42%, rgba(2, 12, 18, .08) 100%),
    linear-gradient(0deg, rgba(2, 12, 18, .7), rgba(2, 12, 18, 0) 54%, rgba(2, 12, 18, .38));
}
.premiere-content {
  position: relative;
  z-index: 2;
  width: min(520px, 82%);
  min-height: inherit;
  padding: clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.premiere-content h1 {
  max-width: 12ch;
  font-size: clamp(1.85rem, 4vw, 3.6rem);
  letter-spacing: -.055em;
  color: rgba(234,245,255,.86);
  text-shadow: 0 16px 45px rgba(0,0,0,.5);
}
.premiere-content p:not(.eyebrow) {
  max-width: 38ch;
  margin: .65rem 0 0;
  color: rgba(234,245,255,.62);
  font-size: clamp(.9rem, 1vw, 1rem);
}
.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: clamp(1.1rem, 3vw, 2rem);
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: .55rem;
  color: rgba(234,245,255,.82);
  opacity: 0;
  transform: translate(-50%, 18px);
  pointer-events: none;
  transition: opacity .9s ease, transform .9s ease;
}
.premiere-hero.show-scroll-cue .scroll-cue {
  opacity: 1;
  transform: translate(-50%, 0);
}
.scroll-cue span {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  padding: .58rem .9rem;
  background: rgba(2, 12, 18, .46);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(0,0,0,.28);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.scroll-cue span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(144,255,220,.22) 45%, transparent 72%);
  transform: translateX(-120%);
  animation: cue-sheen 2.8s ease-in-out infinite;
}
.scroll-cue i {
  width: 26px;
  height: 42px;
  border: 1px solid rgba(234,245,255,.45);
  border-radius: 999px;
  background: rgba(2, 12, 18, .24);
  box-shadow: inset 0 0 18px rgba(144,255,220,.1), 0 12px 30px rgba(0,0,0,.28);
}
.scroll-cue i::before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  margin: 8px auto 0;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 14px rgba(144,255,220,.8);
  animation: cue-drop 1.8s ease-in-out infinite;
}
.hero, .page-hero { position: relative; margin-top: 2rem; border: 1px solid var(--line); border-radius: 32px; padding: clamp(2rem, 4vw, 4rem); overflow: hidden; background: linear-gradient(135deg, rgba(18, 50, 73, 0.7), rgba(7, 26, 40, 0.65)); box-shadow: var(--shadow); }
.hero { display: grid; grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.82fr); align-items: center; gap: clamp(1.5rem, 4vw, 3rem); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 30px 30px; mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 85%); }
.hero-bg-orb { position: absolute; border-radius: 50%; filter: blur(20px); animation: float 8s ease-in-out infinite; }
.orb-1 { width: 280px; height: 280px; background: rgba(61,163,223,.4); top: -90px; left: -50px; }
.orb-2 { width: 240px; height: 240px; background: rgba(117,255,226,.35); bottom: -100px; right: -70px; animation-delay: -3s; }
.hero-content,.hero-visual,.hero-panels,.section-head,.card,.work-card,.about-wrap,.contact-panel,.stats,.page-hero,.project-card,.booking-wrap { position: relative; z-index: 2; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.15em; color: var(--accent-2); font-weight: 700; font-size: 0.75rem; }
h1,h2,h3 { margin: 0; line-height: 1.1; }
h1 { margin-top: .4rem; max-width: 18ch; font-size: clamp(2rem, 5.2vw, 4.15rem); font-family: "Syne", sans-serif; letter-spacing: -0.045em; }
h1 span { background: linear-gradient(120deg, #e6fbff, #79ffe8); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-copy { margin: 1.1rem 0 1.55rem; max-width: 54ch; color: var(--muted); font-size: clamp(.98rem, 1.2vw, 1.05rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.hero-visual {
  min-height: 480px;
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.85rem;
}
.hero-photo {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(170, 208, 235, 0.26);
  box-shadow: 0 24px 60px rgba(0,0,0,.32);
  filter: saturate(1.12) contrast(1.05);
}
.hero-photo-main {
  grid-row: span 2;
  border-radius: 28px 10px 10px 28px;
  animation: gallery-float 8s ease-in-out infinite;
}
.hero-photo-side.top {
  border-radius: 10px 28px 10px 10px;
  animation: gallery-float 7s ease-in-out infinite reverse;
}
.hero-photo-side.bottom {
  border-radius: 10px 10px 28px 10px;
  animation: gallery-float 9s ease-in-out infinite;
  animation-delay: -2s;
}
.hero-panels { display: grid; gap: 1rem; grid-template-columns: repeat(3,minmax(0,1fr)); margin-top: 2.5rem; grid-column: 1 / -1; }
.hero-panels article,.card,.work-card,.about-wrap,.contact-panel,.stat,.project-card,.booking-form { border: 1px solid var(--line); background: var(--card); backdrop-filter: blur(8px); border-radius: var(--radius); }
.hero-panels article,.card,.work-card,.project-card { padding: 1.2rem; }
.icon-wrap {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(144, 255, 220, 0.35);
  background: linear-gradient(140deg, rgba(49, 208, 255, 0.2), rgba(144, 255, 220, 0.08));
}
.icon-wrap svg {
  width: 1.2rem;
  height: 1.2rem;
  fill: #9be8ff;
}
.hero-panels p,.card p,.work-card p,.about-wrap p { color: var(--muted); }
.section { margin-top: clamp(3rem, 6vw, 4.5rem); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; }
.section-head h2 { max-width: 20ch; font-family: "Syne", sans-serif; font-size: clamp(1.45rem,2.7vw,2.35rem); letter-spacing: -0.04em; }
.service-grid,.work-grid,.blog-grid,.video-grid { margin-top: 1.4rem; display: grid; grid-template-columns: repeat(12,minmax(0,1fr)); gap: 1rem; }
.service-grid .card:nth-child(odd) { grid-column: span 7; }
.service-grid .card:nth-child(even) { grid-column: span 5; }
.work-card { grid-column: span 4; min-height: 220px; position: relative; overflow: hidden; color: var(--text); text-decoration: none; }
.work-card::before { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, transparent, rgba(49,208,255,.2)); opacity: 0; transition: opacity .4s ease; }
.work-card:hover::before { opacity: 1; }
.work-card,
.cap-card,
.stat,
.video-embed,
.mosaic-card {
  animation: breathe 5s ease-in-out infinite;
}
.work-card:nth-child(2),
.cap-card:nth-child(3n),
.video-embed:nth-child(2n) {
  animation-delay: -1.2s;
}
.tag { color: #031f2d; background: linear-gradient(120deg, var(--accent), var(--accent-2)); width: max-content; font-weight: 700; font-size: .78rem; padding: .3rem .6rem; border-radius: 999px; }
.stats { margin-top: 1.4rem; display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: .8rem; }
.stat { text-align: center; padding: 1.2rem; }
.number { font-family: "Syne", sans-serif; font-size: 2.2rem; margin: 0; background: linear-gradient(120deg,var(--accent),var(--accent-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.label { margin: .4rem 0 0; color: var(--muted); font-weight: 600; }
.about-wrap { padding: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.contact-panel { padding: 2rem; text-align: center; }
.contact-panel h2 { margin-bottom: 1rem; font-family: "Syne", sans-serif; font-size: clamp(1.8rem,4vw,3.2rem); }
.portfolio-grid { display: grid; gap: 1rem; }
.project-card { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1rem; align-items: center; }
.project-card img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; border: 1px solid var(--line); }
.text-link { color: var(--accent-2); text-decoration: none; font-weight: 700; }
.booking-wrap { display: grid; grid-template-columns: 1.2fr .8fr; gap: 1rem; background: transparent; border: 0; }
.booking-form { padding: 1.2rem; display: grid; gap: .8rem; }
.booking-form label { display: grid; gap: .4rem; font-weight: 600; color: var(--muted); }
.booking-form input,.booking-form select,.booking-form textarea { border-radius: 10px; border: 1px solid var(--line); background: rgba(255,255,255,.04); color: var(--text); padding: .75rem; font: inherit; }
.booking-form select {
  background-color: #07141f;
  color: var(--text);
}
.booking-form select option {
  background: #07141f;
  color: #eaf5ff;
}
.booking-form input:focus,.booking-form select:focus,.booking-form textarea:focus {
  outline: 2px solid rgba(144,255,220,.5);
  border-color: rgba(144,255,220,.75);
}
.form-status { min-height: 1.2rem; color: var(--accent-2); font-weight: 600; }
.muted { color: var(--muted); }
.blog-grid .card, .video-grid .card { grid-column: span 4; }
.blog-page {
  position: relative;
}
.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .72fr);
  gap: 1.2rem;
  align-items: stretch;
  isolation: isolate;
}
.blog-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 28% 35%, black 18%, transparent 72%);
  opacity: .65;
}
.blog-hero-copy {
  position: relative;
  z-index: 2;
}
.blog-hero-copy h1 {
  max-width: 10ch;
}
.blog-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(18px);
  opacity: .55;
  z-index: 1;
  animation: blog-orbit 12s ease-in-out infinite;
}
.blog-hero-orb.orb-a {
  width: 260px;
  height: 260px;
  right: 24%;
  top: -64px;
  background: rgba(77, 214, 255, .28);
}
.blog-hero-orb.orb-b {
  width: 180px;
  height: 180px;
  left: 6%;
  bottom: -36px;
  background: rgba(144, 255, 220, .18);
  animation-delay: -4s;
}
.blog-hero-orb.orb-c {
  width: 110px;
  height: 110px;
  right: 12%;
  bottom: 22%;
  background: rgba(255, 255, 255, .12);
  animation-delay: -7s;
}
.blog-hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1.6rem;
}
.blog-hero-pills span {
  padding: .62rem .95rem;
  border-radius: 999px;
  border: 1px solid rgba(144,255,220,.24);
  background: rgba(255,255,255,.04);
  color: #dff7ff;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  animation: blog-pill-float 7s ease-in-out infinite;
}
.blog-hero-pills span:nth-child(2) { animation-delay: -1.4s; }
.blog-hero-pills span:nth-child(3) { animation-delay: -2.8s; }
.blog-hero-pills span:nth-child(4) { animation-delay: -4.2s; }
.blog-hero-aside {
  display: grid;
  gap: 1rem;
  position: relative;
  z-index: 2;
}
.blog-pulse-card,
.blog-stat-chip,
.blog-process-panel,
.blog-step {
  border: 1px solid rgba(150, 200, 230, 0.18);
  background:
    linear-gradient(160deg, rgba(255,255,255,.07), rgba(255,255,255,.02)),
    rgba(8, 23, 35, .72);
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 44px rgba(0,0,0,.18);
}
.blog-pulse-card {
  border-radius: 24px;
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
}
.blog-pulse-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -45% auto;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49,208,255,.24), transparent 66%);
  animation: pulse-drift 10s ease-in-out infinite;
}
.blog-pulse-label,
.blog-card-kicker {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .7rem;
  font-weight: 800;
  color: var(--accent-2);
}
.blog-pulse-card strong {
  display: block;
  margin-top: .7rem;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.12;
}
.blog-pulse-card p {
  margin: .9rem 0 0;
  color: var(--muted);
}
.blog-stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.blog-stat-chip {
  border-radius: 20px;
  padding: 1rem;
  transition: transform .35s ease, border-color .35s ease;
}
.blog-stat-chip strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 1.05rem;
  margin-bottom: .35rem;
}
.blog-stat-chip span {
  color: var(--muted);
  font-size: .92rem;
}
.blog-marquee {
  position: relative;
  overflow: hidden;
  padding: .85rem 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.blog-marquee::before,
.blog-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}
.blog-marquee::before {
  left: 0;
  background: linear-gradient(90deg, #081a29, transparent);
}
.blog-marquee::after {
  right: 0;
  background: linear-gradient(270deg, #081a29, transparent);
}
.blog-marquee-track {
  display: flex;
  width: max-content;
  gap: .8rem;
  animation: blog-marquee-scroll 22s linear infinite;
}
.blog-marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  padding: .45rem .9rem;
  border-radius: 999px;
  color: #dcf5ff;
  white-space: nowrap;
  font-size: .82rem;
  font-weight: 700;
  border: 1px solid rgba(144,255,220,.16);
  background: rgba(255,255,255,.03);
}
.blog-marquee-track span::after {
  content: "•";
  color: var(--accent);
}
.blog-feature-grid {
  align-items: stretch;
}
.blog-feature-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  background:
    radial-gradient(circle at top right, rgba(49,208,255,.18), transparent 36%),
    linear-gradient(180deg, rgba(13, 37, 54, .92), rgba(8, 24, 37, .8));
  transition: transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.blog-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.08) 48%, transparent 100%);
  transform: translateX(-140%);
  transition: transform .8s ease;
}
.blog-feature-card:hover::before {
  transform: translateX(140%);
}
.blog-feature-card:hover,
.blog-stat-chip:hover,
.blog-step:hover {
  transform: translateY(-6px);
  border-color: rgba(144,255,220,.34);
  box-shadow: 0 22px 40px rgba(0,0,0,.24);
}
.blog-feature-wide {
  grid-column: span 6;
}
.blog-feature-grid .blog-feature-card:not(.blog-feature-wide) {
  grid-column: span 3;
}
.blog-feature-card h3 {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1;
  letter-spacing: -.04em;
}
.blog-feature-card p,
.blog-process-panel p,
.blog-step p {
  color: var(--muted);
}
.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.blog-card-meta span,
.blog-feature-card small {
  color: #d7f2ff;
  font-weight: 700;
  font-size: .8rem;
}
.blog-card-meta span {
  padding: .42rem .7rem;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.blog-card-line {
  width: 72px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.blog-process-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 1rem;
  align-items: start;
}
.blog-process-panel {
  border-radius: 28px;
  padding: clamp(1.4rem, 2vw, 2rem);
}
.blog-process-panel h2 {
  margin: .7rem 0 1rem;
  max-width: 16ch;
  font-family: "Syne", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  letter-spacing: -.04em;
}
.blog-steps {
  display: grid;
  gap: .9rem;
}
.blog-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  border-radius: 22px;
  padding: 1.1rem 1.15rem;
}
.blog-step span {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-family: "Syne", sans-serif;
  font-size: .95rem;
  color: #042131;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 12px 24px rgba(49,208,255,.22);
}
.blog-step h3 {
  margin-bottom: .4rem;
  font-family: "Syne", sans-serif;
}
.embed-grid { margin-top: 1.4rem; display: grid; gap: 1rem; grid-template-columns: repeat(12,minmax(0,1fr)); }
.video-embed { grid-column: span 6; }
.video-embed h3 { margin-bottom: 0.8rem; }
.video-embed iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; border-radius: 14px; box-shadow: 0 12px 30px rgba(0,0,0,.28); filter: saturate(1.05) contrast(1.02); transition: filter .35s ease, transform .35s ease; }
.video-embed:hover iframe { filter: saturate(1.22) contrast(1.08); transform: scale(1.015); }
.wild-gallery-section {
  position: relative;
}
.gallery-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.1rem;
}
.gallery-controls button {
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 999px;
  padding: 0.55rem 0.78rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}
.gallery-controls button.active {
  color: #07141f;
  background: linear-gradient(120deg, #ffffff, #90ffdc 48%, #31d0ff);
}
.wild-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 88px;
  gap: 0.7rem;
  margin-top: 1.1rem;
  perspective: 1000px;
  min-height: 520px;
  opacity: 1;
  transform: none;
}
.gallery-card {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  padding: 0;
  text-align: left;
  background: #0b1116;
  color: #fff;
  cursor: pointer;
  grid-column: span 3;
  grid-row: span 3;
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
  isolation: isolate;
  animation: gallery-float 7s ease-in-out infinite;
}
.home-gallery .gallery-card {
  grid-column: span 4;
}
.gallery-card.span-1 { grid-row: span 4; }
.gallery-card.span-2 { grid-column: span 4; grid-row: span 3; animation-delay: -1s; }
.gallery-card.span-3 { grid-row: span 5; animation-delay: -2s; }
.gallery-card.span-4 { grid-column: span 5; grid-row: span 4; animation-delay: -3s; }
.gallery-card.span-5 { grid-column: span 3; grid-row: span 3; animation-delay: -4s; }
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.03);
  transition: transform .7s ease, filter .7s ease;
}
.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.74), transparent 58%);
  z-index: 1;
}
.gallery-card span,
.gallery-card strong {
  position: absolute;
  left: 0.8rem;
  z-index: 2;
}
.gallery-card span {
  top: 0.75rem;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  color: #07141f;
  background: #90ffdc;
  border-radius: 999px;
  padding: 0.28rem 0.5rem;
}
.gallery-card strong {
  bottom: 0.8rem;
  right: 0.8rem;
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  line-height: 1.1;
}
.gallery-card:hover img {
  transform: scale(1.13) rotate(1deg);
  filter: saturate(1.18) contrast(1.08);
}
.gallery-footer {
  margin-top: 1rem;
}
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: rgba(2,7,10,.88);
  backdrop-filter: blur(16px);
}
.gallery-lightbox img {
  max-width: min(92vw, 1200px);
  max-height: 78vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0,0,0,.5);
}
.gallery-lightbox p {
  color: #fff;
  font-weight: 700;
}
.gallery-lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  border: 1px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.1);
  color: #fff;
  border-radius: 999px;
  padding: 0.6rem 0.9rem;
  font: inherit;
  cursor: pointer;
}

.gallery-controls {
  display: grid;
  grid-template-columns: repeat(10, minmax(0, 1fr));
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.18rem;
  margin-top: 1.05rem;
  overflow: visible;
}
.gallery-tab {
  border: 0;
  background: transparent;
  color: var(--text);
  border-radius: 0;
  padding: 0.35rem 0.12rem;
  text-align: center;
  font: inherit;
  cursor: pointer;
  min-height: 28px;
  min-width: auto;
  max-width: none;
  width: 100%;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: color .25s ease, opacity .25s ease, transform .25s ease;
}
.gallery-tab::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0;
  transform: scaleX(.45);
  transition: opacity .25s ease, transform .25s ease;
}
.gallery-tab span {
  display: block;
}
.gallery-tab span {
  font-family: "Syne", sans-serif;
  font-weight: 800;
  font-size: clamp(.43rem, .66vw, .73rem);
  line-height: 1;
  max-width: 100%;
  white-space: nowrap;
  overflow-wrap: normal;
  letter-spacing: -.065em;
}
.gallery-tab.active,
.gallery-tab:hover {
  color: var(--accent-2);
  transform: translateY(-1px);
}
.gallery-tab.active::after,
.gallery-tab:hover::after {
  opacity: 1;
  transform: scaleX(1);
}
.wild-gallery {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  gap: 1.25rem;
  min-height: 0;
}
.collection-lane {
  border: 1px solid rgba(170,208,235,.18);
  border-radius: 22px;
  padding: .9rem;
  background:
    radial-gradient(circle at 12% 0%, rgba(49,208,255,.12), transparent 34%),
    rgba(8,24,36,.45);
  overflow: hidden;
}
.collection-lane-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .8rem;
}
.collection-lane-head span {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.2rem, 2.1vw, 1.75rem);
  font-weight: 800;
}
.collection-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 390px);
  gap: .85rem;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: .4rem;
  scrollbar-width: thin;
}
.collection-card {
  position: relative;
  min-height: 300px;
  border: 0;
  border-radius: 20px;
  overflow: hidden;
  padding: 0;
  text-align: left;
  color: #fff;
  background: #06131d;
  cursor: pointer;
  box-shadow: 0 20px 50px rgba(0,0,0,.34);
  content-visibility: auto;
  contain-intrinsic-size: 300px;
}
.collection-card img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.03);
  filter: saturate(1.08) contrast(1.04);
  transition: transform .75s ease, filter .75s ease;
}
.collection-card[data-category="Photoshoots"] img,
.cap-card[href*="Photoshoots"] img {
  object-position: center 18%;
}
.collection-card:hover img {
  transform: scale(1.12);
  filter: saturate(1.22) contrast(1.08);
}
.collection-viewer {
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
}
.collection-viewer figure {
  margin: 0;
  width: min(88vw, 1180px);
  display: grid;
  gap: .85rem;
}
.collection-viewer img {
  width: 100%;
  height: min(76vh, 760px);
  max-height: none;
  object-fit: contain;
  background: rgba(255,255,255,.04);
}
.viewer-help {
  justify-self: center;
  color: rgba(234,245,255,.68);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.viewer-nav {
  border: 1px solid rgba(255,255,255,.2);
  background: rgba(255,255,255,.08);
  color: #fff;
  border-radius: 999px;
  padding: .8rem 1rem;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  backdrop-filter: blur(12px);
}
.viewer-nav:hover {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #06131d;
}
.coverage-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.coverage-tile {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1rem;
  background: rgba(10, 28, 41, .62);
  overflow: hidden;
}
.coverage-strip {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: .55rem;
  height: 210px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.coverage-strip img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 6px;
  filter: saturate(1.08) contrast(1.03);
}
.coverage-strip img.portrait-shot {
  object-position: center 10%;
}
.coverage-strip img:first-child {
  grid-column: 1;
  grid-row: 1 / -1;
}
.coverage-strip img:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.coverage-strip img:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}
.coverage-tile h2 {
  font-family: "Syne", sans-serif;
  font-size: 1.4rem;
  margin: 0 0 .5rem;
}
.coverage-tile p {
  color: var(--muted);
  margin: 0 0 1rem;
}
.mosaic-grid { margin-top: 1.4rem; display: grid; gap: 1rem; grid-template-columns: 1.2fr 1fr 1fr; }
.mosaic-card { border: 1px solid var(--line); border-radius: 18px; overflow: hidden; min-height: 220px; background: rgba(255,255,255,.03); }
.mosaic-card img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.02); transition: transform .55s ease, filter .55s ease; filter: saturate(1.06) contrast(1.05); }
.mosaic-card:hover img { transform: scale(1.08); filter: saturate(1.16) contrast(1.08); }
.capabilities-grid { margin-top: 1.4rem; display: grid; grid-template-columns: repeat(9,minmax(0,1fr)); gap: 1.15rem; }
.cap-card {
  grid-column: span 3;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0.8rem;
  min-height: 315px;
  background:
    linear-gradient(170deg, rgba(144,255,220,.1), rgba(49,208,255,.06)),
    rgba(13, 35, 50, 0.7);
  position: relative;
  overflow: hidden;
  color: var(--text);
  text-decoration: none;
  content-visibility: auto;
  contain-intrinsic-size: 315px;
}
.cap-card img {
  width: 100%;
  height: clamp(170px, 17vw, 235px);
  object-fit: cover;
  display: block;
  border-radius: 15px;
  margin-bottom: 0.9rem;
  filter: saturate(1.08) contrast(1.04);
  transition: transform .55s ease, filter .55s ease;
}
.cap-card:hover img {
  transform: scale(1.04);
  filter: saturate(1.2) contrast(1.08);
}
.cap-card::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(49,208,255,.34), transparent 68%);
}
.cap-card h3 { margin-bottom: 0.45rem; font-size: clamp(1.05rem, 1.45vw, 1.32rem); letter-spacing: -.03em; }
.cap-card p { color: var(--muted); margin: 0; font-size: clamp(.9rem, 1.05vw, 1rem); }
.tilt-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --shine-x: 50%;
  --shine-y: 50%;
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.tilt-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at var(--shine-x) var(--shine-y), rgba(255,255,255,.16), transparent 42%);
  opacity: 0;
  transition: opacity 180ms ease;
}
.tilt-card:hover::before {
  opacity: 1;
}
.tilt-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(144,255,220,.22) inset;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  transform: translate(-50%, -50%);
}

.cursor-ring {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(144, 255, 220, 0.75);
  transform: translate(-50%, -50%);
  transition: transform 0.08s linear, width 0.2s ease, height 0.2s ease;
}

.cursor-spark {
  position: fixed;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle, #90ffdc 0%, #31d0ff 70%, transparent 100%);
  pointer-events: none;
  z-index: 9998;
  animation: spark-fade 700ms ease forwards;
}

.quick-contact {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 60;
  display: grid;
  gap: 8px;
}

.quick-contact a {
  text-decoration: none;
  font-weight: 700;
  color: #05202b;
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  padding: 0.64rem 0.9rem;
  box-shadow: 0 10px 24px rgba(49, 208, 255, 0.28);
  animation: pulse-attention 2.9s ease-in-out infinite;
}
.quick-contact a:first-child {
  animation-delay: -0.35s;
}
.quick-contact a:last-child {
  animation-delay: -1.4s;
}
.quick-contact a:hover {
  animation: subtle-shake 0.48s ease-in-out;
}

@keyframes spark-fade {
  0% { opacity: 0.95; transform: scale(1) translateY(0); }
  100% { opacity: 0; transform: scale(0.1) translateY(-14px); }
}
@keyframes pulse-attention {
  0%, 100% { transform: scale(1); box-shadow: 0 10px 24px rgba(49, 208, 255, 0.28); }
  50% { transform: scale(1.04); box-shadow: 0 16px 30px rgba(144, 255, 220, 0.4); }
}
@keyframes subtle-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-1px); }
  50% { transform: translateX(1.5px); }
  75% { transform: translateX(-1px); }
}
@keyframes breathe {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-3px); }
}
@keyframes gallery-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}
@keyframes cue-sheen {
  0%, 18% { transform: translateX(-120%); }
  55%, 100% { transform: translateX(120%); }
}
@keyframes cue-drop {
  0% { transform: translateY(0); opacity: .25; }
  45% { opacity: 1; }
  100% { transform: translateY(18px); opacity: 0; }
}
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes scroll-right {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
.testimonials-section {
  overflow: hidden;
}
.testimonial-marquee {
  margin-top: 1.4rem;
  border: 1px solid rgba(170,208,235,.16);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(5, 18, 27, .68);
}
.testimonial-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  padding: 1rem;
  animation: testimonial-scroll 34s linear infinite;
}
.testimonial-marquee:hover .testimonial-track {
  animation-play-state: paused;
}
.testimonial-card {
  width: min(360px, 82vw);
  border: 1px solid rgba(170,208,235,.18);
  border-radius: 18px;
  padding: 1.1rem;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02)),
    rgba(13,35,50,.86);
  box-shadow: 0 16px 38px rgba(0,0,0,.22);
}
.testimonial-card p {
  margin: 0 0 .9rem;
  color: var(--text);
  font-weight: 600;
}
.testimonial-card strong,
.testimonial-stack span {
  color: var(--accent-2);
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .72rem;
}
.testimonial-stack {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  background: rgba(10, 28, 41, .72);
  display: grid;
  gap: .85rem;
}
.testimonial-stack h3 {
  font-family: "Syne", sans-serif;
}
.testimonial-stack article {
  border: 1px solid rgba(170,208,235,.16);
  border-radius: 14px;
  padding: .9rem;
  background: rgba(255,255,255,.045);
  animation: breathe 5s ease-in-out infinite;
}
.testimonial-stack p {
  margin: 0 0 .55rem;
  color: var(--text);
}
.site-footer {
  position: relative;
  width: 100%;
  margin: 5rem 0 0;
  padding: 0;
  color: var(--muted);
  background: #061925;
  border-top: 1px solid rgba(144, 255, 220, 0.28);
}
.footer-grid {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(2.4rem, 5vw, 4rem) 0 2rem;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(150px, 1fr));
  gap: clamp(1.4rem, 4vw, 3.2rem);
}
.footer-col {
  display: grid;
  align-content: start;
  gap: .55rem;
}
.footer-brand {
  color: var(--text);
  text-decoration: none;
  font-family: "Syne", sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
}
.footer-col h3 {
  color: var(--text);
  font-size: 1rem;
  margin: 0 0 1rem;
}
.footer-col p {
  max-width: 34ch;
  margin: .6rem 0 0;
}
.footer-col a {
  color: rgba(234,245,255,.66);
  text-decoration: none;
  font-weight: 700;
  transition: color .25s ease, transform .25s ease;
}
.footer-col a:hover {
  color: var(--accent-2);
  transform: translateX(3px);
}
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  margin-top: 1rem;
}
.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 50%;
  color: var(--text);
  font-size: .76rem;
  font-weight: 900;
}
.social-links a:hover {
  transform: translateY(-3px);
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #061925;
}
.footer-bottom {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
  padding: 1rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .9rem;
}
@keyframes testimonial-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes blog-orbit {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(0, 18px, 0) scale(1.06); }
}
@keyframes blog-pill-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes pulse-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-14px, -12px, 0) scale(1.08); }
}
@keyframes blog-marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(20px)} }
@media (max-width: 1200px) {
  :root { --container: 1080px; }
  .site-header { padding: .75rem .9rem; gap: .8rem; }
  .site-nav { gap: .85rem; }
  .site-nav a { font-size: .95rem; }
  .hero { grid-template-columns: minmax(0, 1fr) minmax(300px, .78fr); }
  .hero-visual { min-height: 430px; }
  .premiere-content { width: min(520px, 88%); }
  .footer-grid { grid-template-columns: 1.1fr repeat(3, minmax(130px, 1fr)); }
}
@media (max-width: 1080px) {
  .menu-toggle { display: inline-flex; }
  .site-nav { display: none; width: 100%; flex-direction: column; padding-top: .6rem; }
  .site-nav.open { display: flex; }
  .site-header { border-radius: 20px; top: .6rem; flex-wrap: wrap; }
  .premiere-hero { min-height: clamp(560px, 72vh, 620px); }
  .premiere-content { width: min(680px, 94%); }
  .hero { grid-template-columns: 1fr; }
  .blog-hero,
  .blog-process-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 400px; }
  .hero-panels,.stats,.about-wrap,.booking-wrap,.project-card { grid-template-columns: 1fr; }
  .service-grid .card,.work-card,.blog-grid .card,.video-grid .card { grid-column: span 12; }
  .blog-feature-grid .blog-feature-card:not(.blog-feature-wide),
  .blog-feature-wide { grid-column: span 12; }
  .video-embed { grid-column: span 12; }
  .mosaic-grid { grid-template-columns: 1fr; }
  .portfolio-grid,
  .coverage-page-grid,
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .capabilities-grid { grid-template-columns: repeat(6,minmax(0,1fr)); }
  .cap-card { grid-column: span 3; }
  .wild-gallery { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .gallery-card,
  .home-gallery .gallery-card,
  .gallery-card.span-2,
  .gallery-card.span-4,
  .gallery-card.span-5 { grid-column: span 3; }
  .collection-viewer { grid-template-columns: 1fr; }
  .viewer-nav { width: max-content; justify-self: center; }
  body { cursor: auto; }
  .cursor-dot, .cursor-ring, .cursor-spark { display: none; }
  .quick-contact { right: 10px; bottom: 10px; }
  .work-card,
  .cap-card,
  .stat,
  .video-embed,
  .mosaic-card,
  .blog-hero-pills span,
  .btn,
  .text-link,
  .gallery-card,
  .quick-contact a { animation: none; }
}
@media (max-width: 820px) {
  :root { --container: 100%; }
  .site-header,
  .page,
  .footer-grid,
  .footer-bottom { width: calc(100% - 1.4rem); }
  .premiere-content { width: min(100%, 92%); }
  .portfolio-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .gallery-lightbox { padding: 1rem; }
  .gallery-lightbox img { max-height: 72vh; }
}
@media (max-width: 640px) {
  .capabilities-grid { grid-template-columns: 1fr; gap: .95rem; }
  .cap-card { grid-column: span 1; min-height: auto; }
  .cap-card img { height: 190px; }
  .collection-row { grid-auto-columns: minmax(230px, 86vw); }
  .collection-card,
  .collection-card img { min-height: 260px; }
  .collection-lane { padding: .75rem; border-radius: 18px; }
  .collection-lane-head { align-items: start; flex-direction: column; }
  .gallery-controls { display: grid; grid-template-columns: repeat(10, minmax(0, 1fr)); gap: .12rem; overflow: visible; }
  .gallery-tab { min-height: 26px; min-width: 0; max-width: none; padding: .28rem .04rem; border-radius: 0; }
  .gallery-tab span { font-size: clamp(.34rem, 1.25vw, .45rem); line-height: 1; white-space: nowrap; letter-spacing: -.07em; }
  .collection-lane-head span { font-size: 1.22rem; }
  .collection-viewer figure { width: 92vw; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
  .wild-gallery { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .gallery-card,
  .home-gallery .gallery-card,
  .gallery-card.span-1,
  .gallery-card.span-2,
  .gallery-card.span-3,
  .gallery-card.span-4,
  .gallery-card.span-5 { grid-column: span 2; grid-row: span 3; }
}
@media (max-width: 640px) {
  .site-header { justify-content: center; }
  .brand-text { font-size: .95rem; }
  .section-head { align-items: start; flex-direction: column; gap: .7rem; }
  .section-head h2 { font-size: clamp(1.45rem, 8vw, 2.05rem); max-width: 13ch; }
  .premiere-hero { min-height: 540px; border-radius: 24px; }
  .premiere-video-wrap { inset: -18% -24%; transform: scale(1.22); }
  .premiere-content { width: 92%; padding: 1.25rem; justify-content: end; }
  .premiere-content h1 { font-size: clamp(1.85rem, 10vw, 3rem); max-width: 10ch; }
  .premiere-content p:not(.eyebrow) { font-size: .88rem; max-width: 30ch; }
  .hero,.page-hero { padding: 1.4rem; }
  .blog-hero { gap: .9rem; }
  .blog-hero-copy h1 { max-width: 11ch; }
  .blog-hero-pills { gap: .5rem; }
  .blog-hero-pills span { width: 100%; justify-content: center; }
  .blog-stat-row { grid-template-columns: 1fr; }
  .blog-marquee::before,
  .blog-marquee::after { width: 48px; }
  .blog-process-panel h2 { max-width: 11ch; }
  .blog-step { grid-template-columns: 1fr; }
  .hero-visual { min-height: 360px; grid-template-columns: 1fr; grid-template-rows: repeat(3, 180px); }
  .hero-photo-main,
  .hero-photo-side.top,
  .hero-photo-side.bottom { grid-row: auto; border-radius: 18px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .coverage-strip { height: 180px; }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue span::after,
  .scroll-cue i::before,
  .blog-hero-orb,
  .blog-hero-pills span,
  .blog-pulse-card::after,
  .blog-marquee-track {
    animation: none;
  }
}




.social-links a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}
.social-links a.tiktok:hover {
  background: linear-gradient(120deg, #111827, #00f2ea 48%, #ff0050);
  color: #ffffff;
}
.social-links a.instagram:hover {
  background: linear-gradient(135deg, #405de6, #833ab4, #e1306c, #fd1d1d, #fcb045);
  color: #ffffff;
}
.social-links a.facebook:hover {
  background: linear-gradient(135deg, #0866ff, #4da3ff);
  color: #ffffff;
}
.social-links a.email:hover {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #061925;
}
