@import url("vy/colors_and_type.css");

/* ============================================================
   ROBERT GARCIA · THE LOWER LEFT
   Single-page scroll. Vy Design System (black canvas, Bebas
   display, Space Mono labels) + RGTA serif mark.
   ============================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --accent: var(--vy-blue);        /* tweakable */
  --accent-soft: var(--vy-blue-soft);
  --maxw: 1320px;
  --pad-x: clamp(20px, 5vw, 64px);
}

html { scroll-behavior: smooth; }

body {
  background: var(--vy-near-black);
  color: var(--vy-fg);
  font-family: var(--vy-font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* film grain — the Vy signature */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("vy/grain.svg");
  background-size: 260px;
  opacity: .045;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 9000;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #fff; }

/* ---------- shared type helpers ---------- */
.eyebrow {
  font-family: var(--vy-font-mono);
  font-size: 12px;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--vy-fg-dim);
}
.eyebrow .num { color: var(--accent-soft); }

.display {
  font-family: var(--vy-font-display);
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: .9;
}

.mono { font-family: var(--vy-font-mono); }

.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(80px, 11vw, 150px) var(--pad-x);
}
.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 84px);
}
.section-head h2 {
  font-family: var(--vy-font-display);
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: .88;
  font-size: clamp(56px, 10vw, 132px);
  color: var(--vy-fg);
}
.section-head .sub {
  font-family: var(--vy-font-mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--vy-fg-dim);
}

/* hairline rule */
.rule { height: 1px; background: var(--vy-hair); border: 0; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-x);
  transition: background .3s ease, border-color .3s ease, padding .3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(10,10,12,.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--vy-hair-soft);
  padding-top: 14px;
  padding-bottom: 14px;
}
.nav__logo img { height: 68px; width: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 40px);
}
.nav__links a {
  font-family: var(--vy-font-mono);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--vy-fg-dim);
  transition: color .2s ease;
}
.nav__links a:hover { color: var(--vy-fg); }
.nav__book {
  position: relative; overflow: hidden;
  border-radius: 14px;
  padding: 11px 24px;
  /* Apple frosted-glass */
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(16px) saturate(1.7);
  -webkit-backdrop-filter: blur(16px) saturate(1.7);
  border: 1px solid rgba(255,255,255,.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), inset 0 -2px 8px rgba(255,255,255,.08), 0 6px 24px rgba(0,0,0,.3);
  color: #fff !important;
  transition: transform .2s, background .2s, box-shadow .2s;
}
.nav__book:hover { transform: translateY(-2px); background: rgba(255,255,255,.22); box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 10px 30px rgba(0,0,0,.4); }
.nav__book::after {
  content: ""; position: absolute; inset: -50%; pointer-events: none;
  background: linear-gradient(135deg, transparent 42%, rgba(255,255,255,.85) 50%, transparent 58%);
  transform: translate(-140%, -140%);
  animation: sheenDiag 3s ease-in-out infinite;
}
@keyframes bookSheen {
  0%, 66% { transform: translateX(-160%); }
  84%, 100% { transform: translateX(160%); }
}
@keyframes sheenDiag {
  0%, 60% { transform: translate(-140%, -140%); }
  85%, 100% { transform: translate(140%, 140%); }
}
@media (prefers-reduced-motion: reduce) { .nav__book::after { animation: none; opacity: 0; } }
.nav__toggle { display: none; }

@media (max-width: 880px) {
  .nav__links { display: none; }
  .nav__links.open {
    display: flex;
    position: fixed;
    inset: 0;
    background: rgba(8,8,10,.97);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    gap: 30px;
    z-index: 1100;
  }
  .nav__links.open a { font-size: 17px; letter-spacing: .22em; }
  .nav__toggle {
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: 0; cursor: pointer; z-index: 1200; padding: 6px;
  }
  .nav__toggle span { width: 26px; height: 2px; background: #fff; transition: .25s; }
  .nav__toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
  .nav__toggle.open span:nth-child(2){ opacity: 0; }
  .nav__toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
}

/* ============================================================
   HERO  — full-bleed "video still"
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img,
.hero__media video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  filter: grayscale(100%) contrast(1.06);
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,12,.55) 0%, rgba(10,10,12,0) 28%, rgba(10,10,12,0) 52%, rgba(10,10,12,.92) 100%),
    radial-gradient(120% 80% at 70% 30%, rgba(10,10,12,0) 40%, rgba(10,10,12,.55) 100%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x) clamp(48px, 7vw, 96px);
}
.hero__eyebrow {
  font-family: var(--vy-font-mono);
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 12px;
}
.hero__eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--vy-acid);
  box-shadow: 0 0 12px rgba(200,250,60,.8);
  animation: pulse 1.6s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.3;} }
.hero__title {
  font-family: var(--vy-font-display);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: .84;
  font-size: clamp(72px, 16vw, 240px);
  margin-bottom: 22px;
}
.hero__meta {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 14px 26px;
}
.hero__meta .tag {
  font-family: var(--vy-font-mono);
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.62);
}
.hero__play {
  display: inline-grid; place-items: center;
  width: 58px; height: 58px; border-radius: 50%;
  color: #fff; cursor: pointer;
  position: relative; overflow: hidden;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(16px) saturate(1.7);
  -webkit-backdrop-filter: blur(16px) saturate(1.7);
  border: 1px solid rgba(255,255,255,.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), inset 0 -2px 8px rgba(255,255,255,.08), 0 6px 24px rgba(0,0,0,.3);
  transition: transform .2s, background .2s, box-shadow .2s;
}
.hero__play:hover { transform: scale(1.06); background: rgba(255,255,255,.24); box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 10px 30px rgba(0,0,0,.4); }
.hero__play svg { width: 20px; height: 20px; display: block; position: relative; z-index: 1; }
.hero__play::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: 50%;
  background: linear-gradient(115deg, transparent 36%, rgba(255,255,255,.55) 50%, transparent 64%);
  transform: translateX(-160%);
  animation: bookSheen 3s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .hero__play::after { animation: none; opacity: 0; } }
.hero__scroll {
  position: absolute; left: 50%; bottom: 12px; transform: translateX(-50%);
  z-index: 2;
  font-family: var(--vy-font-mono);
  font-size: 10px; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(255,255,255,.5);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero__scroll .line { width: 1px; height: 38px; background: linear-gradient(var(--vy-acid), transparent); box-shadow: 0 0 8px rgba(200,250,60,.7); animation: drop 2s infinite; }
@keyframes drop { 0%{transform:scaleY(0);transform-origin:top;} 50%{transform:scaleY(1);transform-origin:top;} 51%{transform-origin:bottom;} 100%{transform:scaleY(0);transform-origin:bottom;} }
@media (max-height: 720px) { .hero__scroll { display: none; } }

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.about__photo {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--vy-r-md);
  border: 1px solid var(--vy-hair);
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(100%) contrast(1.04); }
.about__body .eyebrow { margin-bottom: 22px; }
.about__body h2 {
  font-family: var(--vy-font-display);
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: .9;
  font-size: clamp(40px, 5.4vw, 78px);
  margin-bottom: 26px;
}
.about__body p {
  font-size: 17px; line-height: 1.6; color: rgba(255,255,255,.72);
  max-width: 56ch; margin-bottom: 18px; text-wrap: pretty;
}
.about__stats {
  display: flex; flex-wrap: wrap; gap: 40px; margin-top: 34px;
  padding-top: 30px; border-top: 1px solid var(--vy-hair);
}
.about__stats .stat .k {
  font-family: var(--vy-font-display);
  font-size: 46px; line-height: 1; letter-spacing: .02em;
}
.about__stats .stat .l {
  font-family: var(--vy-font-mono);
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--vy-fg-dim); margin-top: 8px;
}
@media (max-width: 820px) {
  .about { grid-template-columns: 1fr; }
  .about__photo { max-width: 420px; }
}

/* ============================================================
   ART  (8 pieces)
   ============================================================ */
.art-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
}
.art-card {
  position: relative;
  display: block;
  border-radius: var(--vy-r-md);
  overflow: hidden;
  border: 1px solid var(--vy-hair);
  background: var(--vy-surface);
}
.art-card image-slot {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
}
.art-card__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 3;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 16px;
  background: linear-gradient(0deg, rgba(8,8,10,.9) 0%, rgba(8,8,10,0) 100%);
  pointer-events: none;
}
.art-card__cap .name {
  font-family: var(--vy-font-mono);
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: #fff;
}
.art-card__cap .idx {
  font-family: var(--vy-font-mono);
  font-size: 11px; letter-spacing: .1em;
  color: var(--vy-acid);
}
.art-card__view {
  position: absolute; inset: 0; z-index: 4;
  display: grid; place-items: center;
  background: rgba(8,8,10,.55);
  opacity: 0; transition: opacity .25s ease;
  pointer-events: none;
}
.art-card:hover .art-card__view { opacity: 1; }
.art-card__view span {
  font-family: var(--vy-font-mono);
  font-size: 11px; letter-spacing: .22em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: var(--vy-r-pill);
  padding: 9px 18px;
}
@media (max-width: 900px) { .art-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .art-grid { grid-template-columns: 1fr; } }

.art-foot {
  display: flex; justify-content: center; margin-top: clamp(40px, 5vw, 64px);
}

/* shared button */
.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--vy-font-mono);
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  border-radius: var(--vy-r-pill);
  padding: 14px 28px;
  border: 1px solid var(--vy-hair-strong);
  color: #fff; cursor: pointer;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s;
}
.btn:hover { background: #fff; color: #000; border-color: #fff; }
.btn--solid { background: #fff; color: #000; border-color: #fff; }
.btn--solid:hover { box-shadow: 0 0 34px rgba(255,255,255,.25); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-wrap { display: grid; gap: 22px; }
.testi-feature {
  border: 1px solid var(--vy-hair);
  border-radius: var(--vy-r-xl);
  background: var(--vy-surface);
  padding: clamp(36px, 6vw, 80px);
  text-align: center;
}
.testi-feature .mark {
  font-family: var(--vy-font-display);
  font-size: 90px; line-height: .5; color: var(--accent);
  opacity: .6; height: 44px;
}
.testi-feature blockquote {
  font-family: var(--vy-font-sans);
  font-weight: 600;
  font-size: clamp(22px, 3.2vw, 40px);
  line-height: 1.28;
  letter-spacing: -.01em;
  max-width: 22ch;
  margin: 24px auto 28px;
  text-wrap: balance;
}
.testi-cite {
  font-family: var(--vy-font-mono);
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--vy-fg-dim);
}
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.testi-card {
  border: 1px solid var(--vy-hair);
  border-radius: var(--vy-r-lg);
  background: var(--vy-surface);
  padding: 30px;
  display: flex; flex-direction: column; gap: 18px;
}
.testi-card .stars {
  display: flex; gap: 4px; color: var(--vy-acid);
}
.testi-card .stars svg { width: 15px; height: 15px; display: block; }
.testi-card p {
  font-size: 16px; line-height: 1.55; color: rgba(255,255,255,.78); flex: 1;
  text-wrap: pretty;
}
@media (max-width: 820px) { .testi-grid { grid-template-columns: 1fr; } }

/* ============================================================
   LOCATION
   ============================================================ */
.location { background: var(--vy-black); }
.loc-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border: 1px solid var(--vy-hair);
  border-radius: var(--vy-r-xl);
  overflow: hidden;
}
.loc-map {
  position: relative;
  min-height: 460px;
  background:
    linear-gradient(0deg, rgba(47,43,255,.05), rgba(47,43,255,.05)),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(255,255,255,.05) 34px 35px),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(255,255,255,.05) 34px 35px),
    var(--vy-near-black);
}
.loc-map__pin {
  position: absolute; left: 46%; top: 44%; transform: translate(-50%,-50%);
}
.loc-map__pin .ring {
  width: 150px; height: 150px; border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: radial-gradient(circle, rgba(47,43,255,.16), transparent 70%);
  display: grid; place-items: center;
  animation: ringpulse 3s infinite ease-out;
}
@keyframes ringpulse { 0%{box-shadow:0 0 0 0 rgba(47,43,255,.3);} 100%{box-shadow:0 0 0 28px rgba(47,43,255,0);} }
.loc-map__pin .core {
  width: 14px; height: 14px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 18px var(--accent);
}
.loc-map__frame {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: 0;
  filter: invert(0.92) hue-rotate(185deg) brightness(0.92) contrast(0.9) saturate(0.75);
}
.loc-map__tag {
  position: absolute; left: 24px; bottom: 22px;
  z-index: 2; pointer-events: none;
  background: rgba(10,10,12,.62); padding: 7px 12px; border-radius: var(--vy-r-sm);
  font-family: var(--vy-font-mono);
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--vy-fg-dim);
  display: flex; align-items: center; gap: 10px;
}
.loc-info { padding: clamp(34px, 4vw, 56px); display: flex; flex-direction: column; }
.loc-info h2 {
  font-family: var(--vy-font-display);
  text-transform: uppercase; letter-spacing: .02em; line-height: .9;
  font-size: clamp(40px, 5vw, 68px);
  margin-bottom: 6px;
  color: var(--accent);
}
.loc-info .sub { font-family: var(--vy-font-mono); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent-soft); margin-bottom: 30px; }
.loc-block { padding: 18px 0; border-top: 1px solid var(--vy-hair); }
.loc-block .lab { font-family: var(--vy-font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--vy-fg-dim); margin-bottom: 8px; }
.loc-block .val { font-size: 16px; line-height: 1.5; color: #fff; }
.loc-block .val a:hover { color: var(--accent-soft); }
.loc-info .btn { margin-top: 28px; align-self: flex-start; }
@media (max-width: 820px) { .loc-grid { grid-template-columns: 1fr; } .loc-map { min-height: 320px; } }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 920px; margin: 0 auto; border-top: 1px solid var(--vy-hair); }
.faq-item { border-bottom: 1px solid var(--vy-hair); }
.faq-q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 8px;
  text-align: left;
  color: #fff;
}
.faq-q .qt {
  font-family: var(--vy-font-sans);
  font-weight: 700; font-size: clamp(16px, 2vw, 21px);
  letter-spacing: -.01em;
}
.faq-q .ic {
  flex: none; width: 26px; height: 26px; position: relative;
}
.faq-q .ic::before, .faq-q .ic::after {
  content: ""; position: absolute; background: var(--vy-fg-dim); transition: .3s;
}
.faq-q .ic::before { left: 0; right: 0; top: 12px; height: 2px; }
.faq-q .ic::after { top: 0; bottom: 0; left: 12px; width: 2px; }
.faq-item.open .faq-q .ic::after { transform: scaleY(0); }
.faq-item.open .faq-q .ic::before { background: var(--accent-soft); }
.faq-a { max-height: 0; overflow: hidden; }
.faq-item.open .faq-a { max-height: 640px; }
.faq-a__inner { padding: 0 8px 0; color: rgba(255,255,255,.7); font-size: 16px; line-height: 1.62; max-width: 76ch; text-wrap: pretty; opacity: 0; transform: translateY(-6px); transition: opacity .35s ease, transform .35s ease; }
.faq-item.open .faq-a__inner { padding-bottom: 28px; opacity: 1; transform: none; }
.faq-a__inner strong { color: #fff; }
.faq-a__inner a { color: var(--accent-soft); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--vy-hair); background: var(--vy-black); }
.footer__top {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(56px, 7vw, 90px) var(--pad-x) clamp(40px, 5vw, 60px);
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px;
}
.footer__brand img { height: 108px; width: auto; margin-bottom: 22px; }
.footer__brand p { font-size: 14px; line-height: 1.6; color: var(--vy-fg-dim); max-width: 34ch; }
.footer__col h4 {
  font-family: var(--vy-font-mono);
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--vy-fg-dim); margin-bottom: 18px;
}
.footer__col a, .footer__col p {
  display: block;
  font-size: 14px; line-height: 1.9; color: rgba(255,255,255,.82);
}
.footer__col a:hover { color: var(--accent-soft); }

/* social icon buttons */
.social { display: flex; gap: 12px; flex-wrap: wrap; }
.social a {
  width: 46px; height: 46px;
  position: relative; overflow: hidden;
  display: grid; place-items: center;
  border-radius: 14px;
  /* Apple frosted-glass */
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(16px) saturate(1.7);
  -webkit-backdrop-filter: blur(16px) saturate(1.7);
  border: 1px solid rgba(255,255,255,.4);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5), inset 0 -2px 8px rgba(255,255,255,.08), 0 6px 24px rgba(0,0,0,.3);
  color: #fff;
  transition: transform .2s, background .2s, box-shadow .2s;
}
.social a:hover { transform: translateY(-2px); background: rgba(255,255,255,.22); box-shadow: inset 0 1px 0 rgba(255,255,255,.7), 0 10px 30px rgba(0,0,0,.4); }
.social a svg { width: 20px; height: 20px; display: block; position: relative; z-index: 1; }
.social--sm a { width: 40px; height: 40px; }
.social--sm a svg { width: 18px; height: 18px; }

/* white sheen sweep, diagonal, every 3s, staggered into a wave */
.social a::after {
  content: ""; position: absolute; inset: -50%; z-index: 2; pointer-events: none;
  background: linear-gradient(135deg, transparent 42%, rgba(255,255,255,.85) 50%, transparent 58%);
  transform: translate(-140%, -140%);
  animation: sheenDiag 3s ease-in-out infinite;
}
.social a:nth-child(2)::after { animation-delay: .18s; }
.social a:nth-child(3)::after { animation-delay: .36s; }
.social a:nth-child(4)::after { animation-delay: .54s; }
@media (prefers-reduced-motion: reduce) {
  .social a::after { animation: none; opacity: 0; }
}
.footer__bottom {
  max-width: var(--maxw); margin: 0 auto;
  padding: 22px var(--pad-x) 40px;
  border-top: 1px solid var(--vy-hair);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
}
.footer__bottom .legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__bottom span, .footer__bottom a {
  font-family: var(--vy-font-mono);
  font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--vy-fg-dimmer);
}
.footer__bottom a:hover { color: #fff; }
@media (max-width: 820px) { .footer__top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__top { grid-template-columns: 1fr; } }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__eyebrow .dot, .hero__scroll .line, .loc-map__pin .ring { animation: none; }
}

/* ============================================================
   iOS SAFE AREAS + MOBILE POLISH (iPhone 17 Pro etc.)
   ============================================================ */
/* keep nav clear of the Dynamic Island */
.nav { padding-top: calc(18px + env(safe-area-inset-top)); }
.nav.scrolled { padding-top: calc(14px + env(safe-area-inset-top)); }

@supports (padding: max(0px)) {
  .nav { padding-left: max(var(--pad-x), env(safe-area-inset-left)); padding-right: max(var(--pad-x), env(safe-area-inset-right)); }
  .hero__inner { padding-left: max(var(--pad-x), env(safe-area-inset-left)); padding-right: max(var(--pad-x), env(safe-area-inset-right)); }
}
/* clear the home indicator at the bottom of the hero */
.hero__inner { padding-bottom: calc(clamp(48px, 7vw, 96px) + env(safe-area-inset-bottom)); }

@media (max-width: 600px) {
  /* comfortable tap target on the Book pill */
  .nav__book { padding: 12px 22px; }
  .nav__logo img { height: 56px; }

  /* hero breathes a little tighter, never overflows */
  .hero__title { font-size: clamp(58px, 17vw, 240px); line-height: .86; }
  .hero__eyebrow { font-size: 11px; letter-spacing: .22em; }
  .hero__meta { gap: 14px 18px; }
  .hero__play { padding: 0; }

  /* stack the about stats in a clean row */
  .about__stats { gap: 26px 34px; }
  .about__body p { font-size: 16px; }

  /* art captions stay legible on a single-column grid */
  .art-grid { gap: 12px; }

  /* testimonials + location padding eased for small screens */
  .testi-feature { padding: 34px 24px; }
  .testi-card { padding: 24px; }
  .loc-info { padding: 30px 22px; }
  .loc-block .val { font-size: 15px; }

  /* FAQ questions: bigger hit area, no cramped wrap */
  .faq-q { padding: 22px 4px; gap: 16px; }
  .faq-q .qt { font-size: 16px; }
}

/* prevent any accidental horizontal scroll on small devices */
html, body { max-width: 100%; }

/* ============================================================
   ENTRANCE ANIMATIONS — about stats + art cards
   ============================================================ */
/* About stats: slide in from left, staggered */
.about__stats .stat {
  opacity: 0; transform: translateX(-44px);
  transition: opacity .6s ease, transform .6s cubic-bezier(.2,.8,.2,1);
}
.about__stats.in .stat { opacity: 1; transform: none; }
.about__stats.in .stat:nth-child(1) { transition-delay: .04s; }
.about__stats.in .stat:nth-child(2) { transition-delay: .17s; }
.about__stats.in .stat:nth-child(3) { transition-delay: .30s; }

/* Art cards: hidden until their entrance fires */
.art-card.anim { opacity: 0; will-change: opacity, transform, filter; }

/* FLASH — bright pop then settle */
.art-card.fx-flash.in { animation: artFlash .55s ease forwards; }
@keyframes artFlash {
  0%   { opacity: 0; filter: brightness(3.2) contrast(1.5); }
  30%  { opacity: 1; filter: brightness(2.2) contrast(1.2); }
  100% { opacity: 1; filter: none; }
}

/* BLINK — neon-tube flicker on */
.art-card.fx-blink.in { animation: artBlink .9s steps(1, end) forwards; }
@keyframes artBlink {
  0%, 18%, 38% { opacity: 0; }
  10%, 30%, 52% { opacity: 1; }
  58% { opacity: .15; }
  100% { opacity: 1; }
}

/* GLITCH — sliced jitter into place */
.art-card.fx-glitch.in { animation: artGlitch .6s ease forwards; }
@keyframes artGlitch {
  0%   { opacity: 0; transform: translate(-14px,0) skewX(7deg); clip-path: inset(42% 0 42% 0); }
  20%  { opacity: 1; transform: translate(11px,0); clip-path: inset(0 0 62% 0); }
  40%  { transform: translate(-7px,0); clip-path: inset(52% 0 0 0); }
  60%  { transform: translate(5px,0); clip-path: inset(22% 0 30% 0); }
  80%  { transform: translate(-2px,0); clip-path: inset(0 0 0 0); }
  100% { opacity: 1; transform: none; clip-path: inset(0 0 0 0); }
}

@media (prefers-reduced-motion: reduce) {
  .art-card.anim { opacity: 1 !important; animation: none !important; }
  .about__stats .stat { opacity: 1 !important; transform: none !important; transition: none; }
}


