/* ══════════════════════════════════════════════════════════════
   20XX — shared stylesheet

   Design language follows the Framer marketing system (see
   DESIGNframer.md): near-black canvas, oversized white display type
   with aggressively negative tracking, white pill CTAs, charcoal
   surface cards, and a single chromatic accent reserved for links,
   focus and selection — never as a fill.

   Two deliberate departures from that spec:
   - the accent stays 20XX's cyan rather than Framer's #0099ff;
   - the gradient spotlight cards are omitted, so the palette is
     monochrome plus the one signal colour.
   ══════════════════════════════════════════════════════════════ */

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

:root{
  /* surfaces — hierarchy on dark is carried by surface lift,
     canvas → 1 → 2, not by opacity changes on white type */
  --canvas:#090909;
  --surface-1:#141414;
  --surface-2:#1c1c1c;
  --hairline:#262626;
  --hairline-soft:#1a1a1a;

  /* text is binary: ink or ink-muted, nothing in between */
  --ink:#ffffff;
  --ink-muted:#999999;
  --on-primary:#000000;

  /* signal colour only: links, focus rings, selected states */
  --accent:#00D4FF;
  --accent-rgb:0,212,255;

  /* Neither Latin face carries kana, and the stacks used to end at the
     generic sans-serif to supply them — which resolves to a Japanese face on
     some systems and to a Latin-only one on others, where every kana then
     renders as a notdef box. The Japanese faces are named explicitly:
     Hiragino on macOS/iOS, Yu Gothic and Meiryo on Windows, Noto elsewhere. */
  --jp:'Hiragino Kaku Gothic ProN','Hiragino Sans','Yu Gothic Medium','Yu Gothic',
       Meiryo,'Noto Sans JP','Noto Sans CJK JP';
  --sans:'Inter','Helvetica Neue',Arial,var(--jp),sans-serif;
  --display:'Mona Sans','Inter','Helvetica Neue',Arial,var(--jp),sans-serif;

  /* Inter's character variants are the body voice — switching them
     off visibly changes it.

     dlig is deliberately not among them. font-feature-settings applies to
     whatever font ends up rendering a run, and the Japanese faces honour
     discretionary ligatures too: it substituted ます for a single combined
     glyph, which drew as a slashed box on systems whose font lacks it.
     Measured at 40px, ます came out 39.9px wide with dlig against 79.7
     without — two characters collapsed into one. The rest of the list was
     checked the same way and leaves Japanese untouched. */
  --inter-feat:'cv01' 1,'cv05' 1,'cv09' 1,'cv11' 1,'ss03' 1,'ss07' 1;

  /* 5px base unit, per the reference system */
  --xxs:4px; --xs:8px; --sm:12px; --md:15px;
  --lg:20px; --xl:30px; --xxl:40px; --section:96px;

  --r-xs:4px; --r-sm:6px; --r-md:10px; --r-lg:15px;
  --r-xl:20px; --r-xxl:30px; --r-pill:100px; --r-full:9999px;

  --gutter:30px;
  --maxw:1199px;
  --navh:56px;
}

html{background:var(--canvas);-webkit-text-size-adjust:100%}
body{
  background:var(--canvas);color:var(--ink);
  font-family:var(--sans);font-size:15px;line-height:1.3;
  letter-spacing:-.01em;font-feature-settings:var(--inter-feat);
  -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;
  overflow-x:hidden;
  /* an address or URL has no break opportunity, so on a narrow column it
     runs straight past its box; anywhere lets it break rather than stretch */
  overflow-wrap:anywhere;
  /* holds the footer to the bottom on the short pages (shop, contact),
     which otherwise end in a band of dead canvas below it */
  min-height:100svh;display:flex;flex-direction:column
}
p{text-wrap:pretty}
img{max-width:100%;display:block}
button,input,select{font:inherit;color:inherit;letter-spacing:inherit}
a{color:inherit;text-decoration:none}
::selection{background:rgba(var(--accent-rgb),.25);color:#fff}
:focus-visible{outline:none;box-shadow:0 0 0 1px rgba(var(--accent-rgb),.55),0 0 0 4px rgba(var(--accent-rgb),.15)}
::-webkit-scrollbar{width:10px;height:10px}
::-webkit-scrollbar-track{background:var(--canvas)}
::-webkit-scrollbar-thumb{background:var(--hairline);border-radius:var(--r-full)}
::-webkit-scrollbar-thumb:hover{background:#333}

/* ══════════════════════════════════════════════
   TYPE SCALE
   Tracking is set in em so the documented percentage survives the
   clamp() downscale — the reference is explicit that the size may
   shrink but the compression may not.
══════════════════════════════════════════════ */
/* The vw term has to beat the floor on a phone or the heading never scales:
   at 390px an earlier 6.6vw/36px floor pinned .d-xl to 36px, which filled the
   column edge to edge and then dropped to two crushed lines one breakpoint
   later. Coefficients are raised and floors lowered so the ramp is live from
   ~320px up; the maxima — and so the desktop composition — are unchanged. */
.d-xxl,.d-xl,.d-lg,.d-md{
  font-family:var(--display);font-weight:500;color:var(--ink);
  text-wrap:balance
}
.d-xxl{font-size:clamp(38px,10vw,110px);line-height:.85;letter-spacing:-.05em}
.d-xl{font-size:clamp(28px,8vw,85px);line-height:.95;letter-spacing:-.05em}
.d-lg{font-size:clamp(26px,6vw,62px);line-height:1;letter-spacing:-.05em}
.d-md{font-size:clamp(20px,3.4vw,32px);line-height:1.13;letter-spacing:-.031em}
/* Line breaking per script. i18n.js keeps document.documentElement.lang in
   sync, which is what these hang off.

   keep-all was applied to all three to stop 「ビジュアルシステム」 splitting
   mid-word, but it is a Korean rule: in Japanese and Chinese it leaves the
   punctuation marks as the only break opportunities, so a line ends early
   and its tail drops alone onto the next one. Measured at 390px, a two-line
   paragraph filled 300px of 350 instead of 346.

   Japanese and Chinese get strict kinsoku instead, which keeps 。 and 、 off
   the start of a line, and otherwise break normally. auto-phrase was tried
   here too and is worse on a narrow column: breaking only on phrase
   boundaries turned a three-line paragraph filling 96/96/92% of its width
   into a four-line one filling 81/61/60/81%. */
:lang(ja),:lang(zh-CN){line-break:strict}
:lang(ko){word-break:keep-all;line-break:strict}
/* the negative tracking is tuned for Latin; on CJK it pulls the ideographic
   comma and full stop into the following glyph */
:lang(ja) .d-xxl,:lang(ja) .d-xl,:lang(ja) .d-lg,:lang(ja) .d-md,
:lang(zh-CN) .d-xxl,:lang(zh-CN) .d-xl,:lang(zh-CN) .d-lg,:lang(zh-CN) .d-md,
:lang(ko) .d-xxl,:lang(ko) .d-xl,:lang(ko) .d-lg,:lang(ko) .d-md{
  letter-spacing:-.01em;line-height:1.15
}

.headline{font-size:22px;font-weight:700;line-height:1.2;letter-spacing:-.036em}
.subhead{font-size:clamp(18px,1.9vw,24px);font-weight:400;line-height:1.3;letter-spacing:0}
.body-lg{font-size:clamp(16px,1.5vw,18px);line-height:1.3;letter-spacing:-.01em}
.body-sm{font-size:14px;font-weight:500;line-height:1.4;letter-spacing:-.01em}
.caption{font-size:13px;font-weight:500;line-height:1.2;letter-spacing:-.01em}
.micro{font-size:12px;line-height:1.2;letter-spacing:-.01em}
.muted{color:var(--ink-muted)}

/* ══════════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════════ */
.wrap{width:100%;max-width:var(--maxw);margin:0 auto;padding:0 var(--gutter)}
.section{padding:var(--section) 0}
.section+.section{padding-top:0}
main{padding-top:var(--navh);flex:1}

/* the dark canvas is the whitespace: one statement per band, with a
   long run of black above and below it */
.band{display:flex;flex-direction:column;gap:var(--xl)}
.band-head{display:flex;flex-direction:column;gap:var(--md);max-width:820px}

/* ══════════════════════════════════════════════
   BUTTONS — pill or circle, never squared off
══════════════════════════════════════════════ */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:var(--xs);
  min-height:44px;padding:10px var(--lg);border:0;cursor:pointer;
  font-size:14px;font-weight:500;line-height:1;letter-spacing:-.01em;
  border-radius:var(--r-pill);white-space:nowrap;
  transition:background .2s,color .2s,transform .12s
}
.btn:active{transform:scale(.97)}
.btn-primary{background:var(--ink);color:var(--on-primary)}
.btn-primary:hover{background:#e6e6e6}
.btn-secondary{background:var(--surface-1);color:var(--ink)}
.btn-secondary:hover{background:var(--surface-2)}
.btn-row{display:flex;flex-wrap:wrap;gap:var(--sm);align-items:center}

.link{color:var(--accent)}
.link:hover{text-decoration:underline;text-underline-offset:3px}

/* ══════════════════════════════════════════════
   TOP NAV — sticky, canvas ground
══════════════════════════════════════════════ */
.hd{
  position:fixed;top:0;left:0;right:0;z-index:800;height:var(--navh);
  display:flex;align-items:center;gap:var(--lg);
  padding:0 var(--gutter);
  border-bottom:1px solid transparent;
  transition:background .3s,border-color .3s
}
.hd.stuck{background:rgba(9,9,9,.82);backdrop-filter:blur(14px);border-bottom-color:var(--hairline-soft)}
.mark{display:flex;align-items:center;gap:var(--xs);flex-shrink:0;transition:opacity .2s}
.mark img{width:24px;height:24px;object-fit:contain}
.mark .wm{
  font-family:var(--display);font-size:19px;font-weight:500;
  letter-spacing:-.04em;line-height:1;color:var(--ink)
}
.mark:hover{opacity:.7}

.nv{display:flex;align-items:center;gap:var(--lg);margin-left:auto}
/* lowercased in CSS, like the category pills — the labels stay written
   normally in the dictionary and the casing is one rule to change */
.nv a{
  font-size:14px;font-weight:500;color:var(--ink-muted);
  text-transform:lowercase;transition:color .2s
}
.nv a:hover{color:var(--ink)}
.nv a.on{color:var(--ink)}

.lang{
  background:transparent;border:0;color:var(--ink-muted);
  font-size:14px;font-weight:500;cursor:pointer;padding:6px 2px
}
.lang option{background:var(--surface-1);color:var(--ink)}

/* three strokes in a round target — 44px because this button only ever
   appears on the widths where it is tapped rather than clicked */
.menu-t{
  display:none;width:44px;height:44px;padding:0;margin-left:auto;
  background:var(--surface-1);color:var(--ink);border:0;cursor:pointer;
  border-radius:var(--r-full);transition:background .2s
}
.menu-t:hover{background:var(--surface-2)}
.menu-t svg{
  width:18px;height:13px;fill:none;stroke:currentColor;
  stroke-width:1.5;stroke-linecap:round
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
/* Content is centred, so any min-height beyond what the block actually needs
   turns straight into dead canvas before the next band. 66svh lands about on
   the natural content height at a laptop viewport; the next section supplies
   the separation with its own top padding. */
.hero{
  min-height:calc(66svh - var(--navh));
  display:flex;flex-direction:column;justify-content:center;
  padding:var(--xxl) 0 0
}
.hero-in{display:flex;flex-direction:column;gap:var(--xl);max-width:940px}
.hero p{max-width:560px}

/* ══════════════════════════════════════════════
   CARD GRID — works
══════════════════════════════════════════════ */
.grid{display:grid;grid-template-columns:repeat(2,1fr);gap:var(--lg)}
/* a single portrait sheet: one column, sized so that opening it is a real
   enlargement rather than the same picture again */
.grid.one{grid-template-columns:minmax(0,440px)}
/* a single wide frame, given the whole column */
.grid.full{grid-template-columns:1fr}
/* A small radius rather than the 20px used on rounded surfaces elsewhere —
   the work frames stay close to the hard edge the earlier design had. The
   hairline is what lights up on hover, so it is on the resting state too. */
.cell{
  background:var(--surface-1);border:1px solid var(--hairline);
  border-radius:var(--r-xs);
  padding:16px;display:flex;flex-direction:column;gap:var(--md);
  transition:background .25s,transform .25s,border-color .25s,box-shadow .25s
}
@media (hover:hover){
  .cell:hover{
    background:var(--surface-2);transform:translateY(-2px);
    border-color:rgba(255,255,255,.55);
    box-shadow:0 0 0 1px rgba(255,255,255,.16),
               0 0 22px rgba(255,255,255,.13),
               inset 0 0 18px rgba(255,255,255,.04)
  }
  .cell:hover .slot{border-color:rgba(255,255,255,.22)}
}
/* keyboard parity — the glow is the only affordance the cards have */
.cell:focus-within{
  border-color:rgba(255,255,255,.55);
  box-shadow:0 0 0 1px rgba(255,255,255,.16),0 0 22px rgba(255,255,255,.13)
}
/* stand-in for the artwork until real images land — a plain lifted
   surface rather than an outlined "missing image" box */
.slot{
  position:relative;aspect-ratio:16/10;border-radius:var(--r-xs);
  background:var(--surface-2);border:1px solid transparent;
  display:flex;align-items:center;justify-content:center;overflow:hidden;
  transition:border-color .25s
}
/* a work with real artwork keeps the art's own shape rather than being
   cropped into the 16:10 placeholder frame */
.wimg{
  width:100%;height:auto;display:block;
  border:1px solid var(--hairline);border-radius:var(--r-xs)
}
/* front/back on one card: a native scroll-snap strip, so the swipe itself is
   the browser's and costs nothing. Only the dot below it is scripted. */
.shots{
  display:flex;overflow-x:auto;scroll-snap-type:x mandatory;
  border-radius:var(--r-xs);border:1px solid var(--hairline);
  scrollbar-width:none;-ms-overflow-style:none;overscroll-behavior-x:contain
}
.shots::-webkit-scrollbar{display:none}
.shots img{
  flex:0 0 100%;width:100%;height:auto;display:block;scroll-snap-align:center
}
.dots{display:flex;justify-content:center;gap:var(--xs);padding:2px 0}
.dots button{
  width:7px;height:7px;padding:0;border:0;border-radius:var(--r-full);
  background:var(--hairline);cursor:pointer;transition:background .2s
}
.dots button.on{background:var(--ink)}
.dots button:hover{background:var(--ink-muted)}
@media (prefers-reduced-motion:reduce){.shots{scroll-behavior:auto}}

/* merch is shot square; the 16:10 default is for the project frames */
.slot.sq{aspect-ratio:1/1}
/* flyers are 3:4 portrait */
.slot.r34{aspect-ratio:3/4}
.slot .sid{
  position:absolute;top:12px;left:14px;
  font-size:12px;font-weight:500;letter-spacing:-.01em;color:var(--ink-muted)
}
.slot .sph{
  font-family:var(--display);font-size:clamp(28px,3.4vw,44px);font-weight:500;
  letter-spacing:-.05em;color:#2e2e2e
}
/* a frame holding a real image: the picture is the whole cell, and the
   cell is a button because clicking opens it large */
.cell.shot{padding:0;border:0;background:none;overflow:hidden}
button.cell.shot{cursor:zoom-in}
div.cell.shot:hover{transform:none}
.cell.shot img{
  width:100%;height:auto;display:block;
  border:1px solid var(--hairline);border-radius:var(--r-xs);
  transition:border-color .25s
}
@media (hover:hover){
  .cell.shot:hover{transform:translateY(-2px);background:none;box-shadow:none}
  .cell.shot:hover img{border-color:rgba(255,255,255,.55)}
}
.cap{display:flex;align-items:baseline;justify-content:space-between;gap:var(--md);padding:0 4px 4px}
.cap .nm{font-size:16px;font-weight:500;letter-spacing:-.02em;color:var(--ink)}
.cap .ty{font-size:13px;font-weight:500;color:var(--ink-muted)}

/* ══════════════════════════════════════════════
   FILTER PILLS — selected reads as a surface lift, not a colour fill
══════════════════════════════════════════════ */
.filters{display:flex;flex-wrap:wrap;gap:var(--xs)}
.filters button{
  background:transparent;color:var(--ink-muted);border:0;cursor:pointer;
  min-height:40px;padding:8px 14px;border-radius:var(--r-pill);
  font-size:14px;font-weight:500;letter-spacing:-.01em;
  /* lowercased here rather than in the dictionary, so the six translations
     stay written normally and the casing is one rule to change */
  text-transform:lowercase;
  transition:background .2s,color .2s
}
.filters button:hover{color:var(--ink)}
.filters button.on{background:var(--surface-2);color:var(--ink)}

/* ══════════════════════════════════════════════
   NEWS ROWS
══════════════════════════════════════════════ */
.rows{display:flex;flex-direction:column;border-top:1px solid var(--hairline-soft)}
.row{
  display:grid;grid-template-columns:88px 150px 1fr;align-items:baseline;
  gap:var(--md) var(--lg);padding:24px 4px;
  border-bottom:1px solid var(--hairline-soft);
  transition:padding-left .25s,background .25s
}
a.row:hover{padding-left:14px;background:var(--surface-1)}
.row .tag{
  justify-self:start;padding:5px 10px;border-radius:var(--r-sm);
  background:var(--surface-2);color:var(--ink-muted);
  font-size:12px;font-weight:500;letter-spacing:-.01em
}
.row .tag.rel{color:var(--accent)}
.row .dt{font-size:14px;font-weight:500;color:var(--ink-muted)}
.row .ttl{font-size:18px;font-weight:500;letter-spacing:-.02em;color:var(--ink)}
.row .desc{grid-column:3;font-size:15px;color:var(--ink-muted)}
/* a release leads with its cover: a large square on the left, and
   everything written about it stacked beside it */
.row.arted{display:flex;align-items:flex-start;gap:var(--lg)}
.row .art{
  width:160px;height:auto;flex-shrink:0;align-self:flex-start;
  border:1px solid var(--hairline);border-radius:var(--r-xs)
}
.rtx{flex:1;min-width:0;display:flex;flex-direction:column;gap:var(--xs)}
.rmeta{display:flex;align-items:center;gap:var(--sm)}
.row.arted .ttl{font-size:clamp(18px,2vw,22px)}
.row.arted .desc{grid-column:auto}
.empty{
  padding:56px 0;text-align:center;color:var(--ink-muted);
  font-size:14px;font-weight:500;border-bottom:1px solid var(--hairline-soft)
}

/* ══════════════════════════════════════════════
   TOUR
══════════════════════════════════════════════ */
/* overview: label / value pairs, the labels held to one narrow column */
.tour-info{
  display:grid;grid-template-columns:minmax(90px,140px) 1fr;
  gap:var(--sm) var(--lg);align-items:baseline;
  padding:var(--lg) 0;border-top:1px solid var(--hairline-soft);
  border-bottom:1px solid var(--hairline-soft);max-width:820px
}
.ti-k{font-size:13px;font-weight:500;color:var(--ink-muted)}
.ti-v{font-size:clamp(16px,1.7vw,20px);font-weight:500;letter-spacing:-.02em}

/* stands in for the media grid while there is nothing to show — a panel
   that says so, rather than rows of empty frames reading as broken images */
.nosignal{
  display:flex;align-items:center;justify-content:center;
  min-height:clamp(180px,26vw,320px);
  background:var(--surface-1);border:1px solid var(--hairline);
  border-radius:var(--r-xs)
}
.nosignal span{
  font-family:var(--display);font-size:clamp(20px,3vw,34px);font-weight:500;
  letter-spacing:.08em;text-transform:uppercase;color:#2e2e2e
}

/* flyer viewer — the dialog is the backdrop, so a click that lands on it
   rather than on the figure closes (handled in y0.js) */
#dtl{
  position:fixed;inset:0;z-index:950;
  display:flex;align-items:center;justify-content:center;
  padding:var(--lg) var(--gutter);
  background:rgba(5,5,8,.92);backdrop-filter:blur(10px);
  opacity:0;visibility:hidden;
  /* visibility flips instantly on open and only after the fade on close:
     transitioning it symmetrically left the dialog computed-hidden for the
     first frames, so focusing the close button was silently ignored */
  transition:opacity .25s,visibility 0s .25s
}
#dtl.on{opacity:1;visibility:visible;transition:opacity .25s,visibility 0s 0s}
/* the figure must stay a real click target: with pointer-events:none the
   click fell through to the backdrop and closed the viewer on the image */
.dtl-in{
  width:min(520px,100%);max-height:80vh;overflow-y:auto;
  display:flex;flex-direction:column;gap:var(--md);
  padding:var(--xl);background:var(--surface-1);
  border:1px solid var(--hairline);border-radius:var(--r-xs)
}
.dtl-cap{
  font-family:var(--display);font-size:clamp(18px,2.2vw,24px);font-weight:500;
  letter-spacing:-.03em;color:var(--ink)
}
/* the show's flyer, carried inside its details rather than a viewer of
   its own — sized to the panel so a tall 3:4 sheet still fits */
.dtl-img{
  width:100%;height:auto;object-fit:contain;
  border:1px solid var(--hairline);border-radius:var(--r-xs)
}
.dtl-img[hidden]{display:none}
/* image-only: the panel sizes to the sheet instead of the 520px reading
   column, so opening a flyer actually shows it larger than the page did */
#dtl.shot .dtl-in{width:auto;max-width:min(94vw,900px);padding:var(--sm);gap:var(--xs)}
/* a portrait sheet on a landscape screen is height-bound, so take the height */
#dtl.shot .dtl-img{width:auto;max-width:100%;max-height:84vh}
.dtl-body[hidden]{display:none}
.dtl-body{font-size:15px;line-height:1.6;color:var(--ink-muted)}
.dtl-body p+p{margin-top:var(--sm)}
/* class kept from the flyer viewer this dialog grew out of */
.flyv-close{
  position:absolute;top:var(--lg);right:var(--gutter);
  width:44px;height:44px;display:flex;align-items:center;justify-content:center;
  background:var(--surface-1);color:var(--ink);border:0;cursor:pointer;
  border-radius:var(--r-full);font-size:22px;line-height:1;
  transition:background .2s
}
.flyv-close:hover{background:var(--surface-2)}

/* one row per show: date, city, venue, then its own actions */
.shows{display:flex;flex-direction:column;border-top:1px solid var(--hairline-soft)}
.show{
  display:grid;grid-template-columns:minmax(120px,170px) minmax(90px,140px) 1fr auto;
  align-items:center;gap:var(--xs) var(--lg);
  padding:20px 4px;border-bottom:1px solid var(--hairline-soft)
}
.show:hover{background:var(--surface-1)}
.sdate{font-size:15px;font-weight:500;letter-spacing:-.01em;color:var(--ink)}
.scity{font-size:14px;font-weight:500;color:var(--ink-muted)}
.svenue{font-size:16px;font-weight:500;letter-spacing:-.02em;color:var(--ink)}
.sact{display:flex;gap:var(--xs);align-items:center;justify-self:end;flex-wrap:wrap}
/* smaller pill for the per-row actions — the page-level CTA stays 44px */
.btn.sm{min-height:34px;padding:7px 14px;font-size:13px}
/* not yet on sale / not yet announced — stated rather than left blank */
.tba{
  font-size:13px;font-weight:500;letter-spacing:.02em;
  color:var(--ink-muted);white-space:nowrap
}
/* sits beside the ticket button while a sale has a start time but has not
   opened — explains the button instead of leaving it looking broken */
.onsale{
  font-size:13px;font-weight:500;color:var(--ink-muted);white-space:nowrap
}

/* ══════════════════════════════════════════════
   COMPANY COPY
══════════════════════════════════════════════ */
.disciplines{
  font-size:clamp(13px,1.4vw,15px);font-weight:500;letter-spacing:.08em;
  text-transform:uppercase;color:var(--accent)
}
/* held near 40em so a line of Japanese stays a comfortable read rather than
   running the full width of the page */
.prose{display:flex;flex-direction:column;gap:var(--md);max-width:40em}
.prose p{font-size:clamp(15px,1.4vw,16px);line-height:2;color:var(--ink-muted)}
.prose .stanza{color:var(--ink);line-height:2.1}

.biz{list-style:none;display:grid;grid-template-columns:repeat(2,1fr);gap:0 var(--xl)}
.biz li{
  display:flex;flex-wrap:wrap;align-items:baseline;gap:var(--xs) var(--sm);
  padding:14px 2px;border-bottom:1px solid var(--hairline-soft)
}
.biz .be{font-size:15px;font-weight:500;letter-spacing:-.01em;color:var(--ink)}
.biz .bj{font-size:13px;color:var(--ink-muted)}

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
/* spans the container like the reference's comparison rows — capped short it
   left-weights the whole page against the wide canvas */
.fields{display:flex;flex-direction:column;border-top:1px solid var(--hairline-soft)}
.fd{
  display:flex;align-items:baseline;justify-content:space-between;gap:var(--lg);
  padding:22px 4px;border-bottom:1px solid var(--hairline-soft);
  transition:padding-left .25s,background .25s
}
a.fd:hover{padding-left:14px;background:var(--surface-1)}
.fd .k{font-size:13px;font-weight:500;color:var(--ink-muted);flex-shrink:0}
.fd .v{font-size:clamp(16px,1.7vw,20px);font-weight:500;letter-spacing:-.02em;text-align:right}
a.fd:hover .v{color:var(--accent)}

/* ══════════════════════════════════════════════
   FOOTER — dense caption-sized link grid
══════════════════════════════════════════════ */
/* no top margin — the preceding .section already ends on --section padding,
   and stacking both left a ~200px void above the footer rule */
.ft{border-top:1px solid var(--hairline-soft);padding:64px 0 40px}
.ft-in{display:flex;flex-wrap:wrap;gap:var(--xxl);justify-content:space-between}
.ft-col{display:flex;flex-direction:column;gap:var(--sm);min-width:140px}
.ft-col h4{font-size:13px;font-weight:500;color:var(--ink);letter-spacing:-.01em}
.ft-col a,.ft-col span{font-size:13px;font-weight:500;color:var(--ink-muted);transition:color .2s}
.ft-col a:hover{color:var(--ink)}
.ft-btm{
  display:flex;flex-wrap:wrap;gap:var(--md);justify-content:space-between;
  margin-top:56px;padding-top:var(--lg);border-top:1px solid var(--hairline-soft);
  font-size:12px;color:var(--ink-muted)
}

/* ══════════════════════════════════════════════
   PRELOADER — charging ring around the emblem
══════════════════════════════════════════════ */
#pld{
  position:fixed;inset:0;z-index:9999;background:var(--canvas);
  display:flex;align-items:center;justify-content:center;
  transition:opacity .5s ease,visibility .5s ease
}
#pld.done{opacity:0;visibility:hidden;pointer-events:none}
.pld-ring{position:relative;width:100px;height:100px}
.pld-ring svg{position:absolute;inset:0;width:100%;height:100%;transform:rotate(-90deg)}
.pld-ring circle{fill:none;stroke-width:2}
.pld-ring .trk{stroke:var(--hairline)}
.pld-ring .bar{
  stroke:var(--accent);stroke-linecap:round;
  stroke-dasharray:264;stroke-dashoffset:264;
  transition:stroke-dashoffset 1.1s cubic-bezier(.4,0,.2,1)
}
.pld-ring.go .bar{stroke-dashoffset:0}
.pld-ring img{
  position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);
  width:40px;height:40px;object-fit:contain
}

/* ══════════════════════════════════════════════
   MOBILE MENU
══════════════════════════════════════════════ */
#mnu{
  position:fixed;inset:0;z-index:900;background:var(--canvas);
  display:flex;flex-direction:column;padding:0 var(--gutter) var(--xxl);
  opacity:0;visibility:hidden;transition:opacity .25s,visibility .25s
}
#mnu.on{opacity:1;visibility:visible}
.mtop{display:flex;align-items:center;justify-content:space-between;height:var(--navh);flex-shrink:0}
.cl{background:var(--surface-1);color:var(--ink);border:0;cursor:pointer;
  min-height:40px;padding:8px var(--md);border-radius:var(--r-pill);font-size:14px;font-weight:500}
#mnu nav{display:flex;flex-direction:column;gap:var(--xs);padding:var(--xxl) 0;flex:1}
#mnu nav a{
  font-family:var(--display);font-size:clamp(32px,9vw,52px);font-weight:500;
  letter-spacing:-.05em;line-height:1.1;color:var(--ink-muted);
  text-transform:lowercase;transition:color .2s
}
#mnu nav a:hover,#mnu nav a.on{color:var(--ink)}
.mbtm{display:flex;align-items:center;justify-content:space-between;gap:var(--md);flex-shrink:0}
.mbtm .foot{font-size:13px;font-weight:500;color:var(--ink-muted)}

/* ══════════════════════════════════════════════
   ENTRY — the one motion the site keeps
══════════════════════════════════════════════ */
@keyframes rise{from{opacity:0;transform:translateY(14px)}to{opacity:1;transform:none}}
.rise{animation:rise .7s cubic-bezier(.16,1,.3,1) both}
.rise-1{animation-delay:.05s}
.rise-2{animation-delay:.15s}
.rise-3{animation-delay:.25s}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width:1024px){
  .grid{gap:var(--md)}
}

@media (max-width:810px){
  :root{--gutter:20px;--section:64px}
  .nv{display:none}
  .menu-t{display:inline-flex;align-items:center;justify-content:center}
  .grid{grid-template-columns:1fr}
  /* the display line-heights are set for one or two lines at poster size;
     a heading that wraps to three on a phone needs the leading back */
  .d-xxl{line-height:.95}
  .d-xl,.d-lg{line-height:1.06}
  /* tag / date / title / description stacked — a 3-column grid at this
     width leaves the title nowhere to go */
  .row{grid-template-columns:1fr;gap:var(--xs);padding:20px 4px}
  .row .desc{grid-column:1}
  /* the cover stays on the left at this width, just smaller */
  .row.arted{gap:var(--md)}
  .row .art{width:104px}
  /* date / city / venue stacked, actions on their own line — four columns
     leave the venue a sliver at this width */
  /* a phone shows the sheet nearly full-width already, so the viewer only
     earns its place if it gives back the page's gutters */
  #dtl{padding:var(--xs)}
  #dtl.shot .dtl-in{padding:0}
  #dtl.shot .dtl-img{max-height:88vh}
  .show{grid-template-columns:1fr;gap:var(--xxs);padding:18px 4px}
  .sact{justify-self:start;margin-top:var(--xs)}
  .tour-info{grid-template-columns:1fr;gap:var(--xxs) 0}
  .ti-k:not(:first-child){margin-top:var(--sm)}
  /* two columns of services leave neither room to sit on one line */
  .biz{grid-template-columns:1fr}
  .fd{flex-direction:column;align-items:flex-start;gap:var(--xxs)}
  .fd .v{text-align:left}
  .ft-in{gap:var(--xl)}
}

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation-duration:.01ms !important;animation-iteration-count:1 !important;
    transition-duration:.01ms !important;scroll-behavior:auto !important
  }
}
