/* ===================================================
   mdot.blends — "AFTER DARK / BACK ALLEY"
   concrete · hazard tape · spray paint · barber pole
   =================================================== */

:root {
  --ink:    #0c0b0a;
  --ink-2:  #141210;
  --ink-3:  #1d1a15;
  --panel:  #17140f;
  --line:   rgba(244,208,0,.16);
  --line-2: rgba(255,255,255,.12);
  --text:   #efe9da;
  --muted:  #8f887a;
  --bone:   #ece5d3;
  --yellow: #f4d000;
  --red:    #ff3b26;
  --white:  #f7f4ec;
  --maxw:   1220px;
  --ease:   cubic-bezier(.16,1,.3,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: "Barlow Condensed", system-ui, sans-serif;
  font-size: 1.05rem; line-height: 1.4; overflow-x: hidden; -webkit-font-smoothing: antialiased;
  position: relative;
}
/* concrete grain + grime */
body::before {
  content: ""; position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(60vw 40vh at 82% -8%, rgba(244,208,0,.06), transparent 60%),
    radial-gradient(50vw 40vh at 5% 100%, rgba(255,59,38,.05), transparent 60%),
    var(--ink);
}
body::after {
  content: ""; position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .07; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }
::selection { background: var(--yellow); color: #000; }

.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- hazard tape strip (reused as marquee too) ---------- */
.hazard {
  background-image: repeating-linear-gradient(-45deg, var(--yellow) 0 22px, #0c0b0a 22px 44px);
}

/* ---------- tags / chips ---------- */
.tag {
  font-family: "Barlow Condensed", sans-serif; text-transform: uppercase;
  letter-spacing: .1em; font-size: .82rem; font-weight: 700;
  display: inline-flex; align-items: center; gap: .4em; padding: 5px 12px;
  border: 2px solid var(--line-2); color: var(--text); background: var(--ink-2);
}
.tag--fill { background: var(--yellow); color: #000; border-color: #000; }
.tag--acid { background: transparent; color: var(--yellow); border-color: var(--yellow); }

/* sticker -> chrome / spray badge */
.sticker {
  display: inline-flex; align-items: center; gap: .4em;
  font-family: "Permanent Marker", cursive; font-size: .96rem;
  background: var(--yellow); color: #000; border: 2px solid #000;
  padding: 5px 14px; line-height: 1.1; transform: rotate(-5deg);
  box-shadow: 3px 3px 0 #000;
}
.sticker--blue { background: var(--red); color: var(--white); }

/* tape -> torn masking tape */
.tape {
  position: absolute; z-index: 5; width: 120px; height: 30px;
  background: rgba(236,229,211,.82); mix-blend-mode: normal;
  box-shadow: 0 1px 6px rgba(0,0,0,.5);
  clip-path: polygon(2% 12%, 98% 4%, 100% 82%, 3% 92%);
}

/* ---------- barber pole stripe ---------- */
.pole {
  background-image: repeating-linear-gradient(-45deg,
    var(--red) 0 14px, #f7f4ec 14px 28px, #2b6cff 28px 42px, #f7f4ec 42px 56px);
  background-size: 100% 79.2px; animation: pole 1.4s linear infinite;
}
@keyframes pole { to { background-position: 0 -79.2px; } }

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: "Barlow Condensed", sans-serif; font-weight: 800;
  text-transform: uppercase; letter-spacing: .06em; font-size: 1.02rem;
  padding: 13px 26px; border: 2.5px solid var(--white); background: transparent; color: var(--white);
  cursor: pointer; box-shadow: 4px 4px 0 #000;
  transition: transform .12s var(--ease), box-shadow .12s var(--ease), background .18s, color .18s;
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 6px 6px 0 #000; }
.btn:active { transform: translate(2px,2px); box-shadow: 1px 1px 0 #000; }
.btn--primary { background: var(--yellow); color: #000; border-color: #000; box-shadow: 4px 4px 0 var(--red); }
.btn--primary:hover { box-shadow: 6px 6px 0 var(--red); }
.btn--dark { background: transparent; border-color: var(--red); color: var(--red); }
.btn--dark:hover { background: var(--red); color: var(--white); }
.btn--small { padding: 10px 18px; font-size: .88rem; }
.btn--block { width: 100%; }

/* ===================================================
   NAV
   =================================================== */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(12,11,10,.9); backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--yellow);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 66px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark {
  width: 40px; height: 40px; display: grid; place-items: center;
  background: var(--yellow); color: #000; border: 2.5px solid #000;
  font-family: "Bungee", sans-serif; font-size: 1.15rem; transform: rotate(-4deg);
  box-shadow: 3px 3px 0 var(--red);
}
.brand__text { font-family: "Bungee", sans-serif; font-size: 1.02rem; letter-spacing: -.01em; text-transform: lowercase; }
.brand .dot { color: var(--red); }
.brand__logo { height: 48px; width: auto; display: block; mix-blend-mode: lighten; }
.brand--footer { display: block; }
.brand--footer .brand__logo { height: 128px; }
.nav__links { display: flex; align-items: center; gap: 3px; }
.nav__links a {
  font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; font-weight: 700;
  font-size: .95rem; letter-spacing: .06em; color: var(--muted); padding: 8px 13px;
  border: 2px solid transparent; transition: color .15s, background .15s, border-color .15s;
}
.nav__links a:hover { color: var(--yellow); }
.nav__cta { background: var(--yellow); color: #000 !important; border-color: #000 !important; box-shadow: 3px 3px 0 var(--red); }
.nav__cta:hover { color: #000 !important; }
.nav__links a[aria-current="page"] { color: var(--yellow); border-color: var(--yellow); }
.nav__cta[aria-current="page"] { color: #000 !important; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 3px; background: var(--yellow); transition: .3s; }
.nav__toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===================================================
   HERO
   =================================================== */
.hero { position: relative; padding: 118px 0 40px; overflow: hidden; }
/* barber pole runs down the left edge */
.hero__blob {
  position: absolute; z-index: 1; left: 0; top: 0; bottom: 0; width: 16px;
  background-image: repeating-linear-gradient(-45deg, var(--red) 0 14px, #f7f4ec 14px 28px, #2b6cff 28px 42px, #f7f4ec 42px 56px);
  background-size: 100% 79.2px; animation: pole 1.4s linear infinite;
  border-right: 2px solid #000; filter: brightness(.92);
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.4fr .8fr; gap: 40px; align-items: center; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; }
.dotpulse { width: 11px; height: 11px; background: var(--red); box-shadow: 0 0 0 0 rgba(255,59,38,.6); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(255,59,38,.6)} 70%{box-shadow:0 0 0 12px rgba(255,59,38,0)} 100%{box-shadow:0 0 0 0 rgba(255,59,38,0)} }

.hero__title {
  font-family: "Bungee", sans-serif; font-weight: 400;
  font-size: clamp(3.4rem, 11.5vw, 9.5rem); line-height: .9; letter-spacing: -.01em; text-transform: uppercase;
  color: var(--white); text-shadow: 5px 5px 0 #000;
}
.hero__title .dot { color: var(--red); }
.hero__title .l2 { display: inline-block; position: relative; }
.hero__title .l2 span {
  font-family: "Rubik Spray Paint", "Bungee", sans-serif;
  color: var(--yellow); text-shadow: 3px 4px 0 var(--red);
}
.hero__title .l2::before { display: none; }
.hero__scribble { position: absolute; left: -1%; bottom: -20%; width: 102%; z-index: 3; pointer-events: none; }
.hero__scribble path { stroke: var(--red); stroke-width: 8; fill: none; stroke-linecap: round; stroke-dasharray: 1500; stroke-dashoffset: 1500; }
.in .hero__scribble path { animation: draw 1.1s .5s var(--ease) forwards; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero__slab {
  font-family: "Barlow Condensed", sans-serif; font-weight: 700; text-transform: uppercase;
  font-size: clamp(1.15rem, 2.4vw, 1.7rem); line-height: 1.15; letter-spacing: .01em;
  max-width: 34ch; margin: 28px 0 26px; color: var(--text);
}
.hero__slab mark { background: var(--yellow); color: #000; padding: 0 .18em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 9px; }

/* taped xerox photo */
.hero__photo { position: relative; z-index: 2; justify-self: center; }
.photo-tape {
  position: relative; width: min(340px, 80vw); rotate: 3deg;
  border: 3px solid #000; background: var(--bone); padding: 12px 12px 44px;
  box-shadow: 8px 8px 0 #000, 0 0 0 2px var(--yellow);
}
.photo-tape img { width: 100%; height: 380px; object-fit: cover; border: 2px solid #000; filter: grayscale(1) contrast(1.35) brightness(1.05); }
.photo-tape figcaption { position: absolute; left: 0; right: 0; bottom: 12px; text-align: center; font-family: "Permanent Marker", cursive; font-size: 1.05rem; color: #000; }
.photo-tape .tape { top: -14px; left: 50%; transform: translateX(-50%) rotate(-3deg); }
.photo-tape .sticker { position: absolute; top: -16px; right: -18px; z-index: 6; }

/* ===================================================
   MARQUEE (caution tape)
   =================================================== */
.marquee {
  overflow: hidden; padding: 11px 0; border-top: 2px solid #000; border-bottom: 2px solid #000;
  background-image: repeating-linear-gradient(-45deg, var(--yellow) 0 26px, #0c0b0a 26px 52px);
}
.marquee--acid { background-image: repeating-linear-gradient(-45deg, var(--red) 0 26px, #0c0b0a 26px 52px); }
.marquee__track {
  display: flex; align-items: center; gap: 24px; white-space: nowrap; width: max-content;
  animation: marquee 20s linear infinite;
  font-family: "Bungee", sans-serif; text-transform: uppercase;
  font-size: 1.15rem; color: var(--white); text-shadow: 2px 2px 0 #000;
}
.marquee--rev .marquee__track { animation-direction: reverse; }
.marquee__track .sep { color: #000; -webkit-text-stroke: 1px var(--white); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===================================================
   SECTION SHELL
   =================================================== */
.section { padding: 88px 0; position: relative; }
.section__head { margin-bottom: 44px; max-width: 720px; }
.section__num { font-family: "Bungee", sans-serif; font-size: clamp(2.6rem,7vw,5rem); line-height: .8; color: transparent; -webkit-text-stroke: 2px var(--line-2); display: block; margin-bottom: 8px; }
.section__tag { margin-bottom: 14px; }
.section__title { font-family: "Bungee", sans-serif; font-size: clamp(2rem,5.5vw,4rem); line-height: .95; text-transform: uppercase; letter-spacing: -.01em; color: var(--white); text-shadow: 4px 4px 0 #000; }
.section__lead { margin-top: 16px; font-size: 1.15rem; max-width: 54ch; color: var(--muted); text-transform: uppercase; letter-spacing: .02em; font-weight: 600; }

/* ===================================================
   PAGE HERO
   =================================================== */
.page-hero { position: relative; padding: 122px 0 46px; border-bottom: 2px solid var(--yellow); overflow: hidden; }
.page-hero::after { content:""; position:absolute; left:0; right:0; bottom:0; height:8px; background-image: repeating-linear-gradient(-45deg, var(--yellow) 0 20px, #0c0b0a 20px 40px); }
.page-hero__bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(50vw 40vh at 82% -10%, rgba(244,208,0,.08), transparent 60%); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero__eyebrow { margin-bottom: 16px; }
.page-hero__title { font-family: "Bungee", sans-serif; font-size: clamp(2.6rem,8vw,6.6rem); line-height: .9; text-transform: uppercase; letter-spacing: -.01em; color: var(--white); text-shadow: 4px 4px 0 #000; }
.page-hero__title .dot { color: var(--red); }
.page-hero__lead { margin-top: 18px; font-size: 1.15rem; max-width: 60ch; color: var(--muted); text-transform: uppercase; letter-spacing: .02em; font-weight: 600; }
.section--after-hero { padding-top: 56px; }

/* ===================================================
   EXPLORE
   =================================================== */
.explore { background: var(--ink-2); border-top: 2px solid #000; border-bottom: 2px solid #000; }
.explore-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.xcard {
  grid-column: span 2; position: relative; overflow: hidden;
  background: var(--panel); border: 2.5px solid #000; box-shadow: 5px 5px 0 #000;
  padding: 26px 24px; display: flex; flex-direction: column; min-height: 200px;
  transition: transform .13s var(--ease), box-shadow .13s var(--ease), background .18s;
}
.xcard:nth-child(1) { rotate: -1deg; }
.xcard:nth-child(3) { rotate: 1deg; }
.xcard:hover { transform: translate(-3px,-3px); box-shadow: 8px 8px 0 var(--yellow); background: var(--ink-3); }
.xcard__num { font-family: "Bungee", sans-serif; font-size: .95rem; color: var(--red); }
.xcard h3 { font-family: "Bungee", sans-serif; text-transform: uppercase; font-size: 1.25rem; line-height: 1; margin: 12px 0 8px; color: var(--white); }
.xcard p { color: var(--muted); font-size: 1rem; flex: 1; text-transform: uppercase; letter-spacing: .01em; font-weight: 600; }
.xcard__go { font-family: "Barlow Condensed"; font-weight: 800; text-transform: uppercase; font-size: .95rem; letter-spacing: .06em; margin-top: 16px; color: var(--yellow); }
.xcard--cta { grid-column: span 6; flex-direction: row; align-items: center; justify-content: space-between; min-height: 0; background: var(--yellow); color: #000; border-color: #000; padding: 24px 32px; box-shadow: 5px 5px 0 var(--red); }
.xcard--cta:hover { box-shadow: 8px 8px 0 var(--red); background: var(--yellow); }
.xcard--cta h3 { font-size: clamp(1.5rem,4vw,2.4rem); margin: 0; color: #000; }
.xcard--cta .xcard__go { margin: 0; color: #000; }

/* ===================================================
   SERVICES (spray-tag flyers)
   =================================================== */
.services { background: var(--ink); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  position: relative; background: var(--panel); border: 2.5px solid #000; box-shadow: 5px 5px 0 #000;
  padding: 26px 24px; transition: transform .13s var(--ease), box-shadow .13s var(--ease);
}
.card:hover { transform: translate(-3px,-3px) rotate(-.5deg); box-shadow: 8px 8px 0 var(--yellow); }
.card__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding-bottom: 13px; margin-bottom: 14px; border-bottom: 2px dashed rgba(255,255,255,.2); }
.card__top h3 { font-family: "Bungee", sans-serif; text-transform: uppercase; font-size: 1rem; line-height: 1.05; color: var(--white); }
.card__top .muted { display: block; margin-top: 5px; font-size: .78rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }
.card__price { font-family: "Rubik Spray Paint", "Bungee", sans-serif; font-size: 2.1rem; line-height: .9; color: var(--yellow); }
.card p { color: var(--muted); font-size: .98rem; text-transform: uppercase; letter-spacing: .01em; font-weight: 600; }
.card__time { display: inline-block; margin-top: 16px; font-family: "Barlow Condensed"; font-weight: 700; text-transform: uppercase; font-size: .82rem; letter-spacing: .08em; padding: 4px 11px; border: 2px solid var(--line-2); color: var(--muted); }
.card--featured { border-color: var(--yellow); box-shadow: 5px 5px 0 var(--yellow); }
.card--featured .card__price { color: var(--red); }
.card__badge { position: absolute; top: -14px; right: 14px; }
.services__note { margin-top: 32px; font-family: "Barlow Condensed"; font-weight: 700; text-transform: uppercase; font-size: .95rem; letter-spacing: .04em; color: var(--muted); }

/* ===================================================
   LOCATIONS
   =================================================== */
.locations { background: var(--ink-2); border-top: 2px solid #000; border-bottom: 2px solid #000; }
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.loc { position: relative; overflow: hidden; background: var(--panel); border: 2.5px solid #000; box-shadow: 6px 6px 0 #000; transition: transform .14s var(--ease); }
.loc:hover { transform: translateY(-4px); }
.loc__map { height: 176px; position: relative; display: grid; place-items: center; border-bottom: 2.5px solid #000; }
.loc__map { background-size: cover; background-position: center; background-repeat: no-repeat; }
.loc__map--caledon { background-image: linear-gradient(180deg, rgba(228,197,0,.18), rgba(12,11,10,.28) 45%, rgba(12,11,10,.72)), url("media/caledon.jpg"); }
.loc__map--sherkston { background-image: linear-gradient(180deg, rgba(230,57,44,.20), rgba(12,11,10,.28) 45%, rgba(12,11,10,.72)), url("media/sherkston.jpg"); }
.loc__pin { font-size: 2.6rem; filter: drop-shadow(3px 3px 0 #000); animation: bob 2.6s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.loc__body { padding: 24px 26px 26px; }
.loc__tag { margin-bottom: 12px; }
.loc__body h3 { font-family: "Bungee", sans-serif; text-transform: uppercase; font-size: 1.7rem; line-height: .95; color: var(--white); }
.loc__city { font-family: "Barlow Condensed"; font-weight: 700; font-size: .88rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin: 8px 0 12px; }
.loc__body > p { color: var(--muted); font-size: .98rem; text-transform: uppercase; letter-spacing: .01em; font-weight: 600; }
.loc__meta { list-style: none; display: flex; gap: 12px; margin: 18px 0 22px; flex-wrap: wrap; }
.loc__meta li { border: 2px solid var(--line-2); padding: 8px 14px; display: flex; flex-direction: column; background: var(--ink); }
.loc__meta strong { font-family: "Barlow Condensed"; font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.loc__meta span { font-family: "Bungee", sans-serif; font-size: .85rem; color: var(--white); }

/* ===================================================
   GALLERY / WORK (xerox flyer wall)
   =================================================== */
.gallery { background: var(--ink); }
.wall { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px 18px; }
.shot { position: relative; background: var(--bone); border: 3px solid #000; box-shadow: 5px 5px 0 #000; padding: 9px; cursor: pointer; transition: transform .16s var(--ease), box-shadow .16s var(--ease); }
.shot:nth-child(2n) { rotate: 2deg; }
.shot:nth-child(3n) { rotate: -2deg; }
.shot:hover { transform: translateY(-6px) rotate(0deg) scale(1.02); box-shadow: 8px 8px 0 var(--yellow); z-index: 3; }
.shot__media { position: relative; aspect-ratio: 3/4; overflow: hidden; border: 2px solid #000; background: #000; }
.shot__media img, .shot__media video { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.3) brightness(1.05); transition: filter .2s; }
.shot:hover .shot__media img, .shot.playing .shot__media video { filter: none; }
.shot__badge { position: absolute; top: 7px; left: 7px; z-index: 3; font-family: "Barlow Condensed"; font-weight: 800; text-transform: uppercase; font-size: .68rem; letter-spacing: .06em; padding: 3px 8px; background: var(--yellow); color: #000; border: 2px solid #000; }
.shot__play { position: absolute; inset: 0; display: grid; place-items: center; z-index: 2; transition: opacity .2s; }
.shot__play span { width: 54px; height: 54px; display: grid; place-items: center; background: var(--yellow); color: #000; border: 3px solid #000; border-radius: 50%; box-shadow: 3px 3px 0 var(--red); font-size: 1.1rem; padding-left: 3px; }
.shot.playing .shot__play { opacity: 0; pointer-events: none; }
.shot figcaption { position: absolute; left: 0; right: 0; bottom: 11px; text-align: center; font-family: "Permanent Marker", cursive; font-size: 1rem; color: #000; }
.gallery__note { margin-top: 28px; font-family: "Barlow Condensed"; font-weight: 700; text-transform: uppercase; font-size: .92rem; color: var(--muted); }
.gallery__note code { background: var(--yellow); color: #000; padding: 2px 7px; }
.gallery__cta { margin-top: 26px; }

/* ===================================================
   ABOUT
   =================================================== */
.about { background: var(--ink); }
.about__inner { display: grid; grid-template-columns: .85fr 1.15fr; gap: 54px; align-items: center; }
.about__media { position: relative; justify-self: center; }
.about__photo { position: relative; width: min(360px, 82vw); rotate: -3deg; border: 3px solid #000; background: var(--bone); padding: 12px 12px 42px; box-shadow: 8px 8px 0 #000, 0 0 0 2px var(--red); }
.about__photo img { width: 100%; height: 420px; object-fit: cover; border: 2px solid #000; filter: grayscale(1) contrast(1.3); }
.about__photo figcaption { position: absolute; left: 0; right: 0; bottom: 12px; text-align: center; font-family: "Permanent Marker", cursive; font-size: 1rem; color: #000; }
.about__photo .sticker { position: absolute; bottom: -18px; left: -18px; }
.about__content p { color: var(--text); margin-bottom: 15px; font-size: 1.08rem; text-transform: uppercase; letter-spacing: .01em; font-weight: 600; }
.about__content p strong { color: #000; background: var(--yellow); padding: 0 .12em; }
.about__list { list-style: none; margin: 22px 0 28px; display: grid; gap: 11px; }
.about__list li { position: relative; padding-left: 32px; text-transform: uppercase; font-weight: 700; letter-spacing: .02em; }
.about__list li::before { content: "✂"; position: absolute; left: 0; top: -1px; width: 22px; height: 22px; display: grid; place-items: center; background: var(--yellow); color: #000; border: 2px solid #000; font-size: .72rem; }

/* ===================================================
   BOOK
   =================================================== */
.book { background: var(--ink-2); }
.book__grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 20px; align-items: start; }
.book__form { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; background: var(--panel); border: 3px solid #000; box-shadow: 7px 7px 0 var(--yellow); padding: 28px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: "Barlow Condensed"; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); font-weight: 700; }
.field input, .field select, .field textarea { background: var(--ink); border: 2px solid var(--line-2); padding: 11px 13px; color: var(--text); font-family: "Barlow Condensed"; font-weight: 600; font-size: 1.02rem; transition: border-color .15s, box-shadow .15s; }
.field input::placeholder, .field textarea::placeholder { color: #6a6459; text-transform: uppercase; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--yellow); box-shadow: 4px 4px 0 var(--yellow); }
.field select { appearance: none; cursor: pointer; text-transform: uppercase; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23f4d000' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 13px center; }
.book__form .btn--block { grid-column: 1 / -1; }
.book__hint { grid-column: 1 / -1; text-align: center; font-family: "Barlow Condensed"; font-weight: 700; text-transform: uppercase; font-size: .92rem; min-height: 1.2em; }
.book__hint.ok { color: #000; background: var(--yellow); padding: 8px; }
.book__hint.err { color: var(--white); background: var(--red); padding: 8px; }
.book__side { background: var(--yellow); color: #000; border: 3px solid #000; box-shadow: 7px 7px 0 var(--red); padding: 28px; }
.book__side h3 { font-family: "Bungee", sans-serif; text-transform: uppercase; font-size: 1.05rem; margin-bottom: 18px; }
.contact-row { display: flex; align-items: center; gap: 13px; padding: 12px 0; border-bottom: 2px solid rgba(0,0,0,.25); transition: padding-left .15s; }
.contact-row:hover { padding-left: 6px; }
.contact-row__ico { width: 42px; height: 42px; flex: none; display: grid; place-items: center; background: #000; color: var(--yellow); border: 2px solid #000; font-size: 1.2rem; }
.contact-row span:last-child { display: flex; flex-direction: column; }
.contact-row strong { font-family: "Bungee", sans-serif; font-size: .82rem; }
.contact-row small { color: rgba(0,0,0,.7); font-family: "Barlow Condensed"; font-weight: 700; text-transform: uppercase; font-size: .8rem; }
.book__cards { display: grid; gap: 10px; margin-top: 18px; }
.book__cards div { border: 2px solid #000; padding: 11px 14px; display: flex; flex-direction: column; background: rgba(0,0,0,.06); }
.book__cards strong { font-family: "Bungee", sans-serif; font-size: .8rem; }
.book__cards small { color: rgba(0,0,0,.65); font-family: "Barlow Condensed"; font-weight: 700; text-transform: uppercase; font-size: .8rem; }

/* ===================================================
   PAGE CTA
   =================================================== */
.page-cta { margin-top: 52px; border-top: 2px solid var(--yellow); padding-top: 44px; text-align: center; }
.page-cta h2 { font-family: "Bungee", sans-serif; text-transform: uppercase; font-size: clamp(1.7rem,4.5vw,2.8rem); line-height: 1; margin-bottom: 24px; color: var(--white); text-shadow: 4px 4px 0 #000; }

/* ===================================================
   FOOTER
   =================================================== */
.footer { background: var(--ink-2); border-top: 2px solid var(--yellow); padding: 56px 0 40px; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.footer .brand__text { font-size: 1.35rem; }
.footer__tag { font-family: "Barlow Condensed"; font-weight: 700; font-size: .92rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.footer__social { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.footer__social a { font-family: "Barlow Condensed"; font-weight: 800; font-size: .9rem; text-transform: uppercase; letter-spacing: .06em; padding: 8px 15px; border: 2px solid var(--line-2); color: var(--text); transition: background .15s, color .15s, border-color .15s; }
.footer__social a:hover { background: var(--yellow); color: #000; border-color: #000; }
.footer__copy { font-family: "Barlow Condensed"; font-weight: 600; font-size: .82rem; color: #6a6459; margin-top: 6px; text-transform: uppercase; letter-spacing: .04em; }

/* ===================================================
   FLOATING BOOK
   =================================================== */
.fab { position: fixed; bottom: 22px; right: 22px; z-index: 90; font-family: "Permanent Marker", cursive; font-size: 1.05rem; background: var(--yellow); color: #000; border: 3px solid #000; padding: 11px 20px; box-shadow: 4px 4px 0 var(--red); transform: translateY(140px) rotate(-4deg); transition: transform .4s var(--ease); }
.fab.show { transform: translateY(0) rotate(-4deg); }
.fab:hover { transform: translateY(-3px) rotate(2deg); box-shadow: 6px 6px 0 var(--red); }

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1000px) {
  .hero__inner { grid-template-columns: 1fr; gap: 30px; }
  .hero__photo { justify-self: start; }
  .cards { grid-template-columns: 1fr 1fr; }
  .wall { grid-template-columns: repeat(3, 1fr); }
  .explore-grid { grid-template-columns: repeat(2, 1fr); }
  .xcard { grid-column: span 1; }
  .xcard--cta { grid-column: span 2; }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .book__grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav__links { position: fixed; inset: 66px 0 auto 0; flex-direction: column; align-items: stretch; background: rgba(12,11,10,.98); border-bottom: 2px solid var(--yellow); gap: 0; padding: 12px 22px 22px; transform: translateY(-130%); transition: transform .35s var(--ease); }
  .nav__links.open { transform: translateY(0); }
  .nav__links a { padding: 14px 10px; border: 0; border-bottom: 2px solid var(--line-2); }
  .nav__cta { text-align: center; margin-top: 12px; box-shadow: 3px 3px 0 var(--red); }
  .nav__toggle { display: flex; }
  .hero__blob { width: 10px; }
  .section { padding: 66px 0; }
  .section--after-hero { padding-top: 46px; }
  .cards { grid-template-columns: 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .wall { grid-template-columns: repeat(2, 1fr); }
  .explore-grid { grid-template-columns: 1fr; }
  .xcard, .xcard--cta { grid-column: span 1; flex-direction: column; align-items: flex-start; }
  .book__form { grid-template-columns: 1fr; }
  .marquee__track { font-size: 1rem; }
}
/* ===================================================
   PAGE CURTAIN (opening + page-change transition)
   =================================================== */
.curtain {
  position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  background: #000;
  background-image:
    repeating-linear-gradient(0deg, rgba(0,0,0,.55) 0 3px, rgba(255,255,255,.015) 3px 6px),
    radial-gradient(60vw 44vh at 50% 42%, rgba(244,208,0,.06), transparent 60%);
  display: grid; place-items: center;
  transform: translateY(0);
  animation: curtainUp .85s cubic-bezier(.76,0,.24,1) .25s forwards;
}
.curtain.closing { animation: curtainDown .5s cubic-bezier(.76,0,.24,1) forwards; }
@keyframes curtainUp   { 0% { transform: translateY(0); }        100% { transform: translateY(-100%); } }
@keyframes curtainDown { 0% { transform: translateY(-100%); }    100% { transform: translateY(0); } }
.curtain::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 12px;
  background-image: repeating-linear-gradient(-45deg, var(--yellow) 0 20px, #0c0b0a 20px 40px);
}
.curtain__center { display: flex; flex-direction: column; align-items: center; gap: 16px; animation: curtainPop .55s var(--ease) both; }
@keyframes curtainPop { from { opacity: 0; transform: scale(.88); } to { opacity: 1; transform: none; } }
.curtain__mark {
  width: 66px; height: 66px; display: grid; place-items: center;
  background: var(--yellow); color: #000; border: 3px solid #000;
  font-family: "Bungee", sans-serif; font-size: 2rem; transform: rotate(-4deg);
  box-shadow: 5px 5px 0 var(--red);
}
.curtain__word { font-family: "Bungee", sans-serif; font-size: 1.45rem; color: var(--white); text-transform: lowercase; }
.curtain__word .dot { color: var(--red); }
.curtain__logo { width: 210px; max-width: 62vw; height: auto; mix-blend-mode: lighten; }
.curtain__bar {
  width: 130px; height: 8px; border: 2px solid #000;
  background-image: repeating-linear-gradient(-45deg, var(--red) 0 10px, #f7f4ec 10px 20px, #2b6cff 20px 30px, #f7f4ec 30px 40px);
  background-size: 200% 100%; animation: barberSlide .9s linear infinite;
}
@keyframes barberSlide { to { background-position: -40px 0; } }

/* ===================================================
   SCROLL PROGRESS (hazard tape)
   =================================================== */
.progress {
  position: fixed; top: 0; left: 0; height: 4px; width: 100%; z-index: 200;
  transform: scaleX(0); transform-origin: 0 50%;
  background-image: repeating-linear-gradient(-45deg, var(--yellow) 0 11px, #0c0b0a 11px 22px);
  box-shadow: 0 1px 0 #000;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .js .reveal, .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scribble path { stroke-dashoffset: 0; }
  .pole, .hero__blob { animation: none !important; }
  .curtain { display: none !important; }
  .progress { display: none !important; }
}

/* ===================================================
   INSTAGRAM FEED  (auto-updating, after-dark polaroids)
   =================================================== */
.ig-section { background: var(--ink-2); border-top: 2px solid var(--line); border-bottom: 2px solid var(--line); }
.ig-head { max-width: none; display: flex; justify-content: space-between; align-items: flex-end; gap: 18px 30px; flex-wrap: wrap; }
.ig-handle { white-space: nowrap; text-decoration: none; }
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px 34px; }
.ig-card {
  position: relative; display: block; background: var(--panel); color: var(--text);
  border: 2.5px solid #000; box-shadow: 5px 5px 0 #000; padding: 12px;
  transition: transform .13s var(--ease), box-shadow .13s var(--ease);
}
.ig-card:nth-child(odd)  { rotate: -1.3deg; }
.ig-card:nth-child(even) { rotate: 1.3deg; }
.ig-card:hover { transform: translate(-3px,-3px) rotate(0); box-shadow: 8px 8px 0 var(--yellow); }
.ig-card__media { display: block; position: relative; overflow: hidden; border: 2px solid #000; aspect-ratio: 1 / 1; background: var(--ink-3); }
.ig-card__media img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05) saturate(1.02); transition: transform .5s var(--ease); }
.ig-card:hover .ig-card__media img { transform: scale(1.07); }
.ig-card .tape { top: -12px; left: 50%; transform: translateX(-50%) rotate(-3deg); }
.ig-card__badge {
  position: absolute; top: 20px; right: 20px; z-index: 6;
  width: 34px; height: 34px; display: grid; place-items: center;
  background: var(--yellow); color: #000;
  border: 2.5px solid #000; border-radius: 999px; box-shadow: 2px 2px 0 #000;
}
.ig-card__badge svg { width: 17px; height: 17px; }
.ig-card__play {
  position: absolute; inset: 0; z-index: 6; display: grid; place-items: center;
  color: #fff; font-size: 2rem; text-shadow: 0 2px 8px rgba(0,0,0,.6); pointer-events: none;
}
.ig-card__cap {
  font-family: "Barlow Condensed", system-ui, sans-serif; font-weight: 700;
  font-size: .92rem; line-height: 1.25; text-transform: uppercase; letter-spacing: .02em;
  color: var(--muted); padding: 11px 3px 3px; min-height: 2.6em;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.ig-foot { margin-top: 44px; display: flex; justify-content: center; }
@media (max-width: 820px) { .ig-grid { grid-template-columns: 1fr 1fr; gap: 30px 24px; } }
@media (max-width: 520px) { .ig-grid { grid-template-columns: 1fr; } }

/* ===================================================
   HERO / ABOUT VIDEO CLIPS (tap to play)
   =================================================== */
.photo-tape--video, .about__photo--video { cursor: pointer; }
.photo-tape__media { position: relative; overflow: hidden; border: 2px solid #000; background: #000; }
.photo-tape__media video { display: block; width: 100%; height: 380px; object-fit: cover; filter: grayscale(1) contrast(1.35) brightness(1.05); transition: filter .25s; }
.photo-tape--video.playing .photo-tape__media video { filter: none; }

.about__media-wrap { position: relative; overflow: hidden; border: 2px solid #000; background: #000; }
.about__media-wrap video { display: block; width: 100%; height: 420px; object-fit: cover; filter: grayscale(1) contrast(1.3); transition: filter .25s; }
.about__photo--video.playing .about__media-wrap video { filter: none; }

.photo-tape__play, .about__play { position: absolute; inset: 0; display: grid; place-items: center; z-index: 4; transition: opacity .2s; }
.photo-tape__play span, .about__play span {
  width: 62px; height: 62px; display: grid; place-items: center;
  background: var(--yellow); color: #000; border: 3px solid #000; border-radius: 50%;
  box-shadow: 3px 3px 0 var(--red); font-size: 1.3rem; padding-left: 4px;
  transition: transform .16s var(--ease);
}
.photo-tape--video:hover .photo-tape__play span, .about__photo--video:hover .about__play span { transform: scale(1.08); }
.photo-tape--video.playing .photo-tape__play, .about__photo--video.playing .about__play { opacity: 0; pointer-events: none; }

/* ===================================================
   HOUSE RADIO WIDGET
   =================================================== */
.radio { position: fixed; left: 18px; bottom: 20px; z-index: 92; }
.radio__btn {
  display: inline-flex; align-items: center; gap: 11px;
  background: var(--ink-2); color: var(--white);
  border: 3px solid #000; box-shadow: 4px 4px 0 var(--red);
  padding: 9px 16px 9px 9px; cursor: pointer;
  transition: transform .16s var(--ease), box-shadow .16s var(--ease);
}
.radio__btn:hover { transform: translateY(-2px); box-shadow: 6px 6px 0 var(--red); }
.radio.playing .radio__btn { box-shadow: 4px 4px 0 var(--yellow); }
.radio__ico { width: 40px; height: 40px; flex: none; display: grid; place-items: center; background: var(--yellow); color: #000; border: 2.5px solid #000; border-radius: 50%; }
.radio__eq { display: flex; align-items: flex-end; gap: 3px; height: 18px; }
.radio__eq i { width: 3px; height: 6px; background: #000; border-radius: 1px; }
.radio.playing .radio__eq i { animation: eq .9s ease-in-out infinite; }
.radio.playing .radio__eq i:nth-child(2) { animation-delay: .15s; }
.radio.playing .radio__eq i:nth-child(3) { animation-delay: .30s; }
.radio.playing .radio__eq i:nth-child(4) { animation-delay: .45s; }
@keyframes eq { 0%,100% { height: 5px; } 50% { height: 17px; } }
.radio__txt { display: flex; flex-direction: column; line-height: 1; text-align: left; }
.radio__txt small { font-family: "Barlow Condensed", sans-serif; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; font-size: .62rem; color: var(--yellow); }
.radio__txt strong { font-family: "Barlow Condensed", sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: .02em; font-size: .82rem; color: var(--white); margin-top: 3px; }
@media (max-width: 520px) {
  .radio { left: 12px; bottom: 14px; }
  .radio__txt { display: none; }
  .radio__btn { padding: 7px; box-shadow: 3px 3px 0 var(--red); }
}
@media (prefers-reduced-motion: reduce) { .radio.playing .radio__eq i { animation: none; height: 11px; } }

/* Web3Forms honeypot */
.hp { position: absolute !important; left: -9999px !important; opacity: 0; height: 0; width: 0; }
