/* ===================== Ward Creatives — styles ===================== */

:root{
  --black: #060708;
  --near-black: #0c0e10;
  --panel: #101215;
  --line: rgba(255,255,255,0.10);
  --white: #f5f6f7;
  --grey: #9aa0a6;
  --blue: #3ea6ff;
  --blue-dim: #1f6fb0;
  --blue-glow: rgba(62,166,255,0.35);
  --ff-display: "Instrument Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ff-body: "Instrument Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ff-script: "Instrument Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --container: 1240px;
  --radius: 2px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin:0;
  background: var(--black);
  color: var(--white);
  font-family: var(--ff-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  cursor: none;
}

img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }

body.is-loading{ overflow:hidden; height:100vh; }

/* ===================== focus-box cursor ===================== */
.focus-box{
  position: fixed;
  top:0; left:0;
  width: 50px;
  height: 50px;
  margin: -25px 0 0 -25px;
  color: var(--blue);
  z-index: 9999;
  pointer-events:none;
  filter: drop-shadow(0 0 10px var(--blue-glow));
  opacity: 0;
  transition: opacity .3s ease, transform .12s ease-out, width .2s ease, height .2s ease, margin .2s ease, color .2s ease;
}
.focus-box.active{ opacity: 1; }
.focus-box.locked{
  width: 34px; height:34px;
  margin: -17px 0 0 -17px;
  color: var(--white);
}
.focus-box svg{ width:100%; height:100%; }

@media (hover: none){
  body{ cursor: auto; }
  .focus-box{ display:none; }
}

/* ===================== preloader ===================== */
.preloader{
  position: fixed; inset:0; z-index: 10000;
  background: var(--black);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap: 34px;
  opacity: 1;
  transition: opacity .6s ease;
}
.preloader.is-done{
  opacity: 0;
  pointer-events: none;
}
.preloader::before{
  content:"";
  position:absolute; top:50%; left:50%;
  width: 520px; height:520px;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(62,166,255,0.16), transparent 68%);
  pointer-events:none;
}
.preloader-logo{
  position:relative;
  width: 200px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(62,166,255,0.55)) drop-shadow(0 0 60px rgba(62,166,255,0.3));
  animation: preloaderPulse 1.7s ease-in-out infinite;
}
@keyframes preloaderPulse{
  0%, 100%{ opacity:.55; transform: scale(.97); }
  50%{ opacity:1; transform: scale(1); }
}
.preloader-bar{
  position:relative;
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 0 18px rgba(62,166,255,0.15);
}
.preloader-bar span{
  display:block;
  width: 40%;
  height:100%;
  background: var(--blue);
  box-shadow: 0 0 10px var(--blue), 0 0 24px var(--blue-glow);
  animation: preloaderSlide 1.15s ease-in-out infinite;
}
@keyframes preloaderSlide{
  0%{ transform: translateX(-120%); }
  100%{ transform: translateX(350%); }
}

.section-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* subtle grain / vignette layer */
.grain{
  position: fixed; inset:0; pointer-events:none; z-index: 9998;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(62,166,255,0.06), transparent 60%),
    radial-gradient(ellipse at 100% 100%, rgba(62,166,255,0.05), transparent 55%);
  mix-blend-mode: screen;
}

/* ===================== typography ===================== */
.tag{
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue);
  margin: 0 0 14px;
  font-weight: 600;
}
.section-title{
  font-family: var(--ff-script);
  font-size: clamp(28px, 4.4vw, 46px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 20px;
}
.section-lede{
  color: var(--grey);
  max-width: 560px;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* ===================== buttons ===================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding: 15px 30px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn-solid{
  background: var(--blue);
  color: var(--black);
  box-shadow: 0 0 0 0 var(--blue-glow);
}
.btn-solid:hover{
  box-shadow: 0 0 28px var(--blue-glow);
  transform: translateY(-2px);
}
.btn-outline{
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover{
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
.btn-ghost{
  color: var(--white);
  padding: 15px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  border-radius:0;
}
.btn-ghost:hover{ border-color: var(--blue); color: var(--blue); }

/* ===================== header ===================== */
.site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 500;
  padding: 22px 0;
  transition: padding .3s ease, background .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled{
  padding: 14px 0;
  background: rgba(6,7,8,0.85);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.header-inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
}
.brand-logo{ height: 54px; width:auto; filter: drop-shadow(0 0 18px rgba(62,166,255,0.25)); }

.main-nav{
  display:flex;
  gap: 36px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.main-nav a{
  position:relative;
  padding: 4px 0;
  color: var(--grey);
  transition: color .2s ease;
}
.main-nav a::after{
  content:"";
  position:absolute; left:0; right:100%; bottom:-2px;
  height:1px; background: var(--blue);
  transition: right .25s ease;
}
.main-nav a:hover{ color: var(--white); text-shadow: 0 0 14px var(--blue-glow); }
.main-nav a:hover::after{ right:0; }

.header-actions{ display:flex; align-items:center; gap:18px; }
.header-cta{ padding: 11px 22px; }

.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:34px; height:34px;
  background:none; border:none; cursor:pointer;
}
.nav-toggle span{
  display:block; height:1px; width:100%;
  background: var(--white);
  transition: transform .25s ease, opacity .25s ease;
}

/* ===================== hero ===================== */
.hero{
  position: relative;
  min-height: 100svh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
}
.hero-media{ position:absolute; inset:0; z-index:0; }
.hero-img{
  width:100%; height:100%; object-fit:cover;
  transform: scale(1.08);
  animation: heroZoom 18s ease-out forwards;
}
@keyframes heroZoom{ to{ transform: scale(1); } }
.hero-overlay{
  position:absolute; inset:0;
  background:
    linear-gradient(180deg, rgba(6,7,8,0.55) 0%, rgba(6,7,8,0.35) 30%, rgba(6,7,8,0.72) 78%, rgba(6,7,8,0.95) 100%),
    linear-gradient(90deg, rgba(6,7,8,0.35), rgba(6,7,8,0.1) 40%, rgba(6,7,8,0.1) 60%, rgba(6,7,8,0.35));
}
.hero-content{
  position: relative; z-index: 2;
  max-width: 920px;
  padding: 0 24px;
}
.eyebrow{
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0 0 22px;
}
.hero-title{
  font-size: clamp(32px, 6.4vw, 72px);
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 26px;
  text-wrap: balance;
}
.accent-script{
  font-family: var(--ff-script);
  font-weight: 700;
  color: var(--blue);
  text-shadow: 0 0 40px var(--blue-glow);
}
.hero-sub{
  font-size: clamp(15px, 1.6vw, 19px);
  color: var(--grey);
  max-width: 520px;
  margin: 0 auto 40px;
}
.hero-actions{ display:flex; gap:18px; justify-content:center; flex-wrap:wrap; }

.scroll-cue{
  position:absolute; bottom: 34px; left:50%; transform: translateX(-50%);
  z-index:2;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  color: var(--grey);
  font-size: 10px; letter-spacing: 0.3em; text-transform:uppercase;
}
.scroll-cue i{
  width:1px; height: 46px;
  background: linear-gradient(180deg, var(--blue), transparent);
  position:relative; overflow:hidden;
  display:block;
}
.scroll-cue i::after{
  content:""; position:absolute; top:-100%; left:0; width:100%; height:100%;
  background: var(--white);
  animation: scrollDrop 2.2s ease-in-out infinite;
}
@keyframes scrollDrop{
  0%{ top:-100%; } 60%{ top:100%; } 100%{ top:100%; }
}

/* ===================== marquee ===================== */
.marquee{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--near-black);
  overflow: hidden;
  padding: 16px 0;
}
.marquee-track{
  display:flex;
  gap: 28px;
  width: max-content;
  white-space: nowrap;
  animation: scroll-left 32s linear infinite;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  font-weight: 600;
}
.marquee-track span:nth-child(2n){ color: var(--blue); }
@keyframes scroll-left{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ===================== showcase ===================== */
.showcase{
  background: var(--near-black);
  border-bottom: 1px solid var(--line);
  padding: 100px 0 90px;
  text-align: center;
}
.showcase-title{
  font-family: var(--ff-script);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: clamp(30px, 4.4vw, 48px);
  margin: 0 0 64px;
}
.showcase-grid{
  display:grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  align-items:center;
  gap: 22px;
  max-width: 1000px;
  margin: 0 auto;
}
.showcase-card{
  position:relative;
  display:block;
  overflow:hidden;
  border-radius: 6px;
  aspect-ratio: 4 / 3;
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}
.showcase-card-tall{
  aspect-ratio: 3 / 4.4;
  transform: translateY(-36px);
  z-index: 1;
}
.showcase-card img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .6s ease, filter .4s ease;
  filter: grayscale(10%);
}
.showcase-card:hover img{ transform: scale(1.06); filter: grayscale(0%); }
.showcase-card::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 45%, rgba(6,7,8,0.8));
}
.showcase-label{
  position:absolute; left:50%; bottom:22px; z-index:1;
  transform: translateX(-50%);
  font-family: var(--ff-script);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
}
.showcase-play{
  position:absolute; top:50%; left:50%; z-index:1;
  transform: translate(-50%,-50%);
  width: 52px; height:52px;
  border-radius:999px;
  background: rgba(6,7,8,0.55);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  display:flex; align-items:center; justify-content:center;
  font-size: 15px;
  backdrop-filter: blur(4px);
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.showcase-card:hover .showcase-play{
  background: var(--blue);
  border-color: var(--blue);
  color: var(--black);
  transform: translate(-50%,-50%) scale(1.08);
  box-shadow: 0 0 30px var(--blue-glow);
}
.showcase-cta{ margin-top: 56px; }

/* ===================== stats ===================== */
.stats{ background: var(--black); padding: 70px 0; }
.stats-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat{
  text-align:center;
  padding: 0 20px;
  border-left: 1px solid var(--line);
}
.stat:first-child{ border-left:none; }
.stat-num{
  font-family: var(--ff-script);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 48px);
  color: var(--blue);
  margin: 0 0 10px;
  text-shadow: 0 0 30px var(--blue-glow);
}
.stat-label{
  margin:0;
  color: var(--grey);
  font-size: 13px;
  line-height: 1.6;
  max-width: 260px;
  margin-inline: auto;
}

/* ===================== social / phone mocks ===================== */
.social-grid{
  display:grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 80px;
  align-items:center;
}
.phones{
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
  min-height: 520px;
}
.phone-mock{
  position:relative;
  width: 210px;
  aspect-ratio: 9/19.5;
  border-radius: 40px;
  border: 7px solid #16181b;
  background: #000;
  overflow:hidden;
  box-shadow: 0 40px 70px rgba(0,0,0,0.55);
  cursor: pointer;
  transition: transform .45s cubic-bezier(.22,.9,.3,1), filter .35s ease, box-shadow .35s ease;
}
.phone-mock-back{
  transform: rotate(-4deg) translate(28px, 8px);
  filter: brightness(0.72);
  z-index:1;
}
.phone-mock-front{
  transform: rotate(3deg) translate(-28px, -10px);
  z-index:2;
  border-color: #1c1f23;
}
.phone-mock:hover{
  transform: translateY(-12px) scale(1.06) rotate(0deg);
  filter: brightness(1);
  box-shadow: 0 55px 90px rgba(0,0,0,0.6), 0 0 46px rgba(62,166,255,0.18);
  z-index: 5;
}
.phone-mock img{
  position:absolute; inset:0;
  width:100%; height:100%; object-fit:cover;
}
.phone-mock::before{
  content:"";
  position:absolute; inset:0; z-index:1;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, transparent 30%, transparent 55%, rgba(0,0,0,0.85) 100%);
}
.phone-notch{
  position:absolute; top:9px; left:50%; z-index:3;
  transform: translateX(-50%);
  width: 64px; height:16px;
  background: #000;
  border-radius: 12px;
}
.phone-play{
  position:absolute; top:50%; left:50%; z-index:4;
  transform: translate(-50%,-50%);
  width: 54px; height:54px;
  border-radius:999px;
  background: rgba(6,7,8,0.5);
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  display:flex; align-items:center; justify-content:center;
  font-size: 16px;
  padding-left: 3px;
  cursor:pointer;
  backdrop-filter: blur(4px);
  transition: background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.phone-mock:hover .phone-play{
  background: var(--blue);
  border-color: var(--blue);
  color: var(--black);
  transform: translate(-50%,-50%) scale(1.08);
  box-shadow: 0 0 30px var(--blue-glow);
}
.phone-video iframe,
.phone-video video{
  position:absolute; inset:0; z-index:0;
  width:100%; height:100%;
  object-fit:cover;
  border:none;
}
.phone-video .preview-video{ opacity:0; transition: opacity .3s ease; }
.phone-video.previewing .preview-video{ opacity:1; }
.phone-video.previewing img{ opacity:0; }
.phone-video.previewing .phone-play{ opacity:0; }
.phone-video img{ transition: opacity .3s ease; }
.phone-play{ transition: background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease, opacity .25s ease; }
.phone-side-actions{
  position:absolute; right:10px; bottom:96px; z-index:3;
  display:flex; flex-direction:column; align-items:center; gap:16px;
  color: var(--white);
  font-size: 16px;
}
.phone-icon{ transition: text-shadow .3s ease, transform .3s ease; }
.phone-mock:hover .phone-icon{ text-shadow: 0 0 12px var(--blue-glow); }
.phone-caption{
  position:absolute; left:14px; right:52px; bottom:20px; z-index:3;
  color: var(--white);
}
.phone-handle{
  display:flex; align-items:center; gap:7px;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 600;
}
.phone-avatar{
  width: 20px; height:20px;
  border-radius: 50%;
  background: #000;
  display:flex; align-items:center; justify-content:center;
  overflow:hidden;
  flex-shrink:0;
}
.phone-avatar img{
  position: static;
  inset: auto;
  width: 62%; height:auto;
  object-fit: contain;
}
.phone-handle em{
  font-style:normal;
  margin-left: 6px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 5px;
  padding: 2px 7px;
  font-size: 9px;
  font-weight: 600;
}
.phone-caption p{ margin:0; font-size: 11.5px; line-height:1.4; }

/* ===================== generic section rhythm ===================== */
section{ padding: 110px 0; position: relative; }
.social{ background: var(--near-black); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.services{ background: var(--black); }
.work{ background: var(--near-black); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.pricing{ background: var(--black); }
.about{ background: var(--near-black); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.contact{ background: var(--black); }

/* ===================== services ===================== */
.services-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 50px;
}
.service-card{
  background: var(--black);
  padding: 40px 28px;
  transition: background .3s ease;
}
.service-card:hover{ background: var(--panel); }
.service-num{
  display:block;
  font-size: 12px;
  color: var(--blue);
  letter-spacing: 0.2em;
  margin-bottom: 22px;
  font-weight: 700;
}
.service-card h3{
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.service-card p{ margin:0; color: var(--grey); font-size: 14.5px; line-height:1.6; }

/* ===================== work / gallery ===================== */
.filter-row{ display:flex; gap:10px; margin: 0 0 36px; }
.filter-btn{
  background:none;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--grey);
  padding: 9px 20px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor:pointer;
  transition: all .2s ease;
}
.filter-btn:hover{ color: var(--white); border-color: rgba(255,255,255,0.5); text-shadow: 0 0 12px var(--blue-glow); }
.filter-btn.active{ background: var(--blue); color: var(--black); border-color: var(--blue); }

.gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 12px;
}
.work-video-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 280px;
  gap: 12px;
  max-width: 620px;
}
.gallery-item{
  position: relative;
  padding:0; margin:0; border:none;
  overflow:hidden;
  cursor: pointer;
  grid-column: span 1;
  border-radius: var(--radius);
}
.gallery-item img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .6s ease, filter .4s ease;
  filter: grayscale(15%);
}
.gallery-item::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 40%, rgba(6,7,8,0.75));
  opacity:0;
  transition: opacity .3s ease;
}
.gallery-item:hover img{ transform: scale(1.07); filter: grayscale(0%); }
.gallery-item:hover::after{ opacity:1; }
.gallery-item:hover .gallery-caption{ opacity:1; transform: translateY(0); }
.gallery-item.hide{ display:none; }
.gallery-item:hover .clip-play{
  background: var(--blue);
  border-color: var(--blue);
  color: var(--black);
  transform: translate(-50%,-50%) scale(1.1);
  box-shadow: 0 0 26px var(--blue-glow);
}
.gallery-item.playing::after{ display:none; }
.gallery-item video{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
}

.gallery-caption{
  position:absolute; left:18px; bottom:16px; z-index:1;
  font-family: var(--ff-script);
  font-weight: 600;
  font-size: 17px;
  color: var(--white);
  text-shadow: 0 0 16px rgba(62,166,255,0.5);
  opacity:0;
  transform: translateY(8px);
  transition: opacity .3s ease, transform .3s ease;
}

.gallery-note{ margin-top: 30px; color: var(--grey); font-size: 14px; }
.gallery-note a{ color: var(--blue); border-bottom: 1px solid var(--blue-dim); }

/* ===================== reels & walkthroughs ===================== */
.reels-subhead{
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  margin: 50px 0 22px;
}
.reels-subhead:first-of-type{ margin-top: 8px; }

.reel-strip{
  display:flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 14px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: var(--blue-dim) transparent;
}
.reel-strip::-webkit-scrollbar{ height: 6px; }
.reel-strip::-webkit-scrollbar-thumb{ background: var(--blue-dim); border-radius: 4px; }

.reel-card{
  position:relative;
  flex: 0 0 auto;
  width: 170px;
  aspect-ratio: 9/16;
  border-radius: 10px;
  overflow:hidden;
  cursor:pointer;
  scroll-snap-align: start;
  background: #000;
  border: 1px solid var(--line);
  transition: transform .3s ease, border-color .3s ease;
}
.reel-card:hover{ transform: translateY(-4px); border-color: rgba(62,166,255,0.4); }

.video-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.video-card{
  position:relative;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow:hidden;
  cursor:pointer;
  background: #000;
  border: 1px solid var(--line);
  transition: transform .3s ease, border-color .3s ease;
}
.video-card:hover{ transform: translateY(-4px); border-color: rgba(62,166,255,0.4); }

.reel-card img, .video-card img,
.reel-card video, .video-card video{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  transition: opacity .3s ease;
}
.gallery-item img{ transition: transform .6s ease, filter .4s ease, opacity .3s ease; }

.preview-video{ opacity:0; pointer-events:none; }
.reel-card.previewing .preview-video,
.video-card.previewing .preview-video,
.gallery-item.previewing .preview-video{ opacity:1; }
.reel-card.previewing img,
.video-card.previewing img,
.gallery-item.previewing img{ opacity:0; }
.reel-card.previewing .clip-play,
.video-card.previewing .clip-play,
.gallery-item.previewing .clip-play{ opacity:0; }

.hover-hint{
  position:absolute; left:50%; bottom:14px; z-index:2;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(6,7,8,0.55);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  opacity:0;
  transition: opacity .25s ease;
  pointer-events:none;
  white-space: nowrap;
}
.reel-card:hover .hover-hint,
.video-card:hover .hover-hint,
.gallery-item:hover .hover-hint{ opacity:1; }
.reel-card.previewing .hover-hint, .reel-card.playing .hover-hint,
.video-card.previewing .hover-hint, .video-card.playing .hover-hint,
.gallery-item.previewing .hover-hint, .gallery-item.playing .hover-hint{ opacity:0 !important; }
.reel-card::after, .video-card::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 45%, rgba(6,7,8,0.85));
  pointer-events:none;
}
.clip-play{
  position:absolute; top:50%; left:50%; z-index:2;
  transform: translate(-50%,-50%);
  width: 40px; height:40px;
  border-radius:999px;
  background: rgba(6,7,8,0.55);
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  display:flex; align-items:center; justify-content:center;
  font-size: 13px;
  padding-left: 2px;
  backdrop-filter: blur(4px);
  transition: background .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.reel-card:hover .clip-play, .video-card:hover .clip-play{
  background: var(--blue);
  border-color: var(--blue);
  color: var(--black);
  transform: translate(-50%,-50%) scale(1.1);
  box-shadow: 0 0 26px var(--blue-glow);
}
.reel-card.playing::after, .video-card.playing::after{ display:none; }
.reel-card.playing .clip-play, .video-card.playing .clip-play{ display:none; }

/* lightbox */
.lightbox{
  position: fixed; inset:0; z-index: 1000;
  background: rgba(6,7,8,0.96);
  display:flex; align-items:center; justify-content:center;
  padding: 40px;
  opacity:0; pointer-events:none;
  transition: opacity .25s ease;
}
.lightbox.open{ opacity:1; pointer-events:auto; }
.lightbox img{ max-width: 100%; max-height: 88vh; box-shadow: 0 30px 80px rgba(0,0,0,0.6); }
.lightbox-close{
  position:absolute; top: 26px; right: 32px;
  background:none; border:none; color: var(--white);
  font-size: 32px; cursor:pointer; line-height:1;
}
.lightbox-close:hover{ color: var(--blue); text-shadow: 0 0 16px var(--blue-glow); }

/* ===================== pricing ===================== */
.pricing-grid{
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.price-card{
  border: 1px solid var(--line);
  padding: 32px 24px;
  position: relative;
  background: var(--near-black);
  display:flex; flex-direction:column;
  transition: border-color .3s ease, transform .3s ease;
}
.price-card:hover{ transform: translateY(-6px); border-color: rgba(62,166,255,0.4); }
.price-card.featured{
  border-color: var(--blue);
  background: linear-gradient(180deg, rgba(62,166,255,0.08), transparent 60%), var(--near-black);
}
.price-badge{
  position:absolute; top:-13px; left: 24px;
  background: var(--blue); color: var(--black);
  font-size: 10px; letter-spacing: 0.16em; text-transform:uppercase;
  font-weight:700; padding: 5px 12px; border-radius: 999px;
}
.price-card h3{
  margin:0 0 8px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.price-tagline{
  color: var(--grey);
  font-size: 13px;
  line-height: 1.5;
  margin: 0 0 20px;
  flex: 1;
}
.price{ font-size: 34px; font-weight: 700; margin: 0; letter-spacing:-0.02em; }
.price-note{ color: var(--grey); font-size: 11px; margin: 2px 0 22px; text-transform:uppercase; letter-spacing:0.1em; }
.price-card .btn{ width:100%; margin-top:auto; padding: 13px 20px; font-size:11px; }

.addons{
  margin-top: 60px;
  border-top: 1px solid var(--line);
  padding-top: 40px;
}
.addons-title{
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 700;
  margin: 0 0 20px;
}
.addons-list{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 48px;
}
.addons-list li{
  display:flex;
  justify-content:space-between;
  align-items:baseline;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
}
.addons-list li:nth-child(1),
.addons-list li:nth-child(2){ border-top:none; }
.addons-list span{ color: var(--grey); }
.addons-list b{ color: var(--white); font-weight: 700; white-space:nowrap; }

/* ===================== about ===================== */
.about-grid{
  display:grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items:center;
}
.about-media{
  aspect-ratio: 4/5;
  overflow:hidden;
  position:relative;
  border: 1px solid var(--line);
}
.about-media img{ width:100%; height:100%; object-fit:cover; }
.about-media::after{
  content:"";
  position:absolute; inset:0;
  border: 1px solid var(--blue-dim);
  outline: 10px solid var(--black);
  outline-offset: 14px;
  pointer-events:none;
}
.about-copy p{ color: var(--grey); line-height: 1.75; font-size: 15.5px; margin: 0 0 20px; }
.about-copy .btn{ margin-top: 8px; }

/* ===================== contact ===================== */
.contact-grid{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
}
.contact-copy p{ color: var(--grey); line-height:1.7; font-size:15.5px; max-width: 420px; }
.contact-details{ margin-top: 36px; }
.contact-details li{
  padding: 16px 0;
  border-top: 1px solid var(--line);
  display:flex; flex-direction:column; gap:4px;
  font-size: 15px;
}
.contact-details li:last-child{ border-bottom: 1px solid var(--line); }
.contact-details span{
  font-size: 11px; letter-spacing: 0.18em; text-transform:uppercase; color: var(--blue);
}
.contact-details a:hover{ color: var(--blue); text-shadow: 0 0 14px var(--blue-glow); }

.contact-form{
  background: var(--near-black);
  border: 1px solid var(--line);
  padding: 40px;
  display:flex; flex-direction:column; gap: 18px;
}
.booking-panel{
  justify-content:center;
  min-height: 320px;
  padding: 24px;
}
.booking-panel > div{ width:100%; }
.booking-panel iframe{ width:100% !important; }
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label{ display:flex; flex-direction:column; gap:8px; font-size: 12px; letter-spacing:0.1em; text-transform:uppercase; color: var(--grey); }
.contact-form input,
.contact-form textarea{
  background: var(--black);
  border: 1px solid var(--line);
  color: var(--white);
  padding: 13px 14px;
  font-family: inherit;
  font-size: 14px;
  border-radius: var(--radius);
  transition: border-color .2s ease;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus{
  outline:none;
  border-color: var(--blue);
}
.contact-form .btn{ margin-top: 6px; }
.form-status{ margin:0; font-size:13px; color: var(--blue); min-height: 16px; }

/* ===================== footer ===================== */
.site-footer{ padding: 46px 0; border-top: 1px solid var(--line); }
.footer-inner{
  display:flex; align-items:center; justify-content:space-between; gap: 20px; flex-wrap:wrap;
}
.footer-logo{ height: 36px; opacity:0.8; }
.site-footer p{ margin:0; color: var(--grey); font-size: 13px; }
.back-to-top{ color: var(--grey); font-size: 12px; letter-spacing:0.1em; text-transform:uppercase; }
.back-to-top:hover{ color: var(--blue); text-shadow: 0 0 14px var(--blue-glow); }

/* ===================== reveal-on-scroll ===================== */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in{ opacity:1; transform:none; }

/* ===================== responsive ===================== */
@media (max-width: 1180px){
  .pricing-grid{ grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px){
  .video-grid{ grid-template-columns: repeat(2, 1fr); }
  .reel-card{ width: 150px; }
  .social-grid{ grid-template-columns: 1fr; gap: 50px; }
  .phones{ min-height: 490px; order: -1; }
  .phone-mock{ width: 200px; }
  .showcase{ padding: 76px 0 70px; }
  .showcase-title{ margin-bottom: 44px; }
  .showcase-grid{ grid-template-columns: 1fr; max-width: 380px; gap: 20px; }
  .showcase-card, .showcase-card-tall{ aspect-ratio: 4/3; transform:none; }
  .stats-grid{ grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
  .stat{ border-left:none; border-top: 1px solid var(--line); padding-top: 24px; text-align:left; padding-left:0; }
  .stat:nth-child(1), .stat:nth-child(2){ border-top:none; padding-top:0; }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .pricing-grid{ grid-template-columns: repeat(2, 1fr); max-width: 620px; margin: 0 auto; }
  .about-grid, .contact-grid{ grid-template-columns: 1fr; gap: 44px; }
  .about-media{ aspect-ratio: 16/10; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  }

@media (max-width: 760px){
  .focus-box{ display:none; }
  .main-nav{
    position: fixed; top: 0; right: 0;
    height: 100svh; width: min(78vw, 320px);
    background: var(--near-black);
    border-left: 1px solid var(--line);
    flex-direction: column;
    justify-content:center;
    align-items:flex-start;
    gap: 26px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform .35s ease;
    font-size: 15px;
    z-index: 400;
  }
  .main-nav.open{ transform: translateX(0); }
  .nav-toggle{ display:flex; }
  .header-cta{ display:none; }
  .form-row{ grid-template-columns: 1fr; }
  .contact-form{ padding: 28px; }
  section{ padding: 76px 0; }
  .section-inner{ padding: 0 22px; }
}

@media (max-width: 560px){
  .phones{ min-height: 380px; }
  .phone-mock{ width: 165px; }
  .phone-mock-back{ transform: rotate(-4deg) translate(20px, 6px); }
  .phone-mock-front{ transform: rotate(3deg) translate(-20px, -8px); }
  .stats-grid{ grid-template-columns: 1fr; gap: 26px; }
  .stat{ text-align:center; }
  .stat:nth-child(2){ border-top: 1px solid var(--line); padding-top: 24px; }
  .services-grid{ grid-template-columns: 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .pricing-grid{ grid-template-columns: 1fr; max-width: 380px; }
  .addons-list{ grid-template-columns: 1fr; }
  .addons-list li:nth-child(2){ border-top: 1px solid var(--line); }
}

@media (prefers-reduced-motion: reduce){
  *{ animation: none !important; transition: none !important; }
}
