:root {
      --bg: #f4efe6;
      --bg-soft: #fbf8f2;
      --ink: #1f1915;
      --ink-soft: #2a231e;
      --muted: #66584d;
      --line: rgba(32, 26, 22, 0.12);
      --line-strong: rgba(32, 26, 22, 0.18);
      --accent: #6d4d2f;
      --accent-2: #8f6a45;
      --accent-3: #b89a77;
      --panel: rgba(255, 255, 255, 0.7);
      --shadow: 0 18px 45px rgba(20, 14, 10, 0.12);
      --shadow-soft: 0 8px 22px rgba(20, 14, 10, 0.08);
      --radius: 24px;
      --radius-sm: 18px;
      --max: 1240px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: Georgia, 'Times New Roman', serif;
      color: var(--ink);
      background:
        radial-gradient(circle at top left, rgba(255,255,255,0.75), transparent 35%),
        linear-gradient(180deg, #f7f2e9 0%, #f0e9de 55%, #f8f5ef 100%);
      line-height: 1.67;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    p { margin: 0 0 1rem; }

    :focus-visible {
      outline: 3px solid var(--accent-2);
      outline-offset: 4px;
    }

    .skip-link {
      position: fixed;
      top: 0.75rem;
      left: 0.75rem;
      z-index: 100;
      padding: 0.7rem 1rem;
      background: var(--ink);
      color: white;
      transform: translateY(-160%);
    }

    .skip-link:focus { transform: translateY(0); }

    .container {
      width: min(calc(100% - 2rem), var(--max));
      margin: 0 auto;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 40;
      background: #f8f4ed;
      border-bottom: 1px solid var(--line);
    }

    .header-inner {
      min-height: 78px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }

    .brand {
      display: flex;
      flex-direction: column;
      gap: 0.12rem;
    }

    .brand-mark {
      color: var(--muted);
      font-size: 0.76rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
    }

    .brand-name {
      font-size: 1.5rem;
      letter-spacing: 0.015em;
    }

    .nav {
      display: flex;
      gap: 1.1rem;
      flex-wrap: wrap;
      justify-content: flex-end;
      color: var(--muted);
      font-size: 0.96rem;
    }

    .nav a {
      position: relative;
      padding-bottom: 0.18rem;
    }

    .nav a:hover,
    .nav a:focus-visible {
      color: var(--accent);
    }

    .nav-toggle {
      display: none;
      border: 1px solid var(--line-strong);
      border-radius: 999px;
      padding: 0.55rem 0.9rem;
      background: transparent;
      color: var(--ink);
      font: 700 0.78rem/1 Arial, Helvetica, sans-serif;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .page-hero {
      padding: clamp(7rem, 14vw, 11rem) 0 clamp(4rem, 8vw, 7rem);
      border-bottom: 1px solid var(--line);
    }

    .page-hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
      gap: clamp(2rem, 6vw, 6rem);
      align-items: end;
    }

    .page-hero h1 {
      max-width: 900px;
      margin: 0.5rem 0 1.25rem;
      font-size: clamp(3.2rem, 8vw, 7rem);
      line-height: 0.94;
      letter-spacing: -0.045em;
    }

    .page-hero-copy {
      max-width: 720px;
      color: var(--muted);
      font-size: clamp(1.1rem, 2vw, 1.35rem);
    }

    .page-hero-image {
      overflow: hidden;
      min-height: 420px;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
    }

    .page-hero-image img {
      width: 100%;
      height: 100%;
      min-height: 420px;
      object-fit: cover;
    }

    .breadcrumbs {
      margin-bottom: 1.5rem;
      color: var(--muted);
      font: 700 0.72rem/1.4 Arial, Helvetica, sans-serif;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .breadcrumbs a { text-decoration: underline; text-underline-offset: 0.2em; }

    .prose-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
      gap: clamp(2rem, 6vw, 6rem);
    }

    .prose {
      font-size: 1.08rem;
    }

    .prose h2 {
      margin: 2.5rem 0 1rem;
      font-size: clamp(2rem, 4vw, 3.4rem);
      line-height: 1.06;
    }

    .prose h3 { margin: 2rem 0 0.6rem; font-size: 1.45rem; }
    .prose a, .source-list a { color: var(--accent); text-decoration: underline; text-underline-offset: 0.18em; }

    .aside-card {
      position: sticky;
      top: 8rem;
      align-self: start;
      padding: 1.5rem;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: var(--panel);
    }

    .aside-card dt {
      margin-top: 1rem;
      color: var(--accent);
      font: 700 0.72rem/1.4 Arial, Helvetica, sans-serif;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .aside-card dd { margin: 0.25rem 0 0; }

    .manifest {
      display: grid;
      gap: 1rem;
      margin-top: 2rem;
    }

    .stay-card {
      display: grid;
      grid-template-columns: 11rem minmax(0, 1fr) auto;
      gap: 1.5rem;
      align-items: center;
      padding: 1.4rem;
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      background: rgba(255,255,255,0.55);
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .stay-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
    .stay-index { color: var(--accent-3); font-size: 3.6rem; line-height: 1; }
    .stay-card h3 { margin: 0 0 0.35rem; font-size: 1.65rem; }
    .stay-card p { margin: 0; color: var(--muted); }
    .stay-meta { margin-top: 0.65rem; font: 700 0.72rem/1.5 Arial, Helvetica, sans-serif; letter-spacing: 0.08em; text-transform: uppercase; }
    .stay-link { white-space: nowrap; color: var(--accent); font: 700 0.78rem/1 Arial, Helvetica, sans-serif; text-decoration: underline; text-underline-offset: 0.25em; text-transform: uppercase; }

    .story-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }

    .story-card {
      min-height: 360px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      overflow: hidden;
      position: relative;
      border-radius: var(--radius);
      color: white;
      box-shadow: var(--shadow-soft);
    }

    .story-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .story-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(transparent 20%, rgba(15,10,7,0.9)); }
    .story-card-content { position: relative; z-index: 1; padding: 1.6rem; }
    .story-card h2 { margin: 0.3rem 0 0.45rem; font-size: 2rem; }
    .story-card p { margin: 0; color: rgba(255,255,255,0.86); }

    .editorial-footer {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 2rem;
      align-items: end;
    }

    .hero {
      position: relative;
      height: calc(100svh - 78px);
      min-height: 650px;
      max-height: 860px;
      padding: 0;
      display: grid;
      align-items: end;
      overflow: hidden;
      border-bottom: 1px solid var(--line);
      background: #26322e;
    }

    .hero-media {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    .hero-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 50% 58%;
      transform: scale(1.015);
      animation: hero-settle 1.2s cubic-bezier(.2,.7,.2,1) both;
    }

    .hero-media::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(13,17,15,0.76) 0%, rgba(13,17,15,0.42) 48%, rgba(13,17,15,0.08) 78%),
        linear-gradient(0deg, rgba(9,12,10,0.68) 0%, transparent 52%, rgba(9,12,10,0.14) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 1;
      padding: 5rem 0 3.5rem;
      color: #fff9f2;
    }

    .hero-edition {
      display: flex;
      justify-content: space-between;
      width: min(100%, 760px);
      margin-bottom: clamp(1.8rem, 4vh, 3rem);
      border-bottom: 1px solid rgba(255,255,255,0.35);
      padding-bottom: 0.65rem;
      font: 700 0.7rem/1.2 Arial, Helvetica, sans-serif;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .eyebrow {
      display: inline-block;
      margin-bottom: 1rem;
      padding: 0.42rem 0.78rem;
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 999px;
      background: rgba(255,255,255,0.08);
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    h1, h2, h3, h4 {
      margin: 0;
      font-weight: 500;
      line-height: 1.1;
    }

    h1 {
      max-width: 10ch;
      margin-bottom: 1.35rem;
      font-size: clamp(3.7rem, 8.2vw, 7.7rem);
      line-height: 0.91;
      letter-spacing: -0.045em;
    }

    .hero h1 {
      max-width: 900px;
      font-size: clamp(3.7rem, 6.4vw, 6.5rem);
      line-height: 0.92;
    }

    .hero-copy {
      max-width: 650px;
      font-size: clamp(1.08rem, 1.7vw, 1.34rem);
      color: rgba(255,249,242,0.93);
    }

    .hero-footnote {
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem 1.4rem;
      margin-top: 2.6rem;
      color: rgba(255,255,255,0.7);
      font: 700 0.68rem/1.2 Arial, Helvetica, sans-serif;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .hero-footnote span::before { content: '\00b7'; margin-right: 1.4rem; }
    .hero-footnote span:first-child::before { content: none; }

    .hero-scroll {
      position: absolute;
      right: max(1rem, calc((100vw - var(--max)) / 2));
      bottom: 4.8rem;
      z-index: 2;
      display: grid;
      gap: 0.6rem;
      justify-items: center;
      color: rgba(255,255,255,0.82);
      font: 700 0.66rem/1 Arial, Helvetica, sans-serif;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    .hero-scroll span { font-size: 1.4rem; }

    .home-opening {
      padding: clamp(5rem, 10vw, 9rem) 0;
      background: #eee5d8;
    }

    .home-opening-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
      gap: clamp(3rem, 9vw, 9rem);
      align-items: end;
    }

    .home-opening h2 {
      max-width: 900px;
      margin-top: 1.2rem;
      font-size: clamp(2.8rem, 5.7vw, 5.8rem);
      line-height: 0.98;
      letter-spacing: -0.04em;
    }

    .home-opening-copy { color: var(--muted); font-size: 1.08rem; }

    .text-link {
      display: inline-block;
      margin-top: 1rem;
      border-bottom: 1px solid currentColor;
      padding-bottom: 0.2rem;
      color: var(--accent);
      font: 700 0.78rem/1.4 Arial, Helvetica, sans-serif;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .home-portals { padding: clamp(5rem, 9vw, 8rem) 0; }

    .portal-heading {
      display: flex;
      justify-content: space-between;
      gap: 2rem;
      align-items: end;
      margin-bottom: 2rem;
    }

    .portal-heading h2 { margin-top: 0.5rem; font-size: clamp(2.4rem, 5vw, 4.7rem); }
    .portal-heading p { max-width: 330px; color: var(--muted); }

    .portal-grid {
      display: grid;
      grid-template-columns: 1.35fr 0.65fr;
      grid-template-rows: repeat(2, minmax(280px, 360px));
      gap: 1rem;
    }

    .portal-card {
      position: relative;
      display: flex;
      align-items: end;
      overflow: hidden;
      min-height: 280px;
      border-radius: 2px;
      color: white;
      isolation: isolate;
    }

    .portal-card-large { grid-row: 1 / 3; }
    .portal-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(.2,.7,.2,1); }
    .portal-card::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(12,12,10,0.88), rgba(12,12,10,0.06) 72%); }
    .portal-card:hover img { transform: scale(1.035); }
    .portal-number { position: absolute; top: 1.2rem; right: 1.3rem; font: 700 0.72rem/1 Arial, Helvetica, sans-serif; letter-spacing: 0.12em; }
    .portal-content { display: grid; gap: 0.45rem; width: 100%; padding: 1.6rem; }
    .portal-content strong { max-width: 16ch; font-size: clamp(1.75rem, 3vw, 3.1rem); font-weight: 500; line-height: 1; }
    .portal-content > span:last-child { margin-top: 0.55rem; font: 700 0.72rem/1.2 Arial, Helvetica, sans-serif; letter-spacing: 0.08em; text-transform: uppercase; }

    @keyframes hero-settle { from { opacity: 0; transform: scale(1.06); } to { opacity: 1; transform: scale(1.015); } }

    @media (prefers-reduced-motion: reduce) {
      .hero-media img { animation: none; }
      .portal-card img { transition: none; }
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      margin-top: 2rem;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0.82rem 1.2rem;
      border-radius: 999px;
      border: 1px solid transparent;
      font-size: 0.98rem;
      transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
    }

    .button-primary {
      background: #f8efe2;
      color: #2b211b;
      box-shadow: 0 12px 30px rgba(0,0,0,0.16);
    }

    .button-primary:hover,
    .button-primary:focus-visible {
      transform: translateY(-1px);
      background: #fff5e8;
    }

    .button-ghost {
      color: #fff;
      border-color: rgba(255,255,255,0.35);
      background: rgba(255,255,255,0.08);
    }

    .button-ghost:hover,
    .button-ghost:focus-visible {
      background: rgba(255,255,255,0.14);
    }

    .button-inline {
      margin-top: 1rem;
      border-color: var(--accent);
      background: var(--accent);
      color: #fffaf3;
      box-shadow: var(--shadow-soft);
    }

    .button-inline:hover,
    .button-inline:focus-visible {
      transform: translateY(-1px);
      background: #563b26;
    }

    .prose a.button-inline,
    .prose a.button-inline:visited {
      color: #fffaf3;
      text-decoration: none;
    }

    .prose a.button-inline:hover,
    .prose a.button-inline:focus-visible {
      color: #ffffff;
      border-color: #563b26;
    }

    .scroll-note {
      margin-top: 2rem;
      color: rgba(255,249,242,0.76);
      font-size: 0.92rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    section {
      padding: 5.8rem 0;
    }

    .section-head {
      display: grid;
      gap: 0.95rem;
      margin-bottom: 2.2rem;
    }

    .section-kicker {
      color: var(--accent);
      font-size: 0.8rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
    }

    .section-head h2 {
      font-size: clamp(2rem, 4vw, 3.45rem);
      max-width: 13ch;
    }

    .section-head p {
      max-width: 800px;
      color: var(--muted);
      font-size: 1.04rem;
      margin: 0;
    }

    .layout-2,
    .essay-grid,
    .visit-grid,
    .about-grid,
    .footer-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 1.4rem;
      align-items: start;
    }

    .panel {
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .panel-pad { padding: 1.55rem; }

    .lede {
      font-size: 1.2rem;
      color: var(--ink-soft);
    }

    .facts {
      display: grid;
      gap: 1rem;
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fact {
      padding: 1rem;
      border-radius: var(--radius-sm);
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.55);
      box-shadow: var(--shadow-soft);
    }

    .fact strong {
      display: block;
      margin-bottom: 0.25rem;
      color: var(--accent);
      font-size: 1.22rem;
    }

    .editorial-strip {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 1rem;
      margin-top: 1.4rem;
    }

    .feature-grid,
    .visit-cards,
    .sources-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.4rem;
    }

    .card-media {
      aspect-ratio: 1.1 / 1;
      overflow: hidden;
    }

    .card-media picture,
    .gallery-item picture {
      display: block;
      width: 100%;
      height: 100%;
    }

    .card-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .card-body { padding: 1.35rem 1.35rem 1.5rem; }

    .card-label {
      display: inline-block;
      margin-bottom: 0.6rem;
      color: var(--accent);
      font-size: 0.82rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .card-body h3 {
      font-size: 1.58rem;
      margin-bottom: 0.7rem;
    }

    .card-body p {
      color: var(--muted);
      margin-bottom: 0.95rem;
    }

    .card-note {
      color: #4b3f35;
      font-size: 0.95rem;
    }

    .motif-grid,
    .notes-grid,
    .pillars {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1rem;
    }

    .motif,
    .note,
    .pillar,
    .source-card {
      padding: 1.25rem;
      border-radius: 20px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.56);
    }

    .motif { min-height: 220px; }

    .motif h3,
    .note h3,
    .source-card h3 {
      font-size: 1.18rem;
      margin-bottom: 0.72rem;
    }

    .motif p,
    .note p,
    .source-card p,
    .pillar p {
      color: var(--muted);
      margin: 0;
      font-size: 0.97rem;
    }

    .timeline {
      display: grid;
      gap: 1rem;
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 130px 1fr;
      gap: 1rem;
      padding: 1.15rem 1.2rem;
      border-radius: 18px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.56);
    }

    .timeline-year {
      color: var(--accent);
      font-size: 1.28rem;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr 0.85fr;
      gap: 1rem;
    }

    .gallery-item {
      position: relative;
      min-height: 260px;
      border-radius: 22px;
      overflow: hidden;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      background: #ddd;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .gallery-item figcaption {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 1rem 1.05rem;
      color: #fff8f0;
      background: linear-gradient(180deg, transparent, rgba(13, 8, 6, 0.82));
      font-size: 0.95rem;
    }

    .quote {
      font-size: clamp(1.45rem, 2.2vw, 2.05rem);
      line-height: 1.35;
      color: var(--ink-soft);
      margin: 0 0 1rem;
    }

    .small { color: var(--muted); font-size: 0.95rem; }

    .pillars {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      margin-top: 1rem;
    }

    .pillar h4 {
      font-size: 1rem;
      margin-bottom: 0.45rem;
      color: var(--accent);
    }

    .source-card a,
    .site-footer a {
      text-decoration: underline;
      text-underline-offset: 0.14em;
    }

    .site-footer {
      padding: 2rem 0 4rem;
      border-top: 1px solid var(--line);
      color: var(--muted);
      font-size: 0.93rem;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 0.5rem 1.15rem;
    }

    .home-feature {
      padding: clamp(5rem, 10vw, 9rem) 0;
      background: #24312c;
      color: #fff9f1;
    }

    .home-feature-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
      gap: clamp(2rem, 7vw, 7rem);
      align-items: center;
    }

    .home-feature-image {
      margin: 0;
      overflow: hidden;
      background: #141a17;
      box-shadow: var(--shadow);
    }

    .home-feature-image img {
      width: 100%;
      min-height: 470px;
      max-height: 680px;
      object-fit: cover;
    }

    .home-feature-image figcaption {
      padding: 0.8rem 1rem;
      color: rgba(255,255,255,0.65);
      font: 0.78rem/1.5 Arial, Helvetica, sans-serif;
    }

    .home-feature-copy h2 {
      margin: 0.8rem 0 1.25rem;
      font-size: clamp(2.6rem, 5vw, 5.2rem);
      line-height: 0.98;
      letter-spacing: -0.035em;
    }

    .home-feature-copy p { color: var(--muted); font-size: 1.08rem; }
    .home-feature .home-feature-copy p { color: rgba(255,255,255,0.78); }
    .home-feature .section-kicker { color: #d5b48d; }
    .home-feature .text-link { color: #ead0af; }

    .home-closing {
      padding: clamp(5rem, 10vw, 8rem) 0;
      text-align: center;
    }

    .home-closing-line {
      margin: 0;
      font-size: clamp(2.2rem, 5vw, 5rem);
      line-height: 1;
      letter-spacing: -0.035em;
    }

    .home-closing-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.7rem 2rem;
      margin-top: 2rem;
      color: var(--accent);
      font: 700 0.78rem/1.4 Arial, Helvetica, sans-serif;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .home-closing-links a { border-bottom: 1px solid currentColor; }

    .archive-band,
    .visit-practical,
    .history-sources { background: #e9dfd1; }

    .archive-pair {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }

    .archive-pair figure { margin: 0; background: #171714; color: white; }
    .archive-pair img { width: 100%; height: 520px; object-fit: cover; }
    .archive-pair figcaption { padding: 0.8rem 1rem; color: rgba(255,255,255,0.7); font: 0.8rem/1.5 Arial, Helvetica, sans-serif; }
    .source-note { margin-top: 1rem; color: var(--muted); font-size: 0.9rem; }
    .source-note a { color: var(--accent); text-decoration: underline; }

    .history-hero {
      padding: clamp(6rem, 12vw, 10rem) 0 clamp(4rem, 8vw, 7rem);
      background: #e7dbc9;
      border-bottom: 1px solid var(--line);
    }

    .history-hero-grid {
      display: grid;
      grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
      gap: clamp(2rem, 6vw, 6rem);
      align-items: center;
    }

    .history-hero h1 {
      max-width: 9ch;
      margin: 0.6rem 0 1.4rem;
      font-size: clamp(3.4rem, 7vw, 7rem);
      line-height: 0.92;
      letter-spacing: -0.045em;
    }

    .history-hero p { max-width: 620px; color: var(--muted); font-size: 1.08rem; }
    .history-hero figure { margin: 0; box-shadow: var(--shadow); background: #bc996c; }
    .history-hero figure img { width: 100%; min-height: 520px; object-fit: cover; }
    .history-hero figcaption { padding: 0.7rem 0.9rem; font: 0.78rem/1.4 Arial, Helvetica, sans-serif; color: #433221; }

    .history-intro { padding: clamp(4rem, 8vw, 7rem) 0; }
    .narrow { max-width: 820px; }
    .history-deck { margin: 0; font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1.35; }
    .history-chapters { padding-top: 0; }
    .history-layout { display: grid; grid-template-columns: 190px minmax(0, 760px); gap: clamp(2rem, 7vw, 7rem); justify-content: center; align-items: start; }
    .history-index { position: sticky; top: 7rem; display: grid; gap: 0.45rem; border-left: 1px solid var(--line-strong); padding-left: 1rem; font: 0.78rem/1.5 Arial, Helvetica, sans-serif; }
    .history-index span { margin-bottom: 0.4rem; color: var(--accent); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
    .history-index a { color: var(--muted); }
    .history-index a:hover { color: var(--accent); }
    .history-story > .history-chapter { padding: 0 0 clamp(4.5rem, 9vw, 8rem); }
    .history-chapter h2 { margin: 0.45rem 0 1.2rem; font-size: clamp(2.5rem, 5vw, 4.8rem); line-height: 0.98; letter-spacing: -0.035em; }
    .history-chapter p:not(.history-date) { font-size: 1.12rem; }
    .history-date { margin: 0; color: var(--accent); font: 700 0.76rem/1.4 Arial, Helvetica, sans-serif; letter-spacing: 0.12em; text-transform: uppercase; }
    .history-figure { margin: 0 0 clamp(4.5rem, 9vw, 8rem); background: #171714; color: white; }
    .history-figure img { width: 100%; max-height: 620px; object-fit: cover; }
    .history-figure figcaption { padding: 0.75rem 1rem; color: rgba(255,255,255,0.68); font: 0.78rem/1.5 Arial, Helvetica, sans-serif; }
    .history-sources h2 { margin: 0.6rem 0 1.2rem; font-size: clamp(2.5rem, 5vw, 4.2rem); }
    .source-list { display: grid; gap: 0.65rem; padding-left: 1.2rem; }

    .stay-card h2 { margin: 0 0 0.35rem; font-size: 1.65rem; }
    .lodging-note { max-width: 760px; margin: 2.5rem 0 0 auto; padding: 1.2rem 1.4rem; border-left: 3px solid var(--accent-3); color: var(--muted); }
    .lodging-note p { margin: 0; }

    .visit-plan { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
    .visit-plan article { min-height: 330px; padding: 1.6rem; border-top: 3px solid var(--accent); background: rgba(255,255,255,0.55); }
    .visit-plan h2 { margin: 1.1rem 0 0.8rem; font-size: clamp(2rem, 3vw, 3rem); }
    .visit-plan p { color: var(--muted); }
    .visit-time { color: var(--accent); font: 700 0.76rem/1.4 Arial, Helvetica, sans-serif; letter-spacing: 0.12em; text-transform: uppercase; }

    .dining-hero,
    .visit-hero {
      padding: clamp(4rem, 8vw, 7rem) 0;
      background: #e8ddcc;
    }

    .dining-hero-grid,
    .visit-hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
      gap: clamp(2.5rem, 7vw, 7rem);
      align-items: center;
    }

    .dining-hero h1,
    .visit-hero h1 {
      max-width: 8ch;
      margin: 0.55rem 0 1.4rem;
      font-size: clamp(3.7rem, 7.5vw, 7.4rem);
      line-height: 0.89;
      letter-spacing: -0.05em;
    }

    .dining-hero p,
    .visit-hero p { max-width: 660px; font-size: 1.08rem; color: #53483d; }
    .dining-hero figure,
    .visit-hero figure { margin: 0; background: #171714; box-shadow: var(--shadow); }
    .dining-hero figure img,
    .visit-hero figure img { width: 100%; min-height: 540px; max-height: 690px; object-fit: cover; }
    .dining-hero figcaption,
    .visit-hero figcaption { padding: 0.72rem 0.9rem; color: rgba(255,255,255,0.72); font: 0.76rem/1.45 Arial, Helvetica, sans-serif; }
    .button-ghost-dark { color: var(--ink); border: 1px solid rgba(34,30,25,0.35); }
    .button-ghost-dark:hover { border-color: var(--accent); color: var(--accent); }

    .section-jump {
      position: sticky;
      z-index: 20;
      top: 79px;
      overflow-x: auto;
      border-top: 1px solid rgba(255,255,255,0.08);
      border-bottom: 1px solid rgba(255,255,255,0.08);
      background: #171714;
      scrollbar-width: thin;
    }

    .section-jump .container { display: flex; min-width: max-content; padding-top: 0; padding-bottom: 0; }
    .section-jump a { padding: 1rem 1.35rem; color: rgba(255,255,255,0.72); font: 700 0.76rem/1 Arial, Helvetica, sans-serif; letter-spacing: 0.08em; text-transform: uppercase; }
    .section-jump a:first-child { padding-left: 0; }
    .section-jump a:hover { color: white; }

    .dining-intro { padding: clamp(4rem, 8vw, 7rem) 0; }
    .dining-intro .history-deck { margin-bottom: 1.5rem; }
    .dining-intro p:last-child { max-width: 690px; color: var(--muted); }
    .dining-section { scroll-margin-top: 145px; padding: clamp(4rem, 7vw, 6rem) 0; border-top: 1px solid var(--line); }
    .dining-section:nth-of-type(even) { background: var(--bg-soft); }
    .dining-section-head { display: grid; grid-template-columns: 92px minmax(0, 1000px); gap: 1.2rem; align-items: baseline; margin-bottom: 2.2rem; }
    .dining-section-head h2 { margin: 0; font-size: clamp(2.5rem, 5vw, 4.8rem); line-height: 0.98; letter-spacing: -0.035em; }
    .dining-number { color: var(--accent); font: 700 0.8rem/1 Arial, Helvetica, sans-serif; letter-spacing: 0.14em; }
    .dining-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); border-top: 1px solid var(--line-strong); }
    .dining-card { display: flex; min-height: 295px; flex-direction: column; padding: 1.7rem 1.8rem 1.8rem 0; border-bottom: 1px solid var(--line-strong); }
    .dining-card:nth-child(even) { padding-right: 0; padding-left: 1.8rem; border-left: 1px solid var(--line-strong); }
    .dining-card-top { display: flex; gap: 1.2rem; justify-content: space-between; align-items: flex-start; }
    .dining-card h3 { margin: 0.35rem 0 0; font-size: clamp(1.65rem, 2.7vw, 2.25rem); line-height: 1.02; }
    .dining-card p { max-width: 620px; color: var(--muted); }
    .dining-card .text-link { margin-top: auto; align-self: flex-start; }
    .dining-type { color: var(--accent); font: 700 0.7rem/1.3 Arial, Helvetica, sans-serif; letter-spacing: 0.1em; text-transform: uppercase; }
    .dining-map { max-width: 150px; color: var(--muted); font: 0.76rem/1.4 Arial, Helvetica, sans-serif; text-align: right; text-decoration: underline; text-underline-offset: 0.2em; }
    .dining-map:hover { color: var(--accent); }
    .dining-note { background: #223329; color: white; }
    .dining-note h2 { margin: 0.5rem 0 1rem; font-size: clamp(2.6rem, 5vw, 4.5rem); }
    .dining-note p { color: rgba(255,255,255,0.76); }
    .dining-note a { color: white; text-decoration: underline; text-underline-offset: 0.2em; }
    .source-note { font: 0.85rem/1.65 Arial, Helvetica, sans-serif; }

    .visit-itinerary { padding: clamp(4rem, 8vw, 7rem) 0; background: #f0e9dd; }
    .visit-directory,
    .visit-nearby { padding: clamp(5rem, 9vw, 8rem) 0; }
    .visit-nearby { background: #20251f; color: white; }
    .visit-nearby .section-head p { color: rgba(255,255,255,0.65); }
    .visit-place-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; margin-top: 3rem; background: var(--line-strong); border: 1px solid var(--line-strong); }
    .visit-place { display: flex; min-height: 470px; flex-direction: column; background: var(--bg-soft); color: var(--ink); }
    .visit-place-featured { grid-column: span 2; display: grid; grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr); }
    .visit-place > figure { min-height: 300px; margin: 0; overflow: hidden; background: #b9aa96; }
    .visit-place > figure img { width: 100%; height: 100%; min-height: 300px; object-fit: cover; transition: transform 700ms ease; }
    .visit-place:hover > figure img { transform: scale(1.02); }
    .visit-place-body { display: flex; flex: 1; flex-direction: column; padding: clamp(1.5rem, 3vw, 2.3rem); }
    .visit-place h3 { margin: 0.45rem 0 0.8rem; font-size: clamp(2rem, 3.5vw, 3.2rem); line-height: 0.98; }
    .visit-address { color: var(--accent); font: 700 0.72rem/1.45 Arial, Helvetica, sans-serif; letter-spacing: 0.07em; text-transform: uppercase; }
    .visit-place p { color: var(--muted); }
    .visit-place .text-link { margin-top: auto; align-self: flex-start; }
    .visit-practical { background: #e8ddcc; }
    .visit-practical .aside-card { background: #223329; color: white; }
    .visit-practical .aside-card p { color: rgba(255,255,255,0.72); }

    .credits-table { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: var(--line-strong); border: 1px solid var(--line-strong); }
    .credits-table article { padding: 1.5rem; background: var(--bg-soft); }
    .credits-table h2 { margin-bottom: 0.5rem; font-size: 1.45rem; }
    .credits-table p { color: var(--muted); }
    .credits-table a { margin-right: 0.8rem; color: var(--accent); text-decoration: underline; text-underline-offset: 0.2em; }

    .credit-list {
      display: grid;
      gap: 0.55rem;
    }

    @media (max-width: 1024px) {
      .layout-2,
      .essay-grid,
      .visit-grid,
      .about-grid,
      .feature-grid,
      .visit-cards,
      .sources-grid,
      .motif-grid,
      .notes-grid,
      .gallery-grid,
      .editorial-strip,
      .pillars,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .history-hero-grid,
      .home-feature-grid,
      .dining-hero-grid,
      .visit-hero-grid,
      .visit-plan { grid-template-columns: 1fr; }

      .history-hero h1 { max-width: 12ch; }
      .dining-hero h1,
      .visit-hero h1 { max-width: 10ch; }
      .dining-hero figure img,
      .visit-hero figure img { min-height: 430px; }
    }

    @media (max-width: 900px) {
      .nav-toggle { display: block; }
      .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 1rem; background: rgba(248, 244, 237, 0.98); border-bottom: 1px solid var(--line); }
      .nav.nav-open { display: grid; }
    }

    @media (max-width: 760px) {
      .header-inner {
        padding: 0.8rem 0;
      }

      .nav-toggle { display: block; }

      .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        padding: 1rem;
        background: rgba(248, 244, 237, 0.98);
        border-bottom: 1px solid var(--line);
      }

      .nav.nav-open { display: grid; }

      .hero {
        height: auto;
        min-height: 88svh;
        max-height: none;
      }

      .hero-content { padding: 4.5rem 0 2.5rem; }
      .hero h1 { font-size: clamp(3rem, 13vw, 4rem); }
      .hero-copy { font-size: 1rem; line-height: 1.48; }
      .hero-edition { margin-bottom: 1.5rem; }
      .hero-actions { margin-top: 1.3rem; }
      .hero-scroll { display: none; }
      .hero-footnote { display: none; }

      .home-opening-grid,
      .portal-grid { grid-template-columns: 1fr; }

      .portal-heading { display: block; }
      .portal-heading p { margin-top: 1rem; }
      .portal-grid { grid-template-rows: none; }
      .portal-card-large { grid-row: auto; }
      .portal-card { min-height: 390px; }

      .facts {
        grid-template-columns: 1fr;
      }

      .timeline-item {
        grid-template-columns: 1fr;
      }

      .nav {
        gap: 0.8rem;
      }

      .page-hero-grid,
      .prose-grid,
      .story-grid,
      .editorial-footer { grid-template-columns: 1fr; }

      .footer-links { justify-content: flex-start; }
      .archive-pair,
      .credits-table { grid-template-columns: 1fr; }
      .archive-pair img { height: 360px; }
      .history-layout { grid-template-columns: 1fr; }
      .history-index { display: none; }
      .history-hero figure img { min-height: 340px; }
      .home-feature-image img { min-height: 360px; }
      .dining-hero figure img,
      .visit-hero figure img { min-height: 320px; }
      .section-jump { top: 65px; }
      .dining-section { scroll-margin-top: 125px; }
      .dining-section-head { grid-template-columns: 1fr; }
      .dining-list,
      .visit-place-grid,
      .visit-place-featured { grid-template-columns: 1fr; }
      .visit-place-featured { grid-column: auto; }
      .dining-card,
      .dining-card:nth-child(even) { min-height: 0; padding: 1.5rem 0; border-left: 0; }
      .dining-card-top { display: block; }
      .dining-map { display: inline-block; max-width: none; margin-top: 0.7rem; text-align: left; }

      .page-hero-image { min-height: 300px; }
      .page-hero-image img { min-height: 300px; }
      .aside-card { position: static; }
      .stay-card { grid-template-columns: 4rem 1fr; }
      .stay-link { grid-column: 2; }
    }

    .error-page {
      display: grid;
      min-height: 100vh;
      place-items: center;
      padding: 3rem 0;
    }

    .error-content {
      max-width: 760px;
      text-align: center;
    }

    .error-content h1 {
      margin: 0 0 1rem;
      font-size: clamp(2.6rem, 8vw, 5.5rem);
      line-height: 1;
    }

    .error-content p:not(.eyebrow) {
      color: var(--muted);
      font-family: Arial, Helvetica, sans-serif;
      font-size: 1.05rem;
    }
