/*
 * styles.css — Smoke N' Stuff Smoke Shop
 * Editorial "lit display-case wall" build. Palette from color-palette.json.
 * Signage type (Saira Condensed) + squared grotesque (Archivo) + Share Tech Mono readout.
 */

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  /* Palette — image-derived (color-palette.json) */
  --ink: #16110F;            /* Sign Ink — structural workhorse */
  --case-black: #0A0807;     /* Case Black — night grounds */
  --soft-charcoal: #2E2724;
  --cyan: #2A8FB8;           /* Shelf-Case Cyan — tie color */
  --red: #D8232A;            /* Script Red — brand hot (fills, large/display) */
  --red-ink: #B81E24;        /* text-safe Script Red sibling — AA on bone (small on-light text) */
  --neon: #FF2A33;           /* reserved Neon Red — "OPEN" only */
  --bone: #F4F0E6;           /* Sign Bone — daylight ground */
  --white: #FCFAF4;          /* Warm White — plates/frames */
  --text: #16110F;
  --text-secondary: #5A524C; /* Warm Slate */
  --bone-line: #D9D2C6;      /* subtle dividers */

  /* scaffold-compatible aliases */
  --color-primary: #16110F;
  --color-secondary: #2A8FB8;
  --color-accent: #D8232A;
  --color-bg: #F4F0E6;
  --color-surface: #FCFAF4;
  --color-text: #16110F;
  --color-text-secondary: #5A524C;

  --font-primary: 'Saira Condensed', 'Arial Narrow', sans-serif;
  --font-secondary: 'Archivo', system-ui, sans-serif;
  --font-mono: 'Share Tech Mono', ui-monospace, monospace;
  --font-size-base: 16px;

  --spacing-base: 8px;
  --shell: 1320px;
  --gutter: clamp(20px, 5vw, 72px);

  --mullion: 7px;           /* display-case mullion thickness */

  --motion-duration: 200ms;
  --motion-duration-slow: 440ms;
  --motion-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ============================================================
   Base Reset
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: var(--font-size-base, 16px); scroll-behavior: smooth; }

body {
  font-family: var(--font-secondary, sans-serif);
  background-color: var(--bone);
  color: var(--text);
  line-height: 1.65;
  padding-bottom: 42px; /* required */
  overflow-x: hidden;   /* body only — never on a text container */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: var(--red); text-decoration: none; }

:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }

/* Skip navigation link — WCAG 2.4.1 (managed by fix_ada_safe.py) */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 1000;
  padding: 0.75rem 1.25rem; background: var(--color-surface, #fff);
  color: var(--color-accent, #005fcc); font-weight: 600; text-decoration: none;
  border: 2px solid var(--color-accent, #005fcc); border-radius: 0 0 4px 0;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Reveal gating — content visible without JS; hidden only under html.js
   ============================================================ */
.reveal { opacity: 1; transform: none; }
html.js .reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .7s var(--motion-ease), transform .7s var(--motion-ease);
  will-change: opacity, transform;
}
html.js .reveal.is-in { opacity: 1; transform: none; }
/* stagger children */
html.js .reveal[data-delay="1"].is-in { transition-delay: .08s; }
html.js .reveal[data-delay="2"].is-in { transition-delay: .16s; }
html.js .reveal[data-delay="3"].is-in { transition-delay: .24s; }
html.js .reveal[data-delay="4"].is-in { transition-delay: .32s; }

/* ============================================================
   Typography scale
   ============================================================ */
.display {
  font-family: var(--font-primary); font-weight: 900; text-transform: uppercase;
  font-size: clamp(3.4rem, 12vw, 11rem); line-height: 0.86; letter-spacing: -0.005em;
}
h1, .h1 {
  font-family: var(--font-primary); font-weight: 900; text-transform: uppercase;
  font-size: clamp(2.6rem, 6vw, 5rem); line-height: 0.9; letter-spacing: 0;
}
h2, .h2 {
  font-family: var(--font-primary); font-weight: 800; text-transform: uppercase;
  font-size: clamp(2rem, 4vw, 3.25rem); line-height: 0.94;
}
h3, .h3 {
  font-family: var(--font-primary); font-weight: 700; text-transform: uppercase;
  font-size: 1.5rem; line-height: 1.0; letter-spacing: 0.01em;
}
.h4 {
  font-family: var(--font-secondary); font-weight: 600; font-size: 1.125rem;
  line-height: 1.2; letter-spacing: 0.01em;
}
.lead {
  font-family: var(--font-secondary); font-weight: 400;
  font-size: 1.25rem; line-height: 1.55; color: var(--text-secondary);
  max-width: 40ch;
}
p { max-width: 68ch; }
.body-copy p + p { margin-top: 1.05em; }
.small { font-size: 0.875rem; line-height: 1.45; }
.caption {
  font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase;
  font-weight: 500; color: var(--text-secondary);
}
.mono {
  font-family: var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase;
}

/* ============================================================
   Layout helpers
   ============================================================ */
.shell { width: min(100% - (var(--gutter) * 2), var(--shell)); margin-inline: auto; }
.section { padding-block: clamp(64px, 10vw, 132px); }
.section--tight { padding-block: clamp(48px, 7vw, 88px); }
main { min-height: 40vh; }

/* Channel-letter label reversed out of a full mullion bar */
.channel-bar {
  display: inline-block; font-family: var(--font-primary); font-weight: 800;
  text-transform: uppercase; line-height: 0.94;
  color: var(--bone); background: var(--ink);
  padding: 0.18em 0.5em 0.24em; letter-spacing: 0.005em;
}
.channel-bar--cyan { background: var(--cyan); color: var(--ink); }

/* Buttons / text links */
.btn {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-family: var(--font-secondary); font-weight: 600; font-size: 0.9375rem;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 0.85em 1.5em; background: var(--red); color: var(--white);
  border: 2px solid var(--red); cursor: pointer;
  transition: background var(--motion-duration) var(--motion-ease),
              color var(--motion-duration) var(--motion-ease);
}
.btn:hover { background: var(--ink); border-color: var(--ink); color: var(--bone); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--bone); }

.textlink {
  display: inline-flex; align-items: center; gap: 0.4em;
  font-family: var(--font-secondary); font-weight: 600; font-size: 0.9375rem;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--red-ink);
  border-bottom: 2px solid transparent; padding-bottom: 2px;
  transition: border-color var(--motion-duration) var(--motion-ease), gap var(--motion-duration) var(--motion-ease);
}
.textlink:hover { border-color: var(--red-ink); gap: 0.7em; }
.textlink i { transition: transform var(--motion-duration) var(--motion-ease); }
.textlink:hover i { transform: translateX(3px); }

/* ============================================================
   NAV — sticky bone bar, illustrated logo, dotted links, OPEN pill
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: var(--bone); border-bottom: 2px solid var(--ink);
}
.nav__inner {
  width: min(100% - (var(--gutter) * 2), var(--shell)); margin-inline: auto;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: clamp(16px, 3vw, 40px); padding-block: 12px;
}
.nav__brand { display: inline-flex; align-items: center; }
.nav__logo { height: 58px; width: auto; max-width: 220px; }
.nav__links {
  display: flex; align-items: center; justify-self: end;
  list-style: none; flex-wrap: wrap; row-gap: 4px;
}
.nav__links li { display: inline-flex; align-items: center; }
.nav__links li + li::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); margin: 0 clamp(12px, 2vw, 22px);
  transition: transform var(--motion-duration) var(--motion-ease);
}
.nav__link {
  font-family: var(--font-secondary); font-weight: 600; font-size: 0.8125rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink);
  transition: color var(--motion-duration) var(--motion-ease);
}
.nav__link:hover { color: var(--red-ink); }
.nav__link[aria-current="page"] { color: var(--red-ink); }
/* active link's preceding bullet scales up — the one hand-strung beat */
.nav__links li[aria-current-item] + li::before,
.nav__link[aria-current="page"] { }
.nav__links li:has(.nav__link[aria-current="page"]) + li::before { transform: scale(1.7); }
.nav__link[aria-current="page"]::after {
  content: ''; display: block; height: 2px; background: var(--red); margin-top: 3px;
}
.nav__open {
  justify-self: end; display: inline-flex; align-items: center; gap: 0.6em;
  font-family: var(--font-mono); font-size: 0.8125rem; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--ink); white-space: nowrap;
}
.nav__open-dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--neon);
  box-shadow: 0 0 0 0 rgba(255,42,51,.5);
  animation: open-breath 2.2s ease-in-out infinite;
}
@keyframes open-breath {
  0%,100% { opacity: .5; box-shadow: 0 0 0 0 rgba(255,42,51,.45); }
  50%     { opacity: 1; box-shadow: 0 0 14px 3px rgba(255,42,51,.6); }
}

@media (max-width: 860px) {
  .nav__inner { grid-template-columns: auto auto; row-gap: 10px; column-gap: 16px; }
  .nav__open { grid-row: 1; grid-column: 2; justify-self: end; }
  .nav__links { grid-column: 1 / -1; justify-self: start; }
}
@media (max-width: 420px) {
  .nav__links li + li::before { margin: 0 12px; }
  .nav__link { font-size: 0.8125rem; }
}

/* ============================================================
   HERO — the lit display-case wall (mullion photo grid + one neon cell)
   ============================================================ */
.hero { position: relative; background: var(--ink); }
.hero__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, minmax(96px, 1fr));
  grid-template-areas:
    "a a b n"
    "a a b c"
    "d e f c"
    "d g f h";
  gap: var(--mullion);
  background: var(--ink);
  padding: var(--mullion);
  height: clamp(560px, 88vh, 940px);
}
.case-cell { position: relative; overflow: hidden; background: var(--case-black); }
.case-cell > img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 42%;
  display: block;
}
/* cool case-glow rim */
.case-cell::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 34px rgba(42,143,184,0.16);
}
.cell-a { grid-area: a; } .cell-b { grid-area: b; } .cell-c { grid-area: c; }
.cell-d { grid-area: d; } .cell-e { grid-area: e; } .cell-f { grid-area: f; }
.cell-g { grid-area: g; } .cell-h { grid-area: h; }

/* fluorescent warm-up: hidden under JS, flickers on */
html.js .case-cell { opacity: 0; }
html.js .case-cell.warm { animation: flicker-on .55s var(--motion-ease) forwards; }
@keyframes flicker-on {
  0%   { opacity: 0; }
  10%  { opacity: .7; }
  16%  { opacity: .15; }
  28%  { opacity: .9; }
  36%  { opacity: .35; }
  50%  { opacity: 1; }
  62%  { opacity: .6; }
  100% { opacity: 1; }
}

/* the one neon type cell */
.neon-cell {
  grid-area: n; position: relative; overflow: hidden;
  background: var(--case-black); display: grid; place-items: center; text-align: center;
  padding: 10px;
}
.neon-cell__tex {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0.5; mix-blend-mode: screen;
}
.neon-cell__text {
  position: relative; font-family: var(--font-primary); font-weight: 900;
  text-transform: uppercase; line-height: 0.84; letter-spacing: 0.01em;
  font-size: clamp(1.05rem, 2.1vw, 1.9rem); color: var(--neon);
  text-shadow: 0 0 6px rgba(255,42,51,.85), 0 0 18px rgba(255,42,51,.55), 0 0 40px rgba(255,42,51,.35);
  animation: neon-breath 2.6s ease-in-out infinite;
}
.neon-cell__text small { display: block; font-size: 0.5em; color: var(--bone); opacity: .8; letter-spacing: .18em; text-shadow: none; margin-top: .35em; }
@keyframes neon-breath {
  0%,100% { opacity: .82; }
  50%     { opacity: 1; text-shadow: 0 0 8px rgba(255,42,51,1), 0 0 24px rgba(255,42,51,.7), 0 0 54px rgba(255,42,51,.45); }
}

/* corner positioning plate */
.hero__plate {
  position: absolute; left: clamp(14px, 3vw, 40px); bottom: clamp(14px, 3vw, 40px);
  z-index: 4; max-width: min(88vw, 430px);
  background: var(--white); color: var(--ink);
  padding: clamp(18px, 2.4vw, 28px); border-left: 6px solid var(--red);
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.hero__plate p { font-size: clamp(1rem, 1.5vw, 1.15rem); line-height: 1.45; margin-bottom: 0.9em; max-width: none; }
.hero__plate strong { font-family: var(--font-primary); font-weight: 800; }

/* ============================================================
   AISLE ROWS — what we carry (full-width mullion-bar signage)
   ============================================================ */
.aisles { background: var(--bone); }
.aisle {
  display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: center;
  gap: clamp(24px, 5vw, 72px);
  padding-block: clamp(30px, 5vw, 56px);
  border-top: 2px solid var(--ink);
}
.aisles .aisle:last-child { border-bottom: 2px solid var(--ink); }
.aisle:nth-child(even) { grid-template-columns: 0.85fr 1.15fr; }
.aisle:nth-child(even) .aisle__body { order: 2; }
.aisle:nth-child(even) .aisle__chip { order: 1; }
.aisle__body { min-width: 0; }
.aisle__bar {
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  margin-bottom: 0.5em;
}
.aisle__num {
  font-family: var(--font-mono); font-size: 0.8125rem; color: var(--red-ink);
  letter-spacing: 0.2em; display: block; margin-bottom: 0.9em;
}
.aisle__desc { font-size: 1.0625rem; color: var(--text-secondary); max-width: 46ch; }
.aisle__chip {
  min-width: 0; background: var(--white); padding: 8px;
  border: 2px solid var(--ink); align-self: center;
  transition: transform var(--motion-duration-slow) var(--motion-ease),
              box-shadow var(--motion-duration-slow) var(--motion-ease);
}
.aisle__chip img { width: 100%; height: clamp(200px, 26vw, 300px); object-fit: cover; }
.aisle__chip:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(0,0,0,.18); }

.aisles__head { padding-top: clamp(48px, 7vw, 96px); }
.aisles__head .h2 { max-width: 16ch; }
.aisles__head .rule { width: 84px; height: 6px; background: var(--cyan); margin-top: 18px; }

/* ============================================================
   LATE-NIGHT BAND — differentiator, Case Black + sliding diagonals
   ============================================================ */
.latenight {
  position: relative; overflow: hidden; background: var(--case-black); color: var(--bone);
  padding-block: clamp(80px, 13vw, 180px);
}
.latenight__inner { position: relative; z-index: 2; }
.latenight__kicker { font-family: var(--font-mono); color: var(--cyan); letter-spacing: 0.22em; font-size: 0.8125rem; margin-bottom: 1.1em; }
.latenight__display {
  font-family: var(--font-primary); font-weight: 900; text-transform: uppercase;
  font-size: clamp(3rem, 11vw, 9.5rem); line-height: 0.85; letter-spacing: -0.01em;
  color: var(--bone);
}
.latenight__display .slash { color: var(--neon); }
.latenight__hours {
  font-family: var(--font-mono); letter-spacing: 0.16em; text-transform: uppercase;
  font-size: clamp(0.95rem, 1.8vw, 1.35rem); color: var(--bone); margin-top: 1.4em;
  display: inline-flex; align-items: center; gap: 0.8em;
}
.latenight__hours .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 12px 2px rgba(255,42,51,.6); animation: open-breath 2.2s ease-in-out infinite; }

/* sliding diagonals (insertion #6) */
.diagonals { position: absolute; inset: -20% -10%; z-index: 1; pointer-events: none; }
.diagonals span {
  position: absolute; top: -30%; height: 160%; width: clamp(90px, 12vw, 220px);
  transform: skewX(-16deg); opacity: 0.14;
  animation: slide-diag linear infinite;
}
.diagonals span:nth-child(1) { left: 8%;  background: var(--bone); animation-duration: 13s; animation-delay: 0s; }
.diagonals span:nth-child(2) { left: 28%; background: var(--red);  opacity: .12; animation-duration: 17s; animation-delay: -4s; }
.diagonals span:nth-child(3) { left: 52%; background: var(--bone); animation-duration: 15s; animation-delay: -8s; }
.diagonals span:nth-child(4) { left: 72%; background: var(--cyan); opacity: .1; animation-duration: 19s; animation-delay: -2s; }
.diagonals span:nth-child(5) { left: 88%; background: var(--red);  opacity: .1; animation-duration: 21s; animation-delay: -11s; }
@keyframes slide-diag {
  0%   { transform: translateX(-30vw) skewX(-16deg); }
  100% { transform: translateX(120vw) skewX(-16deg); }
}

/* ============================================================
   MURAL BAND — the shop's face (full-bleed, zoom + blur on scroll)
   ============================================================ */
.mural { position: relative; min-height: clamp(560px, 92vh, 900px); overflow: hidden; display: grid; align-items: end; }
.mural__media { position: absolute; inset: 0; overflow: hidden; }
.mural__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  transform: scale(calc(1 + (var(--zoom, 0) * 0.18)));
  filter: blur(calc(var(--zoom, 0) * 7px));
  transition: transform .12s linear, filter .12s linear;
}
.mural__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,8,7,.05) 0%, rgba(10,8,7,.02) 45%, rgba(10,8,7,.35) 100%); }
.mural__inner { position: relative; z-index: 2; width: min(100% - (var(--gutter)*2), var(--shell)); margin-inline: auto; padding-block: clamp(40px, 7vw, 90px); display: flex; justify-content: flex-end; }
.mural__plate {
  background: var(--white); color: var(--ink); max-width: min(92vw, 480px);
  padding: clamp(24px, 3vw, 40px); border-top: 6px solid var(--red);
  box-shadow: 0 22px 50px rgba(0,0,0,.4);
}
.mural__plate .h2 { margin-bottom: 0.5em; }
.mural__plate p { color: var(--text-secondary); }
.mural__objects { display: flex; gap: 16px; margin-top: 22px; }
.mural__objects figure { flex: 1; min-width: 0; background: var(--bone); border: 1px solid var(--bone-line); padding: 6px; }
.mural__objects img { width: 100%; height: 92px; object-fit: contain; }

/* ============================================================
   FIND-US SEAM — asymmetric contact ledger + curved SVG ridge
   ============================================================ */
.findus { background: var(--bone); position: relative; }
.findus__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(28px, 5vw, 72px); align-items: start; }
.findus__grid > * { min-width: 0; }
.findus__eyebrow { font-family: var(--font-mono); color: var(--red-ink); letter-spacing: 0.2em; font-size: 0.8125rem; margin-bottom: 1em; }
.findus .rule { width: 84px; height: 6px; background: var(--cyan); margin: 18px 0 26px; }
.ledger { display: grid; gap: 18px; margin-top: 8px; }
.ledger__row { display: grid; grid-template-columns: auto 1fr; gap: 14px; align-items: start; padding-bottom: 16px; border-bottom: 1px solid var(--bone-line); }
.ledger__row i { font-size: 1.4rem; color: var(--red); line-height: 1; margin-top: 2px; }
.ledger__row .k { font-family: var(--font-primary); font-weight: 700; text-transform: uppercase; font-size: 0.95rem; letter-spacing: 0.04em; color: var(--text-secondary); }
.ledger__row .v { font-size: 1.05rem; }
.ledger__row a { color: var(--ink); }
.ledger__row a:hover { color: var(--red-ink); }
.ledger__row .mono { display: inline-block; }
.mapblock {
  border: 2px solid var(--ink); background: var(--white); min-height: 320px;
  overflow: hidden; position: relative;
}
.mapblock iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; filter: grayscale(0.25) contrast(1.05); }

/* curved SVG ridge seam into footer */
.ridge { display: block; width: 100%; height: clamp(60px, 9vw, 130px); margin-bottom: -6px; }
.ridge svg { display: block; width: 100%; height: 100%; }
.ridge path { fill: var(--case-black); }

/* ============================================================
   FOOTER — Case Black field, three columns
   ============================================================ */
.footer { background: var(--case-black); color: var(--bone); padding-top: clamp(48px, 7vw, 80px); }
.footer__grid {
  display: grid; grid-template-columns: 1.3fr 0.7fr 1fr; gap: clamp(28px, 5vw, 64px);
  padding-bottom: 40px;
}
.footer__grid > * { min-width: 0; }
.footer__logo { height: 48px; width: auto; max-width: 170px; margin-bottom: 18px; }
.footer__pos { color: #cfc7bb; max-width: 34ch; font-size: 0.95rem; }
.footer__hours { font-family: var(--font-mono); letter-spacing: 0.13em; text-transform: uppercase; font-size: 0.8125rem; margin-top: 16px; display: inline-flex; align-items: center; gap: 0.6em; color: var(--bone); }
.footer__hours .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 10px 2px rgba(255,42,51,.55); animation: open-breath 2.2s ease-in-out infinite; }
.footer__colhead { font-family: var(--font-primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--cyan); font-size: 1rem; margin-bottom: 14px; }
.footer__nav { list-style: none; display: grid; gap: 10px; }
.footer__nav a { color: var(--bone); font-weight: 500; font-size: 0.9375rem; text-transform: uppercase; letter-spacing: 0.06em; transition: color var(--motion-duration) var(--motion-ease); }
.footer__nav a:hover { color: var(--red); }
.footer__contact { font-style: normal; display: grid; gap: 10px; font-size: 0.95rem; color: #cfc7bb; }
.footer__contact a { color: var(--bone); }
.footer__contact a:hover { color: var(--red); }
.footer__bar { border-top: 1px solid rgba(244,240,230,.16); padding-block: 20px; font-size: 0.8125rem; color: #a49c90; }
.footer__bar .shell { display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; }

/* ============================================================
   MASTHEADS (interior pages)
   ============================================================ */
.masthead { background: var(--bone); padding-block: clamp(70px, 11vw, 150px) clamp(40px, 6vw, 72px); }
.masthead--index { display: grid; grid-template-columns: auto 1fr; gap: clamp(24px, 5vw, 64px); align-items: end; }
.masthead--index > * { min-width: 0; }
.bay-index { font-family: var(--font-primary); font-weight: 900; font-size: clamp(3.5rem, 13vw, 10rem); line-height: 0.82; color: transparent; -webkit-text-stroke: 2px var(--cyan); text-stroke: 2px var(--cyan); letter-spacing: -0.01em; }
.masthead__intro { max-width: 44ch; color: var(--text-secondary); font-size: 1.15rem; align-self: center; }
.masthead .rule { width: 96px; height: 6px; background: var(--cyan); margin-top: 22px; }

/* Masked colossal statement (About) — insertion #5 */
.masked-statement { background: var(--bone); padding-block: clamp(80px, 13vw, 170px); }
.masked-line {
  font-family: var(--font-primary); font-weight: 900; text-transform: uppercase;
  font-size: clamp(2.8rem, 11vw, 9rem); line-height: 0.84; letter-spacing: -0.01em;
  color: var(--ink); /* fallback so it is never invisible */
  display: block;
}
@supports ((background-clip: text) or (-webkit-background-clip: text)) {
  .masked-line {
    background-image: linear-gradient(100deg, var(--red) 0%, var(--neon) 22%, #ffd7b0 40%, var(--red) 58%, var(--ink) 82%);
    background-size: 260% 100%; background-position: 0% 50%;
    -webkit-background-clip: text; background-clip: text;
    color: transparent; -webkit-text-fill-color: transparent;
    animation: mask-pan 9s linear infinite;
  }
}
@keyframes mask-pan { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }

/* ============================================================
   ABOUT — asymmetric story + community band
   ============================================================ */
.story { background: var(--bone); }
.story__grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(24px, 6vw, 96px); }
.story__grid > * { min-width: 0; }
.story__void { position: relative; }
.story__pull {
  font-family: var(--font-primary); font-weight: 800; text-transform: uppercase;
  font-size: clamp(1.6rem, 3.4vw, 2.8rem); line-height: 0.98; color: var(--ink);
  position: sticky; bottom: 0; align-self: end; margin-top: auto;
}
.story__pull::before { content: ''; display: block; width: 60px; height: 5px; background: var(--cyan); margin-bottom: 20px; }
.story__copy { max-width: 62ch; }
.story__copy .lead { max-width: 60ch; margin-bottom: 1.2em; color: var(--ink); }
.story__copy p { color: var(--text-secondary); margin-bottom: 1.05em; }

.community { background: var(--white); }
.community__grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.community__grid > * { min-width: 0; }
.community__media { border: 2px solid var(--ink); background: var(--bone); padding: 8px; }
.community__media img { width: 100%; height: clamp(280px, 40vw, 460px); object-fit: cover; }
.community__objects { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 18px; }
.community__objects figure { background: var(--bone); border: 1px solid var(--bone-line); padding: 10px; transition: transform var(--motion-duration-slow) var(--motion-ease); }
.community__objects figure:hover { transform: rotate(-1.5deg) translateY(-3px); }
.community__objects img { width: 100%; height: 120px; object-fit: contain; }
.community__objects figcaption { margin-top: 8px; }
.community__copy h2 { margin-bottom: 0.5em; }
.community__copy p { color: var(--text-secondary); margin-bottom: 1em; }
.community__tag { font-family: var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.8125rem; color: var(--red); display: inline-flex; align-items: center; gap: 0.5em; }

/* ============================================================
   PRODUCTS — category bays (subgrid reveal)
   ============================================================ */
.bays { background: var(--bone); }
.bay {
  display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(24px, 5vw, 72px);
  align-items: start; padding-block: clamp(44px, 7vw, 90px);
  border-top: 2px solid var(--ink);
}
.bays .bay:last-of-type { border-bottom: 2px solid var(--ink); }
.bay:nth-child(even) .bay__copy { order: 2; }
.bay:nth-child(even) .bay__grid { order: 1; }
.bay > * { min-width: 0; }
.bay__num { font-family: var(--font-mono); color: var(--red-ink); letter-spacing: 0.2em; font-size: 0.8125rem; margin-bottom: 1em; }
.bay__bar { font-size: clamp(1.8rem, 4.4vw, 3rem); margin-bottom: 0.7em; }
.bay__copy p { color: var(--text-secondary); max-width: 44ch; }
.bay__copy .caption { margin-top: 1.2em; display: block; }
/* subgrid image grid (insertion #29) */
.bay__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.bay__grid.subgrid { grid-template-columns: repeat(2, 1fr); }
.bay__grid figure { min-width: 0; border: 2px solid var(--ink); background: var(--white); padding: 6px; overflow: hidden; }
.bay__grid figure img { width: 100%; height: clamp(150px, 20vw, 220px); object-fit: cover; transition: transform var(--motion-duration-slow) var(--motion-ease); }
.bay__grid figure:hover img { transform: scale(1.05); }
.bay__grid figure.tall { grid-row: span 2; }
.bay__grid figure.tall img { height: 100%; min-height: 312px; }

/* ============================================================
   FORMS — contact / lead (contact-form contract)
   ============================================================ */
.formband { position: relative; overflow: hidden; }
.formband--dark { background: var(--case-black); color: var(--bone); }
.formband__grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 5vw, 80px); align-items: center; position: relative; z-index: 2; }
.formband__grid > * { min-width: 0; }
.formband__display { font-family: var(--font-primary); font-weight: 900; text-transform: uppercase; font-size: clamp(2.6rem, 7vw, 5.5rem); line-height: 0.86; }
.formband--dark .formband__display { color: var(--bone); }
.formband__display .accent { color: var(--red); }
.formband__lead { margin-top: 1.2em; max-width: 34ch; }
.formband--dark .formband__lead { color: #cfc7bb; }

.contact-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 7px; min-width: 0; }
.field label { font-family: var(--font-secondary); font-weight: 600; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.08em; color: currentColor; }
.formband--dark .field label { color: var(--bone); }
.field .opt { color: var(--text-secondary); font-weight: 500; text-transform: none; letter-spacing: 0; }
.field input, .field textarea {
  font-family: var(--font-secondary); font-size: 1rem; color: var(--ink);
  background: var(--white); border: 2px solid var(--ink); border-radius: 0;
  padding: 0.75em 0.9em; width: 100%;
  transition: box-shadow var(--motion-duration) var(--motion-ease), border-color var(--motion-duration) var(--motion-ease);
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(42,143,184,.4); }
.contact-form .btn { justify-self: start; margin-top: 4px; }

/* floating balls (insertion #4) — visit contact only */
.orbs { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.orbs span { position: absolute; border-radius: 50%; filter: blur(38px); opacity: 0.5; }
.orbs span:nth-child(1) { width: 320px; height: 320px; background: var(--neon); left: 4%; top: 12%; animation: orb-drift 18s ease-in-out infinite; }
.orbs span:nth-child(2) { width: 260px; height: 260px; background: var(--cyan); right: 8%; top: 30%; animation: orb-drift 22s ease-in-out infinite reverse; }
.orbs span:nth-child(3) { width: 200px; height: 200px; background: var(--red);  right: 26%; bottom: 6%; opacity: .35; animation: orb-drift 26s ease-in-out infinite; }
.orbs span:nth-child(4) { width: 160px; height: 160px; background: var(--cyan); left: 30%; bottom: 10%; opacity: .4; animation: orb-drift 20s ease-in-out infinite reverse; }
@keyframes orb-drift {
  0%,100% { transform: translate(0,0) scale(1); }
  33%     { transform: translate(40px, -30px) scale(1.08); }
  66%     { transform: translate(-30px, 24px) scale(0.95); }
}

/* ============================================================
   VISIT — map + lit hours card
   ============================================================ */
.visit-map { background: var(--bone); }
.visit-map__grid { display: grid; grid-template-columns: 2fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: stretch; }
.visit-map__grid > * { min-width: 0; }
.hours-card { background: var(--case-black); color: var(--bone); padding: clamp(24px, 3vw, 36px); display: flex; flex-direction: column; gap: 14px; }
.hours-card h2 { color: var(--bone); font-size: clamp(1.6rem, 3vw, 2.2rem); }
.hours-card .open-flag { display: inline-flex; align-items: center; gap: 0.55em; font-family: var(--font-mono); letter-spacing: 0.14em; text-transform: uppercase; color: var(--neon); text-shadow: 0 0 10px rgba(255,42,51,.5); font-size: 1rem; }
.hours-card .open-flag .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--neon); box-shadow: 0 0 12px 3px rgba(255,42,51,.6); animation: open-breath 2.2s ease-in-out infinite; }
.hours-card__list { list-style: none; display: grid; gap: 9px; margin-top: 4px; }
.hours-card__list li { display: flex; justify-content: space-between; gap: 16px; font-family: var(--font-mono); font-size: 0.9rem; letter-spacing: 0.06em; padding-bottom: 8px; border-bottom: 1px solid rgba(244,240,230,.14); }
.hours-card__list li span:last-child { color: var(--cyan); }
.hours-card__note { color: #cfc7bb; font-size: 0.9rem; margin-top: 4px; }

/* ============================================================
   404
   ============================================================ */
.notfound { min-height: 62vh; display: grid; place-items: center; text-align: center; background: var(--bone); padding: 80px var(--gutter); }
.notfound .code { font-family: var(--font-primary); font-weight: 900; font-size: clamp(5rem, 20vw, 13rem); line-height: 0.8; color: var(--ink); }
.notfound .code b { color: var(--red); }
.notfound p { margin: 0 auto 26px; color: var(--text-secondary); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .findus__grid, .community__grid, .story__grid, .formband__grid, .visit-map__grid, .masthead--index { grid-template-columns: 1fr; }
  .story__pull { position: static; margin-top: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  /* Hero grid flips to 2 cols; neon keeps its own full row */
  .hero__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, minmax(120px, 1fr));
    grid-template-areas:
      "n n"
      "a a"
      "b c"
      "d e"
      "f f"
      "g h";
    height: auto;
  }
  .neon-cell { min-height: 130px; }
  .neon-cell__text { font-size: clamp(1.4rem, 6vw, 2.4rem); }

  .aisle, .aisle:nth-child(even) { grid-template-columns: 1fr; gap: 20px; }
  .aisle__body, .aisle:nth-child(even) .aisle__body { order: 1; }
  .aisle__chip, .aisle:nth-child(even) .aisle__chip { order: 2; }
  .aisle__chip img { height: clamp(200px, 52vw, 300px); }

  .bay, .bay:nth-child(even) { grid-template-columns: 1fr; }
  .bay:nth-child(even) .bay__copy, .bay__copy { order: 1; }
  .bay:nth-child(even) .bay__grid, .bay__grid { order: 2; }

  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero__plate { position: static; max-width: none; box-shadow: none; margin: 0; }
  .hero { background: var(--bone); }
  .mural__objects { flex-wrap: wrap; }
  .community__objects { grid-template-columns: 1fr; }
}

/* ============================================================
   Reduced motion — freeze all decorative motion, keep content visible
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  html.js .reveal { opacity: 1 !important; transform: none !important; }
  html.js .case-cell { opacity: 1 !important; }
  .neon-cell__text, .nav__open-dot, .footer__hours .dot, .latenight__hours .dot, .hours-card .open-flag .dot { animation: none !important; }
  .neon-cell__text { opacity: 1; }
  .diagonals, .orbs { display: none; }
  .mural__media img { transform: none !important; filter: none !important; }
}

/* ============================================================
   Self-hosted Google Fonts (localized by 20_performance_sweep)
   ============================================================ */
/* vietnamese */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q82sLySOxKsv4RnUPU.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q82sLyTOxKsv4RnUPU.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q82sLydOxKsv4Rn.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q82sLySOxKsv4RnUPU.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q82sLyTOxKsv4RnUPU.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 500;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q82sLydOxKsv4Rn.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q82sLySOxKsv4RnUPU.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q82sLyTOxKsv4RnUPU.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Archivo';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  font-display: swap;
  src: url('/fonts/k3kPo8UDI-1M0wlSV9XAw6lQkqWY8Q82sLydOxKsv4Rn.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Saira Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/EJRLQgErUN8XuHNEtX81i9TmEkrnGc5Q-K2fhC61HpnY.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Saira Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/EJRLQgErUN8XuHNEtX81i9TmEkrnGc5Q-a2fhC61HpnY.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Saira Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/fonts/EJRLQgErUN8XuHNEtX81i9TmEkrnGc5Q962fhC61Hg.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Saira Condensed';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/EJRLQgErUN8XuHNEtX81i9TmEkrnBc1Q-K2fhC61HpnY.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Saira Condensed';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/EJRLQgErUN8XuHNEtX81i9TmEkrnBc1Q-a2fhC61HpnY.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Saira Condensed';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/fonts/EJRLQgErUN8XuHNEtX81i9TmEkrnBc1Q962fhC61Hg.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* vietnamese */
@font-face {
  font-family: 'Saira Condensed';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/EJRLQgErUN8XuHNEtX81i9TmEkrnIcxQ-K2fhC61HpnY.woff2') format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1EA0-1EF9, U+20AB;
}
/* latin-ext */
@font-face {
  font-family: 'Saira Condensed';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/EJRLQgErUN8XuHNEtX81i9TmEkrnIcxQ-a2fhC61HpnY.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Saira Condensed';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/fonts/EJRLQgErUN8XuHNEtX81i9TmEkrnIcxQ962fhC61Hg.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: 'Share Tech Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/fonts/J7aHnp1uDWRBEqV98dVQztYldFcLowEFA87Heg.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
