/* M.Wolf Media — 2026 static rebuild
   Palette: Wolf Red #cd2c29 · Ink #17191F · Slate #747D88 · White · Paper #F6F6F4 */

:root {
  --red: #cd2c29;
  --red-deep: #a82320;
  --ink: #17191F;
  --ink-soft: #23262E;
  --slate: #747D88;
  --paper: #F6F6F4;
  --line: #E7E7E3;
  --white: #FFFFFF;
  --disp: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Inter", -apple-system, sans-serif;
  --wrap: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.eyebrow-light { color: rgba(255,255,255,0.55); }
.tick { width: 22px; height: 3px; background: var(--red); display: inline-block; }

.sec-h2 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 48px;
}
.sec-h2.light { color: var(--white); }
.red { color: var(--red); }

/* ---------- buttons ---------- */
.btn {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-block;
  padding: 15px 30px;
  border: 2px solid transparent;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.18s;
}
.btn:active { transform: translateY(1px); }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: var(--red-deep); }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--white); }
.btn-white { background: var(--white); color: var(--red); }
.btn-white:hover { background: var(--ink); color: var(--white); }
a:focus-visible, button:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-wolf { width: 38px; height: 38px; }
.nav-name {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.06em;
}
.nav-name em { font-style: normal; color: var(--red); }
.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a:not(.btn) {
  font-weight: 500;
  font-size: 15px;
  color: var(--ink);
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--red);
  transition: width 0.2s;
}
.nav-links a:not(.btn):hover::after { width: 100%; }
.btn-nav { padding: 11px 22px; font-size: 17px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: 0.2s; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 108px 0 104px; overflow: hidden; }
.hero-texture {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(23,25,31,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,25,31,0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: radial-gradient(ellipse 75% 72% at 50% 38%, black 25%, transparent 72%);
  mask-image: radial-gradient(ellipse 75% 72% at 50% 38%, black 25%, transparent 72%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 36px;
}
.pill-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
}
.hero-h1 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(52px, 6.8vw, 92px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: var(--slate);
  max-width: 580px;
  margin-bottom: 38px;
}
.hero-sub strong { display: block; margin-top: 6px; color: var(--ink); font-weight: 600; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-services {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 46px;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate);
}
.hero-services .slash { color: var(--red); font-weight: 500; }

/* ---------- client strip ---------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 22px 0; }
.strip-inner { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.strip-label { font-size: 13px; color: var(--slate); white-space: nowrap; }
.strip-names { display: flex; gap: 28px; flex-wrap: wrap; }
.strip-names span {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.55;
}

/* ---------- services ---------- */
.services { background: var(--ink); padding: 110px 0; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}
.svc-card {
  background: var(--ink-soft);
  padding: 44px 40px;
  position: relative;
  transition: background 0.2s;
}
.svc-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card h3 {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}
.svc-card p { color: rgba(255,255,255,0.62); font-size: 15.5px; margin-bottom: 22px; }
.svc-link {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
}
.svc-link::after { content: " \2192"; transition: margin 0.2s; }
.svc-card:hover .svc-link::after { margin-left: 6px; }

/* ---------- testimonials ---------- */
.results { padding: 110px 0; }
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.quote-card {
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
}
.quote-card blockquote { font-size: 15.5px; color: var(--ink); }
.quote-card figcaption strong {
  display: block;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.quote-card figcaption span { font-size: 13.5px; color: var(--slate); }

/* ---------- blog ---------- */
.blog { background: var(--paper); padding: 110px 0; }
.blog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.blog-head .sec-h2 { margin-bottom: 40px; }
.btn-dark { margin-bottom: 48px; }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.post-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 30px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(23,25,31,0.1);
}
.post-tag {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--red);
}
.post-card h3 { font-size: 19px; font-weight: 600; line-height: 1.35; flex: 1; }
.post-date { font-size: 13px; color: var(--slate); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--red);
  padding: 110px 0;
  position: relative;
  overflow: hidden;
}
.cta-wolf {
  position: absolute;
  right: -40px; bottom: -60px;
  width: 380px;
  opacity: 0.14;
  filter: brightness(0) invert(1);
  pointer-events: none;
}
.cta-inner { position: relative; text-align: center; }
.cta-h2 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(56px, 8vw, 110px);
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 18px;
}
.cta-sub { color: rgba(255,255,255,0.85); font-size: 18px; margin-bottom: 38px; }

/* ---------- footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,0.65); }
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding: 80px 32px 60px;
}
.foot-brand-lockup { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.foot-wolf { width: 40px; height: 40px; }
.foot-name { color: var(--white); }
.foot-brand p { font-size: 14.5px; max-width: 300px; }
.foot-col h4 {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.foot-col a { display: block; font-size: 14.5px; padding: 5px 0; transition: color 0.15s; }
.foot-col a:hover { color: var(--red); }
.foot-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 22px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .svc-grid { grid-template-columns: 1fr; }
  .quote-grid, .post-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; padding: 60px 32px 40px; }
}
@media (max-width: 1024px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 20px;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
}
@media (max-width: 760px) {
  .wrap, .nav-inner { padding: 0 20px; }
  .hero { padding: 64px 0 80px; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-wolf { width: 240px; }
}

/* desktop-only line breaks */
.br-d { display: none; }
@media (min-width: 761px) { .br-d { display: inline; } }

/* ============ interior pages ============ */

/* page hero */
.page-hero { background: var(--ink); padding: 88px 0 76px; }
.page-h1 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 20px;
}
.page-sub { font-size: 17px; color: rgba(255,255,255,0.7); max-width: 560px; }
.nav-links a.active { color: var(--red); }
.nav-links a.active::after { width: 100%; }

/* shared bits */
.check-list { list-style: none; }
.check-list li {
  position: relative;
  padding: 7px 0 7px 30px;
  font-size: 15.5px;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 15px;
  width: 14px; height: 8px;
  border-left: 3px solid var(--red);
  border-bottom: 3px solid var(--red);
  transform: rotate(-45deg);
}

/* about */
.about-story { padding: 100px 0; }
.story-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 72px; align-items: start; }
.story-copy p { color: #3d414b; margin-bottom: 18px; font-size: 16.5px; }
.story-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  padding: 36px 32px;
  position: sticky;
  top: 108px;
}
.story-card h3 {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.story-card .check-list { margin-bottom: 26px; }
.values { background: var(--paper); padding: 100px 0; }
.val-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.val-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 34px 30px;
}
.val-card h3 {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.val-card p { color: var(--slate); font-size: 15.5px; }

/* services detail */
.svc-detail { padding: 100px 0 40px; }
.svc-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
}
.svc-row:first-child { padding-top: 0; }
.svc-row:last-child { border-bottom: none; }
.svc-row-copy .sec-h2 { margin-bottom: 22px; }
.svc-row-copy p { color: #3d414b; font-size: 16.5px; }
.svc-row-list {
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 28px 30px;
}
.process { background: var(--ink); padding: 100px 0; }
.process .eyebrow { color: rgba(255,255,255,0.55); }
.process .sec-h2 { color: var(--white); }
.proc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.08); }
.proc-card { background: var(--ink-soft); padding: 40px 36px; }
.proc-num {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 44px;
  color: var(--red);
  display: block;
  margin-bottom: 12px;
}
.proc-card h3 {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.proc-card p { color: rgba(255,255,255,0.62); font-size: 15.5px; }

/* faq */
.faq { padding: 100px 0; }
.faq-wrap { max-width: var(--wrap); }
.faq-item { max-width: 840px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--red); }
.faq-x {
  position: relative;
  flex: 0 0 18px;
  height: 18px;
}
.faq-x::before, .faq-x::after {
  content: "";
  position: absolute;
  top: 8px; left: 0;
  width: 18px; height: 3px;
  background: var(--red);
  transition: transform 0.2s;
}
.faq-x::after { transform: rotate(90deg); }
.faq-item[open] .faq-x::after { transform: rotate(0); }
.faq-item p { color: #3d414b; font-size: 16px; padding: 0 40px 28px 0; max-width: 700px; }

/* contact */
.contact { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 80px; align-items: start; }
.contact-lead { color: var(--slate); font-size: 16.5px; margin-bottom: 40px; max-width: 420px; }
.contact-row { padding: 22px 0; border-top: 1px solid var(--line); }
.contact-row h3 {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
}
.contact-row p { font-size: 16px; }
.contact-link { font-size: 16.5px; font-weight: 600; color: var(--ink); }
.contact-link:hover { color: var(--red); }
.contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  padding: 40px 38px;
}
.contact-form label {
  display: block;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}
.contact-form input, .contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 13px 14px;
  font-family: var(--body);
  font-size: 15.5px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--red);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.hp-field { position: absolute; left: -9999px; height: 0; width: 0; opacity: 0; }
.contact-form .btn { width: 100%; text-align: center; border: none; cursor: pointer; }
.form-status { margin-top: 14px; font-size: 14.5px; color: var(--slate); }
.form-status.err { color: var(--red); }
.form-status.ok { color: #1d7a3a; font-weight: 600; }

/* booking */
.booking { padding: 70px 0 90px; }
.booking-frame { width: 100%; min-height: 920px; border: none; }

@media (max-width: 980px) {
  .story-grid, .svc-row, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-card { position: static; }
  .val-grid, .proc-grid { grid-template-columns: 1fr; }
  .faq-item summary { font-size: 20px; }
}
@media (max-width: 760px) {
  .page-hero { padding: 64px 0 56px; }
  .about-story, .values, .svc-detail, .process, .faq, .contact { padding: 70px 0; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 30px 22px; }
}

/* ============ blog index ============ */
.blog-index { padding: 90px 0 100px; }
.bp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.bp-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bp-card:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(23,25,31,0.1); }
.bp-img { display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--paper); }
.bp-img img { width: 100%; height: 100%; object-fit: cover; }
.bp-body { display: flex; flex-direction: column; gap: 10px; padding: 22px 24px 20px; flex: 1; }
.bp-body h2 { font-size: 18px; font-weight: 600; line-height: 1.35; flex: 1; }
.bp-date { font-size: 13px; color: var(--slate); }

/* ============ legal + misc ============ */
.legal { padding: 80px 0 100px; }
.legal-wrap { max-width: var(--wrap); }
.legal-wrap > * { max-width: 780px; }
.legal h2 {
  font-family: var(--disp);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 42px 0 14px;
}
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: #3d414b; font-size: 16px; margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--red); font-weight: 500; }
.test-cta { margin-top: 56px; text-align: center; }
.test-cta p { font-size: 17px; color: var(--slate); margin-bottom: 18px; }

@media (max-width: 980px) { .bp-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) { .bp-grid { grid-template-columns: 1fr; } }

/* ============ Book a Call modal ============ */
.book-modal { position: fixed; inset: 0; z-index: 300; display: none; }
.book-modal.open { display: block; }
.book-overlay { position: absolute; inset: 0; background: rgba(23,25,31,0.72); }
.book-card {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(560px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: var(--white);
  border-top: 4px solid var(--red);
  padding: 40px 38px 34px;
}
.book-x {
  position: absolute;
  top: 12px; right: 14px;
  background: none; border: none;
  font-size: 30px; line-height: 1;
  color: var(--slate);
  cursor: pointer;
  padding: 6px;
}
.book-x:hover { color: var(--red); }
.book-h3 {
  font-family: var(--disp);
  font-weight: 700;
  font-size: 38px;
  line-height: 0.95;
  margin-bottom: 10px;
}
.book-sub { font-size: 15px; color: var(--slate); margin-bottom: 24px; }
.book-card label {
  display: block;
  font-family: var(--disp);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}
.book-card input, .book-card textarea {
  display: block;
  width: 100%;
  margin-top: 7px;
  padding: 12px 13px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 0;
}
.book-card input:focus, .book-card textarea:focus { outline: none; border-color: var(--red); }
.book-card .btn { width: 100%; text-align: center; border: none; cursor: pointer; }
.booking-wrap { max-width: 640px; }
@media (max-width: 560px) { .book-card { padding: 30px 22px 26px; } }

/* ============ video testimonials ============ */
.video-testimonials { background: var(--paper); padding: 100px 0; }
.vt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vt-item { aspect-ratio: 16/9; background: var(--ink); border: 1px solid var(--line); }
.vt-item iframe { width: 100%; height: 100%; display: block; }
@media (max-width: 980px) { .vt-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .vt-grid { grid-template-columns: 1fr; } }
