*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --crimson: #7B1D2E;
    --crimson-dark: #4E1020;
    --crimson-light: #A52842;
    --gold: #C8973A;
    --gold-light: #E8C170;
    --gold-pale: #F5EDD8;
    --cream: #FAF6EF;
    --dark: #1A1410;
    --text: #2D2318;
    --muted: #6B5F52;
    --border: #E0D5C4;
    --white: #FFFFFF;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── NAVIGATION ─────────────────────────── */
  .site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--crimson-dark);
    border-bottom: 2px solid var(--gold);
  }

  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    height: 70px;
  }

  .site-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--gold-light);
    letter-spacing: 0.02em;
    cursor: pointer;
    text-decoration: none;
  }

  .site-logo span {
    color: var(--white);
    font-style: italic;
  }

  nav ul {
    list-style: none;
    display: flex;
    gap: 0;
  }

  nav ul li a, nav ul li button {
    display: block;
    padding: 0 1.2rem;
    height: 70px;
    line-height: 70px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
  }

  nav ul li button:hover, nav ul li button.active {
    color: var(--gold-light);
    background: rgba(200,151,58,0.12);
  }

  .header-cta {
    background: var(--gold) !important;
    color: var(--crimson-dark) !important;
    padding: 0 1.4rem !important;
    margin-left: 0.5rem;
    font-weight: 600 !important;
    transition: background 0.2s !important;
  }

  .header-cta:hover { background: var(--gold-light) !important; }

  /* ── PAGE SYSTEM ────────────────────────── */
  .page { display: none; padding-top: 70px; }
  .page.active { display: block; }

  /* ── SECTION SCAFFOLDING ─────────────────── */
  .container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
  .section { padding: 5rem 0; }
  .section-alt { background: var(--white); }
  .section-dark { background: var(--crimson-dark); color: var(--white); }
  .section-gold { background: var(--gold-pale); }

  .section-label {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    color: var(--crimson-dark);
    margin-bottom: 1rem;
  }

  .section-dark .section-title { color: var(--gold-light); }
  .section-dark .section-label { color: var(--gold-light); opacity: 0.7; }

  .section-intro {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 3rem;
  }

  .section-dark .section-intro { color: rgba(255,255,255,0.7); }

  .divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 1.5rem 0 2rem;
  }

  /* ── HERO ────────────────────────────────── */
  .hero {
    min-height: calc(100vh - 70px);
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--crimson-dark);
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to bottom, rgba(30,10,15,0.3) 0%, rgba(30,10,15,0.7) 60%, rgba(30,10,15,0.92) 100%),
      url('https://upload.wikimedia.org/wikipedia/commons/thumb/8/8c/Stratford_upon_Avon_-_River_Avon_with_Holy_Trinity_Church.jpg/1280px-Stratford_upon_Avon_-_River_Avon_with_Holy_Trinity_Church.jpg') center/cover no-repeat;
  }

  .hero-bg-fallback {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--crimson-dark) 0%, #2C0D18 40%, #1A0A0F 100%);
  }

  /* Decorative elements */
  .hero-decor {
    position: absolute;
    top: 0; right: 0;
    width: 40%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='800'%3E%3Cpath d='M200 50 Q250 150 200 250 Q150 350 200 450 Q250 550 200 650' fill='none' stroke='rgba(200,151,58,0.08)' stroke-width='80'/%3E%3C/svg%3E") center/cover no-repeat;
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 3rem 5rem;
    max-width: 800px;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 500;
    margin-bottom: 1.5rem;
  }

  .hero-eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 300;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 1rem;
  }

  .hero-title em {
    font-style: italic;
    color: var(--gold-light);
    font-weight: 300;
  }

  .hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    max-width: 500px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.25s;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--crimson-dark);
  }

  .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

  .btn-outline {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.5);
    color: var(--white);
  }

  .btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

  .hero-stats {
    position: absolute;
    bottom: 0; right: 0;
    display: flex;
    border-top: 1px solid rgba(200,151,58,0.3);
    border-left: 1px solid rgba(200,151,58,0.3);
  }

  .stat-item {
    padding: 1.5rem 2rem;
    border-right: 1px solid rgba(200,151,58,0.2);
    text-align: center;
  }

  .stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--gold-light);
    display: block;
    line-height: 1;
  }

  .stat-label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 0.3rem;
    display: block;
  }

  /* ── CARD GRID ───────────────────────────── */
  .card-grid {
    display: grid;
    gap: 1.5rem;
  }

  .card-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(4, 1fr); }
  .card-grid-2 { grid-template-columns: repeat(2, 1fr); }

  @media (max-width: 900px) {
    .card-grid-3, .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 600px) {
    .card-grid-3, .card-grid-4, .card-grid-2 { grid-template-columns: 1fr; }
  }

  /* ── HIGHLIGHT CARDS ─────────────────────── */
  .highlight-card {
    position: relative;
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .highlight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(78,16,32,0.15);
  }

  .card-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    background: var(--border);
  }

  .card-img-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
  }

  .card-body { padding: 1.5rem; }

  .card-tag {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
  }

  .card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--crimson-dark);
    margin-bottom: 0.5rem;
    line-height: 1.25;
  }

  .card-text {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
  }

  .card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--muted);
  }

  .card-badge {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .badge-free { background: #E8F5E9; color: #2E7D32; }
  .badge-paid { background: #FFF3E0; color: #E65100; }
  .badge-rsc { background: #EDE7F6; color: #4527A0; }

  /* ── FEATURE STRIP ───────────────────────── */
  .feature-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
  }

  .feature-item {
    padding: 2.5rem 2rem;
    border-right: 1px solid var(--border);
    text-align: center;
  }

  .feature-item:last-child { border-right: none; }

  .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
  }

  .feature-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--crimson-dark);
    margin-bottom: 0.4rem;
  }

  .feature-text {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.6;
  }

  /* ── QUOTE BLOCK ─────────────────────────── */
  .quote-block {
    background: var(--crimson-dark);
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .quote-block::before {
    content: '"';
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Cormorant Garamond', serif;
    font-size: 20rem;
    color: rgba(200,151,58,0.06);
    line-height: 1;
  }

  .quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-style: italic;
    font-weight: 300;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.4;
    position: relative;
  }

  .quote-attr {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
  }

  /* ── ATTRACTION DETAIL ───────────────────── */
  .attraction-hero {
    background: var(--crimson-dark);
    padding: 4rem 0 3rem;
    border-bottom: 3px solid var(--gold);
  }

  .attraction-listing {
    display: grid;
    gap: 0;
  }

  .attraction-item {
    display: grid;
    grid-template-columns: 380px 1fr;
    min-height: 280px;
    border-bottom: 1px solid var(--border);
    background: var(--white);
    overflow: hidden;
    transition: box-shadow 0.25s;
  }

  .attraction-item:hover { box-shadow: 0 5px 30px rgba(78,16,32,0.1); }
  .attraction-item:nth-child(even) { background: var(--cream); }
  .attraction-item:nth-child(even) { grid-template-columns: 1fr 380px; }
  .attraction-item:nth-child(even) .attraction-img-wrap { order: 2; }
  .attraction-item:nth-child(even) .attraction-text { order: 1; }

  .attraction-img-wrap {
    overflow: hidden;
    position: relative;
    background: var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
  }

  .attraction-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
  }

  .attraction-item:hover .attraction-img { transform: scale(1.04); }

  .attraction-text {
    padding: 2.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .attraction-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--crimson-dark);
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }

  .attraction-desc {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.25rem;
  }

  .info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 0.82rem;
    color: var(--text);
  }

  .info-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
  }

  .info-label {
    font-weight: 600;
    color: var(--crimson);
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  /* ── EVENTS ──────────────────────────────── */
  .event-card {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 4px solid var(--crimson);
    margin-bottom: 1rem;
    transition: box-shadow 0.25s, border-left-color 0.25s;
  }

  .event-card:hover {
    box-shadow: 0 6px 24px rgba(78,16,32,0.1);
    border-left-color: var(--gold);
  }

  .event-date {
    text-align: center;
    background: var(--crimson-dark);
    color: var(--white);
    padding: 0.75rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .event-month {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    font-weight: 600;
  }

  .event-day {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1;
    margin: 0.2rem 0;
  }

  .event-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--crimson-dark);
    margin-bottom: 0.3rem;
  }

  .event-venue {
    font-size: 0.82rem;
    color: var(--muted);
    margin-bottom: 0.5rem;
  }

  .event-desc {
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.7;
  }

  /* ── EAT & DRINK ─────────────────────────── */
  .restaurant-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
  }

  .restaurant-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(78,16,32,0.12);
  }

  .restaurant-header {
    background: var(--crimson-dark);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .restaurant-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--gold-light);
  }

  .restaurant-type {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
    margin-top: 0.2rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .price-tag {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--gold);
    font-weight: 600;
  }

  .restaurant-body { padding: 1.25rem 1.5rem; }

  .stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 0.5rem; }

  /* ── PLAN YOUR VISIT ─────────────────────── */
  .info-panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 4px solid var(--crimson);
    padding: 2rem;
  }

  .info-panel-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--crimson-dark);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .info-panel ul {
    list-style: none;
  }

  .info-panel ul li {
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text);
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
  }

  .info-panel ul li:last-child { border-bottom: none; }
  .info-panel ul li::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

  .transport-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }

  /* ── MAP CALLOUT ─────────────────────────── */
  .map-callout {
    background: var(--gold-pale);
    border: 2px solid var(--gold);
    padding: 2rem;
    text-align: center;
  }

  .map-callout h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--crimson-dark);
    margin-bottom: 0.75rem;
  }

  /* ── NEWSLETTER ──────────────────────────── */
  .newsletter {
    background: var(--crimson-dark);
    padding: 4rem 2rem;
    text-align: center;
  }

  .newsletter input[type="email"] {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    font-family: 'Jost', sans-serif;
    width: 320px;
    max-width: 100%;
    outline: none;
  }

  .newsletter input::placeholder { color: rgba(255,255,255,0.4); }

  /* ── FOOTER ──────────────────────────────── */
  footer {
    background: var(--dark);
    color: rgba(255,255,255,0.6);
    padding: 3rem 2rem 1.5rem;
  }

  .footer-inner {
    max-width: 1160px;
    margin: 0 auto;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
  }

  .footer-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--gold-light);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
  }

  .footer-desc { font-size: 0.85rem; line-height: 1.7; max-width: 280px; }

  .footer-col h4 {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
  }

  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.5rem; }
  .footer-col ul li a, .footer-col ul li button {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.88rem;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    padding: 0;
    transition: color 0.2s;
  }
  .footer-col ul li a:hover, .footer-col ul li button:hover { color: var(--gold-light); }

  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
  }

  /* ── PAGE HERO (inner pages) ─────────────── */
  .page-hero {
    background: var(--crimson-dark);
    padding: 5rem 0 4rem;
    border-bottom: 3px solid var(--gold);
    position: relative;
    overflow: hidden;
  }

  .page-hero::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at right center, rgba(200,151,58,0.08) 0%, transparent 70%);
    pointer-events: none;
  }

  .page-hero .breadcrumb {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .page-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    line-height: 1.75;
  }

  /* ── TABS ────────────────────────────────── */
  .tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid var(--border);
    margin-bottom: 2.5rem;
  }

  .tab-btn {
    padding: 0.9rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: -2px;
    transition: all 0.2s;
  }

  .tab-btn.active {
    color: var(--crimson);
    border-bottom-color: var(--crimson);
  }

  .tab-content { display: none; }
  .tab-content.active { display: block; }

  /* ── PRACTICAL INFO TABLE ─────────────────── */
  .info-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
  }

  .info-table th {
    background: var(--crimson-dark);
    color: var(--gold-light);
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 500;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .info-table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
  }

  .info-table tr:nth-child(even) td { background: var(--cream); }

  /* ── ANIMATIONS ──────────────────────────── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .page.active .hero-content { animation: fadeUp 0.7s ease both; }
  .page.active .hero-stats { animation: fadeUp 0.9s 0.2s ease both; }

  /* ── SCROLL BANNER ────────────────────────── */
  .scroll-band {
    background: var(--gold);
    overflow: hidden;
    padding: 0.8rem 0;
    white-space: nowrap;
  }

  .scroll-band-inner {
    display: inline-block;
    animation: scrollBand 25s linear infinite;
  }

  .scroll-band-inner span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--crimson-dark);
    margin: 0 2.5rem;
  }

  @keyframes scrollBand {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ── HERO PHOTO ──────────────────────────── */
  .hero-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: flex-start;
    width: 100%;
    position: relative;
    z-index: 2;
  }

  .hero-photo-wrap {
    display: flex;
    align-items: flex-start;
    padding: 7rem 3rem 0 0;
  }

  .hero-photo-frame {
    position: relative;
  }

  .hero-photo {
    width: 400px;
    max-width: 36vw;
    display: block;
    border: 3px solid var(--gold);
    box-shadow: -10px 10px 40px rgba(0,0,0,0.55);
    object-fit: cover;
    object-position: center top;
  }

  .hero-photo-caption {
    position: absolute;
    bottom: -2px;
    left: 0; right: 0;
    background: rgba(30,10,15,0.82);
    border-top: 2px solid var(--gold);
    color: rgba(255,255,255,0.65);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.45rem 0.75rem;
    font-family: 'Jost', sans-serif;
    text-align: center;
  }

  @media (max-width: 960px) {
    .hero-inner { display: block; }
    .hero-photo-wrap { display: none; }
  }

  /* ── MAP ─────────────────────────────────── */
  .map-section {
    background: var(--white);
    padding: 4rem 0 0;
    border-top: 3px solid var(--gold);
  }

  #town-map {
    width: 100%;
    height: 500px;
    border: 1px solid var(--border);
    z-index: 1;
  }

  .map-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    padding: 1.25rem 0;
    font-size: 0.82rem;
    color: var(--muted);
  }

  .legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid rgba(0,0,0,0.15);
  }

  /* Custom Leaflet popup styling */
  .leaflet-popup-content-wrapper {
    border-radius: 0 !important;
    border-top: 3px solid var(--crimson) !important;
    font-family: 'Jost', sans-serif !important;
    box-shadow: 0 8px 30px rgba(78,16,32,0.2) !important;
  }

  .leaflet-popup-content {
    margin: 10px 14px !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
  }

  .map-popup-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--crimson-dark);
    margin-bottom: 3px;
  }

  .map-popup-type {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 4px;
  }

  .map-popup-detail {
    color: var(--muted);
    font-size: 0.82rem;
  }

  /* ── PARKING CARDS ───────────────────────── */
  .parking-card {
    border: 1px solid var(--border);
    background: var(--white);
    overflow: hidden;
    transition: box-shadow 0.25s;
  }

  .parking-card:hover { box-shadow: 0 8px 28px rgba(78,16,32,0.1); }

  .parking-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: var(--crimson-dark);
    gap: 0.75rem;
  }

  .parking-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--gold-light);
  }

  .parking-spaces {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.55);
    margin-top: 0.1rem;
  }

  .parking-badge {
    background: var(--gold);
    color: var(--crimson-dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.3rem 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .parking-badge.free { background: #4CAF50; color: #fff; }
  .parking-badge.limited { background: #FF9800; color: #fff; }

  .parking-body { padding: 1rem 1.25rem; }

  .parking-tariff {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.25rem 1rem;
    font-size: 0.85rem;
    margin: 0.75rem 0;
    padding: 0.75rem;
    background: var(--cream);
    border: 1px solid var(--border);
  }

  .tariff-label { color: var(--muted); }
  .tariff-price { font-weight: 600; color: var(--crimson-dark); text-align: right; }

  .parking-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    font-size: 0.8rem;
    color: var(--muted);
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border);
  }

  /* ── TRAIN TIMELINE ──────────────────────── */
  .train-timeline {
    position: relative;
    padding-left: 2rem;
  }

  .train-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0; bottom: 0;
    width: 2px;
    background: var(--gold);
  }

  .train-stop {
    position: relative;
    padding-bottom: 1.75rem;
  }

  .train-stop:last-child { padding-bottom: 0; }

  .train-stop::before {
    content: '';
    position: absolute;
    left: -1.625rem;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gold);
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--gold);
  }

  .train-stop.terminus::before {
    background: var(--crimson-dark);
    box-shadow: 0 0 0 2px var(--crimson-dark);
    width: 16px;
    height: 16px;
    left: -1.75rem;
    top: 3px;
  }

  .train-stop-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.2;
  }

  .train-stop.terminus .train-stop-name { color: var(--crimson-dark); font-size: 1.05rem; }

  .train-stop-detail {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 0.2rem;
  }

  .train-duration {
    display: inline-block;
    background: var(--gold-pale);
    border: 1px solid var(--gold);
    color: var(--crimson-dark);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.15rem 0.55rem;
    letter-spacing: 0.08em;
    margin-top: 0.3rem;
  }

  /* ── P&R STRIP ────────────────────────────── */
  .pr-strip {
    background: var(--crimson-dark);
    border-top: 3px solid var(--gold);
    padding: 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem 0;
  }

  .pr-icon {
    font-size: 3rem;
    line-height: 1;
  }

  .pr-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 0.3rem;
  }

  .pr-desc { font-size: 0.88rem; color: rgba(255,255,255,0.7); }

  /* ── BACK TO TOP ──────────────────────────── */
  .back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--crimson);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 900;
  }

  .back-to-top.visible { opacity: 1; pointer-events: auto; }

  /* ── BLOG / ARTICLES ─────────────────────── */
  .blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--crimson);
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
  }

  .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(78,16,32,0.13);
  }

  .blog-card-icon {
    background: var(--gold-pale);
    padding: 2rem;
    font-size: 2.8rem;
    text-align: center;
    border-bottom: 1px solid var(--border);
  }

  .blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }

  .blog-card-kw {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .blog-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--crimson-dark);
    line-height: 1.3;
    margin-bottom: 0.6rem;
  }

  .blog-card-desc {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.25rem;
  }

  .blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.78rem;
    color: var(--muted);
  }

  .read-more-btn {
    background: none;
    border: 1.5px solid var(--crimson);
    color: var(--crimson);
    padding: 0.4rem 1rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
  }

  .read-more-btn:hover { background: var(--crimson); color: var(--white); }

  /* ── ARTICLE PAGE ────────────────────────── */
  .article-hero {
    background: var(--crimson-dark);
    padding: 4.5rem 0 3.5rem;
    border-bottom: 3px solid var(--gold);
    position: relative;
    overflow: hidden;
  }

  .article-hero::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 45%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(200,151,58,0.09) 0%, transparent 70%);
    pointer-events: none;
  }

  .article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
  }

  .article-tag {
    background: var(--gold);
    color: var(--crimson-dark);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.3rem 0.75rem;
  }

  .article-date {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.08em;
  }

  .article-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 600;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .article-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.68);
    max-width: 640px;
    line-height: 1.75;
  }

  .article-body {
    max-width: 760px;
    margin: 0 auto;
    padding: 3.5rem 2rem 4rem;
  }

  .article-body h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    font-weight: 600;
    color: var(--crimson-dark);
    margin: 2.5rem 0 0.75rem;
    line-height: 1.2;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold-pale);
  }

  .article-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--crimson);
    margin: 1.75rem 0 0.6rem;
    line-height: 1.25;
  }

  .article-body p {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 1.2rem;
  }

  .article-body ul, .article-body ol {
    margin: 0.75rem 0 1.25rem 1.5rem;
  }

  .article-body li {
    font-size: 0.97rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 0.4rem;
  }

  .article-body strong { color: var(--crimson-dark); }

  .article-tip {
    background: var(--gold-pale);
    border-left: 4px solid var(--gold);
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 2px 2px 0;
  }

  .article-tip strong {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--crimson-dark);
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .article-tip p { margin: 0; font-size: 0.92rem; color: var(--text); }

  .article-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
    margin: 1.25rem 0 1.75rem;
  }

  .article-table th {
    background: var(--crimson-dark);
    color: var(--gold-light);
    padding: 0.65rem 1rem;
    text-align: left;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
  }

  .article-table td {
    padding: 0.65rem 1rem;
    border-bottom: 1px solid var(--border);
    vertical-align: top;
  }

  .article-table tr:nth-child(even) td { background: var(--cream); }

  .bmac-box {
    background: var(--crimson-dark);
    border: 2px solid var(--gold);
    padding: 2rem;
    text-align: center;
    margin: 3rem 0 1rem;
  }

  .bmac-box h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--gold-light);
    margin-bottom: 0.5rem;
  }

  .bmac-box p { color: rgba(255,255,255,0.65); font-size: 0.92rem; margin-bottom: 1.25rem; }

  .bmac-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--crimson-dark);
    padding: 0.85rem 2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
  }

  .bmac-btn:hover { background: var(--gold-light); }

  .article-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border);
    margin-top: 2rem;
  }

  .article-nav button {
    background: none;
    border: 1.5px solid var(--border);
    padding: 0.7rem 1.2rem;
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    cursor: pointer;
    transition: all 0.2s;
  }

  .article-nav button:hover { border-color: var(--crimson); color: var(--crimson); }

  /* ── CORNERSTONE SECTIONS ────────────────── */
  .cornerstone-section {
    padding: 4rem 0;
    border-bottom: 1px solid var(--border);
  }

  .cornerstone-section:last-child { border-bottom: none; }

  .cornerstone-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 600;
    color: var(--crimson-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }

  .cornerstone-section h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--crimson);
    margin: 1.75rem 0 0.5rem;
  }

  .cornerstone-section p {
    font-size: 0.98rem;
    color: var(--text);
    line-height: 1.85;
    margin-bottom: 1rem;
    max-width: 780px;
  }

  .cornerstone-inner {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
  }

  .cornerstone-sidebar {
    position: sticky;
    top: 90px;
  }

  @media (max-width: 900px) {
    .cornerstone-inner { grid-template-columns: 1fr; }
    .cornerstone-sidebar { position: static; }
  }

  /* ── RESPONSIVE ──────────────────────────── */
  @media (max-width: 900px) {
    .feature-strip { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats { display: none; }
    .attraction-item, .attraction-item:nth-child(even) { grid-template-columns: 1fr; }
    .attraction-item:nth-child(even) .attraction-img-wrap,
    .attraction-item:nth-child(even) .attraction-text { order: unset; }
    .transport-grid { grid-template-columns: 1fr; }
    nav ul li button { padding: 0 0.7rem; font-size: 0.72rem; }
    .header-top { padding: 0 1.5rem; }
    .hero-content { padding: 2rem 1.5rem 3rem; }
    .container { padding: 0 1.25rem; }
    .section { padding: 3.5rem 0; }
  }

  @media (max-width: 600px) {
    .feature-strip { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    nav ul { display: none; }
  }
  /* ── ACCESSIBILITY: skip link ─────────────── */
  .skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 9999;
    background: var(--gold);
    color: var(--crimson-dark);
    padding: 0.75rem 1.5rem;
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
  }
  .skip-link:focus { left: 0; }

  /* Visible keyboard focus for all interactive elements */
  a:focus-visible,
  button:focus-visible,
  input:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
  }

  /* Respect reduced-motion preferences */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
  }

  /* ── PRINT ────────────────────────────────── */
  @media print {
    .site-header, footer, .back-to-top, .skip-link,
    .scroll-band, .newsletter, .bmac-box { display: none !important; }
    body { background: #fff; color: #000; font-size: 11pt; }
    .page-hero, .article-hero { background: #fff !important; border-bottom: 2px solid #000; }
    .page-hero h1, .article-title { color: #000 !important; }
    .article-body { max-width: 100%; padding: 0; }
    a { text-decoration: underline; }
  }
