/* ==========================================================================
   Spine Health Wire - a wire service, night desk
   Concept:   filed overnight from the St. Louis metro. The desk is dark, the
              lamp is on, one story comes over the wire again and again: a
              rear-end hit, a driver who says they are fine, a back that files
              its own report two days later.
   Type:      Archivo Black (display, the headline face of a wire bulletin)
              Archivo (body and UI, its italic carries the one emphasis phrase)
              DM Mono (slug lines, timestamps, register labels)
   Palette:   night canvas (#0e1116), a slightly lighter sheet of copy paper
              (#161b22), pale ink (#e6e9ee), amber lamp light for the one action
              (#ffb020), and a cool wire-blue for links (#4aa3ff).
   Signature: the trace. A pulse line that runs flat, spikes, and settles into
              a dot. It is the mark, the rule under register labels, the bullet
              in takeaways, and the divider between wire items. Register labels
              read like a wire slug: "WIRE 03 // THE RECORD".
   Devices:   slug lines in mono caps, timestamps on the overnight strip,
              a dateline on every filed piece, one italic phrase per headline.
   ========================================================================== */

:root {
  --canvas: #0e1116;
  --canvas-2: #0a0d12;
  --paper: #161b22;
  --paper-2: #1b2129;
  --paper-3: #202833;
  --line: #242c38;
  --line-2: #2d3642;
  --ink: #e6e9ee;
  --ink-2: #c9cfd8;
  --ink-soft: #a3acb9;
  --muted: #8b94a3;
  --faint: #5f6977;
  --amber: #ffb020;
  --amber-2: #e09a10;
  --amber-wash: rgba(255, 176, 32, 0.10);
  --amber-line: rgba(255, 176, 32, 0.32);
  --blue: #4aa3ff;
  --blue-2: #7dbcff;
  --blue-wash: rgba(74, 163, 255, 0.10);
  --er: #2a1417;
  --er-line: #6b2a31;

  --display: "Archivo Black", "Archivo", Impact, "Arial Black", sans-serif;
  --body: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --mono: "DM Mono", "SFMono-Regular", Menlo, Consolas, monospace;

  --shell: 1160px;
  --read: 720px;
  --ease: cubic-bezier(0.3, 0.05, 0.2, 1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17.5px;
  line-height: 1.66;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-2); }
::selection { background: var(--amber); color: #111; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 2px; }

.shell { max-width: var(--shell); margin: 0 auto; padding: 0 28px; }
.read { max-width: var(--read); margin: 0 auto; padding: 0 28px; }

/* ---------- Register label: the wire slug ---------- */
.slug {
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}
.slug::before {
  content: "";
  flex: 0 0 auto;
  width: 30px; height: 10px;
  background: no-repeat center / 100% 100%
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 10'%3E%3Cpath d='M0 7h8l3-5 4 8 3-6 2 3h6' fill='none' stroke='%23ffb020' stroke-width='1.6' stroke-linejoin='round'/%3E%3Ccircle cx='28' cy='7' r='1.6' fill='%23ffb020'/%3E%3C/svg%3E");
}
.slug.blue { color: var(--blue); }
.slug.blue::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 10'%3E%3Cpath d='M0 7h8l3-5 4 8 3-6 2 3h6' fill='none' stroke='%234aa3ff' stroke-width='1.6' stroke-linejoin='round'/%3E%3Ccircle cx='28' cy='7' r='1.6' fill='%234aa3ff'/%3E%3C/svg%3E");
}
.slug.mute { color: var(--muted); }
.slug.mute::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 10'%3E%3Cpath d='M0 7h8l3-5 4 8 3-6 2 3h6' fill='none' stroke='%238b94a3' stroke-width='1.6' stroke-linejoin='round'/%3E%3Ccircle cx='28' cy='7' r='1.6' fill='%238b94a3'/%3E%3C/svg%3E");
}

/* ---------- Signature trace rule ---------- */
.trace { display: flex; align-items: center; gap: 0; margin: 0; }
.trace::before, .trace::after { content: ""; height: 1px; background: var(--line-2); flex: 1; }
.trace i {
  width: 44px; height: 14px; margin: 0 16px; flex: 0 0 auto;
  background: no-repeat center / 100% 100%
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 44 14'%3E%3Cpath d='M0 9h12l4-7 5 11 4-8 3 4h10' fill='none' stroke='%23ffb020' stroke-width='1.8' stroke-linejoin='round'/%3E%3Ccircle cx='41' cy='9' r='2' fill='%23ffb020'/%3E%3C/svg%3E");
}

/* ---------- Top strip ---------- */
.strip {
  background: var(--canvas-2);
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.strip .shell {
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  padding-top: 9px; padding-bottom: 9px;
}
.strip .live { display: inline-flex; align-items: center; gap: 9px; white-space: nowrap; }
.strip .live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--amber); box-shadow: 0 0 0 3px var(--amber-wash);
}
.strip .er { color: #e3a9b0; white-space: nowrap; }
.strip .er a { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.35); }
.strip .er a:hover { border-bottom-color: #fff; }

/* ---------- Masthead ---------- */
.masthead { background: var(--canvas); border-bottom: 1px solid var(--line); }
.masthead .shell {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  padding-top: 26px; padding-bottom: 18px;
}
.brand { display: flex; align-items: center; gap: 16px; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand .mark { width: 52px; height: 52px; flex: 0 0 auto; color: var(--amber); }
.brand .mark svg { width: 52px; height: 52px; display: block; }
.brand-name {
  font-family: var(--display);
  font-size: 27px;
  line-height: 0.98;
  letter-spacing: -0.012em;
  color: var(--ink);
}
.brand-name span {
  display: block;
  font-family: var(--mono);
  font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted);
  margin-top: 7px;
}
.folio {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--faint); text-align: right; line-height: 1.7;
}
.folio b { color: var(--ink-soft); font-weight: 500; display: block; }

.navband { background: var(--paper); border-bottom: 1px solid var(--line); position: relative; }
.navband::after {
  content: ""; position: absolute; top: 0; bottom: 0; right: 0; width: 56px; pointer-events: none;
  background: linear-gradient(90deg, rgba(22,27,34,0), var(--paper) 70%);
  opacity: 0; transition: opacity 0.2s var(--ease);
}
.nav {
  max-width: var(--shell); margin: 0 auto; padding: 0 28px;
  display: flex; gap: 4px; align-items: stretch;
  overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.nav::-webkit-scrollbar { display: none; }
.nav a {
  font-family: var(--body);
  font-weight: 600; font-size: 13.5px; letter-spacing: 0.02em;
  color: var(--ink-soft);
  padding: 14px 14px;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--amber); }
.nav a.cta { margin-left: auto; color: var(--amber); }
.nav a.cta:hover { color: #fff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--amber); color: #15120a;
  font-family: var(--body); font-weight: 700; font-size: 15px; letter-spacing: 0.01em;
  padding: 14px 24px; border-radius: 3px;
  border: 1px solid var(--amber-2);
  box-shadow: 0 12px 30px -16px rgba(255, 176, 32, 0.55);
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.btn:hover { background: #ffc14d; color: #15120a; transform: translateY(-1px); }
.btn .arw { transition: transform 0.2s var(--ease); }
.btn:hover .arw { transform: translateX(3px); }
.btn.ghost {
  background: transparent; color: var(--ink);
  border-color: var(--line-2); box-shadow: none;
}
.btn.ghost:hover { border-color: var(--ink-soft); background: var(--paper); color: #fff; }

/* ---------- Hero ---------- */
.hero { background: var(--canvas-2); border-bottom: 1px solid var(--line); position: relative; overflow: hidden; }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 70% at 18% 30%, rgba(255, 176, 32, 0.10), transparent 65%),
    radial-gradient(50% 60% at 90% 90%, rgba(74, 163, 255, 0.08), transparent 60%);
  pointer-events: none;
}
.hero .shell {
  position: relative;
  display: grid; grid-template-columns: 1.08fr 1fr; gap: 56px; align-items: center;
  padding-top: 76px; padding-bottom: 76px;
}
.hero .slug { margin-bottom: 26px; }
.hero h1 {
  font-family: var(--display);
  font-size: clamp(38px, 4.9vw, 60px);
  line-height: 1.02; letter-spacing: -0.02em;
  color: #fff; margin: 0 0 24px;
}
h1 em, h2 em {
  font-family: var(--body); font-style: italic; font-weight: 700;
  color: var(--amber); letter-spacing: -0.01em;
}
.hero .lede {
  font-size: 19px; line-height: 1.58; color: var(--ink-2);
  max-width: 50ch; margin: 0 0 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; color: var(--muted);
  margin: 22px 0 0; line-height: 1.7;
}
.hero-fig { margin: 0; }
.hero-fig img {
  width: 100%; height: auto; display: block;
  border: 1px solid var(--line-2);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.9);
  filter: saturate(0.9) contrast(1.02);
}
figcaption {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  color: var(--muted); line-height: 1.65; margin-top: 12px;
}
figcaption .cred { color: var(--faint); }

/* ---------- Overnight strip (timestamps) ---------- */
.overnight { background: var(--paper); border-bottom: 1px solid var(--line); }
.overnight .shell { display: grid; grid-template-columns: repeat(4, 1fr); }
.tick {
  padding: 26px 26px 26px 0; margin-right: 26px;
  border-right: 1px solid var(--line-2);
}
.tick:last-child { border-right: none; margin-right: 0; }
.tick .t {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; color: var(--amber);
  display: block; margin-bottom: 10px;
}
.tick strong { display: block; font-family: var(--body); font-weight: 700; font-size: 16.5px; color: #fff; margin-bottom: 6px; letter-spacing: -0.01em; }
.tick span { font-size: 14.5px; line-height: 1.55; color: var(--ink-soft); display: block; }

/* ---------- Sections ---------- */
section { padding: 74px 0; }
.section-head { max-width: 680px; margin-bottom: 40px; }
.section-head .slug { margin-bottom: 18px; }
h2 {
  font-family: var(--display);
  font-size: clamp(26px, 3.3vw, 36px);
  line-height: 1.08; letter-spacing: -0.018em;
  color: #fff; margin: 0;
}
.section-head p { color: var(--ink-soft); margin: 16px 0 0; font-size: 17px; max-width: 58ch; }

/* ---------- Feature (photo + copy) ---------- */
.feature { background: var(--canvas); border-bottom: 1px solid var(--line); }
.feature .shell { display: grid; grid-template-columns: 1.1fr 1fr; gap: 52px; align-items: center; }
.feature-copy .slug { margin-bottom: 18px; }
.feature-copy h2 { font-size: clamp(25px, 3vw, 33px); margin-bottom: 16px; }
.feature-copy p { color: var(--ink-soft); margin: 0 0 14px; font-size: 17px; }
.feature-copy p:last-child { margin-bottom: 0; }
.feature-fig { margin: 0; }
.feature-fig img { border: 1px solid var(--line-2); box-shadow: 0 30px 60px -34px rgba(0,0,0,0.9); }

/* ---------- The file (guide index) ---------- */
.file { background: var(--canvas); }
.file-list { border-top: 1px solid var(--line-2); }
.item {
  display: grid; grid-template-columns: 120px 1fr auto; gap: 30px; align-items: baseline;
  padding: 26px 0; border-bottom: 1px solid var(--line);
  color: var(--ink);
  transition: background 0.25s var(--ease);
  position: relative;
}
.item:hover { color: var(--ink); }
.item::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 1px;
  background: var(--amber); transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.item:hover::after { transform: scaleX(1); }
.item .code {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--amber); line-height: 1.6; padding-top: 6px;
}
.item .code small { display: block; color: var(--faint); letter-spacing: 0.1em; font-size: 10.5px; margin-top: 3px; }
.item h3 {
  font-family: var(--display); font-weight: 400;
  font-size: 22px; line-height: 1.18; letter-spacing: -0.012em;
  color: #fff; margin: 0 0 7px;
  transition: color 0.2s var(--ease);
}
.item:hover h3 { color: var(--amber); }
.item p { margin: 0; color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; max-width: 60ch; }
.item .go { align-self: center; color: var(--faint); display: flex; transition: color 0.2s var(--ease), transform 0.2s var(--ease); }
.item .go svg { width: 22px; height: 22px; }
.item:hover .go { color: var(--amber); transform: translateX(4px); }
.item.lead {
  background: var(--paper); border: 1px solid var(--line-2); border-left: 3px solid var(--amber);
  padding: 32px 30px; margin-bottom: 26px;
  box-shadow: 0 30px 60px -40px rgba(0,0,0,0.9);
}
.item.lead::after { display: none; }
.item.lead h3 { font-size: 28px; }
.item.lead p { font-size: 16.5px; }

/* ---------- Desk rules band ---------- */
.band { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band .slug { margin-bottom: 34px; }
.rules { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.rule { padding: 0 36px; border-left: 1px solid var(--line-2); }
.rule:first-child { padding-left: 0; border-left: none; }
.rule .n { font-family: var(--mono); font-size: 12px; color: var(--amber); letter-spacing: 0.14em; display: block; margin-bottom: 14px; }
.rule strong { display: block; font-family: var(--display); font-weight: 400; font-size: 20px; line-height: 1.15; color: #fff; margin-bottom: 10px; letter-spacing: -0.01em; }
.rule span { display: block; font-size: 15px; line-height: 1.6; color: var(--ink-soft); }

/* ---------- Featured clinic ---------- */
.clinic { background: var(--canvas); }
.plate {
  background: var(--paper); border: 1px solid var(--line-2);
  position: relative; overflow: hidden;
  box-shadow: 0 30px 70px -40px rgba(0,0,0,0.95);
}
.plate::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--amber), var(--amber) 55%, var(--blue)); }
.plate-head { padding: 36px 38px 26px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 1.3fr 1fr; gap: 36px; align-items: end; }
.plate-head .slug { margin-bottom: 14px; }
.plate-head h3 { font-family: var(--display); font-weight: 400; font-size: 30px; letter-spacing: -0.015em; color: #fff; margin: 0 0 8px; line-height: 1.05; }
.plate-head .tag { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin: 0 0 16px; }
.plate-head p { margin: 0; color: var(--ink-soft); font-size: 16px; }
.plate-head .lane { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }
.plate-head .lane b { color: var(--ink); font-weight: 600; display: block; margin-bottom: 6px; }
.rooms { display: grid; grid-template-columns: repeat(3, 1fr); }
.room { padding: 28px 30px 30px; border-right: 1px solid var(--line); }
.room:last-child { border-right: none; }
.room.near { background: var(--amber-wash); }
.room .rm { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); display: block; margin-bottom: 10px; }
.room h4 { font-family: var(--display); font-weight: 400; font-size: 19px; color: #fff; margin: 0 0 8px; letter-spacing: -0.01em; }
.room address { font-style: normal; font-size: 14.5px; color: var(--ink-soft); line-height: 1.55; margin-bottom: 10px; }
.room .hrs { font-family: var(--mono); font-size: 11.5px; line-height: 1.7; color: var(--muted); margin: 0 0 14px; letter-spacing: 0.02em; }
.room .tel { display: block; font-family: var(--body); font-weight: 700; font-size: 17px; color: #fff; margin-bottom: 14px; }
.room .tel:hover { color: var(--amber); }
.room .btn { padding: 10px 16px; font-size: 13.5px; }
.plate-foot { padding: 20px 38px 24px; border-top: 1px solid var(--line); font-size: 13px; color: var(--muted); line-height: 1.65; }
.plate-foot b { color: var(--ink-soft); font-weight: 600; }

/* ---------- Reviews ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { background: var(--paper); border: 1px solid var(--line); padding: 26px 26px 22px; margin: 0; position: relative; }
.quote::before { content: "\201C"; font-family: var(--display); font-size: 54px; line-height: 0.6; color: var(--amber); display: block; margin-bottom: 14px; }
.quote p { margin: 0 0 16px; font-size: 17px; line-height: 1.5; color: #fff; font-weight: 500; }
.quote cite { font-style: normal; font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.quotes-note { margin: 18px 0 0; font-size: 13px; color: var(--faint); font-family: var(--mono); letter-spacing: 0.03em; }

/* ---------- Emergency note ---------- */
.ernote {
  background: var(--er); border: 1px solid var(--er-line); border-left: 4px solid #d9485a;
  padding: 18px 22px; color: #f2d9dc; font-size: 15px; line-height: 1.6; margin: 34px 0;
}
.ernote b { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: #ff8f9d; margin-bottom: 8px; }
.ernote a { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.35); }

/* ---------- Article ---------- */
.article-head { background: var(--canvas-2); border-bottom: 1px solid var(--line); padding: 58px 0 44px; position: relative; overflow: hidden; }
.article-head::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(55% 70% at 10% 10%, rgba(255,176,32,0.09), transparent 65%);
  pointer-events: none;
}
.article-head .read { position: relative; }
.article-head .slug { margin-bottom: 20px; }
.article-head h1 {
  font-family: var(--display);
  font-size: clamp(31px, 4.3vw, 46px); line-height: 1.06; letter-spacing: -0.02em;
  color: #fff; margin: 0 0 20px;
}
.article-head .lede { font-size: 19.5px; line-height: 1.55; color: var(--ink-2); margin: 0; max-width: 60ch; }
.dateline {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--line-2);
  display: flex; flex-wrap: wrap; gap: 8px 22px;
}
.dateline b { color: var(--amber); font-weight: 500; }

.article { padding: 44px 0 30px; }
.article figure { margin: 0 0 36px; }
.article figure img { width: 100%; border: 1px solid var(--line-2); box-shadow: 0 30px 60px -34px rgba(0,0,0,0.9); }
.prose { font-size: 18.5px; line-height: 1.72; color: var(--ink-2); }
.prose p { margin: 0 0 22px; }
.prose > .takeaways + p::first-letter {
  font-family: var(--display); float: left; font-size: 64px; line-height: 0.8;
  padding: 8px 12px 0 0; color: var(--amber);
}
.prose h2 { font-size: 26px; margin: 46px 0 14px; color: #fff; }
.prose h3 { font-family: var(--body); font-weight: 700; font-size: 20px; letter-spacing: -0.01em; margin: 32px 0 8px; color: #fff; }
.prose strong { color: #fff; font-weight: 600; }
.prose a { color: var(--blue); border-bottom: 1px solid rgba(74,163,255,0.35); }
.prose a:hover { color: var(--blue-2); border-bottom-color: var(--blue-2); }
.prose a.btn, .prose a.btn:hover { color: #15120a; border-bottom: 0; }
.prose a.btn.ghost { color: var(--ink); }
.prose a.btn.ghost:hover { color: #fff; }
.prose a.tel, .roomcard a.tel { color: #fff; border-bottom: 1px solid var(--amber-line); }
.prose a.tel:hover, .roomcard a.tel:hover { color: var(--amber); border-bottom-color: var(--amber); }
.prose ul, .prose ol { margin: 0 0 24px; padding: 0; list-style: none; }
.prose li { position: relative; padding-left: 30px; margin-bottom: 12px; line-height: 1.6; }
.prose ul li::before {
  content: ""; position: absolute; left: 0; top: 10px; width: 18px; height: 8px;
  background: no-repeat center / 100% 100%
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 8'%3E%3Cpath d='M0 6h5l2-4 3 6 2-4 1 2h3' fill='none' stroke='%23ffb020' stroke-width='1.5' stroke-linejoin='round'/%3E%3Ccircle cx='16.5' cy='6' r='1.3' fill='%23ffb020'/%3E%3C/svg%3E");
}
.prose ol { counter-reset: w; }
.prose ol li { counter-increment: w; }
.prose ol li::before {
  content: counter(w, decimal-leading-zero); position: absolute; left: 0; top: 3px;
  font-family: var(--mono); font-size: 13px; color: var(--amber); letter-spacing: 0.06em;
}
.prose .cite { font-family: var(--mono); font-size: 12.5px; color: var(--muted); letter-spacing: 0.02em; line-height: 1.6; }

.takeaways {
  background: var(--paper); border: 1px solid var(--line-2); border-top: 3px solid var(--amber);
  padding: 26px 28px 22px; margin: 0 0 36px;
}
.takeaways h2 { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); margin: 0 0 16px; font-weight: 500; }
.takeaways ul { margin: 0; padding: 0; list-style: none; }
.takeaways li { position: relative; padding-left: 30px; margin-bottom: 11px; font-size: 15.5px; line-height: 1.5; color: var(--ink); }
.takeaways li:last-child { margin-bottom: 0; }
.takeaways li::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 18px; height: 8px;
  background: no-repeat center / 100% 100%
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 8'%3E%3Cpath d='M0 6h5l2-4 3 6 2-4 1 2h3' fill='none' stroke='%234aa3ff' stroke-width='1.5' stroke-linejoin='round'/%3E%3Ccircle cx='16.5' cy='6' r='1.3' fill='%234aa3ff'/%3E%3C/svg%3E");
}

.callout {
  background: var(--paper); border: 1px solid var(--line-2); border-left: 3px solid var(--blue);
  padding: 20px 24px; margin: 30px 0; font-size: 16.5px; line-height: 1.6; color: var(--ink);
}
.callout b { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); margin-bottom: 8px; font-weight: 500; }

.wirebox {
  background: var(--canvas-2); border: 1px solid var(--line-2);
  padding: 30px 30px 28px; margin: 40px 0;
  position: relative;
}
.wirebox::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--amber); }
.wirebox .slug { margin-bottom: 14px; }
.wirebox h3 { font-family: var(--display); font-weight: 400; font-size: 24px; color: #fff; margin: 0 0 10px; letter-spacing: -0.012em; line-height: 1.12; }
.wirebox p { margin: 0 0 18px; color: var(--ink-soft); font-size: 16px; }
.wirebox .acts { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.wirebox .hours { font-family: var(--mono); font-size: 11.5px; color: var(--muted); letter-spacing: 0.04em; margin: 16px 0 0; line-height: 1.7; }

.disclose {
  font-size: 13px; color: var(--muted); line-height: 1.65;
  border-top: 1px solid var(--line); padding-top: 18px; margin: 34px 0 0;
}
.disclose b { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); display: block; margin-bottom: 6px; font-weight: 500; }

.related { border-top: 1px solid var(--line-2); margin-top: 44px; padding-top: 28px; }
.related h2 { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); margin: 0 0 14px; font-weight: 500; }
.related a {
  display: grid; grid-template-columns: 70px 1fr; gap: 16px; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--ink); font-weight: 600; font-size: 17px; letter-spacing: -0.008em;
  transition: color 0.2s var(--ease), padding-left 0.2s var(--ease);
}
.related a:last-child { border-bottom: none; }
.related a span { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--faint); font-weight: 400; }
.related a:hover { color: var(--amber); padding-left: 6px; }

/* ---------- FAQ ---------- */
.faq { counter-reset: q; }
.faq details { border-bottom: 1px solid var(--line); padding: 6px 0; }
.faq details:first-of-type { border-top: 1px solid var(--line-2); }
.faq summary {
  counter-increment: q; cursor: pointer; list-style: none;
  display: grid; grid-template-columns: 54px 1fr 24px; gap: 14px; align-items: baseline;
  padding: 18px 0; font-family: var(--display); font-weight: 400; font-size: 20px; line-height: 1.25; color: #fff; letter-spacing: -0.01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before { content: counter(q, decimal-leading-zero); font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; color: var(--amber); }
.faq summary::after { content: "+"; font-family: var(--mono); color: var(--muted); font-size: 20px; justify-self: end; transition: transform 0.25s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); color: var(--amber); }
.faq summary:hover { color: var(--amber); }
.faq .ans { padding: 0 0 20px 68px; color: var(--ink-2); font-size: 17px; line-height: 1.66; }
.faq .ans p { margin: 0 0 12px; }
.faq .ans p:last-child { margin-bottom: 0; }

/* ---------- Rooms page ---------- */
.roomcards { display: grid; grid-template-columns: 1fr; gap: 20px; margin: 36px 0; }
.roomcard { background: var(--paper); border: 1px solid var(--line-2); display: grid; grid-template-columns: 1.1fr 1fr; gap: 0; }
.roomcard.near { border-color: var(--amber-line); }
.roomcard .rc-main { padding: 28px 30px; }
.roomcard .rc-side { padding: 28px 30px; border-left: 1px solid var(--line); background: var(--paper-2); }
.roomcard .rm { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); display: block; margin-bottom: 10px; }
.roomcard h3 { font-family: var(--display); font-weight: 400; font-size: 24px; color: #fff; margin: 0 0 10px; letter-spacing: -0.012em; }
.roomcard address { font-style: normal; font-size: 16px; color: var(--ink-2); line-height: 1.55; margin: 0 0 14px; }
.roomcard .tel { display: inline-block; font-weight: 700; font-size: 19px; color: #fff; margin-bottom: 16px; }
.roomcard .tel:hover { color: var(--amber); }
.roomcard .hrs { font-family: var(--mono); font-size: 12px; line-height: 1.8; color: var(--ink-soft); margin: 0 0 14px; }
.roomcard .hrs b { color: var(--amber); font-weight: 500; display: block; font-size: 10.5px; letter-spacing: 0.16em; margin-bottom: 4px; }
.roomcard p { font-size: 15px; color: var(--ink-soft); margin: 0 0 14px; line-height: 1.6; }

/* ---------- Footer ---------- */
.foot { background: var(--canvas-2); border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.foot .shell { padding-top: 56px; padding-bottom: 40px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; }
.foot a { color: var(--ink-soft); }
.foot a:hover { color: #fff; }
.foot .brand { margin-bottom: 18px; }
.foot .brand .mark, .foot .brand .mark svg { width: 40px; height: 40px; }
.foot .brand-name { font-size: 21px; }
.foot-lead { max-width: 40ch; color: var(--muted); font-size: 14.5px; line-height: 1.62; margin: 0; }
.foot h4 { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--faint); margin: 0 0 16px; font-weight: 500; }
.foot .col a { display: block; margin-bottom: 11px; font-size: 14px; }
.foot-bottom {
  border-top: 1px solid var(--line); margin-top: 40px; padding-top: 22px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--faint);
}
.foot .disclose { border-top: 1px solid var(--line); margin-top: 36px; padding-top: 22px; max-width: 940px; font-size: 12.5px; color: var(--faint); }
.foot .disclose b { color: var(--muted); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .shell { grid-template-columns: 1fr; gap: 34px; padding-top: 52px; padding-bottom: 56px; }
  .navband::after { opacity: 1; }
  .overnight .shell { grid-template-columns: 1fr 1fr; }
  .tick { border-right: none; border-bottom: 1px solid var(--line-2); margin-right: 0; padding: 22px 0; }
  .tick:nth-child(odd) { padding-right: 26px; border-right: 1px solid var(--line-2); }
  .tick:nth-child(even) { padding-left: 26px; }
  .tick:nth-last-child(-n+2) { border-bottom: none; }
  .feature .shell { grid-template-columns: 1fr; gap: 30px; }
  .rules { grid-template-columns: 1fr; gap: 30px; }
  .rule, .rule:first-child { padding: 0 0 0 22px; border-left: 1px solid var(--line-2); }
  .plate-head { grid-template-columns: 1fr; gap: 20px; }
  .rooms { grid-template-columns: 1fr; }
  .room { border-right: none; border-bottom: 1px solid var(--line); }
  .room:last-child { border-bottom: none; }
  .quotes { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-about { grid-column: 1 / -1; }
  .roomcard { grid-template-columns: 1fr; }
  .roomcard .rc-side { border-left: none; border-top: 1px solid var(--line); }
}
@media (max-width: 640px) {
  body { font-size: 16.5px; }
  .shell, .read { padding: 0 20px; }
  .nav { padding: 0 12px; }
  .nav a { padding: 13px 10px; font-size: 13px; }
  .nav a.cta { margin-left: 0; }
  .strip .er { display: none; }
  .strip .live { white-space: normal; }
  .strip .live-x { display: none; }
  .strip .shell { padding-top: 8px; padding-bottom: 8px; }
  .hero .shell { padding-top: 40px; gap: 28px; }
  .hero-fig figcaption { font-size: 10.5px; }
  .masthead .shell { align-items: center; padding-top: 20px; padding-bottom: 16px; }
  .folio { display: none; }
  .brand .mark, .brand .mark svg { width: 44px; height: 44px; }
  .brand-name { font-size: 22px; }
  .brand-name span { font-size: 9.5px; letter-spacing: 0.2em; }
  section { padding: 54px 0; }
  .hero h1 { font-size: clamp(32px, 9vw, 42px); }
  .hero .lede { font-size: 17.5px; }
  .overnight .shell { grid-template-columns: 1fr; }
  .tick, .tick:nth-child(odd), .tick:nth-child(even) { padding: 18px 0; border-right: none; border-bottom: 1px solid var(--line-2); }
  .tick:last-child { border-bottom: none; }
  .item, .item.lead { grid-template-columns: 1fr; gap: 8px; padding: 22px 0; }
  .item.lead { padding: 24px 20px; }
  .item .code { padding-top: 0; }
  .item .go { display: none; }
  .item.lead h3 { font-size: 24px; }
  .plate-head { padding: 28px 22px 22px; }
  .room { padding: 22px; }
  .plate-foot { padding: 18px 22px; }
  .article-head { padding: 44px 0 34px; }
  .prose { font-size: 17.5px; }
  .takeaways { padding: 22px 20px 18px; }
  .wirebox { padding: 24px 20px; }
  .faq summary { grid-template-columns: 40px 1fr 20px; font-size: 18px; gap: 10px; }
  .faq .ans { padding-left: 0; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .roomcard .rc-main, .roomcard .rc-side { padding: 22px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}

/* Phone nav: the horizontal scroller clipped section names mid-word and pushed the
   last item (often the call to action) off screen. Let it wrap instead. */
@media (max-width: 700px) {
  .nav { flex-wrap: wrap; white-space: normal; overflow-x: visible; row-gap: 6px;
    -webkit-mask-image: none; mask-image: none; }
  .nav::after, .nav::before { content: none; }
  .nav a { white-space: nowrap; }
}
