/* demo-anchor-room.css — "The Anchor Room" concept demo.
   Image-free by design: type, colour and rhythm only.
   Palette: paper cream / ink / barber red / navy. */

.ar-page {
  --paper: #f3ede1;
  --paper-2: #ece4d3;
  --ink: #191611;
  --ink-soft: #5c554a;
  --red: #a4243b;
  --navy: #23324b;
  --serif: "Iowan Old Style", "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  background:
    radial-gradient(circle at 12% 8%, rgba(164, 36, 59, 0.05), transparent 40%),
    radial-gradient(circle at 88% 92%, rgba(35, 50, 75, 0.06), transparent 45%),
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}

/* the dark site theme sets colors on ul/p/li — re-scope them for this light demo */
.ar-page p,
.ar-page ul,
.ar-page ol,
.ar-page li {
  color: var(--ink);
}
.ar-page .ar-hero__sub,
.ar-menu__row--note {
  color: var(--ink-soft);
}
.ar-page strong { color: var(--ink); }

/* subtle paper grain */
.ar-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image: radial-gradient(rgba(25, 22, 17, 0.03) 1px, transparent 1px);
  background-size: 4px 4px;
}

.mono { font-family: var(--mono, ui-monospace, monospace); }

/* ---- topbar ---- */

.ar-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px clamp(16px, 4vw, 48px);
  border-bottom: 2px solid var(--ink);
  position: sticky;
  top: 0;
  background: var(--paper);
  z-index: 10;
}

.ar-brand { font-weight: 700; letter-spacing: 0.18em; }

.ar-topnav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.5vw, 28px);
}
.ar-topnav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
}
.ar-topnav a:hover { text-decoration: underline; text-underline-offset: 4px; }

.ar-book {
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 6px 16px !important;
  transition: background 160ms ease, color 160ms ease;
}
.ar-book:hover { background: var(--ink); color: var(--paper) !important; text-decoration: none !important; }

/* ---- marquee ---- */

.ar-marquee {
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  white-space: nowrap;
}
.ar-marquee__track {
  display: inline-flex;
  animation: ar-scroll 28s linear infinite;
}
@keyframes ar-scroll {
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ar-marquee__track { animation: none; }
}

/* ---- hero ---- */

.ar-hero {
  max-width: 1100px;
  margin-inline: auto;
  padding: clamp(56px, 12vw, 130px) clamp(16px, 4vw, 48px) clamp(48px, 9vw, 96px);
}

.ar-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 14px;
  font-weight: 600;
}

.ar-hero h1 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3rem, 10.5vw, 7.5rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
}
.ar-hero h1 em {
  font-style: italic;
  color: var(--red);
}

.ar-hero__sub {
  max-width: 34ch;
  margin-top: 26px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-soft);
}

.ar-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.ar-btn {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  padding: 13px 26px;
  font-weight: 600;
  transition: transform 140ms ease, box-shadow 140ms ease;
}
.ar-btn:hover { transform: translateY(-2px); }

.ar-btn--solid {
  background: var(--red);
  color: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
}
.ar-btn--line {
  border: 2px solid var(--ink);
  color: var(--ink);
}

/* ---- sections ---- */

.ar-section {
  max-width: 1100px;
  margin-inline: auto;
  padding: clamp(44px, 8vw, 90px) clamp(16px, 4vw, 48px);
  border-top: 2px solid color-mix(in srgb, var(--ink) 18%, transparent);
}

.ar-section h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1.04;
  margin: 0 0 30px;
  letter-spacing: -0.01em;
}

/* ---- price menu with dotted leaders ---- */

.ar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 720px;
}

.ar-menu__row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 13px 2px;
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
}
.ar-menu__row > span:first-child { font-family: var(--serif); font-size: 1.15em; }

.ar-leader {
  flex: 1;
  border-bottom: 2px dotted rgba(25, 22, 17, 0.35);
  transform: translateY(-4px);
}

.ar-price { font-variant-numeric: tabular-nums; font-weight: 700; }

.ar-menu__row--note {
  color: var(--ink-soft);
  font-style: italic;
  border-top: 2px dotted rgba(25, 22, 17, 0.35);
  margin-top: 8px;
  padding-top: 16px;
  font-size: 1rem;
}

/* ---- strip ---- */

.ar-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 32px;
  justify-content: center;
  padding: 20px clamp(16px, 4vw, 48px);
  background: var(--navy);
  color: var(--paper);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  text-align: center;
}

/* ---- hours ---- */

.ar-section--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px 64px;
}

.ar-hours {
  border-collapse: collapse;
  font-size: clamp(1rem, 2vw, 1.2rem);
}
.ar-hours th {
  text-align: left;
  font-family: var(--serif);
  font-weight: 600;
  padding-right: 42px;
}
.ar-hours td { font-variant-numeric: tabular-nums; color: var(--ink-soft); }
.ar-hours tr + tr th,
.ar-hours tr + tr td { padding-top: 12px; }

/* ---- visit ---- */

.ar-visit {
  background: var(--paper-2);
  border-top: 2px solid var(--ink);
}
.ar-visit__addr {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.4vw, 1.4rem);
  margin: -10px 0 30px;
}

/* ---- footer disclaimer ---- */

.ar-footer {
  border-top: 2px solid var(--ink);
  padding: 28px clamp(16px, 4vw, 48px) 44px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  max-width: 1100px;
  margin-inline: auto;
}
.ar-footer a { color: var(--red); }

/* ---- responsive ---- */

@media (max-width: 720px) {
  .ar-topnav a:not(.ar-book):not(:last-child) { display: none; }
  .ar-section--split { grid-template-columns: 1fr; align-items: start; }
}
