/* ============ RAZOR RED GROOMING SOLUTIONS ============ */
/* Chicago flag palette: white field, light-blue stripes, red six-pointed stars */
:root {
  --white: #ffffff;
  --paper: #f7f8fa;
  --sky: #b3ddf2;        /* Chicago flag blue */
  --sky-soft: #e3f2fb;
  --red: #e4002b;        /* Chicago flag red */
  --red-deep: #b40022;
  --navy: #14192e;       /* logo navy */
  --ink: #1b2137;
  --muted: #5c6478;
  --line: #e6e9ef;
  --radius: 18px;
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Onest", "Helvetica Neue", sans-serif;
}

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

.wrap { width: min(1180px, 92vw); margin: 0 auto; }

/* no lonely words: balance headings, tidy paragraph rag */
h1, h2, h3, h4, blockquote, .display { text-wrap: balance; }
p, .lede, .svc-desc { text-wrap: pretty; }

/* ---------- type ---------- */
.display {
  font-family: var(--font-display);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.01em;
  font-weight: 400;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--red);
}
.eyebrow::before { content: ""; width: 26px; height: 3px; background: var(--red); }
.lede { font-size: 19px; line-height: 1.65; color: var(--muted); max-width: 60ch; }

/* ---------- chicago star ---------- */
.star { width: 18px; height: 18px; flex: 0 0 auto; fill: var(--red); }
.star.sky { fill: var(--sky); }
.star.white { fill: #fff; }
.tier-card.stars .star, .wall .star, .marquee .star { fill: #fff; }

/* flag ribbon: two sky stripes with 4 red stars */
.flag-ribbon { display: grid; gap: 7px; }
.flag-ribbon .stripe { height: 10px; background: var(--sky); }
.flag-ribbon .stars { display: flex; gap: 22px; justify-content: center; padding: 4px 0; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 20px rgba(20,25,46,0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { width: 44px; height: 44px; border-radius: 10px; }
.brand > span { display: flex; flex-direction: column; gap: 3px; }
.brand br { display: none; }
.brand-name { font-family: var(--font-display); font-size: 19px; letter-spacing: 0.04em; text-transform: uppercase; line-height: 1; }
.brand-sub { font-size: 10px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: var(--red); line-height: 1; }
.nav-links { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 600; }
.nav-links a { color: var(--muted); transition: color .2s; padding: 6px 0; position: relative; }
.nav-links a:hover { color: var(--ink); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 3px; background: var(--red); border-radius: 2px;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px; white-space: nowrap;
  background: var(--red); color: #fff;
  font-weight: 800; font-size: 14px; letter-spacing: 0.03em;
  padding: 13px 26px; border-radius: 999px;
  transition: transform .2s, box-shadow .2s, background .2s;
  box-shadow: 0 8px 24px rgba(228,0,43,0.28);
}
.btn:hover { transform: translateY(-2px); background: var(--red-deep); box-shadow: 0 12px 30px rgba(228,0,43,0.35); }
.btn.ghost { background: transparent; color: var(--ink); box-shadow: none; border: 2px solid var(--ink); }
.btn.ghost:hover { background: var(--ink); color: #fff; }
.btn.navy { background: var(--navy); box-shadow: 0 8px 24px rgba(20,25,46,0.3); }
.btn.navy:hover { background: #000; }
.nav .btn { padding: 11px 22px; }
.nav-burger { display: none; }

/* ---------- hero ---------- */
.hero { padding: 80px 0 0; position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 60px; align-items: center; padding-bottom: 80px; }
.hero h1 { font-size: clamp(58px, 8.5vw, 118px); margin: 22px 0 26px; }
.hero h1 .red { color: var(--red); }
.hero h1 .outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--navy);
}
.hero-badges { display: flex; align-items: center; gap: 26px; margin-top: 38px; flex-wrap: wrap; }
.rating { display: flex; align-items: center; gap: 12px; }
.rating .num { font-family: var(--font-display); font-size: 40px; }
.rating .meta { font-size: 12.5px; color: var(--muted); line-height: 1.45; font-weight: 600; }
.rating .stars-row { color: var(--red); letter-spacing: 2px; font-size: 13px; }
.hero-photo { position: relative; }
.hero-photo .main {
  border-radius: var(--radius);
  aspect-ratio: 4/4.6; object-fit: cover; width: 100%;
  box-shadow: 0 30px 60px rgba(20,25,46,0.22);
}
.hero-photo .chip {
  position: absolute; left: -28px; bottom: 34px;
  background: var(--navy); color: #fff;
  border-radius: 14px; padding: 16px 20px;
  display: flex; gap: 14px; align-items: center;
  box-shadow: 0 20px 40px rgba(20,25,46,0.35);
}
.hero-photo .chip .star { width: 26px; height: 26px; }
.hero-photo .chip b { display: block; font-size: 14.5px; }
.hero-photo .chip span { font-size: 12px; color: var(--sky); font-weight: 600; }
.hero-photo::before {
  content: ""; position: absolute; inset: 24px -24px -24px 24px;
  background: var(--sky-soft); border-radius: var(--radius); z-index: -1;
}

/* ---------- marquee ---------- */
.marquee { background: var(--navy); color: #fff; padding: 20px 0; overflow: hidden; }
.marquee-track { display: flex; gap: 46px; width: max-content; animation: marquee 36s linear infinite; }
.marquee-track span { display: flex; align-items: center; gap: 46px; font-family: var(--font-display); font-size: 21px; letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; }
.marquee .star { width: 15px; height: 15px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
section.block { padding: 110px 0; }
section.block.tint { background: var(--paper); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 56px; flex-wrap: wrap; }
.section-head h2 { font-size: clamp(38px, 5vw, 64px); margin-top: 16px; }
.section-head .lede { margin-top: 14px; }

/* services */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; transition: transform .25s, box-shadow .25s;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(20,25,46,0.12); }
.svc-card img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.svc-body { padding: 24px; }
.svc-top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.svc-top h3 { font-family: var(--font-display); font-size: 21px; letter-spacing: .03em; text-transform: uppercase; }
.svc-price { font-family: var(--font-display); font-size: 26px; color: var(--red); }
.svc-meta { font-size: 13px; color: var(--muted); font-weight: 600; margin-top: 6px; }
.svc-desc { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin-top: 12px; }

/* services page rows */
.svc-row {
  display: grid; grid-template-columns: 320px 1fr auto; gap: 34px; align-items: center;
  padding: 34px 0; border-bottom: 1px solid var(--line);
}
.svc-row img { border-radius: 14px; aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.svc-row h3 { font-family: var(--font-display); font-size: 30px; text-transform: uppercase; letter-spacing: .02em; }
.svc-row .svc-desc { max-width: 52ch; font-size: 15.5px; }
.svc-row .price-tag { text-align: right; }
.svc-row .price-tag .p { font-family: var(--font-display); font-size: 44px; color: var(--red); }
.svc-row .price-tag .d { font-size: 13px; color: var(--muted); font-weight: 700; }

/* story teaser */
.story-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 70px; align-items: center; }
.story-grid .photo-stack { position: relative; }
.story-grid .photo-stack .p1 { border-radius: var(--radius); aspect-ratio: 4/4.4; object-fit: cover; width: 84%; }
.story-grid .photo-stack .p2 {
  position: absolute; right: 0; bottom: -46px; width: 52%;
  border-radius: 14px; aspect-ratio: 1; object-fit: cover;
  border: 8px solid #fff; box-shadow: 0 24px 50px rgba(20,25,46,0.25);
}
.quote-mark { font-family: var(--font-display); font-size: 90px; color: var(--sky); line-height: 0.4; display: block; margin-bottom: 26px; }
blockquote.big {
  font-family: var(--font-display); font-size: clamp(30px, 3.6vw, 46px);
  text-transform: uppercase; line-height: 1.12; letter-spacing: .01em;
}
blockquote.big .red { color: var(--red); }
.attrib { margin-top: 22px; font-size: 14px; color: var(--muted); font-weight: 600; }
.attrib b { color: var(--ink); }

/* stats band */
.stats-band { background: var(--navy); color: #fff; }
.stats-band .grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stats-band .cell { padding: 58px 30px; text-align: center; border-left: 1px solid rgba(255,255,255,0.08); }
.stats-band .cell:first-child { border-left: 0; }
.stats-band .n { font-family: var(--font-display); font-size: 54px; color: var(--sky); }
.stats-band .n em { color: var(--red); font-style: normal; }
.stats-band .l { font-size: 12.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,0.65); margin-top: 8px; }

/* gallery */
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gal-grid a { border-radius: 14px; overflow: hidden; position: relative; display: block; }
.gal-grid img { aspect-ratio: 1; object-fit: cover; width: 100%; transition: transform .4s; }
.gal-grid a:hover img { transform: scale(1.06); }
.gal-grid .tall img { aspect-ratio: 1/1.4; }

/* product rows (gear page) */
.prod-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center;
  padding: 90px 0; border-bottom: 1px solid var(--line);
}
.prod-row:last-of-type { border-bottom: 0; }
.prod-row.flip .prod-media { order: 2; }
.prod-media { position: relative; background: var(--paper); border-radius: var(--radius); padding: 8%; }
.prod-media img { width: 100%; aspect-ratio: 1; object-fit: contain; mix-blend-mode: multiply; transition: transform .45s; }
.prod-row:hover .prod-media img { transform: scale(1.05) rotate(-1.5deg); }
.prod-media .num {
  position: absolute; top: 22px; left: 26px;
  font-family: var(--font-display); font-size: 15px; letter-spacing: .14em; color: var(--red);
}
.prod-media .alt {
  position: absolute; right: -18px; bottom: -18px; width: 34%;
  border-radius: 12px; border: 6px solid #fff; box-shadow: 0 18px 40px rgba(20,25,46,0.18);
  background: var(--paper);
}
.prod-copy h3 { font-family: var(--font-display); font-size: clamp(30px, 3.2vw, 44px); text-transform: uppercase; line-height: 1.05; }
.prod-copy .kicker { font-size: 12px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--red); display: block; margin-bottom: 14px; }
.prod-copy p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-top: 18px; max-width: 46ch; }
.prod-price { display: flex; align-items: baseline; gap: 14px; margin-top: 26px; }
.prod-price .now { font-family: var(--font-display); font-size: 42px; color: var(--red); }
.prod-price .was { font-size: 17px; color: var(--muted); text-decoration: line-through; font-weight: 600; }
.prod-price .save { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; background: var(--sky-soft); color: var(--navy); border-radius: 999px; padding: 6px 12px; }
@media (max-width: 980px) {
  .prod-row { grid-template-columns: 1fr; gap: 44px; padding: 60px 0; }
  .prod-row.flip .prod-media { order: 0; }
}

/* masonry gallery (work page) */
.masonry { columns: 3 300px; column-gap: 16px; }
.masonry a { display: block; margin-bottom: 16px; border-radius: 14px; overflow: hidden; break-inside: avoid; }
.masonry img { width: 100%; transition: transform .4s; }
.masonry a:hover img { transform: scale(1.05); }

/* testimonials */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.t-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; display: flex; flex-direction: column; gap: 18px;
}
.t-card .stars-row { color: var(--red); letter-spacing: 3px; font-size: 14px; }
.t-card p { font-size: 16.5px; line-height: 1.6; font-weight: 500; }
.t-card .who { font-size: 13px; color: var(--muted); font-weight: 700; }
.t-card .who b { color: var(--ink); display: block; font-size: 14px; }

/* two tiers: the city / the stars */
.tier-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.tier-card { border-radius: var(--radius); padding: 46px; position: relative; overflow: hidden; }
.tier-card.city { background: var(--sky-soft); border: 1px solid var(--sky); }
.tier-card.stars { background: var(--navy); color: #fff; }
.tier-card h3 { font-family: var(--font-display); font-size: clamp(26px, 2.6vw, 36px); text-transform: uppercase; letter-spacing: .02em; }
.tier-card .tag { font-size: 12px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--red); margin-bottom: 14px; display: block; }
.tier-card.stars .tag { color: var(--sky); }
.tier-card ul { margin: 22px 0 30px; display: grid; gap: 13px; }
.tier-card li { display: flex; gap: 12px; align-items: center; font-size: 15.5px; font-weight: 600; }
.tier-card.stars li { color: rgba(255,255,255,0.85); }
.tier-card li .star { width: 14px; height: 14px; }
.tier-card .note { font-size: 13.5px; color: var(--muted); font-weight: 600; margin-top: 16px; }
.tier-card.stars .note { color: rgba(255,255,255,0.55); }
@media (max-width: 980px) { .tier-grid { grid-template-columns: 1fr; } .tier-card { padding: 34px 26px; } }

/* team */
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.team-grid.three { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .team-grid.three { grid-template-columns: 1fr; } }
.team-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.team-card img { aspect-ratio: 4/3.4; object-fit: cover; width: 100%; }
.team-card .body { padding: 28px; }
.team-card h3 { font-family: var(--font-display); font-size: 26px; text-transform: uppercase; }
.team-card .role { color: var(--red); font-size: 12.5px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; margin-top: 6px; }
.team-card p { color: var(--muted); font-size: 15px; line-height: 1.65; margin-top: 14px; }

/* signature wall */
.wall { background: var(--navy); color: #fff; border-radius: var(--radius); padding: 64px; position: relative; overflow: hidden; }
.wall h3 { font-family: var(--font-display); font-size: clamp(30px, 3.4vw, 44px); text-transform: uppercase; }
.wall .names { display: flex; flex-wrap: wrap; gap: 12px 14px; margin-top: 34px; }
.wall .names span {
  font-family: var(--font-display); font-size: 17px; letter-spacing: .05em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 999px; padding: 10px 20px;
  color: rgba(255,255,255,0.9);
}
.wall .names span.hot { border-color: var(--red); color: #fff; background: rgba(228,0,43,0.18); }

/* timeline */
.timeline { position: relative; margin-top: 20px; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: var(--sky); }
.tl-item { position: relative; padding: 0 0 44px 46px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: 0; top: 4px; width: 20px; height: 20px;
  background: var(--red); border-radius: 50%; border: 5px solid #fff; box-shadow: 0 0 0 2px var(--red);
}
.tl-item .yr { font-family: var(--font-display); font-size: 15px; color: var(--red); letter-spacing: .1em; }
.tl-item h4 { font-family: var(--font-display); font-size: 24px; text-transform: uppercase; margin: 6px 0 8px; }
.tl-item p { color: var(--muted); font-size: 15.5px; line-height: 1.65; max-width: 62ch; }

/* CTA band */
.cta-band { background: var(--red); color: #fff; text-align: center; padding: 100px 0; position: relative; overflow: hidden; }
.cta-band h2 { font-size: clamp(44px, 6vw, 84px); }
.cta-band p { margin: 18px auto 36px; font-size: 17px; opacity: 0.9; max-width: 48ch; font-weight: 500; }
.cta-band .btn { background: #fff; color: var(--red); box-shadow: 0 14px 34px rgba(0,0,0,0.22); }
.cta-band .btn:hover { background: var(--navy); color: #fff; }
.cta-band .bg-star { position: absolute; opacity: 0.12; pointer-events: none; }

/* book page */
.book-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.info-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; background: #fff; }
.info-card + .info-card { margin-top: 22px; }
.info-card h3 { font-family: var(--font-display); font-size: 22px; text-transform: uppercase; display: flex; align-items: center; gap: 12px; }
.hours-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed var(--line); font-size: 15px; font-weight: 600; }
.hours-row:last-child { border-bottom: 0; }
.hours-row .closed { color: var(--muted); }
.hours-row .open { color: var(--red); font-weight: 800; }
.map-frame { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); height: 100%; min-height: 480px; }
.map-frame iframe { width: 100%; height: 100%; border: 0; min-height: 480px; }

/* page hero (interior pages) */
.page-hero { background: var(--navy); color: #fff; padding: 96px 0 84px; position: relative; overflow: hidden; }
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(52px, 7.5vw, 104px); margin-top: 20px; }
.page-hero .lede { color: rgba(255,255,255,0.72); margin-top: 22px; }
.page-hero .eyebrow { color: var(--sky); }
.page-hero .eyebrow::before { background: var(--red); }
.page-hero .bg-star { position: absolute; right: -60px; top: -60px; width: 380px; height: 380px; opacity: 0.07; fill: #fff; }

/* footer */
footer { background: var(--navy); color: #fff; }
.foot-flag { display: grid; gap: 0; }
.foot-flag .s1 { height: 8px; background: var(--sky); }
.foot-flag .s2 { height: 8px; background: #fff; }
.foot-flag .s3 { height: 8px; background: var(--red); }
.foot-main { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; padding: 80px 0 60px; }
.foot-main .brand-name { font-size: 24px; }
.foot-main p { color: rgba(255,255,255,0.6); font-size: 14.5px; line-height: 1.7; margin-top: 18px; max-width: 34ch; }
.foot-main h4 { font-size: 12px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--sky); margin-bottom: 20px; }
.foot-main li { margin-bottom: 12px; }
.foot-main li a { color: rgba(255,255,255,0.75); font-size: 14.5px; font-weight: 500; transition: color .2s; }
.foot-main li a:hover { color: #fff; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 26px 0; display: flex; justify-content: space-between; gap: 20px; font-size: 13px; color: rgba(255,255,255,0.45); flex-wrap: wrap; }

/* ---------- neon sign ---------- */
.neon-section { background: var(--navy); padding: 120px 0; text-align: center; position: relative; overflow: hidden; }
.neon-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 45%, rgba(228,0,43,0.16), transparent 70%);
}
.neon-img { width: min(560px, 80vw); margin: 0 auto; position: relative; }
.neon-section .cap { color: rgba(255,255,255,0.65); font-size: 14px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; margin-top: 44px; }
.neon-section .cap b { color: #fff; }

/* neon power-on: dark tube -> buzzing ignition -> steady glow with breathing + random flicker */
.neon-fx { opacity: 0.07; filter: none; }
.neon-fx.lit {
  animation:
    neonIgnite 2.1s ease-out forwards,
    neonBreathe 5s 2.6s ease-in-out infinite,
    neonFlicker 11s 4s infinite;
}
@keyframes neonIgnite {
  0%   { opacity: 0.07; filter: none; }
  6%   { opacity: 0.85; filter: drop-shadow(0 0 14px rgba(255,30,50,0.6)); }
  9%   { opacity: 0.1; filter: none; }
  14%  { opacity: 0.9; filter: drop-shadow(0 0 16px rgba(255,30,50,0.6)); }
  17%  { opacity: 0.15; filter: none; }
  21%  { opacity: 1; filter: drop-shadow(0 0 18px rgba(255,30,50,0.65)); }
  27%  { opacity: 0.3; filter: drop-shadow(0 0 6px rgba(255,30,50,0.3)); }
  34%  { opacity: 1; filter: drop-shadow(0 0 18px rgba(255,30,50,0.65)) drop-shadow(0 0 50px rgba(255,30,50,0.35)); }
  41%  { opacity: 0.55; filter: drop-shadow(0 0 10px rgba(255,30,50,0.4)); }
  52%  { opacity: 1; filter: drop-shadow(0 0 20px rgba(255,30,50,0.7)) drop-shadow(0 0 60px rgba(255,30,50,0.4)); }
  100% { opacity: 1; filter: drop-shadow(0 0 18px rgba(255,30,50,0.68)) drop-shadow(0 0 60px rgba(255,30,50,0.42)); }
}
@keyframes neonBreathe {
  0%, 100% { filter: drop-shadow(0 0 18px rgba(255,30,50,0.68)) drop-shadow(0 0 60px rgba(255,30,50,0.42)); }
  50%      { filter: drop-shadow(0 0 26px rgba(255,30,50,0.85)) drop-shadow(0 0 80px rgba(255,30,50,0.55)); }
}
@keyframes neonFlicker {
  0%, 100% { opacity: 1; }
  8%   { opacity: 1; }
  9%   { opacity: 0.65; }
  10%  { opacity: 1; }
  11%  { opacity: 0.85; }
  12%  { opacity: 1; }
  24%  { opacity: 1; }
  25%  { opacity: 0.7; }
  26%  { opacity: 1; }
  38%  { opacity: 1; }
  39%  { opacity: 0.8; }
  40%  { opacity: 0.95; }
  41%  { opacity: 0.6; }
  42%  { opacity: 1; }
  55%  { opacity: 1; }
  56%  { opacity: 0.85; }
  57%  { opacity: 1; }
  70%  { opacity: 1; }
  71%  { opacity: 0.55; }
  72%  { opacity: 1; }
  73%  { opacity: 0.9; }
  74%  { opacity: 1; }
  88%  { opacity: 1; }
  89%  { opacity: 0.78; }
  90%  { opacity: 1; }
}
.neon-fx.lit { animation-duration: 2.1s, 5s, 6s; }
.page-hero .neon-bg {
  position: absolute; right: -4%; bottom: -10%; width: 42%; min-width: 340px; max-width: 620px;
  pointer-events: none; z-index: 1;
}
.page-hero .neon-bg.lit { animation-duration: 2.1s, 6s, 13s; }
.foot-neon { width: 190px; margin-bottom: 6px; }

/* ---------- hero line + image animations ---------- */
.hero h1 .ln { display: block; overflow: hidden; }
.hero h1 .ln > span { display: block; transform: translateY(110%); animation: lineUp .9s cubic-bezier(.2,.7,.2,1) forwards; }
.hero h1 .ln:nth-child(2) > span { animation-delay: .12s; }
.hero h1 .ln:nth-child(3) > span { animation-delay: .24s; }
@keyframes lineUp { to { transform: translateY(0); } }
.hero-photo .main { animation: kenburns 9s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.07); } to { transform: scale(1); } }
.hero-photo { overflow: visible; }
.hero-photo .frame { overflow: hidden; border-radius: var(--radius); box-shadow: 0 30px 60px rgba(20,25,46,0.22); }
.hero-photo .frame .main { box-shadow: none; }
.hero-photo .chip { animation: chipFloat 5s ease-in-out infinite; }
@keyframes chipFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* reveal animation */
.rv { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.rv.in { opacity: 1; transform: none; }
.rv.d1 { transition-delay: .08s; } .rv.d2 { transition-delay: .16s; } .rv.d3 { transition-delay: .24s; }

/* lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(16,20,38,0.94); z-index: 100;
  display: none; align-items: center; justify-content: center; padding: 5vh 5vw; cursor: zoom-out;
}
.lightbox.open { display: flex; }
.lightbox img { max-height: 90vh; max-width: 90vw; border-radius: 12px; }

/* responsive */
@media (max-width: 980px) {
  .hero-grid, .story-grid, .book-grid { grid-template-columns: 1fr; gap: 46px; }
  .svc-grid, .t-grid { grid-template-columns: 1fr 1fr; }
  .gal-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-band .grid { grid-template-columns: 1fr 1fr; }
  .stats-band .cell { border-left: 0; border-top: 1px solid rgba(255,255,255,0.08); }
  .svc-row { grid-template-columns: 1fr; }
  .svc-row .price-tag { text-align: left; }
  .foot-main { grid-template-columns: 1fr 1fr; }
  .hero-photo .chip { left: 10px; }
  .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 800px) {
  .stacey-grid { grid-template-columns: 1fr !important; }
  .stacey-grid > div { padding: 36px 26px !important; }
}
@media (max-width: 700px) {
  .nav-inner { height: 62px; gap: 10px; }
  .brand img { width: 34px; height: 34px; border-radius: 8px; }
  .brand-name { font-size: 15px; }
  .brand-sub { font-size: 8px; letter-spacing: 0.2em; }
  .nav .btn { padding: 9px 16px; font-size: 12.5px; }
  .nav.open .nav-links { top: 62px; }
  .nav-links { display: none; }
  .nav-burger { display: block; background: none; border: 0; cursor: pointer; padding: 8px; }
  .nav-burger span { display: block; width: 24px; height: 3px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: .25s; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; justify-content: center; align-items: stretch;
    position: fixed; top: 62px; left: 0; right: 0; bottom: 0;
    background: var(--navy); padding: 6vh 8vw 12vh; gap: 0;
    animation: menuIn .28s ease both;
    text-align: left;
  }
  @keyframes menuIn { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: none; } }
  .nav.open .nav-links a {
    font-family: var(--font-display); font-size: clamp(32px, 9vw, 44px);
    text-transform: uppercase; letter-spacing: .02em;
    color: #fff; padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.09);
  }
  .nav.open .nav-links a:first-child { border-top: 1px solid rgba(255,255,255,0.09); }
  .nav.open .nav-links a.active { color: var(--red); }
  .nav.open .nav-links a.active::after { display: none; }
  .nav.open .nav-links::after {
    content: "600 S Western Ave, Unit 2 — Chicago\ATue–Sat · 10 AM – 7 PM";
    white-space: pre-line;
    margin-top: 36px; font-size: 13px; font-weight: 600; letter-spacing: .04em;
    line-height: 1.8; text-transform: none; color: rgba(255,255,255,0.55);
  }
  .nav.open .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav.open .nav-burger span:nth-child(2) { opacity: 0; }
  .nav.open .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .svc-grid, .t-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr 1fr; }
  section.block { padding: 70px 0; }
  .wall { padding: 40px 26px; }
  .hero { padding-top: 50px; }
}
