/* ============================================================
   Lilly Nails Lounge — PLAYFUL ZINE
   Glossier-pink × Toiletpaper × Telfar zine energy
   ============================================================ */

:root {
  --pink:     #FF4D87;
  --pink-ink: #e23368;
  --cream:    #FFF5EB;
  --lav:      #C9B5EC;
  --orange:   #FF7A45;
  --ink:      #1C1018;
  --ink-soft: #5a4750;

  --disp: "DM Serif Display", Georgia, serif;   /* Recoleta-substitute display serif */
  --punch:"Anton", Impact, sans-serif;          /* heavy punch */
  --sans: "Inter", system-ui, sans-serif;
  --script:"Caveat", "Comic Sans MS", cursive;  /* handwritten signature */
  --mono: "IBM Plex Mono", ui-monospace, monospace;

  --maxw: 1280px;
  --gut: clamp(18px, 4.5vw, 64px);

  --shadow: 4px 5px 0 rgba(28,16,24,.9);
  --shadow-sm: 3px 3px 0 rgba(28,16,24,.85);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0; background: var(--cream); color: var(--ink);
  font-family: var(--sans); font-size: 17px; line-height: 1.6;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gut); }
.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }

/* ---------- shared bits ---------- */
.eyebrow {
  font-family: var(--mono); font-size: 12px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--pink-ink); font-weight: 500;
}
.disp-h2 {
  font-family: var(--disp); font-weight: 400;
  font-size: clamp(31px, 6vw, 86px); line-height: 0.96; letter-spacing: -0.01em;
  margin: 14px 0 0;
}
.disp-h2 .it { font-style: italic; color: var(--pink); }
.lede { color: var(--ink-soft); font-size: 18px; max-width: 52ch; margin-top: 16px; }
.script { font-family: var(--script); }

/* ============================================================
   STICKER PRIMITIVES
   white die-cut border + hard offset shadow + slight rotation
   ============================================================ */
.sticker {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--pink); color: #fff;
  border: 3px solid #fff;
  border-radius: 999px;
  box-shadow: var(--shadow);
  padding: 13px 22px;
  font-weight: 700; font-size: 15px; letter-spacing: .01em;
  cursor: pointer; white-space: nowrap;
  transition: transform .18s cubic-bezier(.3,1.6,.5,1), box-shadow .18s;
}
.sticker:hover { transform: translate(-1px,-2px) rotate(-1.5deg) scale(1.03); box-shadow: 6px 8px 0 rgba(28,16,24,.9); }
.sticker.orange { background: var(--orange); }
.sticker.lav { background: var(--lav); color: var(--ink); }
.sticker.cream { background: var(--cream); color: var(--ink); }
.sticker.ink { background: var(--ink); color: var(--cream); }
.sticker.outline { background: var(--cream); color: var(--ink); border-color: var(--ink); box-shadow: var(--shadow); }

/* badge = rectangular sticker label, rotated */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cream); color: var(--ink);
  border: 3px solid var(--ink); border-radius: 14px;
  box-shadow: var(--shadow); padding: 12px 18px;
  font-family: var(--mono); font-weight: 500; font-size: 13px;
  letter-spacing: .06em; text-transform: uppercase;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 80;
  background: rgba(255,245,235,.8);
  backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 2.5px solid var(--ink);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; height: 74px; }
.brand { line-height: 1; }
.brand .eb { font-family: var(--mono); font-size: 9px; letter-spacing: .3em; text-transform: uppercase; color: var(--ink); display: block; margin-bottom: 2px; }
.brand .wm { font-family: var(--disp); font-size: 25px; color: var(--pink); letter-spacing: .005em; white-space: nowrap; }
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a { font-weight: 600; font-size: 15px; color: var(--ink); display: inline-block; transition: transform .18s cubic-bezier(.3,1.7,.5,1), color .18s; }
.nav-links a:hover { transform: translateY(-3px) rotate(-3deg); color: var(--pink-ink); }
.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-phone { font-family: var(--mono); font-size: 13px; color: var(--ink); white-space: nowrap; }
.nav-phone:hover { color: var(--pink-ink); }
.nav-cta { padding: 9px 18px; font-size: 14px; }
.nav-links a.nav-menu-cta { display: none; }
.nav-burger {
  display: none; width: 46px; height: 46px; padding: 0;
  background: var(--cream); border: 2.5px solid var(--ink); border-radius: 12px;
  box-shadow: var(--shadow-sm); cursor: pointer; align-items: center; justify-content: center;
}
.nav-burger .burger-bars, .nav-burger .burger-bars::before, .nav-burger .burger-bars::after {
  content: ""; display: block; width: 20px; height: 2.5px; background: var(--ink); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-burger .burger-bars::before { position: absolute; transform: translateY(-6px); }
.nav-burger .burger-bars::after { position: absolute; transform: translateY(6px); }
.nav-burger .burger-bars { position: relative; }
.nav.open .nav-burger .burger-bars { background: transparent; }
.nav.open .nav-burger .burger-bars::before { transform: translateY(0) rotate(45deg); }
.nav.open .nav-burger .burger-bars::after { transform: translateY(0) rotate(-45deg); }

/* ============================================================
   HERO — full-bleed photo
   ============================================================ */
.hero { position: relative; min-height: clamp(620px, 90vh, 900px); display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; background: var(--lav); }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(28,16,24,.62) 0%, rgba(28,16,24,.28) 46%, rgba(255,77,135,.30) 100%);
}
.hero .wrap { position: relative; z-index: 3; width: 100%; padding-top: 64px; padding-bottom: 90px; }

.hero-corner {
  position: absolute; top: 26px; left: var(--gut); z-index: 4;
  transform: rotate(-3deg);
  background: var(--pink); color: #fff; border: 3px solid #fff;
  box-shadow: var(--shadow); border-radius: 12px;
  font-family: var(--mono); font-size: 12px; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 500; padding: 11px 16px; white-space: nowrap;
}

.hero h1 {
  font-family: var(--disp); font-style: italic; font-weight: 400;
  font-size: clamp(44px, 12.5vw, 188px); line-height: 0.86; letter-spacing: -0.02em;
  color: var(--cream); margin: 0; text-shadow: 3px 5px 0 rgba(28,16,24,.35);
}
.hero h1 .wig { display: inline-block; will-change: transform; }
@keyframes wigIn { from { opacity: 0; transform: translateY(0.42em); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInH { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) { .hero h1 .wig { animation: none !important; opacity: 1 !important; transform: none !important; } }
.hero .sub-tag { font-family: var(--script); font-size: clamp(30px, 4.6vw, 56px); color: var(--lav); line-height: 1; transform: rotate(-2deg); display: inline-block; margin-bottom: 6px; }
.hero .hlede { color: var(--cream); font-size: clamp(17px, 1.7vw, 21px); max-width: 44ch; margin: 26px 0 0; font-weight: 500; text-shadow: 0 1px 8px rgba(28,16,24,.4); }
.hero-ctas { display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.hero-ctas .sticker { font-size: 16px; padding: 15px 26px; }

/* scattered hero stickers + magnetic decor */
.mag { position: absolute; z-index: 5; pointer-events: none; }
.mag-i { display: inline-block; will-change: transform; }
.mag svg { display: block; filter: drop-shadow(2px 2px 0 rgba(28,16,24,.22)); }
.deco-bang {
  font-family: var(--punch); font-size: 30px; color: #fff;
  background: var(--pink); border: 3px solid #fff; box-shadow: var(--shadow-sm);
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; line-height: 1;
}
.deco-stamp {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--cream); border: 3px solid var(--ink); box-shadow: var(--shadow-sm);
  display: grid; place-items: center; text-align: center;
  font-family: var(--mono); font-size: 9.5px; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--pink-ink); padding: 8px; line-height: 1.25;
}
.deco-stamp b { font-family: var(--script); font-size: 22px; color: var(--ink); display: block; letter-spacing: 0; }

/* ============================================================
   STATS — scattered sticker badges
   ============================================================ */
.stats-zone { position: relative; z-index: 10; margin-top: -52px; }
.stats-row { display: flex; gap: clamp(14px, 3vw, 40px); justify-content: center; flex-wrap: wrap; }
.stat-badge {
  background: var(--cream); border: 3px solid var(--ink); border-radius: 16px;
  box-shadow: var(--shadow); padding: 16px 24px; text-align: center;
}
.stat-badge .n { font-family: var(--punch); font-size: clamp(26px, 3.4vw, 40px); line-height: 1; color: var(--pink-ink); }
.stat-badge .k { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); margin-top: 8px; }
.stat-badge.s1 { transform: rotate(-2deg); }
.stat-badge.s2 { transform: rotate(4deg); background: var(--pink); }
.stat-badge.s2 .n { color: #fff; } .stat-badge.s2 .k { color: #fff; }
.stat-badge.s3 { transform: rotate(-1deg); }

/* ============================================================
   MARQUEE — two directions
   ============================================================ */
.marquees { border-top: 2.5px solid var(--ink); border-bottom: 2.5px solid var(--ink); }
.mq { overflow: hidden; padding: 16px 0; }
.mq-pink { background: var(--ink); }
.mq-lav  { background: var(--lav); border-top: 2.5px solid var(--ink); }
.mq-track { display: flex; width: max-content; }
.mq-track span { white-space: nowrap; line-height: 1; }
.mq-pink .mq-track { animation: scrollL 26s linear infinite; }
.mq-lav  .mq-track { animation: scrollR 32s linear infinite; }
.mq-pink span { font-family: var(--disp); font-size: clamp(24px, 3.4vw, 40px); color: var(--pink); }
.mq-pink .sep { color: var(--cream); padding: 0 26px; }
.mq-lav span { font-family: var(--disp); font-style: italic; font-size: clamp(20px, 2.8vw, 34px); color: var(--ink); }
.mq-lav .sep { color: var(--pink-ink); padding: 0 24px; }
@keyframes scrollL { to { transform: translateX(-50%); } }
@keyframes scrollR { from { transform: translateX(-50%); } to { transform: translateX(0); } }

/* ============================================================
   SECTION HEAD + DOODLE DIVIDER
   ============================================================ */
.head-wrap { position: relative; }
.doodle { display: block; width: clamp(160px, 26vw, 300px); height: 22px; margin-top: 18px; color: var(--pink); }
.doodle path { stroke: currentColor; stroke-width: 3.5; fill: none; stroke-linecap: round; }

/* ============================================================
   SERVICES — sticker cards
   ============================================================ */
.menu-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2vw, 28px); margin-top: clamp(44px, 6vw, 68px); }
.menu-card {
  background: var(--cream); border: 3px solid var(--ink); border-radius: 20px;
  box-shadow: var(--shadow); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .2s cubic-bezier(.3,1.5,.5,1);
}
.menu-card:nth-child(1) { transform: rotate(-1.4deg); }
.menu-card:nth-child(2) { transform: rotate(1.2deg); }
.menu-card:nth-child(3) { transform: rotate(-0.8deg); }
.menu-card:nth-child(4) { transform: rotate(1.6deg); }
.menu-card:hover { transform: rotate(0deg) translateY(-6px); box-shadow: 6px 10px 0 rgba(28,16,24,.9); }
.menu-photo { aspect-ratio: 4/3; overflow: hidden; background: var(--lav); border-bottom: 3px solid var(--ink); }
.menu-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.menu-card:hover .menu-photo img { transform: scale(1.07); }
.menu-body { padding: 20px 20px 24px; display: flex; flex-direction: column; flex: 1; }
.menu-num { font-family: var(--punch); font-size: 26px; color: var(--lav); line-height: 1; }
.menu-title { font-family: var(--disp); font-size: 27px; margin: 2px 0 4px; }
.menu-sub { font-size: 13px; color: var(--ink-soft); margin-bottom: 16px; min-height: 36px; }
.menu-list { list-style: none; margin: 0; padding: 0; }
.menu-list li { display: flex; align-items: baseline; gap: 7px; padding: 8px 0; border-top: 1.5px dashed rgba(28,16,24,.2); font-size: 14px; }
.menu-list li:first-child { border-top: 0; }
.menu-list .lead { flex: 1; height: 1px; border-bottom: 2px dotted rgba(28,16,24,.25); transform: translateY(-3px); }
.menu-list .price { font-family: var(--mono); font-size: 13px; font-weight: 500; color: var(--pink-ink); white-space: nowrap; }

/* ============================================================
   GALLERY — rotated tiles + peel corner
   ============================================================ */
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 210px; gap: 18px; margin-top: clamp(40px, 5vw, 60px); }
.gal-tile {
  position: relative; overflow: hidden; border-radius: 16px; background: var(--lav);
  border: 3px solid var(--ink); box-shadow: var(--shadow);
  transition: transform .22s cubic-bezier(.3,1.5,.5,1), box-shadow .22s;
}
.gal-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.gal-tile:hover { transform: rotate(0deg) scale(1.02); box-shadow: 7px 10px 0 rgba(28,16,24,.9); z-index: 2; }
.gal-tile:hover img { transform: scale(1.06); }
.gal-tall { grid-row: span 2; }
.r-a { transform: rotate(-3deg); } .r-b { transform: rotate(2deg); }
.r-c { transform: rotate(-5deg); } .r-d { transform: rotate(0deg); }
.r-e { transform: rotate(3deg); } .r-f { transform: rotate(-2deg); }
/* peel corner */
.peel::after {
  content: ""; position: absolute; top: 0; right: 0; width: 0; height: 0;
  border-style: solid; border-width: 0 0 36px 36px;
  border-color: transparent transparent transparent transparent;
  transition: border-width .25s ease, border-color .25s ease;
}
.gal-tile.peel:hover::after, .ig-tile.peel:hover::after {
  border-width: 0 44px 44px 0;
  border-color: var(--cream) var(--cream) transparent transparent;
  box-shadow: -3px 3px 6px rgba(28,16,24,.3);
}

/* ============================================================
   ABOUT — sticker collage crest
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(36px, 5vw, 80px); align-items: center; }
.crest {
  position: relative; aspect-ratio: 4/5; border-radius: 22px;
  background: var(--pink); border: 3px solid var(--ink); box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.crest.lav { background: var(--lav); } .crest.orange { background: var(--orange); }
.crest .doodle-frame { position: absolute; inset: 14px; border: 2.5px dashed rgba(255,255,255,.8); border-radius: 16px; }
.crest.lav .doodle-frame { border-color: rgba(28,16,24,.55); }
.crest .sig-name { font-family: var(--script); font-weight: 700; font-size: clamp(72px, 11vw, 132px); color: #fff; line-height: .9; transform: rotate(-4deg); z-index: 2; text-shadow: 2px 3px 0 rgba(28,16,24,.25); }
.crest.lav .sig-name { color: var(--ink); text-shadow: 2px 3px 0 rgba(255,255,255,.4); }
.crest .crest-heart { position: absolute; top: 18px; right: 20px; font-size: 26px; z-index: 2; }
.crest .crest-role { position: absolute; bottom: 16px; left: 0; right: 0; text-align: center; z-index: 2; font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: #fff; }
.crest.lav .crest-role { color: var(--ink); }
.crest .nail-doodle { position: absolute; bottom: 16px; right: 18px; z-index: 2; }
.about-body p { font-size: 19px; line-height: 1.65; color: var(--ink-soft); }
.about-body p .em { font-family: var(--disp); font-style: italic; color: var(--pink-ink); }
.about-sig { font-family: var(--script); font-weight: 700; font-size: 46px; color: var(--pink); text-align: right; margin-top: 18px; transform: rotate(-3deg); }

/* ============================================================
   ARTISTS — rotated sticker cards
   ============================================================ */
.artist-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3.4vw, 46px); margin-top: clamp(46px, 6vw, 70px); }
.artist-card { background: transparent; }
.artist-card:nth-child(1) { transform: rotate(-2deg); }
.artist-card:nth-child(2) { transform: rotate(1.6deg); }
.artist-card:nth-child(3) { transform: rotate(-1deg); }
.artist-card .crest { aspect-ratio: 1/1; border-radius: 20px; }
.artist-meta { margin-top: 20px; padding: 0 4px; }
.artist-role { font-family: var(--mono); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--pink-ink); }
.artist-name { font-family: var(--disp); font-size: 32px; margin: 4px 0 6px; }
.artist-spec { font-family: var(--script); font-size: 24px; color: var(--ink); line-height: 1.05; }
.artist-card .sticker { margin-top: 16px; font-size: 14px; padding: 11px 20px; }

/* ============================================================
   RECEIPTS
   ============================================================ */
.receipts { background: var(--lav); border-top: 2.5px solid var(--ink); border-bottom: 2.5px solid var(--ink); }
.receipts-top { display: flex; align-items: center; gap: clamp(20px, 4vw, 50px); flex-wrap: wrap; }
.big-score { font-family: var(--punch); font-size: clamp(80px, 14vw, 180px); line-height: .82; color: var(--ink); }
.big-score .star { color: var(--pink); }
.score-meta { font-family: var(--mono); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); }
.score-meta .stars { color: var(--pink); font-size: 22px; letter-spacing: 3px; display: block; margin-bottom: 8px; }
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.6vw, 32px); margin-top: clamp(40px, 5vw, 60px); }
.rcard { background: var(--cream); border: 3px solid var(--ink); border-radius: 20px; box-shadow: var(--shadow); padding: 26px; display: flex; flex-direction: column; }
.rcard:nth-child(1) { transform: rotate(-1.4deg); } .rcard:nth-child(2) { transform: rotate(1deg); } .rcard:nth-child(3) { transform: rotate(-0.6deg); }
.rcard .rstars { color: var(--pink); letter-spacing: 2px; font-size: 16px; }
.rcard .rtheme { font-family: var(--mono); font-size: 10.5px; letter-spacing: .16em; text-transform: uppercase; color: var(--pink-ink); margin-top: 12px; }
.rcard .rquote { font-family: var(--disp); font-size: 20px; line-height: 1.34; margin: 10px 0 22px; }
.rcard .rby { display: flex; align-items: center; gap: 11px; margin-top: auto; }
.rcard .ravatar { width: 40px; height: 40px; border-radius: 999px; background: var(--lav); border: 2.5px solid var(--ink); display: grid; place-items: center; font-size: 17px; }
.rcard .rsrc { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-soft); }

/* ============================================================
   INSTAGRAM
   ============================================================ */
.ig-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap; }
.ig-link { font-family: var(--script); font-weight: 700; font-size: clamp(30px, 4.4vw, 52px); color: var(--pink); transform: rotate(-2deg); display: inline-block; }
.ig-link:hover { color: var(--pink-ink); }
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; margin-top: clamp(32px, 4vw, 50px); }
.ig-tile { position: relative; aspect-ratio: 1; overflow: hidden; border-radius: 14px; background: var(--lav); border: 3px solid var(--ink); box-shadow: var(--shadow-sm); }
.ig-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.ig-tile:hover img { transform: scale(1.08); }

/* ============================================================
   VISIT
   ============================================================ */
.visit-grid { display: grid; grid-template-columns: 1.4fr 0.6fr; gap: clamp(20px, 3vw, 30px); margin-top: clamp(42px, 5vw, 62px); }
.visit-card { border: 3px solid var(--ink); border-radius: 22px; overflow: hidden; background: var(--cream); box-shadow: var(--shadow); display: flex; flex-direction: column; }
.visit-map { height: 540px; border-bottom: 3px solid var(--ink); background: var(--lav); }
.visit-map iframe { width: 100%; height: 100%; display: block; }
.visit-body { padding: 28px clamp(22px, 3vw, 36px); position: relative; }
.visit-eb { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--pink-ink); }
.visit-name { font-family: var(--disp); font-size: 30px; margin: 6px 0 14px; }
.visit-row { display: flex; gap: 10px; font-size: 15px; color: var(--ink-soft); margin-bottom: 8px; }
.visit-row .lbl { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--ink); min-width: 62px; padding-top: 3px; }
.visit-card .sticker { margin-top: 16px; }
.visit-flourish { position: absolute; top: 18px; right: 22px; color: var(--pink); transform: rotate(8deg); }
.sister { background: var(--ink); color: var(--cream); border-color: var(--ink); padding: 30px clamp(20px,2.4vw,28px); display: flex; flex-direction: column; justify-content: center; }
.sister .visit-eb { color: var(--pink); } .sister .visit-name { color: var(--cream); } .sister .visit-row { color: rgba(255,245,235,.72); } .sister .visit-row .lbl { color: var(--cream); }

/* ============================================================
   CTA BAND + FOOTER
   ============================================================ */
.cta-band { background: var(--pink); color: #fff; text-align: center; padding: clamp(72px, 11vw, 138px) 0; position: relative; overflow: hidden; border-top: 2.5px solid var(--ink); }
.cta-band h2 { font-family: var(--punch); font-size: clamp(34px, 9vw, 132px); line-height: .9; margin: 0 0 30px; text-shadow: 4px 5px 0 rgba(28,16,24,.35); }
.footer { background: var(--ink); color: rgba(255,245,235,.78); padding: clamp(52px, 7vw, 84px) 0 34px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; }
.footer-wm { font-family: var(--disp); font-size: 30px; color: var(--pink); }
.footer-wm .eb { font-family: var(--mono); font-size: 10px; letter-spacing: .3em; color: var(--lav); display: block; margin-bottom: 6px; }
.footer-col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--cream); margin: 4px 0 14px; font-weight: 500; }
.footer-col a, .footer-col p { display: block; font-size: 14.5px; color: rgba(255,245,235,.7); margin-bottom: 9px; transition: transform .16s, color .16s; }
.footer-col a:hover { color: var(--pink); transform: translateX(4px); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: clamp(40px, 6vw, 64px); padding-top: 24px; border-top: 1.5px solid rgba(255,245,235,.16); font-family: var(--mono); font-size: 11px; letter-spacing: .06em; color: rgba(255,245,235,.5); flex-wrap: wrap; gap: 10px; }

/* ============================================================
   FALLBACK
   ============================================================ */
.img-fallback { width: 100%; height: 100%; background: repeating-linear-gradient(135deg, var(--lav) 0 14px, #b9a2e0 14px 28px); display: grid; place-items: center; }
.img-fallback span { font-family: var(--mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--ink); background: rgba(255,245,235,.8); padding: 5px 9px; border-radius: 5px; }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .mq-pink .mq-track, .mq-lav .mq-track { animation: none; }
  * { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE  —  mobile-first floor
   1024: tighten grids   ·   768: single-column content
   640: hamburger nav + single-column hero + static stickers
   ============================================================ */
@media (max-width: 1024px) {
  .nav-inner { gap: 16px; }
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 13.5px; }
  .brand .wm { font-size: 21px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .artist-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
  .about-grid { grid-template-columns: 1fr; }
  .about-crest { max-width: 360px; margin: 0 auto; }
  .cards3 { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .ig-grid { grid-template-columns: repeat(4, 1fr); }
  .visit-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 26px; }
  .gal-grid { grid-template-columns: repeat(3, 1fr); }
  .visit-map { height: 420px; }
}

@media (max-width: 860px) {
  .nav-cta { display: none; }   /* bar Fresha pill hidden on tablet; phone stays, Fresha returns inside hamburger panel <=640 */
}

@media (max-width: 768px) {
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .visit-map { height: 360px; }
  .receipts-top { gap: 18px; }
}

@media (max-width: 640px) {
  /* ---- NAV: hamburger ---- */
  .nav-inner { gap: 12px; height: 66px; }
  .brand .eb { display: none; }                 /* wordmark gets the row to itself */
  .brand .wm { font-size: clamp(19px, 5.6vw, 24px); }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream); border-bottom: 2.5px solid var(--ink);
    padding: 6px var(--gut) 22px; box-shadow: 0 14px 26px rgba(28,16,24,.14);
  }
  .nav.open .nav-links { display: flex; }
  .nav-links > a:not(.sticker) {
    padding: 15px 4px; font-size: 18px; width: 100%;
    border-bottom: 1.5px dashed rgba(28,16,24,.2);
  }
  .nav-links > a:not(.sticker):hover { transform: none; color: var(--pink-ink); }
  .nav-menu-cta { display: inline-flex !important; justify-content: center; width: 100%; margin-top: 18px; }
  .nav-burger { display: inline-flex; }
  .nav-right { gap: 10px; }
  .nav-phone { font-size: 12.5px; padding: 12px 4px; }   /* >=44px tap target */

  /* ---- HERO ---- */
  .hero { min-height: 84vh; }
  .hero .wrap { padding-top: 72px; padding-bottom: 70px; }
  .hero-corner { top: 14px; font-size: 11px; padding: 9px 13px; }
  .hero .sub-tag { font-size: clamp(26px, 8vw, 36px); }
  .hero .hlede { font-size: 16px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .sticker { width: 100%; justify-content: center; font-size: 16px; padding: 16px 20px; }
  .mag-hero { display: none; }                  /* decor would crash into overlay text */

  /* ---- STATS ---- */
  .stats-zone { margin-top: 18px; }
  .stats-row { flex-direction: column; align-items: stretch; gap: 12px; }
  .stat-badge { display: flex; align-items: center; justify-content: space-between; text-align: left; }
  .stat-badge .k { margin-top: 0; }
  .stat-badge.s1, .stat-badge.s2, .stat-badge.s3 { transform: rotate(0deg); }

  /* ---- MARQUEE: trimmed ---- */
  .mq { padding: 11px 0; }

  /* ---- SECTIONS single column ---- */
  .menu-grid { grid-template-columns: 1fr; gap: 18px; }
  .menu-card:nth-child(n) { transform: rotate(0deg); }   /* avoid edge overflow */
  .menu-photo { aspect-ratio: 16/9; }
  .gal-grid { grid-auto-rows: 168px; gap: 12px; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); gap: 9px; }
  .footer-top { grid-template-columns: 1fr; gap: 22px; }
  .footer-col a { padding: 6px 0; }              /* tap target */
  .footer-bottom { flex-direction: column; gap: 6px; }

  /* ---- VISIT map ---- */
  .visit-map { height: 300px; }

  /* ---- CTA band decor ---- */
  .cta-band .mag { display: none; }
  .cta-band .sticker { width: 100%; justify-content: center; }
}

@media (max-width: 400px) {
  .hero h1 { font-size: clamp(40px, 13vw, 56px); }
  .stat-badge .n { font-size: 30px; }
}

