:root {
  --bg: #0a0a0c;
  --bg2: #0e0e11;
  --panel: #141419;
  --panel-2: #1a1b21;
  --red: #f50202;
  --text: #f2f2f4;
  --muted: #8e8e98;
  --dim: #4a4a54;
  --line: rgba(255, 255, 255, 0.07);
  --pad: clamp(24px, 6vw, 96px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Barlow', sans-serif;
  overflow-x: hidden;
}
/* film grain over everything */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 200; pointer-events: none; opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.05 0'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}
h1, h2, h3, .display { font-family: 'Bebas Neue', sans-serif; font-weight: 400; letter-spacing: 0.03em; }
em { font-style: normal; color: var(--red); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }

/* ---------- NAV ---------- */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px var(--pad);
  transition: background 0.3s, box-shadow 0.3s;
}
#nav.solid { background: rgba(10, 10, 12, 0.9); backdrop-filter: blur(14px); box-shadow: 0 1px 0 var(--line); }
.nav-brand { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; letter-spacing: 0.06em; display: flex; align-items: center; gap: 12px; }
.nav-brand span, .foot-brand span { color: var(--red); }
.nav-logo { height: 64px; width: auto; margin: -12px 0; position: relative; top: 8px; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6)); }
.nav-links { display: flex; gap: clamp(14px, 2.2vw, 34px); align-items: center; }
.nav-links a {
  color: var(--muted); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 4px 0; position: relative; transition: color 0.2s;
}
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0; background: var(--red); transition: width 0.25s; }
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.05rem !important; letter-spacing: 0.08em !important;
  border: 1px solid var(--red); color: var(--text) !important; padding: 7px 18px !important; text-transform: none !important;
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--red); }
@media (max-width: 1080px) { .nav-links a:not(.nav-cta) { display: none; } }

/* ---------- HERO ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; }
.hero-slides .slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1.4s ease; }
.hero-slides .slide.active { opacity: 1; }

/* 2.5D parallax slides: backdrop and bike drift on separate planes */
.slide.pl { overflow: hidden; }
.slide.pl .pl-bg, .slide.pl .pl-fg, .slide.pl .pl-mid, .slide.pl .pl-txt, .slide.pl .pl-txtbot {
  position: absolute; left: -4%; top: -4%; width: 108%; height: 108%;
  object-fit: cover; will-change: transform;
}
.slide.pl.active .pl-txtbot { animation: plmid 8s ease-in-out forwards; }
.slide.pl.active .pl-mid { animation: plmid 8s ease-in-out forwards; }
.slide.pl.active .pl-txt { animation: pltxt 8s ease-in-out forwards; }
@keyframes plmid { from { transform: translate3d(0.2%, 0.3%, 0) scale(1.02); } to { transform: translate3d(-0.7%, -0.2%, 0) scale(1.05); } }
@keyframes pltxt { from { transform: scale(1.0); } to { transform: scale(1.025); } }
/* brand slide: on narrow screens show the whole artwork instead of a crop */
@media (max-width: 900px) {
  .slide.pl.brand { background: #050506; }
  .slide.pl.brand img { object-fit: contain; }
}
/* brand slide owns the frame: page headline steps aside while it plays */
.hero.branding .hero-content, .hero.branding .hero-aside { opacity: 0; pointer-events: none; }
.hero-content, .hero-aside { transition: opacity 0.9s ease; }
.slide.pl.active .pl-bg { animation: plbg 7s ease-in-out forwards; }
.slide.pl.active .pl-fg { animation: plfg 7s ease-in-out forwards; }
.slide.pl:nth-child(odd).active .pl-bg { animation-name: plbg-r; }
.slide.pl:nth-child(odd).active .pl-fg { animation-name: plfg-r; }
@keyframes plbg   { from { transform: translate3d(0, 0, 0) scale(1.0); }        to { transform: translate3d(1.4%, 0.4%, 0) scale(1.04); } }
@keyframes plfg   { from { transform: translate3d(0.4%, 0.5%, 0) scale(1.03); } to { transform: translate3d(-1.2%, -0.4%, 0) scale(1.08); } }
@keyframes plbg-r { from { transform: translate3d(1.4%, 0.4%, 0) scale(1.0); }  to { transform: translate3d(0, 0, 0) scale(1.04); } }
@keyframes plfg-r { from { transform: translate3d(-1.2%, 0.5%, 0) scale(1.03); } to { transform: translate3d(0.4%, -0.4%, 0) scale(1.08); } }
@media (prefers-reduced-motion: reduce) {
  .slide.pl .pl-bg, .slide.pl .pl-fg { animation: none !important; }
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade { position: absolute; inset: 0; background:
  linear-gradient(105deg, rgba(10,10,12,0.85) 0%, rgba(10,10,12,0.35) 45%, rgba(10,10,12,0.15) 70%),
  linear-gradient(to top, var(--bg) 4%, transparent 40%),
  linear-gradient(to bottom, rgba(10,10,12,0.6) 0%, transparent 22%); }
.hero-content { position: relative; z-index: 2; padding: 0 var(--pad) clamp(60px, 12vh, 130px); max-width: 1500px; width: 100%; margin: 0 auto; }
.hero-kicker {
  display: flex; align-items: center; gap: 14px; color: var(--muted);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 20px;
}
.hero-kicker::before { content: ''; width: 46px; height: 2px; background: var(--red); }
.hero h1 { font-size: clamp(4rem, 12.5vw, 12rem); line-height: 0.86; text-shadow: 0 20px 80px rgba(0,0,0,0.8); }
.hero h1 .solid { display: block; }
.hero h1 em { display: block; font-size: 1.12em; }
.hero-sub { color: #c9c9d1; font-size: clamp(1rem, 1.6vw, 1.25rem); max-width: 520px; margin: 26px 0 38px; line-height: 1.55; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-aside {
  position: absolute; right: var(--pad); bottom: clamp(60px, 12vh, 130px); z-index: 2;
  text-align: right; color: var(--dim); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase;
  display: flex; flex-direction: column; gap: 6px;
}
.hero-aside b { color: var(--muted); font-weight: 700; }
@media (max-width: 800px) { .hero-aside { display: none; } }

.btn {
  display: inline-block; padding: 15px 38px; font-family: 'Bebas Neue', sans-serif;
  font-size: 1.15rem; letter-spacing: 0.08em; transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn-red { background: var(--red); color: #fff; box-shadow: 0 8px 40px rgba(245, 2, 2, 0.35); }
.btn-red:hover { background: #ff1f1f; }
.btn-ghost { border: 1px solid rgba(255,255,255,0.28); }
.btn-ghost:hover { border-color: var(--text); }
.btn-sm { padding: 11px 24px; font-size: 1rem; }

/* ---------- TRUST BAR ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); border-block: 1px solid var(--line); }
.stat { text-align: center; padding: 54px 12px; position: relative; }
.stat + .stat::before { content: ''; position: absolute; left: 0; top: 26%; bottom: 26%; width: 1px; background: var(--line); }
.stat b { display: block; font-family: 'Bebas Neue', sans-serif; font-weight: 400; font-size: clamp(2.6rem, 4vw, 3.6rem); color: var(--text); line-height: 1; }
.stat b::after { content: ''; display: block; width: 22px; height: 2px; background: var(--red); margin: 12px auto 10px; }
.stat span { color: var(--muted); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; }

/* ---------- SECTIONS ---------- */
.section { padding: clamp(90px, 12vw, 170px) var(--pad); position: relative; }
.section-inner, .section > *:not(.section-inner):not(.bleed) { max-width: 1500px; margin-left: auto; margin-right: auto; }
.section-alt { background: var(--bg2); border-block: 1px solid var(--line); }

.shead { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; margin-bottom: clamp(40px, 6vw, 76px); }
.shead-main { display: flex; gap: clamp(16px, 3vw, 40px); align-items: flex-start; }
.snum { font-family: 'Bebas Neue', sans-serif; font-size: 1rem; color: var(--red); letter-spacing: 0.1em; padding-top: 14px; white-space: nowrap; }
.snum::after { content: ''; display: block; width: 30px; height: 1px; background: var(--line); margin-top: 8px; }
.kicker { color: var(--muted); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-size: clamp(2.8rem, 6.5vw, 5.4rem); line-height: 0.92; }
.section-sub { color: var(--muted); font-size: 1.02rem; margin-top: 14px; max-width: 480px; line-height: 1.6; }
.shead-side { color: var(--dim); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; text-align: right; white-space: nowrap; padding-bottom: 10px; }
@media (max-width: 720px) { .shead { flex-direction: column; align-items: flex-start; } .shead-side { display: none; } }

/* ---------- BUILDS (static, editorial) ---------- */
.build-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(14px, 2vw, 26px); }
.build-card { position: relative; overflow: hidden; border: 1px solid var(--line); background: var(--panel); }
.build-card img { display: block; width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: saturate(0.92) contrast(1.04); }
.build-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,12,0.92) 0%, rgba(10,10,12,0.25) 42%, transparent 65%); }
.build-info { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 26px 24px; }
.build-idx { color: var(--red); font-family: 'Bebas Neue', sans-serif; font-size: 0.95rem; letter-spacing: 0.14em; }
.build-info h3 { font-size: clamp(1.9rem, 2.6vw, 2.6rem); line-height: 0.95; margin: 6px 0 8px; }
.build-info p { color: var(--muted); font-size: 0.86rem; font-weight: 500; letter-spacing: 0.04em; }

/* ---------- FILMS / YT ---------- */
.yt-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: clamp(14px, 2vw, 26px); }
.yt-frame { position: relative; aspect-ratio: 16/9; background: #000 center/cover no-repeat; border: 1px solid var(--line); cursor: pointer; overflow: hidden; }
.yt-frame::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,12,0.5), transparent 50%); }
.yt-frame::after {
  content: '▶'; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 62px; height: 62px; display: grid; place-items: center; font-size: 1.15rem; color: #fff;
  border: 1px solid rgba(255,255,255,0.4); border-radius: 50%; background: rgba(10,10,12,0.45);
  transition: background 0.2s, border-color 0.2s;
}
.yt-frame:hover::after { background: var(--red); border-color: var(--red); }
.yt-frame.loaded::before, .yt-frame.loaded::after { display: none; }
.yt-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.yt-card p { color: var(--muted); margin-top: 14px; font-size: 0.86rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
.yt-frame.small { margin-top: 18px; }

/* ---------- SERVICES (numbered editorial rows) ---------- */
.svc-list { border-top: 1px solid var(--line); }
.svc-row {
  display: grid; grid-template-columns: 80px 1fr 1.2fr; gap: clamp(16px, 3vw, 50px); align-items: baseline;
  padding: clamp(28px, 4vw, 44px) 0; border-bottom: 1px solid var(--line); transition: padding-left 0.25s;
}
.svc-row:hover { padding-left: 14px; }
.svc-num { font-family: 'Bebas Neue', sans-serif; color: var(--dim); font-size: 1.1rem; letter-spacing: 0.1em; transition: color 0.2s; }
.svc-row:hover .svc-num { color: var(--red); }
.svc-row h3 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); line-height: 0.95; }
.svc-row p { color: var(--muted); line-height: 1.65; font-size: 0.98rem; }
@media (max-width: 820px) { .svc-row { grid-template-columns: 50px 1fr; } .svc-row p { grid-column: 2; } }
.svc-cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-top: clamp(36px, 5vw, 60px); }
.svc-cta p { color: var(--muted); max-width: 460px; line-height: 1.6; }

/* ---------- SHOP ---------- */
.shop-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); gap: clamp(14px, 2vw, 26px); }
.shop-card { position: relative; display: block; background: var(--bg); border: 1px solid var(--line); padding: 96px 30px 30px; transition: border-color 0.2s, transform 0.2s; }
.shop-card:hover { border-color: rgba(245, 2, 2, 0.55); }
.price { position: absolute; top: 26px; left: 30px; font-family: 'Bebas Neue', sans-serif; font-size: 2.6rem; color: var(--red); line-height: 1; }
.price::after { content: ''; display: block; width: 26px; height: 2px; background: var(--line); margin-top: 10px; }
.shop-card h3 { font-size: 1.55rem; margin-bottom: 8px; }
.shop-card p { color: var(--muted); font-size: 0.94rem; min-height: 44px; line-height: 1.55; }
.shop-go { display: inline-block; margin-top: 20px; font-weight: 700; font-size: 0.72rem; letter-spacing: 0.24em; color: var(--text); text-transform: uppercase; }
.shop-card:hover .shop-go { color: var(--red); }
.shop-more { text-align: center; margin-top: clamp(34px, 5vw, 54px); }

/* ---------- BIKES FOR SALE ---------- */
.sale-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(14px, 2vw, 26px); }
.sale-card { background: var(--panel); border: 1px solid var(--line); }
.sale-photo { position: relative; }
.sale-photo img { display: block; width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.sale-placeholder { aspect-ratio: 16/9; display: grid; place-items: center; background: radial-gradient(ellipse at center, #1a1b21 0%, #0e0e11 75%); }
.sale-placeholder .sale-mark { width: 34%; height: auto; object-fit: contain; opacity: 0.85; }
.sale-badge { position: absolute; top: 16px; right: 16px; font-family: 'Bebas Neue', sans-serif; background: var(--red); color: #fff; padding: 5px 16px; font-size: 0.95rem; letter-spacing: 0.12em; }
.sale-info { padding: 26px; border-top: 2px solid var(--red); }
.sale-info h3 { font-size: 1.9rem; margin-bottom: 6px; }
.sale-info p { color: var(--muted); font-size: 0.94rem; margin-bottom: 18px; line-height: 1.55; }

/* ---------- CTA BAND ---------- */
.cta-band { position: relative; text-align: center; border: 1px solid rgba(245,2,2,0.35); padding: clamp(60px, 9vw, 100px) 6vw; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% -30%, rgba(245,2,2,0.16), transparent 65%); }
.cta-band > * { position: relative; }
.cta-band h2 { font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 0.92; margin-bottom: 14px; }
.cta-band p { color: var(--muted); margin-bottom: 30px; max-width: 520px; margin-inline: auto; line-height: 1.6; }

/* ---------- FOOTER ---------- */
footer { border-top: 1px solid var(--line); padding: clamp(80px, 10vw, 140px) var(--pad) 30px; position: relative; overflow: hidden; }
footer::before {
  content: 'PAIRADICE'; position: absolute; left: 50%; top: 8px; transform: translateX(-50%);
  font-family: 'Bebas Neue', sans-serif; font-size: clamp(6rem, 20vw, 19rem); line-height: 1; color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.045); pointer-events: none; white-space: nowrap;
}
.foot-cta { text-align: center; margin-bottom: clamp(60px, 8vw, 90px); position: relative; }
.foot-cta h2 { font-size: clamp(2.6rem, 7vw, 5.4rem); line-height: 0.92; }
.foot-phone { font-family: 'Bebas Neue', sans-serif; font-size: clamp(2.2rem, 6vw, 4.4rem); margin: 18px 0 10px; }
.foot-phone a { position: relative; }
.foot-phone a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 3px; background: var(--red); }
.foot-phone a:hover { color: var(--red); }
.foot-note { color: var(--muted); }
.foot-note a { text-decoration: underline; text-underline-offset: 3px; }
.foot-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; max-width: 1500px; margin: 0 auto 50px; color: var(--muted); line-height: 1.8; position: relative; }
.foot-brand { font-family: 'Bebas Neue', sans-serif; font-size: 1.4rem; color: var(--text); margin-bottom: 8px; }
.foot-logo { height: 72px; width: auto; margin-bottom: 12px; }
.foot-grid a:hover { color: var(--red); }
.foot-fine { text-align: center; color: var(--dim); font-size: 0.74rem; letter-spacing: 0.08em; position: relative; }

/* ---------- EQ BARS — audio identity motif ---------- */
.eq { display: inline-flex; align-items: flex-end; gap: 3px; height: 14px; margin-left: 12px; vertical-align: middle; }
.eq i { width: 3px; background: var(--red); animation: eqb 1.1s ease-in-out infinite; }
.eq i:nth-child(1) { animation-delay: 0s; } .eq i:nth-child(2) { animation-delay: 0.18s; }
.eq i:nth-child(3) { animation-delay: 0.36s; } .eq i:nth-child(4) { animation-delay: 0.09s; }
.eq i:nth-child(5) { animation-delay: 0.27s; }
@keyframes eqb { 0%, 100% { height: 3px; } 50% { height: 14px; } }

/* ---------- MARQUEE ---------- */
.marquee { overflow: hidden; border-bottom: 1px solid var(--line); padding: 16px 0; background: var(--bg2); }
.marquee-track { display: flex; white-space: nowrap; animation: mq 38s linear infinite; font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; letter-spacing: 0.14em; color: var(--dim); }
.marquee-track span { padding-right: 24px; }
.marquee-track i { color: var(--red); font-style: normal; font-size: 0.7em; padding: 0 14px; vertical-align: middle; }
@keyframes mq { to { transform: translateX(-50%); } }

/* ---------- BUILD CARDS — hover-play video ---------- */
.build-card video { display: block; width: 100%; aspect-ratio: 3/4; object-fit: cover; filter: saturate(0.92) contrast(1.04); transition: transform 0.6s ease, filter 0.4s; }
.build-card:hover video { transform: scale(1.03); filter: saturate(1.05) contrast(1.05); }
.build-play {
  position: absolute; top: 18px; right: 18px; z-index: 3; color: rgba(255,255,255,0.75);
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.26em; padding: 6px 12px;
  border: 1px solid rgba(255,255,255,0.25); background: rgba(10,10,12,0.4); backdrop-filter: blur(4px);
  transition: opacity 0.3s;
}
.build-card:hover .build-play, .build-card.playing .build-play { opacity: 0; }
.build-card { cursor: pointer; }

/* ---------- FEATURED BUILD ---------- */
.featured { position: relative; min-height: 88svh; display: flex; align-items: flex-end; overflow: hidden; border-block: 1px solid var(--line); }
.featured-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.featured-shade { position: absolute; inset: 0; background:
  linear-gradient(to top, rgba(10,10,12,0.95) 0%, rgba(10,10,12,0.25) 45%, rgba(10,10,12,0.35) 100%); }
.featured-content { position: relative; z-index: 2; padding: 0 var(--pad) clamp(50px, 8vh, 90px); max-width: 1500px; width: 100%; margin: 0 auto; }
.featured-content h2 { font-size: clamp(3.4rem, 10vw, 9rem); line-height: 0.88; margin: 8px 0 22px; text-shadow: 0 20px 80px rgba(0,0,0,0.8); }
.featured-specs { display: flex; flex-wrap: wrap; gap: 10px 0; align-items: center; color: var(--muted); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.22em; }
.featured-specs i { color: var(--red); font-style: normal; font-size: 0.6rem; padding: 0 16px; }

/* ---------- SOUND TOGGLE ---------- */
.sound-toggle {
  margin-top: 30px; display: inline-flex; align-items: center; gap: 4px;
  background: rgba(10,10,12,0.55); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3); color: var(--text); cursor: pointer;
  font-family: 'Bebas Neue', sans-serif; font-size: 1.05rem; letter-spacing: 0.14em;
  padding: 12px 26px; transition: border-color 0.2s, background 0.2s;
}
.sound-toggle:hover { border-color: var(--red); }
.sound-toggle[aria-pressed="true"] { background: var(--red); border-color: var(--red); }
.sound-toggle .eq { margin: 0 10px 0 0; }
.sound-toggle[aria-pressed="false"] .eq i { animation-play-state: paused; height: 3px; }

/* ---------- SCROLL REVEALS ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
[data-reveal].in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .marquee-track, .eq i { animation: none; }
}

/* ---------- HERO (Demo 6 — teal build fly-in, promoted 2026-07-09; rules from v3.css) ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.v3-hero { position: relative; min-height: 96svh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.v3-aerial { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.v3-hero-vid .v3-aerial { transform-origin: 55% 55%; animation: flyinvid 5s cubic-bezier(.3,.1,.25,1) forwards; }
@keyframes flyinvid { from { transform: scale(1.28); filter: brightness(.6); } to { transform: scale(1.02); filter: brightness(.9); } }
.v3-hero-shade { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(13,14,16,.55), rgba(13,14,16,.25) 40%, rgba(10,10,12,.94) 96%); }
.v3-hero-inner { position: relative; z-index: 2; padding: 120px 5vw 60px; max-width: 980px; }
.v3-logo { width: min(680px, 86vw); height: auto; filter: drop-shadow(0 10px 40px rgba(0,0,0,.8)); }
.v3-citymark { width: min(300px, 44vw); height: auto; display: block; margin: 6px auto 0; filter: drop-shadow(0 6px 24px rgba(0,0,0,.8)); }
.v3-tag { color: #dfe2e7; font-size: clamp(1rem, 1.8vw, 1.2rem); margin: 26px auto 30px; max-width: 560px; line-height: 1.6; text-shadow: 0 2px 14px rgba(0,0,0,.8); }
.v3-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.v3-btn { display: inline-block; padding: 13px 30px; font-weight: 800; letter-spacing: .1em; font-size: .85rem; border: 1px solid rgba(255,255,255,.4); border-radius: 4px; transition: all .2s; }
.v3-btn:hover { border-color: #fff; }
.v3-btn.red { background: var(--red); border-color: var(--red); color: #fff; }
.v3-btn.red:hover { background: #ff1f1f; }
@media (prefers-reduced-motion: reduce) { .v3-aerial { animation: none; } }
