/* ==========================================================================
   Back Pain Bulletin - backpainbulletin.com
   A bulletin posted for people who still have a shift tomorrow.

   Identity:  the break-room notice board. Every important thing on this site
              is a card pinned to a wall under fluorescent light: a pushpin in
              the corner, square edges, a time-clock stamp in the footer.
   Type:      Barlow Condensed (display, poster voice) / Atkinson Hyperlegible
              (reading, built to be read fast and tired) / Courier Prime
              (register labels, the typed memo)
   Palette:   pale fluorescent canvas, manila notice paper, deep work-green
              structure, safety orange for the pin and the button, one
              blackboard green for italic emphasis
   Signature: the pin. An orange dot with a soft shadow at the top-left of
              every pinned card, the register label, and the guide index.
              One italic emphasis phrase per headline, in blackboard green.
   ========================================================================== */

:root {
  --canvas: #eef0e9;
  --canvas-2: #e6e9e0;
  --paper: #f7f8f3;
  --paper-2: #ffffff;
  --manila: #f3ead0;
  --manila-2: #eadfbd;
  --manila-line: #dccf9f;

  --ink: #1d211c;
  --ink-2: #3f463d;
  --muted: #5b6355;
  --muted-2: #7c857a;
  --line: #d5d9cc;
  --line-2: #e2e5db;

  --green: #2f6b4f;
  --green-deep: #22301f;
  --green-ink: #1b2a20;
  --green-wash: #e3ece4;
  --onhero: #f2f5ea;
  --onhero-soft: #b9c6b3;

  --orange: #e8590c;
  --orange-deep: #c2470a;
  --orange-wash: #fbe9dd;

  --display: "Barlow Condensed", "Arial Narrow", Impact, sans-serif;
  --body: "Atkinson Hyperlegible", "Segoe UI", Arial, sans-serif;
  --mono: "Courier Prime", "Courier New", Courier, monospace;

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

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

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--orange-deep); }
:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

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

/* ---------- Register label (the typed memo line) ---------- */
.reg {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.reg::before {
  content: "";
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 1px 2px 3px rgba(29, 33, 28, 0.35);
  flex: 0 0 auto;
}
.reg.light { color: var(--onhero-soft); }

/* ---------- Pin (signature) ---------- */
.pinned { position: relative; }
.pinned::before {
  content: "";
  position: absolute;
  top: 12px; left: 12px;
  width: 12px; height: 12px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ff9a5a, var(--orange) 55%, var(--orange-deep));
  box-shadow: 2px 3px 5px rgba(29, 33, 28, 0.4);
  z-index: 2;
}

/* ---------- Masthead ---------- */
.post-strip {
  background: var(--green-deep);
  color: var(--onhero-soft);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.post-strip .shell {
  display: flex; justify-content: space-between; gap: 16px;
  padding-top: 8px; padding-bottom: 8px;
}
.post-strip b { color: var(--onhero); font-weight: 400; }
.post-strip span:last-child { text-align: right; }

.masthead { background: var(--paper); border-bottom: 2px solid var(--ink); }
.masthead .shell {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  padding-top: 22px; padding-bottom: 18px;
}
.brand { display: flex; align-items: center; gap: 14px; text-decoration: none; color: var(--ink); }
.brand .mark { width: 46px; height: 46px; flex: 0 0 auto; }
.brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 34px;
  line-height: 0.95;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--ink);
}
.brand-name span {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}
.mast-right {
  font-family: var(--mono);
  font-size: 12px; line-height: 1.55;
  color: var(--muted);
  text-align: right;
  max-width: 34ch;
}
.mast-right b { color: var(--orange-deep); font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; }

.navband { background: var(--paper); border-bottom: 1px solid var(--line); }
.nav {
  display: flex; flex-wrap: wrap; gap: 0;
  margin: 0 -14px;
}
.nav a {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink-2);
  padding: 13px 14px;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  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(--orange); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 22px 12px;
  border: 2px solid var(--orange);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 0.15s var(--ease), box-shadow 0.15s var(--ease), background 0.2s var(--ease);
}
.btn:hover { background: var(--orange-deep); border-color: var(--orange-deep); color: #fff; transform: translate(1px, 1px); box-shadow: 2px 2px 0 var(--ink); }
.btn.ghost { background: transparent; color: var(--ink); border-color: var(--ink); box-shadow: none; }
.btn.ghost:hover { background: var(--ink); color: var(--paper); transform: none; }
.btn.onhero.ghost { color: var(--onhero); border-color: var(--onhero-soft); }
.btn.onhero.ghost:hover { background: var(--onhero); color: var(--green-deep); }
.btn .arw { font-family: var(--body); font-weight: 700; }

/* ---------- Hero ---------- */
.hero {
  background: var(--green-deep);
  color: var(--onhero);
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(transparent 31px, rgba(255,255,255,0.035) 32px) 0 0 / 100% 32px,
    linear-gradient(90deg, transparent 31px, rgba(255,255,255,0.035) 32px) 0 0 / 32px 100%;
  pointer-events: none;
}
.hero .shell {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  padding-top: 64px; padding-bottom: 68px;
}
.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(44px, 5.6vw, 76px);
  line-height: 0.96;
  letter-spacing: 0.002em;
  text-transform: uppercase;
  margin: 18px 0 22px;
  color: #fff;
}
.hero h1 em, h1 em, h2 em {
  font-style: italic;
  font-weight: 600;
  color: var(--orange);
}
.hero .lede {
  font-size: 19px; line-height: 1.6;
  color: var(--onhero-soft);
  max-width: 52ch;
  margin: 0 0 30px;
}
.hero .lede b { color: var(--onhero); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-fig {
  margin: 0;
  position: relative;
  transform: rotate(-1.2deg);
  background: var(--paper);
  padding: 12px 12px 14px;
  box-shadow: 0 24px 50px -24px rgba(0,0,0,0.7), 0 2px 4px rgba(0,0,0,0.3);
}
.hero-fig img { width: 100%; height: auto; display: block; }
.hero-fig figcaption {
  font-family: var(--mono);
  font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted);
  margin-top: 10px;
}
.hero-fig::before { top: 16px; left: 18px; }

/* ---------- Shift strip (three facts) ---------- */
.strip { background: var(--paper); border-bottom: 1px solid var(--line); }
.strip .shell {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 0; padding-bottom: 0;
}
.strip .fact {
  padding: 26px 26px 24px;
  border-left: 1px solid var(--line);
}
.strip .fact:first-child { border-left: none; padding-left: 0; }
.strip .fact b {
  display: block;
  font-family: var(--display);
  font-weight: 700; font-size: 28px; line-height: 1;
  text-transform: uppercase;
  color: var(--ink);
  margin: 6px 0 8px;
}
.strip .fact p { margin: 0; font-size: 15px; color: var(--muted); line-height: 1.55; }

/* ---------- Sections ---------- */
section { padding: 72px 0; }
.section-head { margin-bottom: 34px; }
.section-head h2, .h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 0.98;
  text-transform: uppercase;
  letter-spacing: 0.002em;
  color: var(--ink);
  margin: 12px 0 0;
}
.section-head h2 em { color: var(--green); }
.section-head p.sub { margin: 14px 0 0; color: var(--muted); max-width: 60ch; font-size: 17px; }

/* ---------- Feature (photo + copy) ---------- */
.feature { background: var(--canvas); }
.feature .shell {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center;
}
.feature.flip .feature-fig { order: -1; }
.feature-copy h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 0.98;
  text-transform: uppercase;
  margin: 12px 0 18px;
  color: var(--ink);
}
.feature-copy h2 em { color: var(--green); }
.feature-copy p { margin: 0 0 14px; color: var(--ink-2); font-size: 17px; }
.feature-copy p:last-child { margin-bottom: 0; }
.feature-copy .btn { margin-top: 10px; }

figure.card-fig {
  margin: 0;
  background: var(--paper-2);
  padding: 10px 10px 12px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px -26px rgba(29,33,28,0.55);
}
figure.card-fig img { width: 100%; height: auto; }
figure.card-fig figcaption, figure.wide-fig figcaption {
  font-family: var(--mono);
  font-size: 12px; line-height: 1.5;
  color: var(--muted);
  margin-top: 10px;
}
figure.card-fig.pinned::before { top: 14px; left: 16px; }

/* ---------- Guide index (the board) ---------- */
.board { background: var(--green-deep); color: var(--onhero); }
.board .section-head h2 { color: #fff; }
.board .section-head h2 em { color: var(--orange); }
.board .section-head p.sub { color: var(--onhero-soft); }
.board .reg { color: var(--onhero-soft); }
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  display: block;
  position: relative;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  padding: 30px 24px 24px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px -20px rgba(0,0,0,0.6);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.card:hover { transform: translateY(-3px); box-shadow: 0 22px 36px -18px rgba(0,0,0,0.7); color: var(--ink); }
.card.manila { background: var(--manila); border-color: var(--manila-line); }
.card.lead { grid-column: span 2; }
.card .tag {
  font-family: var(--mono);
  font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange-deep);
  display: block; margin: 0 0 12px 22px;
}
.card h3 {
  font-family: var(--display);
  font-weight: 700; font-size: 28px; line-height: 1;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.card.lead h3 { font-size: 40px; }
.card p { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--ink-2); }
.card .go {
  display: inline-block; margin-top: 16px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--green);
}
.card:hover .go { color: var(--orange-deep); }

/* ---------- Clinic block ---------- */
.clinic { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.rooms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 30px; }
.room {
  position: relative;
  background: var(--manila);
  border: 1px solid var(--manila-line);
  padding: 34px 24px 26px;
  box-shadow: 0 14px 28px -22px rgba(29,33,28,0.6);
}
.room.first { background: var(--paper-2); border-color: var(--line); outline: 2px solid var(--ink); outline-offset: -2px; }
.room .tag {
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--orange-deep); display: block; margin: 0 0 10px 22px;
}
.room h3 {
  font-family: var(--display); font-weight: 700; font-size: 32px; line-height: 0.98;
  text-transform: uppercase; margin: 0 0 12px;
}
.room address { font-style: normal; font-size: 15.5px; line-height: 1.55; color: var(--ink-2); margin: 0 0 12px; }
.room .hours {
  font-family: var(--mono); font-size: 12.5px; line-height: 1.6; color: var(--muted);
  margin: 0 0 16px; padding-top: 12px; border-top: 1px dashed var(--manila-line);
}
.room .hours b { color: var(--orange-deep); font-weight: 400; }
.room .tel {
  display: block;
  font-family: var(--display); font-weight: 700; font-size: 26px; line-height: 1;
  color: var(--ink); text-decoration: none; margin-bottom: 14px;
}
.room .tel:hover { color: var(--orange-deep); }
.room .btn { font-size: 16px; padding: 10px 16px 9px; }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.review {
  margin: 0; padding: 22px 22px 18px;
  border-left: 3px solid var(--green);
  background: var(--canvas);
}
.review p { margin: 0 0 10px; font-size: 17px; line-height: 1.5; font-style: italic; color: var(--ink-2); }
.review cite { font-family: var(--mono); font-style: normal; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); }

.disclose {
  margin: 40px 0 0;
  padding: 18px 22px;
  background: var(--canvas);
  border: 1px solid var(--line);
  font-size: 13.5px; line-height: 1.6; color: var(--muted);
}
.disclose b { color: var(--ink-2); font-family: var(--mono); font-weight: 400; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 6px; }

/* ---------- Article pages ---------- */
.article-head { background: var(--paper); border-bottom: 1px solid var(--line); }
.article-head .shell { padding-top: 60px; padding-bottom: 48px; }
.article-head h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.96;
  text-transform: uppercase;
  letter-spacing: 0.002em;
  color: var(--ink);
  margin: 14px 0 20px;
  max-width: 18ch;
}
.article-head h1 em { color: var(--green); }
.article-head .lede { font-size: 20px; line-height: 1.55; color: var(--ink-2); max-width: 60ch; margin: 0 0 24px; }
.byline {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--muted); margin: 0; padding-top: 18px; border-top: 1px solid var(--line);
  max-width: var(--read);
}

.article { padding: 56px 0 72px; }
.article .shell { display: grid; grid-template-columns: minmax(0, var(--read)) 300px; gap: 64px; align-items: start; }
.prose { font-size: 18px; line-height: 1.7; }
.prose > p, .prose > ul, .prose > ol { margin: 0 0 22px; }
.prose p.intro { font-size: 19.5px; }
.prose p.intro::first-letter {
  font-family: var(--display); font-weight: 700; font-size: 4.2em; line-height: 0.78;
  float: left; padding: 6px 10px 0 0; color: var(--orange);
}
.prose h2 {
  font-family: var(--display); font-weight: 700; font-size: 34px; line-height: 1;
  text-transform: uppercase; color: var(--ink);
  margin: 44px 0 14px;
  padding-top: 16px;
  border-top: 2px solid var(--ink);
}
.prose h2 em { color: var(--green); }
.prose h3 { font-family: var(--display); font-weight: 600; font-size: 24px; text-transform: uppercase; margin: 28px 0 8px; }
.prose ul, .prose ol { padding-left: 22px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--green); }
.prose strong { color: var(--ink); }
.prose .cite { font-family: var(--mono); font-size: 13px; color: var(--muted); }

figure.wide-fig { margin: 8px 0 34px; }
figure.wide-fig img { width: 100%; height: auto; border: 1px solid var(--line); }

.takeaways {
  position: relative;
  background: var(--manila);
  border: 1px solid var(--manila-line);
  padding: 30px 28px 22px;
  margin: 0 0 36px;
  box-shadow: 0 16px 30px -22px rgba(29,33,28,0.55);
}
.takeaways .reg { margin-left: 20px; margin-bottom: 12px; color: var(--orange-deep); }
.takeaways .reg::before { display: none; }
.takeaways h2 { margin: 0 0 10px; border: none; padding: 0; font-size: 30px; }
.takeaways ul { margin: 0; padding-left: 0; list-style: none; }
.takeaways li {
  position: relative; padding-left: 22px; margin-bottom: 10px;
  font-size: 16.5px; line-height: 1.5; color: var(--ink-2);
}
.takeaways li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 10px; height: 10px; background: var(--green);
}

.notice {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 16.5px; line-height: 1.6;
}
.notice b { display: block; font-family: var(--display); font-weight: 700; font-size: 22px; text-transform: uppercase; margin-bottom: 6px; }
.notice.er { border-left-color: var(--ink); background: var(--green-wash); }
.notice.green { border-left-color: var(--green); }

/* CTA block (the punch card) */
.clock {
  position: relative;
  background: var(--green-deep);
  color: var(--onhero);
  padding: 40px 36px 36px;
  margin: 44px 0;
  box-shadow: 0 20px 40px -26px rgba(0,0,0,0.7);
}
.clock::after {
  content: "";
  position: absolute; top: 0; right: 0;
  width: 64px; height: 100%;
  background: repeating-linear-gradient(180deg, transparent 0 18px, rgba(255,255,255,0.06) 18px 20px);
  pointer-events: none;
}
.clock .reg { color: var(--onhero-soft); }
.clock h2 {
  font-family: var(--display); font-weight: 700; font-size: 40px; line-height: 0.98;
  text-transform: uppercase; color: #fff; margin: 12px 0 12px; border: none; padding: 0;
}
.clock h2 em { color: var(--orange); }
.clock p { margin: 0 0 20px; color: var(--onhero-soft); font-size: 16.5px; max-width: 54ch; }
.clock .actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.clock .tel { color: var(--onhero); font-family: var(--display); font-weight: 600; font-size: 20px; text-decoration: none; letter-spacing: 0.04em; }
.clock .tel:hover { color: var(--orange); }
.clock .fine { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--onhero-soft); margin: 18px 0 0; }

/* Sidebar */
.side { position: sticky; top: 24px; display: grid; gap: 22px; }
.side-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  padding: 30px 22px 20px;
  box-shadow: 0 14px 30px -24px rgba(29,33,28,0.6);
}
.side-card.manila { background: var(--manila); border-color: var(--manila-line); }
.side-card .reg { margin-left: 20px; margin-bottom: 12px; font-size: 11.5px; }
.side-card .reg::before { display: none; }
.side-card h3 { font-family: var(--display); font-weight: 700; font-size: 26px; line-height: 1; text-transform: uppercase; margin: 0 0 10px; }
.side-card p { margin: 0 0 12px; font-size: 14.5px; line-height: 1.55; color: var(--ink-2); }
.side-card .tel { display: block; font-family: var(--display); font-weight: 700; font-size: 24px; color: var(--ink); text-decoration: none; margin: 4px 0 10px; }
.side-card .tel:hover { color: var(--orange-deep); }
.side-card .btn { font-size: 16px; padding: 10px 16px 9px; }
.side-card .hours { font-family: var(--mono); font-size: 12px; line-height: 1.6; color: var(--muted); margin: 10px 0 0; }
.side-list { margin: 0; padding: 0; list-style: none; }
.side-list li { border-top: 1px solid var(--line-2); }
.side-list li:first-child { border-top: none; }
.side-list a {
  display: block; padding: 10px 0;
  font-family: var(--display); font-weight: 600; font-size: 19px; line-height: 1.1;
  text-transform: uppercase; letter-spacing: 0.02em;
  color: var(--ink); text-decoration: none;
}
.side-list a:hover { color: var(--orange-deep); }
.side-list a[aria-current="page"] { color: var(--green); }

/* Related */
.related { margin-top: 48px; padding-top: 24px; border-top: 2px solid var(--ink); }
.related .reg { margin-bottom: 8px; }
.related a {
  display: flex; justify-content: space-between; gap: 16px; align-items: baseline;
  padding: 14px 0; border-bottom: 1px solid var(--line);
  font-family: var(--display); font-weight: 600; font-size: 22px; line-height: 1.1;
  text-transform: uppercase; text-decoration: none; color: var(--ink);
}
.related a span { font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; flex: 0 0 auto; }
.related a:hover { color: var(--orange-deep); }

/* FAQ */
.faq-list { margin: 0; padding: 0; }
.faq-list details { border-top: 1px solid var(--line); padding: 4px 0; }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary {
  cursor: pointer; list-style: none;
  font-family: var(--display); font-weight: 600; font-size: 24px; line-height: 1.15;
  text-transform: uppercase; padding: 14px 36px 14px 0; position: relative; color: var(--ink);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+"; position: absolute; right: 4px; top: 12px;
  font-family: var(--mono); font-size: 24px; color: var(--orange);
}
.faq-list details[open] summary::after { content: "-"; }
.faq-list details p { margin: 0 0 18px; font-size: 17px; line-height: 1.62; color: var(--ink-2); max-width: 64ch; }

/* Timeline (after the wreck) */
.timeline { list-style: none; margin: 0 0 28px; padding: 0; }
.timeline li { position: relative; padding: 0 0 24px 38px; border-left: 2px solid var(--line); margin-left: 10px; }
.timeline li::before {
  content: ""; position: absolute; left: -8px; top: 6px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--orange); box-shadow: 1px 2px 3px rgba(29,33,28,0.35);
}
.timeline li:last-child { border-left-color: transparent; }
.timeline .when { display: block; font-family: var(--mono); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--green); margin-bottom: 4px; }
.timeline b { display: block; font-family: var(--display); font-weight: 700; font-size: 24px; text-transform: uppercase; line-height: 1.05; margin-bottom: 6px; }
.timeline p { margin: 0; font-size: 16.5px; color: var(--ink-2); }

/* Rooms page */
.rooms.page { grid-template-columns: 1fr; gap: 26px; margin-top: 0; }
.rooms.page .room {
  display: grid; grid-template-columns: 1.2fr 1fr; column-gap: 28px; row-gap: 0;
  grid-template-areas: "tag tag" "h3 h3" "addr tel" "hours btn";
  align-items: start; padding: 36px 30px 28px;
}
.rooms.page .room .tag { grid-area: tag; }
.rooms.page .room h3 { grid-area: h3; font-size: 38px; }
.rooms.page .room address { grid-area: addr; }
.rooms.page .room .tel { grid-area: tel; justify-self: start; margin-top: 2px; }
.rooms.page .room .hours { grid-area: hours; }
.rooms.page .room .btn { grid-area: btn; justify-self: start; align-self: start; }

/* ---------- Footer ---------- */
.site-foot { background: var(--green-deep); color: var(--onhero-soft); font-size: 14px; border-top: 5px solid var(--orange); }
.site-foot .shell { padding-top: 56px; padding-bottom: 40px; }
.foot-er {
  position: relative;
  background: var(--manila);
  color: var(--ink);
  padding: 30px 28px 24px;
  margin-bottom: 48px;
  max-width: 860px;
  box-shadow: 0 20px 40px -26px rgba(0,0,0,0.8);
  font-size: 15.5px; line-height: 1.6;
}
.foot-er b { display: block; font-family: var(--display); font-weight: 700; font-size: 24px; text-transform: uppercase; margin: 0 0 6px 20px; }
.foot-er p { margin: 0; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 44px; }
.foot-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; color: #fff; }
.foot-brand .mark { width: 40px; height: 40px; }
.foot-brand .brand-name { color: #fff; font-size: 26px; }
.foot-brand .brand-name span { color: var(--onhero-soft); }
.foot-lead { max-width: 40ch; margin: 0; line-height: 1.6; }
.foot-col h4 { font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--onhero-soft); margin: 0 0 14px; font-weight: 400; }
.foot-col a { display: block; color: var(--onhero); text-decoration: none; margin-bottom: 9px; font-family: var(--display); font-weight: 600; font-size: 18px; text-transform: uppercase; letter-spacing: 0.03em; }
.foot-col a:hover { color: var(--orange); }
.foot-col p { margin: 0 0 10px; font-size: 13.5px; line-height: 1.55; }
.foot-col .tel { font-family: var(--display); font-weight: 600; font-size: 18px; color: var(--onhero); text-decoration: none; }
.foot-disclose {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 40px; padding-top: 22px;
  font-size: 12.5px; line-height: 1.65; color: var(--onhero-soft);
  max-width: 900px;
}
.foot-disclose p { margin: 0 0 10px; }
.stamp {
  display: inline-block;
  font-family: var(--mono); font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid var(--onhero-soft); padding: 5px 10px; color: var(--onhero); margin-top: 10px;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero .shell { grid-template-columns: 1fr; gap: 40px; padding-top: 52px; padding-bottom: 56px; }
  .hero-fig { max-width: 560px; }
  .feature .shell { grid-template-columns: 1fr; gap: 30px; }
  .feature.flip .feature-fig { order: 0; }
  .grid { grid-template-columns: 1fr 1fr; }
  .card.lead { grid-column: span 2; }
  .rooms, .reviews { grid-template-columns: 1fr; }
  .article .shell { grid-template-columns: 1fr; gap: 40px; }
  .side { position: static; grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-about { grid-column: 1 / -1; }
  .rooms.page .room { grid-template-columns: 1fr; grid-template-areas: "tag" "h3" "addr" "tel" "hours" "btn"; }
}
@media (max-width: 680px) {
  body { font-size: 16.5px; }
  .shell { padding: 0 18px; }
  section { padding: 52px 0; }
  .post-strip span:last-child { display: none; }
  .mast-right { display: none; }
  .masthead .shell { padding-top: 16px; padding-bottom: 12px; }
  .brand-name { font-size: 28px; }
  .nav { margin: 0 -8px; }
  .nav a { font-size: 15.5px; padding: 11px 8px; letter-spacing: 0.05em; }
  .hero .shell { padding-top: 40px; padding-bottom: 44px; }
  .hero h1 { font-size: clamp(40px, 12vw, 54px); }
  .hero .lede { font-size: 17.5px; }
  .hero-fig { transform: rotate(-0.8deg); padding: 8px 8px 10px; }
  .strip .shell { grid-template-columns: 1fr; }
  .strip .fact { border-left: none; padding: 18px 0; border-top: 1px solid var(--line); }
  .strip .fact:first-child { border-top: none; }
  .grid { grid-template-columns: 1fr; }
  .card.lead { grid-column: auto; }
  .card.lead h3 { font-size: 32px; }
  .article-head .shell { padding-top: 40px; padding-bottom: 32px; }
  .article-head h1 { font-size: clamp(38px, 11vw, 50px); }
  .article-head .lede { font-size: 18px; }
  .prose { font-size: 17.5px; }
  .prose h2 { font-size: 30px; }
  .side { grid-template-columns: 1fr; }
  .clock { padding: 32px 22px 28px; }
  .clock h2 { font-size: 34px; }
  .clock::after { width: 28px; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .rooms.page .room { padding: 30px 20px 24px; }
  .faq-list summary { font-size: 21px; }
  .btn { font-size: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  .card:hover, .btn:hover { transform: none; }
}
