/* ============================================================================
   SCHIPHOL HOTEL MASSAGE — theme "schiphol"
   Aviation / departure-board direction: horizontal zone bands stacked full
   width like terminal zones, a split-flap board, a boarding-pass booking
   module with a CSS perforation, night-navy ground, Barlow Condensed signage.

   This file is the WHOLE stylesheet for dist/hotelmassageschiphol/. It dresses
   the theme's own templates (head/header/footer/home/therapist/service) AND
   every shared template this site inherits (prices, faq, about, contact,
   booking, guides, districts, hubs, journal, legal, 404), so the shared
   component classes are all re-expressed in the aviation idiom further down.

   TOKEN CONTRACT — the FIRST :root block below is the one scripts/build.js
   substitutes from sites/hotelmassageschiphol.json (theme.palette,
   theme.fonts.serif/sans, theme.max, theme.reading). Every colour is declared
   there so the palette has something to bind to. Two notes on names:
     --ink   is the SHARED templates' foreground token (they write
             style="color:var(--ink)" inline), so on a night ground it has to
             be the BRIGHT colour. The mockup's dark ink survives as
             --ink-dark, used on the bone bands.
     --cloud / --sky-1..3 are the shared templates' GROUND tokens, so they are
             the navy family here rather than a daylight blue.
   The mockup's own names (--navy, --slate, --steel, --tar, --bone, --amber,
   --glow, --dim) are kept exactly as the mockup had them.
   ========================================================================= */

:root {
  /* --- the mockup's own ground and signal colours --- */
  --navy: #080E17;
  --navy-2: #0B1320;
  --slate: #111B27;
  --steel: #17232F;
  --tar: #13100A;
  --bone: #EDE7DB;
  --bone-2: #E0D8C8;
  --amber: #EFA537;
  --amber-lo: #C9832A;
  --glow: #FFD9A4;
  --dim: #7C8EA2;
  --dim-2: #5C6C7E;
  --ink-dark: #141E29;
  --ink-dim: #4E5C6B;
  --rule-dark: rgba(20,30,41,0.18);
  /* --- the shared templates' contract tokens, mapped onto the night ground --- */
  --ink: #E8F0FA;
  --muted: #AFC0D0;
  --faint: #7C8EA2;
  --cloud: #080E17;
  --sky-1: #0B1320;
  --sky-2: #111B27;
  --sky-3: #0D1622;
  --gold: #EFA537;
  --rule: rgba(232,240,250,0.14);
  --white: #E8F0FA;
  --white-rgb: 232,240,250;
  --header-bg: rgba(8,14,23,0.9);
  --wa: #25D366;
  --wa-dark: #1ea857;
  /* --- type and measure --- */
  --serif: 'Barlow Condensed', 'Oswald', 'Arial Narrow', sans-serif;
  --sans: 'Barlow', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --sig: "Barlow Condensed", "Oswald", "Arial Narrow", sans-serif;
  --mono: "Azeret Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --body: "Barlow", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --max: 1440px;
  --reading: 680px;
}

/* Derived + structural. NOT site-configurable, and deliberately in a second
   :root so a palette rewrite of the block above cannot drop them. */
:root {
  --white-0:  rgba(var(--white-rgb, 232,240,250), 0);
  --white-12: rgba(var(--white-rgb, 232,240,250), 0.12);
  --white-50: rgba(var(--white-rgb, 232,240,250), 0.5);
  --white-60: rgba(var(--white-rgb, 232,240,250), 0.6);
  --white-85: rgba(var(--white-rgb, 232,240,250), 0.85);
  --white-90: rgba(var(--white-rgb, 232,240,250), 0.9);
  --white-92: rgba(var(--white-rgb, 232,240,250), 0.92);
  --pad-x: clamp(18px, 4.4vw, 68px);
  --pad-y: clamp(54px, 7vw, 116px);
  --max-agebar: 720px;
  --max-tabs: 920px;
}

/* ---------------------------------------------------------------- reset -- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: var(--body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.62;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
ul, ol { list-style: none; }
[hidden] { display: none !important; }

h1, h2, h3, h4, h5 {
  font-family: var(--sig);
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.005em;
  line-height: 0.95;
}
h1 { font-size: clamp(40px, 6vw, 80px); line-height: 0.92; letter-spacing: -0.01em; }
h2 { font-size: clamp(30px, 4.4vw, 56px); }
h3 { font-size: clamp(21px, 2.3vw, 30px); text-transform: uppercase; letter-spacing: 0.03em; }
h4 { font-size: 20px; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 500; }
em { font-style: normal; color: var(--amber); }
p { margin: 0 0 1.05em; }
strong { font-weight: 500; color: var(--ink); }
hr.rule { border: 0; border-top: 1px solid var(--rule); margin: 0; }

/* in-page anchors clear the sticky header */
[id] { scroll-margin-top: 116px; }
@media (max-width: 560px) { [id] { scroll-margin-top: 92px; } }

:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; }
.band--light :focus-visible, .band--light2 :focus-visible { outline-color: #8A5A12; }

/* ------------------------------------------------------- type utilities -- */
.sig, .label {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--dim);
  display: block;
}
.sig--amber, .label-top { color: var(--amber); }
.sig--ink { color: var(--ink-dim); }
.lede {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
  color: #C8D5E3;
  font-weight: 300;
  max-width: 58ch;
}
.body-copy { color: var(--muted); max-width: 62ch; }
.num { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.subtitle { font-family: var(--mono); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dim); }

/* ------------------------------------------------- 21+ bar (app.js-driven) */
body.age-confirmed .age-bar { display: none !important; }
.age-bar {
  position: fixed; left: 0; right: 0; top: 0; z-index: 250;
  background: #04080E; color: var(--white-92);
  border-bottom: 1px solid rgba(239,165,55,0.4);
  padding: 12px 20px; display: flex; align-items: center; justify-content: center;
  gap: 16px; font-size: 13px; line-height: 1.5; flex-wrap: wrap;
}
.age-bar span { max-width: var(--max-agebar); }
.age-bar button {
  background: var(--amber); color: var(--navy); border: 0; padding: 9px 18px;
  font-family: var(--sig); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 600; flex-shrink: 0; -webkit-tap-highlight-color: transparent;
}
.age-bar button:hover, .age-bar button:active { background: var(--glow); }
.age-bar-open { padding-top: 60px; }
.age-bar-open .site-header { top: 60px; }
@media (max-width: 720px) {
  .age-bar { padding: 10px 14px; gap: 10px; font-size: 12px; flex-direction: column; text-align: center; }
  .age-bar-open { padding-top: 104px; }
  .age-bar-open .site-header { top: 104px; }
}

/* ------------------------------------------------------------- the strip -- */
.strip {
  background: #04080E;
  border-bottom: 1px solid rgba(232,240,250,0.08);
  padding: 0 var(--pad-x); height: 34px; overflow: hidden;
}
.strip-in {
  display: flex; align-items: center; gap: 22px;
  width: 100%; max-width: var(--max); margin: 0 auto; height: 100%;
}
.strip .fact {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--dim-2); white-space: nowrap;
}
.strip .live { display: flex; align-items: center; gap: 8px; }
.strip .clock { margin-left: auto; display: flex; align-items: baseline; gap: 7px; white-space: nowrap; }
.strip .clock b { font-family: var(--mono); font-weight: 500; font-size: 10px; letter-spacing: 0.2em; color: var(--dim-2); }
.strip .clock span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em; color: var(--amber); font-variant-numeric: tabular-nums; }
.dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--amber); flex: 0 0 auto;
  box-shadow: 0 0 0 0 rgba(239,165,55,0.55); animation: pulse 2.6s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(239,165,55,0.5); }
  70%  { box-shadow: 0 0 0 7px rgba(239,165,55,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,165,55,0); }
}
@media (max-width: 1000px) { .strip .fact--hide { display: none; } }
@media (max-width: 700px) { .strip .fact--hide2 { display: none; } }
@media (max-width: 560px) { .strip { padding: 0 16px; } }

/* ---------------------------------------------------------------- header -- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--header-bg);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.site-header .inner {
  max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x);
  height: 70px; display: flex; align-items: center; gap: clamp(12px, 2.6vw, 40px);
}
.site-header .inner > * { min-width: 0; }
.site-header .logo { display: flex; align-items: center; gap: 11px; flex: 0 0 auto; }
.site-header .logo svg { flex: 0 0 auto; }
.mark-txt {
  font-family: var(--sig); font-weight: 600; font-size: 18px;
  letter-spacing: 0.16em; text-transform: uppercase; line-height: 1; color: var(--ink);
}
.mark-txt small {
  display: block; font-family: var(--mono); font-weight: 400; font-size: 8px;
  letter-spacing: 0.28em; color: var(--dim-2); margin-top: 4px;
}
.site-header nav { display: flex; gap: clamp(10px, 1.7vw, 26px); margin-left: auto; }
.site-header nav a {
  font-family: var(--sig); font-size: 14.5px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: #9BADC0; padding: 6px 0;
  border-bottom: 1px solid transparent; transition: color .2s, border-color .2s; white-space: nowrap;
}
.site-header nav a:hover { color: var(--ink); border-color: var(--amber); }
.site-header .header-cta { display: flex; align-items: center; gap: 8px; flex: 0 0 auto; }
.nav-toggle { display: none; font-size: 26px; line-height: 1; color: var(--amber); padding: 4px 8px; -webkit-tap-highlight-color: transparent; }

/* ---------------------------------------------------------------- buttons -- */
.btn, .cta {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--sig); font-size: 14px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 11px 20px; border: 1px solid var(--amber);
  background: var(--amber); color: var(--navy);
  transition: background .22s, color .22s, box-shadow .22s;
  white-space: nowrap;
}
.btn:hover, .cta:hover { background: var(--glow); box-shadow: 0 0 30px rgba(239,165,55,0.3); }
.btn-primary { background: var(--amber); color: var(--navy); border-color: var(--amber); }
.btn-ghost, .btn--ghost { background: transparent; color: var(--amber); }
.btn-ghost:hover, .btn--ghost:hover { background: rgba(239,165,55,0.12); color: var(--glow); box-shadow: none; }
.btn--ink { border-color: var(--ink-dark); background: var(--ink-dark); color: var(--bone); }
.btn--ink:hover { background: #20303F; color: #fff; box-shadow: none; }
.band--light .btn--ghost, .band--light2 .btn--ghost { color: var(--amber-lo); border-color: rgba(201,131,42,0.55); }
.band--light .btn--ghost:hover, .band--light2 .btn--ghost:hover { background: rgba(201,131,42,0.1); color: #8A5A12; }
/* The header row has to fit a phone without widening the document: below 640px
   the Telegram twin drops out of the bar (it is still in the sticky mobile CTA
   and in the footer) and the wordmark is allowed to shrink. */
@media (max-width: 640px) {
  .site-header .inner { gap: 10px; }
  .site-header .logo { min-width: 0; }
  .site-header .btn, .site-header .cta { padding: 10px 12px; font-size: 12.5px; letter-spacing: 0.12em; }
  .site-header .header-cta .btn--ghost { display: none; }
}
@media (max-width: 560px) {
  .site-header .inner { height: 62px; padding: 0 16px; }
  .mark-txt { font-size: 15px; letter-spacing: 0.12em; }
}
@media (max-width: 430px) {
  .mark-txt { font-size: 13.5px; letter-spacing: 0.08em; }
  .mark-txt small { font-size: 7.5px; letter-spacing: 0.2em; }
}

/* mobile nav drawer — app.js toggles .open on .site-header nav */
@media (max-width: 1180px) {
  .site-header nav { display: none; }
  .site-header nav.open {
    display: flex; flex-direction: column; position: fixed;
    top: 70px; left: 0; right: 0; bottom: 0;
    background: var(--navy); padding: 26px var(--pad-x) 90px;
    border-top: 1px solid var(--rule); overflow-y: auto; z-index: 60; gap: 0;
  }
  .site-header nav.open a { padding: 14px 0; border-bottom: 1px solid var(--rule); font-size: 18px; }
  /* nav carried the auto margin that pushed everything right; with the drawer
     collapsed the CTA pair has to take it over or the bar leaves a hole. */
  .site-header .header-cta { margin-left: auto; }
  .nav-toggle { display: block; }
}
@media (max-width: 560px) { .site-header nav.open { top: 62px; } }

/* ---------------------------------------------------------------- ticker -- */
.ticker { background: #04080E; border-bottom: 1px solid var(--rule); overflow: hidden; padding: 9px 0; }
.ticker-track { display: flex; white-space: nowrap; animation: slide 52s linear infinite; will-change: transform; }
.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker span {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--dim-2); padding: 0 22px;
}
.ticker span i { color: var(--amber-lo); font-style: normal; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* --------------------------------------------------- band architecture --- */
section { padding: var(--pad-y) 0; }
.band { padding: var(--pad-y) var(--pad-x); position: relative; }
.band-in {
  max-width: var(--max); margin: 0 auto;
  display: grid; grid-template-columns: clamp(92px, 12vw, 164px) minmax(0, 1fr);
  gap: clamp(18px, 3.2vw, 54px);
}
.rail { position: relative; }
.rail-sticky { position: sticky; top: 104px; }
.zone-num {
  display: block; font-family: var(--sig); font-weight: 700;
  font-size: clamp(54px, 6.6vw, 100px); line-height: 0.8;
  color: transparent; -webkit-text-stroke: 1px rgba(232,240,250,0.26); letter-spacing: -0.02em;
}
.band--light .zone-num, .band--light2 .zone-num { -webkit-text-stroke-color: rgba(20,30,41,0.3); }
.zone-lbl {
  display: block; margin-top: 12px; font-family: var(--mono); font-size: 9px;
  letter-spacing: 0.26em; text-transform: uppercase; color: var(--dim-2);
}
.band--light .zone-lbl, .band--light2 .zone-lbl { color: var(--ink-dim); }
.rail-rule { margin-top: 16px; height: 1px; background: var(--rule); }
.band--light .rail-rule, .band--light2 .rail-rule { background: var(--rule-dark); }
@media (max-width: 860px) {
  .band-in { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .rail { border-bottom: 1px solid var(--rule); padding-bottom: 12px; }
  .band--light .rail, .band--light2 .rail { border-bottom-color: var(--rule-dark); }
  .rail-sticky { position: static; display: flex; align-items: baseline; gap: 14px; }
  .zone-num { font-size: 42px; }
  .zone-lbl { margin-top: 0; }
  .rail-rule { display: none; }
}

.band--navy { background: var(--navy); }
.band--slate { background: var(--slate); }
.band--steel { background: var(--steel); }
.band--tar { background: var(--tar); }
.band--light { background: var(--bone); color: var(--ink-dark); }
.band--light2 { background: var(--bone-2); color: var(--ink-dark); }
.band--light h1, .band--light h2, .band--light h3, .band--light h4,
.band--light2 h1, .band--light2 h2, .band--light2 h3, .band--light2 h4 { color: var(--ink-dark); }
.band--light .lede, .band--light2 .lede { color: #3D4C5B; }
.band--light .body-copy, .band--light2 .body-copy { color: #41505F; }
.band--light em, .band--light2 em { color: var(--amber-lo); }
.band--light .sig, .band--light2 .sig { color: var(--ink-dim); }

h2.head {
  font-size: clamp(34px, 5.6vw, 72px);
  text-transform: uppercase; letter-spacing: -0.005em; line-height: 0.88;
  font-weight: 600; margin-bottom: 20px;
}
h3.sub { font-size: clamp(20px, 2.1vw, 26px); text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 9px; }

/* --------------------------------------------------------------- the hero */
.band--hero, .hero {
  background:
    radial-gradient(120% 90% at 78% 8%, rgba(239,165,55,0.16), rgba(239,165,55,0) 58%),
    radial-gradient(90% 70% at 12% 96%, rgba(60,110,180,0.14), rgba(60,110,180,0) 60%),
    var(--navy);
  border-bottom: 1px solid var(--rule);
}
.hero-head {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(230px, 330px);
  gap: clamp(20px, 3.6vw, 60px); align-items: end;
}
.hero-meta { border-left: 1px solid var(--rule); padding-left: 22px; }
.hero-meta p { color: #B7C7D7; font-size: 16px; line-height: 1.6; }
.hero-flags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.flag {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid var(--rule); padding: 6px 10px; color: #A9BACB;
}
.flag b { color: var(--amber); font-weight: 500; }
@media (max-width: 900px) {
  .hero-head { grid-template-columns: minmax(0, 1fr); }
  .hero-meta { border-left: 0; border-top: 1px solid var(--rule); padding-left: 0; padding-top: 18px; }
}

/* the shared templates' own hero: <section class="hero"> / .hero-small */
.hero { padding: clamp(44px, 6vw, 84px) var(--pad-x) clamp(40px, 5vw, 72px); }
.hero > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.hero .label-top { margin-bottom: 18px; }
.hero .lede { margin-top: 20px; }
.hero-small { padding-top: clamp(40px, 5vw, 66px); }

/* --------------------------------------------------- split-flap board ---- */
.board-wrap { margin-top: clamp(30px, 4.2vw, 56px); }
.board-bar { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; flex-wrap: wrap; }
.board-bar .sig { color: var(--dim-2); }
.board-scroll { overflow-x: auto; overflow-y: hidden; -webkit-overflow-scrolling: touch; padding-bottom: 6px; }
.board-scroll::-webkit-scrollbar { height: 6px; }
.board-scroll::-webkit-scrollbar-thumb { background: rgba(232,240,250,0.18); }
.board {
  min-width: 900px;
  background: linear-gradient(180deg, #05090F, #070D15);
  border: 1px solid rgba(232,240,250,0.13);
  border-top: 2px solid var(--amber);
  padding: 16px clamp(12px, 1.6vw, 22px) 18px;
}
/* Three columns: the sector code, the destination flaps (20 cells) and the
   status flaps (14 cells). The widths are sized to the cells so a rolled row
   never pushes the board wider than its own min-width. */
.board-head, .board-row {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr) 280px;
  align-items: center; gap: 14px;
}
.board-head { padding: 0 0 10px; border-bottom: 1px solid rgba(232,240,250,0.12); margin-bottom: 10px; }
.board-head span { font-family: var(--mono); font-size: 9px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--dim-2); }
.board-row { padding: 6px 0; border-bottom: 1px solid rgba(232,240,250,0.05); }
.board-row:last-child { border-bottom: 0; }
a.board-row:hover { background: rgba(239,165,55,0.05); }
a.board-row:hover .flaps { color: var(--glow); }
.board-row .sect { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: var(--amber); text-transform: uppercase; }
.board-note {
  margin-top: 14px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--dim-2); line-height: 1.9; max-width: 84ch;
}

/* pre-JS the flap cells are plain mono text; the script rebuilds them as cells */
.flaps {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em;
  text-transform: uppercase; color: #BCCDDE; display: block;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.flaps--status { color: var(--amber); }
.flaps--status.is-hold { color: #8FA4B8; }
.flaps.is-built { display: flex; gap: 2px; perspective: 320px; letter-spacing: 0; overflow: visible; }
.flap {
  position: relative; display: inline-block;
  width: 17px; height: 25px; line-height: 25px;
  background: linear-gradient(180deg, #1A2431 0 49%, #0E1722 51% 100%);
  border-radius: 2px; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05);
  text-align: center; overflow: hidden; flex: 0 0 auto;
}
.flap::after { content: ""; position: absolute; left: 0; right: 0; top: 50%; height: 1px; background: rgba(0,0,0,0.6); }
.flap .ch {
  display: block; font-family: var(--mono); font-weight: 500; font-size: 12px;
  color: currentColor; transform-origin: 50% 50%; backface-visibility: hidden; font-style: normal;
}
.flap.flipping .ch { animation: flip .13s ease-out; }
@keyframes flip { 0% { transform: rotateX(-82deg); opacity: .35; } 100% { transform: rotateX(0); opacity: 1; } }

.runway { display: block; width: 100%; height: 26px; margin-top: 14px; }

/* ---------------------------------------------------------- gate columns -- */
.cols { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(20px, 2.8vw, 46px); margin-top: clamp(28px, 3.6vw, 50px); }
@media (max-width: 900px) { .cols { grid-template-columns: minmax(0, 1fr); gap: 28px; } }
.col-item { border-top: 1px solid var(--rule); padding-top: 16px; }
.band--light .col-item, .band--light2 .col-item { border-top-color: var(--rule-dark); }
.col-item .gate-tag { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.24em; color: var(--amber); display: block; margin-bottom: 12px; text-transform: uppercase; }
.col-item h4 { margin-bottom: 8px; }
.col-item p { font-size: 15.5px; color: #9FB1C3; margin: 0; }
.band--light .col-item p, .band--light2 .col-item p { color: #4E5C6B; }

.split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: clamp(24px, 3.6vw, 64px); align-items: start; }
@media (max-width: 900px) { .split { grid-template-columns: minmax(0, 1fr); } }

/* ------------------------------------------------------------ photo slot -- */
.frame { display: block; position: relative; overflow: hidden; background: var(--sky-2); box-shadow: inset 0 0 0 1px rgba(232,240,250,0.12); }
.band--light .frame, .band--light2 .frame { box-shadow: inset 0 0 0 1px rgba(20,30,41,0.16); background: var(--bone-2); }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(190deg, rgba(239,165,55,0.1), rgba(8,14,23,0) 42%, rgba(8,14,23,0.45));
}
.frame--3x4 { aspect-ratio: 3/4; }
.frame--wide { aspect-ratio: 16/10; }
.frame--tall { aspect-ratio: 4/5; }

/* --------------------------------------------------------- manifest rail -- */
.manifest-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.rail-scroll {
  margin-top: clamp(24px, 3.2vw, 42px);
  display: grid; grid-auto-flow: column; grid-auto-columns: clamp(190px, 19vw, 240px);
  gap: clamp(12px, 1.4vw, 20px);
  overflow-x: auto; padding-bottom: 14px; scroll-snap-type: x mandatory;
}
.rail-scroll::-webkit-scrollbar { height: 5px; }
.rail-scroll::-webkit-scrollbar-thumb { background: rgba(20,30,41,0.3); }
.card { scroll-snap-align: start; display: block; }
.card .frame img { transition: transform .4s; }
.card:hover .frame img { transform: scale(1.03); }
.card:hover .card-name { color: var(--amber-lo); }
.band--navy .card:hover .card-name, .band--slate .card:hover .card-name,
.band--steel .card:hover .card-name, .band--tar .card:hover .card-name { color: var(--glow); }
a.sig:hover { color: var(--amber); }
.card-meta { display: grid; grid-template-columns: 1fr auto; align-items: baseline; padding-top: 10px; border-top: 1px solid rgba(20,30,41,0.22); margin-top: 10px; }
.card-name { font-family: var(--sig); font-size: 23px; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; color: var(--ink-dark); }
.card-age { font-family: var(--mono); font-size: 11.5px; color: var(--ink-dim); letter-spacing: 0.1em; }
.card-sub { grid-column: 1 / -1; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: #6C7B8A; margin-top: 5px; }
.card-sub i { font-style: normal; color: var(--amber-lo); }
.band--navy .card-meta, .band--slate .card-meta, .band--steel .card-meta, .band--tar .card-meta { border-top-color: var(--rule); }
.band--navy .card-name, .band--slate .card-name, .band--steel .card-name, .band--tar .card-name { color: var(--ink); }
.band--navy .card-age, .band--slate .card-age, .band--steel .card-age, .band--tar .card-age { color: var(--dim); }
.band--navy .card-sub, .band--slate .card-sub, .band--steel .card-sub, .band--tar .card-sub { color: var(--dim-2); }
.band--navy .card-sub i, .band--slate .card-sub i, .band--steel .card-sub i, .band--tar .card-sub i { color: var(--amber); }

/* ---------------------------------------------------------- boarding pass -- */
.pass {
  display: grid; grid-template-columns: minmax(0, 1fr) 262px;
  background: linear-gradient(180deg, #101A26, #0A121C);
  box-shadow: inset 0 0 0 1px rgba(232,240,250,0.13), 0 40px 90px -50px rgba(0,0,0,0.9);
  margin-top: clamp(24px, 3.2vw, 42px); position: relative;
}
.pass-main { padding: clamp(20px, 2.8vw, 36px); }
.pass-stub { position: relative; padding: clamp(20px, 2.8vw, 32px) clamp(16px, 1.9vw, 26px); background: linear-gradient(180deg, #0D1622, #080E17); }
.pass-stub::before {
  content: ""; position: absolute; left: -1px; top: 0; bottom: 0; width: 2px;
  background: repeating-linear-gradient(180deg, rgba(232,240,250,0.42) 0 6px, rgba(232,240,250,0) 6px 13px);
}
.notch { position: absolute; width: 20px; height: 20px; border-radius: 50%; background: var(--navy); z-index: 3; }
.notch--t { top: -11px; left: -11px; }
.notch--b { bottom: -11px; left: -11px; }
.band--slate .notch { background: var(--slate); }
.band--steel .notch { background: var(--steel); }
.band--tar .notch { background: var(--tar); }
.pass-route { display: flex; align-items: center; gap: clamp(12px, 2.2vw, 32px); flex-wrap: wrap; margin-bottom: 24px; }
.route-node .sig { margin-bottom: 6px; }
.route-node b { display: block; font-family: var(--sig); font-size: clamp(26px, 3.8vw, 48px); font-weight: 600; text-transform: uppercase; line-height: 0.9; letter-spacing: 0.02em; color: var(--ink); }
.route-node span { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; color: var(--dim-2); text-transform: uppercase; }
.route-arrow { flex: 1; min-width: 70px; }
.steps { display: grid; border-top: 1px solid var(--rule); }
.step { display: grid; grid-template-columns: 50px minmax(0, 1fr); gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--rule); align-items: start; }
.step:last-child { border-bottom: 0; }
.step b { font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; color: var(--amber); padding-top: 3px; }
.step h4 { margin-bottom: 4px; }
.step p { font-size: 15.5px; color: #9FB1C3; margin: 0; }
.step a { color: var(--amber); border-bottom: 1px solid rgba(239,165,55,0.45); }
.step a:hover { color: var(--glow); }
.stub-line { display: flex; justify-content: space-between; gap: 10px; padding: 9px 0; border-bottom: 1px dashed rgba(232,240,250,0.16); }
.stub-line dt { font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dim-2); }
.stub-line dd { margin: 0; font-family: var(--mono); font-size: 12px; color: var(--ink); letter-spacing: 0.06em; text-align: right; }
.stub-code { margin-top: 20px; display: flex; gap: 3px; align-items: flex-end; height: 48px; }
.stub-code i { display: block; background: rgba(232,240,250,0.72); width: 2px; height: 100%; }
.stub-foot { margin-top: 12px; font-family: var(--mono); font-size: 9px; letter-spacing: 0.2em; color: var(--dim-2); text-transform: uppercase; }
@media (max-width: 820px) {
  .pass { grid-template-columns: minmax(0, 1fr); }
  .pass-stub::before {
    left: 0; right: 0; top: -1px; bottom: auto; width: auto; height: 2px;
    background: repeating-linear-gradient(90deg, rgba(232,240,250,0.42) 0 6px, rgba(232,240,250,0) 6px 13px);
  }
  .notch--b { top: -11px; bottom: auto; left: auto; right: -11px; }
}

/* ----------------------------------------------------------- the tariff --- */
.ladder { margin: clamp(22px, 2.8vw, 36px) 0 0; border-top: 1px solid rgba(239,165,55,0.28); }
.ladder-cap { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding: 12px 0 0; }
.price-row {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: baseline; gap: 14px;
  padding: 17px 0; border-bottom: 1px solid rgba(232,240,250,0.1);
}
.price-row:last-child { border-bottom: 0; }
.price-row:hover .price-name { color: var(--glow); }
.price-name { font-family: var(--sig); font-size: clamp(22px, 2.8vw, 32px); text-transform: uppercase; letter-spacing: 0.04em; font-weight: 500; color: var(--ink); transition: color .2s; }
.price-name small { display: block; font-family: var(--body); font-size: 13.5px; letter-spacing: 0; text-transform: none; color: #8B9CAD; font-weight: 300; margin-top: 4px; line-height: 1.45; }
.price-val { font-family: var(--mono); font-size: clamp(20px, 2.4vw, 28px); font-weight: 400; color: var(--amber); letter-spacing: 0.02em; font-variant-numeric: tabular-nums; white-space: nowrap; }
.price-val sup { font-size: .55em; color: var(--dim); letter-spacing: 0.1em; vertical-align: super; margin-right: 6px; }
.tariff-note { margin-top: 20px; font-size: 15.5px; color: #96A7B8; max-width: 60ch; }
.pay-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.pay { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; border: 1px solid rgba(239,165,55,0.35); color: var(--glow); padding: 7px 11px; }

.nightstop {
  margin-top: clamp(26px, 3.4vw, 44px);
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(20px, 3vw, 48px); align-items: center;
  border: 1px solid rgba(239,165,55,0.34);
  background:
    radial-gradient(120% 140% at 88% 10%, rgba(239,165,55,0.13), rgba(239,165,55,0) 62%),
    linear-gradient(180deg, #161006, #0C0A06);
  padding: clamp(20px, 2.8vw, 42px);
}
@media (max-width: 860px) { .nightstop { grid-template-columns: minmax(0, 1fr); gap: 22px; } }
.nightstop h3 { font-size: clamp(26px, 4vw, 48px); text-transform: uppercase; letter-spacing: 0.01em; line-height: 0.92; font-weight: 600; margin: 12px 0 14px; }
.nightstop p { color: #B9A88C; font-size: 16px; max-width: 52ch; }
.nightstop p:last-of-type { margin-bottom: 0; }
.night-fig { border-left: 1px solid rgba(239,165,55,0.3); padding-left: clamp(16px, 2.2vw, 30px); }
@media (max-width: 860px) { .night-fig { border-left: 0; border-top: 1px solid rgba(239,165,55,0.3); padding-left: 0; padding-top: 20px; } }
.night-val { display: block; font-family: var(--mono); font-weight: 400; font-size: clamp(38px, 5.6vw, 74px); line-height: 0.95; color: var(--amber); letter-spacing: -0.01em; font-variant-numeric: tabular-nums; }
.night-val sup { font-size: .32em; color: var(--dim); letter-spacing: 0.14em; vertical-align: super; margin-right: 8px; }
.night-meta { display: block; margin-top: 12px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: #8E7C60; line-height: 2; }
.night-cta { margin-top: 20px; display: flex; gap: 10px; flex-wrap: wrap; }

/* ---------------------------------------------------------- the register -- */
.register { margin-top: clamp(30px, 4vw, 54px); border-top: 1px solid var(--rule); padding-top: clamp(20px, 2.4vw, 32px); }
.band--light .register, .band--light2 .register { border-top-color: var(--rule-dark); }
.reg-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.reg-list li {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid var(--rule); color: #B3C4D5; transition: border-color .2s, color .2s;
}
.reg-list li > a { display: block; }
.reg-list li, .reg-list li > a { padding: 9px 12px; }
.reg-list li > a { padding: 0; }
.reg-list li:nth-child(3n+2) { border-color: rgba(239,165,55,0.3); color: var(--glow); }
.reg-list li:hover { border-color: var(--amber); color: var(--glow); }
.reg-note { margin-top: 20px; max-width: 62ch; }

/* -------------------------------------------------------------- coverage -- */
.cover { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); gap: clamp(24px, 3.6vw, 58px); margin-top: clamp(24px, 3vw, 40px); }
@media (max-width: 900px) { .cover { grid-template-columns: minmax(0, 1fr); } }
.zone-list li { display: grid; grid-template-columns: 58px minmax(0, 1fr) auto; gap: 14px; align-items: baseline; padding: 13px 0; border-bottom: 1px solid var(--rule); }
.zone-list li b { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; color: var(--amber); }
.zone-list li span { font-family: var(--sig); font-size: 19px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 400; color: var(--ink); }
.zone-list li em { font-family: var(--mono); font-style: normal; font-size: 10.5px; letter-spacing: 0.12em; color: var(--dim); text-transform: uppercase; }
.district-cloud { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.district {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid var(--rule); padding: 8px 11px; color: #A6B7C8; transition: border-color .2s, color .2s;
}
.district:hover { border-color: var(--amber); color: var(--glow); }

/* ------------------------------------------------------------------ faq --- */
.faq { margin-top: clamp(20px, 2.8vw, 38px); max-width: 78ch; }
.faq details { border-bottom: 1px solid rgba(20,30,41,0.2); }
.band--navy .faq details, .band--slate .faq details, .band--steel .faq details, .band--tar .faq details { border-bottom-color: var(--rule); }
.faq summary {
  list-style: none; cursor: pointer; padding: 19px 34px 19px 0; position: relative;
  font-family: var(--sig); font-size: clamp(18px, 2.1vw, 24px); text-transform: uppercase;
  letter-spacing: 0.04em; font-weight: 500; color: var(--ink-dark);
}
.band--navy .faq summary, .band--slate .faq summary, .band--steel .faq summary, .band--tar .faq summary { color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 2px; top: 18px; font-family: var(--mono); font-size: 19px; color: var(--amber-lo); }
.band--navy .faq summary::after, .band--slate .faq summary::after, .band--steel .faq summary::after, .band--tar .faq summary::after { color: var(--amber); }
.faq details[open] summary::after { content: "\2013"; }
.faq p { padding: 0 0 22px; color: #4E5C6B; font-size: 16px; max-width: 66ch; margin: 0; }
.band--navy .faq p, .band--slate .faq p, .band--steel .faq p, .band--tar .faq p { color: var(--muted); }

/* ------------------------------------------------------------ cta + foot -- */
.cta-band {
  background: linear-gradient(90deg, #0A121C 0%, #141008 62%, #1C1408 100%);
  border-top: 1px solid rgba(239,165,55,0.3); border-bottom: 1px solid rgba(239,165,55,0.16);
  padding: var(--pad-y) var(--pad-x);
}
.cta-in { max-width: var(--max); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
.cta-band h2 { font-size: clamp(28px, 4.4vw, 56px); text-transform: uppercase; line-height: 0.92; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.site-footer { background: #04080E; padding: clamp(44px, 5.4vw, 80px) var(--pad-x) 30px; border-top: 1px solid var(--rule); margin-top: 0; }
.site-footer .cols { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1.3fr) repeat(4, minmax(0, 1fr)); gap: clamp(20px, 2.6vw, 40px); align-items: start; }
@media (max-width: 1080px) { .site-footer .cols { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1fr); } }
@media (max-width: 720px) { .site-footer .cols { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); } }
@media (max-width: 480px) { .site-footer .cols { grid-template-columns: minmax(0, 1fr); } }
.site-footer h5 { font-family: var(--mono); font-size: 9px; letter-spacing: 0.26em; text-transform: uppercase; color: var(--dim-2); margin: 0 0 14px; font-weight: 500; }
.site-footer li, .site-footer p { font-size: 15px; color: #A2B3C4; margin: 0 0 8px; }
.site-footer a:hover { color: var(--amber); }
.site-footer .legal {
  max-width: var(--max); margin: clamp(30px, 3.6vw, 54px) auto 0; padding-top: 20px;
  border-top: 1px solid var(--rule); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dim-2);
}
.site-footer .legal a:hover { color: var(--amber); }

/* mobile sticky CTA */
.mobile-cta {
  display: none; position: fixed; left: 0; right: 0; bottom: 0;
  background: var(--wa); color: #04080E; text-align: center; padding: 14px 20px;
  font-family: var(--sig); font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  z-index: 250; align-items: center; justify-content: center; gap: 10px; -webkit-tap-highlight-color: transparent;
}
.mobile-cta:active { background: var(--wa-dark); }
@media (max-width: 880px) {
  .mobile-cta { display: flex !important; }
  body { padding-bottom: 58px; }
}

/* ============================================================================
   SHARED-TEMPLATE COMPONENT LAYER
   Everything below dresses the templates this theme does NOT override, so the
   inherited pages read as the same site: the container measures, the therapist
   and service grids, the profile tabs, the carousel, the tables, the journal
   list and the forms.
   ========================================================================= */
.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad-x); }
.reading { max-width: var(--reading); margin: 0 auto; }

.t-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.t-card { display: block; }
.t-card .photo { aspect-ratio: 3/4; background: var(--sky-2); overflow: hidden; box-shadow: inset 0 0 0 1px rgba(232,240,250,0.12); }
.t-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.t-card:hover .photo img { transform: scale(1.03); }
.t-card .name { font-family: var(--sig); font-size: 22px; text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; color: var(--ink); margin-top: 12px; }
.t-card:hover .name { color: var(--glow); }
.t-card .meta { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dim); margin-top: 5px; }

.s-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(20px, 2.6vw, 34px); }
.s-card { border-top: 1px solid var(--rule); padding-top: 18px; display: block; }
.s-card .num { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.26em; color: var(--amber); }
.s-card .nm { font-family: var(--sig); font-size: 23px; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 500; color: var(--ink); margin: 8px 0 10px; }
.s-card:hover .nm { color: var(--glow); }
.s-card .ds { font-size: 14.5px; line-height: 1.6; color: #9FB1C3; }

.profile-grid { display: grid; grid-template-columns: minmax(0, 260px) minmax(0, 1fr) minmax(0, 280px); gap: 36px; align-items: start; }
.stats-col, .rates-col { font-size: 13px; }
.stats-table, .rates-table, .price-table { width: 100%; border-collapse: collapse; }
.stats-table td, .rates-table td { padding: 11px 0; border-bottom: 1px solid var(--rule); }
.stats-table td:first-child, .rates-table td:first-child { font-family: var(--mono); color: var(--dim-2); font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; }
.stats-table td:last-child, .rates-table td:last-child { text-align: right; color: var(--ink); font-family: var(--sig); font-size: 17px; letter-spacing: 0.04em; }
.rates-table td:last-child { font-family: var(--mono); color: var(--amber); font-variant-numeric: tabular-nums; }
.stats-table tr:last-child td, .rates-table tr:last-child td { border-bottom: none; }
.price-table { font-size: 17px; }
.price-table td { padding: 16px 0; border-top: 1px solid var(--rule); color: var(--muted); }
.price-table td:first-child { font-family: var(--sig); font-size: 21px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink); }
.price-table td:last-child { text-align: right; font-family: var(--mono); color: var(--amber); font-variant-numeric: tabular-nums; }

.hero-photo { aspect-ratio: 3/4; background: var(--sky-2); overflow: hidden; }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.service-tags { display: flex; flex-wrap: wrap; gap: 7px; }
.service-tags .tag, .tag {
  display: inline-block; font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 8px 11px; border: 1px solid var(--rule); color: #A6B7C8;
  transition: border-color .2s, color .2s;
}
a.tag:hover { border-color: var(--amber); color: var(--glow); }

.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
.gallery-grid img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }

.carousel { position: relative; overflow: hidden; background: var(--sky-2); box-shadow: inset 0 0 0 1px rgba(232,240,250,0.12); }
.band--light .carousel, .band--light2 .carousel { background: var(--bone-2); box-shadow: inset 0 0 0 1px rgba(20,30,41,0.16); }
.band--light .carousel-slide, .band--light2 .carousel-slide { background: var(--bone-2); }
.carousel-track { display: flex; gap: 6px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide { flex: 0 0 calc(25% - 5px); scroll-snap-align: start; aspect-ratio: 3/4; background: var(--sky-2); overflow: hidden; }
.carousel-slide img { width: 100%; height: 100%; object-fit: cover; }
.carousel-prev, .carousel-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 42px; height: 42px; background: rgba(8,14,23,0.82); color: var(--amber);
  border: 1px solid rgba(239,165,55,0.4); font-size: 22px; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s;
}
.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }
.carousel-prev:hover, .carousel-next:hover { background: var(--amber); color: var(--navy); }
.carousel-dots { position: absolute; bottom: 12px; left: 0; right: 0; display: flex; justify-content: center; gap: 6px; z-index: 3; pointer-events: none; }
.carousel-dot { width: 6px; height: 6px; background: rgba(232,240,250,0.45); transition: background .2s, transform .2s; }
.carousel-dot.active { background: var(--amber); transform: scale(1.4); }

.tabs { max-width: var(--max-tabs); margin: 0 auto; }
.tab-nav { display: flex; gap: 0; border-bottom: 1px solid var(--rule); margin-bottom: 32px; flex-wrap: wrap; }
.tab-btn {
  padding: 15px 24px; font-family: var(--sig); font-size: 14px; letter-spacing: 0.2em;
  text-transform: uppercase; color: #9BADC0; border-bottom: 2px solid transparent;
  margin-bottom: -1px; transition: color .2s, border-color .2s; font-weight: 500;
}
.tab-btn:hover { color: var(--ink); }
.tab-btn.active { color: var(--amber); border-bottom-color: var(--amber); font-weight: 600; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.book-banner { background: linear-gradient(90deg, #0A121C 0%, #141008 62%, #1C1408 100%); border-top: 1px solid rgba(239,165,55,0.3); border-bottom: 1px solid rgba(239,165,55,0.16); padding: 30px 0; }

.like-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 12px; }
.like-card { display: block; }
.like-photo { aspect-ratio: 3/4; background: var(--sky-2); overflow: hidden; box-shadow: inset 0 0 0 1px rgba(232,240,250,0.12); }
.like-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.like-card:hover .like-photo img { transform: scale(1.04); }
.like-name { margin-top: 11px; font-family: var(--sig); font-size: 19px; text-transform: uppercase; color: var(--ink); letter-spacing: 0.05em; font-weight: 600; }
.like-meta { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--dim); margin-top: 3px; }

.journal-list { display: grid; gap: 28px; }
.journal-item { border-top: 1px solid var(--rule); padding-top: 22px; display: block; }
.journal-item .date { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--amber); }
.journal-item h3 { margin: 10px 0; text-transform: none; letter-spacing: 0; }
.journal-item .lede { font-size: 15px; color: #9FB1C3; }

.form-row { margin-top: 20px; }
.form-row label { display: block; font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--dim-2); }
.form-row select, .form-row input {
  width: 100%; padding: 12px 14px; border: 1px solid var(--rule);
  background: #0B1320; font: inherit; color: var(--ink); margin-top: 8px;
}
.form-row select:focus, .form-row input:focus { border-color: var(--amber); outline: none; }

.no-save, .no-save img { -webkit-user-select: none; user-select: none; -webkit-touch-callout: none; }
.no-save img { -webkit-user-drag: none; pointer-events: none; }

@media (max-width: 1080px) {
  .profile-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .like-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 880px) {
  .t-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .s-grid { grid-template-columns: minmax(0, 1fr); }
  .like-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .carousel-slide { flex: 0 0 calc(50% - 3px); }
  .tab-btn { padding: 13px 14px; font-size: 12.5px; letter-spacing: 0.14em; }
}
@media (max-width: 720px) {
  .profile-grid { grid-template-columns: minmax(0, 1fr); gap: 26px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px) {
  .carousel-slide { flex: 0 0 100%; }
  .stub-line dd { font-size: 11px; }
}

/* ----------------------------------------------------------- motion ------ */
.js .reveal { opacity: 0; transform: translateY(18px); }
.js .reveal.in { opacity: 1; transform: none; transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important; scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1; transform: none; }
  .ticker-track { animation: none; }
}
