    /* ── TOKENS ───────────────────────────────────────── */
    :root {
      --navy:       #112233;
      --near-black: #0d1a26;
      --teal:       #0D5A74;
      --deep-teal:  #0A3D52;
      --burgundy:   #7B1E2B;
      --cream:      #F3EFE6;
      --gold:       #C9A96E;
      --font-serif: 'Cormorant Garamond', Georgia, serif;
      --font-sans:  'Instrument Sans', sans-serif;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font-sans); background: var(--navy); color: var(--cream); overflow-x: hidden; }
    img  { display: block; max-width: 100%; }
    a    { text-decoration: none; color: inherit; }

    /* ── UTILITY ──────────────────────────────────────── */
    .gold      { color: var(--gold); }
    .gold-rule { display: block; width: 72px; height: 3px; background: var(--gold); margin: 20px 0 28px; }
    .container { max-width: 1280px; margin: 0 auto; padding: 0 56px; }

    /* ── BUTTONS ──────────────────────────────────────── */
    .btn {
      display: inline-block;
      font-family: var(--font-sans);
      font-weight: 700;
      font-size: 0.82rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 15px 30px;
      transition: all 0.25s ease;
      cursor: pointer;
    }
    .btn-gold     { background: var(--gold);     color: var(--navy); }
    .btn-gold:hover { background: #d9b97e; }
    .btn-outline  { background: transparent; border: 2px solid var(--cream); color: var(--cream); }
    .btn-outline:hover { background: var(--cream); color: var(--navy); }
    .btn-burgundy { background: var(--burgundy); color: var(--cream); }
    .btn-burgundy:hover { background: #921e30; }
    .btn-teal     { background: var(--teal); color: var(--cream); }
    .btn-teal:hover { background: var(--deep-teal); }
    .btn-cream    { background: var(--cream); color: var(--navy); }
    .btn-cream:hover { background: #e8e4db; }

    /* ── TOP BAR ──────────────────────────────────────── */
    .top-bar {
      background: var(--near-black);
      border-bottom: 1px solid rgba(201,169,110,0.25);
      padding: 12px 56px;
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      column-gap: 24px;
      font-size: 0.78rem;
      color: rgba(243,239,230,0.75);
      letter-spacing: 0.05em;
    }
    .top-bar a {
      color: var(--gold);
      font-weight: 600;
      transition: color 0.2s;
    }
    .top-bar a:hover { color: var(--cream); }
    .top-bar > span:first-child { justify-self: start; }
    .top-bar-logo { justify-self: center; display: block; line-height: 0; }
    .top-bar-logo img { height: 58px; width: auto; display: block; }
    .top-bar-right { display: flex; gap: 28px; align-items: center; justify-self: end; }

    /* ── NAV ──────────────────────────────────────────── */
    .site-nav {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(17,34,51,0.97);
      border-bottom: 2px solid var(--gold);
      backdrop-filter: blur(10px);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 56px;
      height: 76px;
    }
    .nav-logo img {
      height: 54px;
      width: auto;
      mix-blend-mode: screen;
      display: block;
    }
    .nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
    .nav-links a {
      font-family: var(--font-sans);
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--cream);
      opacity: 0.85;
      transition: opacity 0.2s;
      position: relative;
      padding-bottom: 4px;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 2px;
      background: var(--gold);
      transition: width 0.25s ease;
    }
    .nav-links a:hover { opacity: 1; }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta { margin-left: 12px; }
    .nav-cta .btn { padding: 10px 22px; font-size: 0.75rem; }
    .nav-toggle { display: none; background: none; border: none; color: var(--cream); font-size: 1.5rem; cursor: pointer; line-height: 1; padding: 6px; }
    /* Wrapper is transparent to the desktop flex layout; becomes the mobile drop panel below */
    .nav-menu { display: contents; }

    /* ── HERO ─────────────────────────────────────────── */
    .hero {
      position: relative;
      width: 100%;
      min-height: 100vh;   /* fills the viewport on tall screens, but GROWS if content is taller (no clip) */
      overflow: hidden;
    }
    .hero video {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .hero-poster-img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      transition: opacity 0.6s ease;
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        160deg,
        rgba(13,26,38,0.45) 0%,
        rgba(13,26,38,0.60) 55%,
        rgba(13,26,38,0.88) 100%
      );
    }
    .hero-content {
      position: relative; z-index: 2;   /* in normal flow so the hero grows to fit it — never clips */
      min-height: 100vh;                /* on tall screens fills the viewport so content bottom-anchors as designed */
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 40px 80px 380px 230px;   /* 380px bottom gap = approved look; 40px top breathes on short screens */
    }
    .hero-h1 {
      font-family: var(--font-serif);
      font-size: clamp(2.8rem, 5.5vw, 5.2rem);
      font-weight: 700;
      color: var(--cream);
      line-height: 1.08;
      max-width: 1180px;
    }
    .hero-body {
      font-size: clamp(1rem, 1.4vw, 1.15rem);
      line-height: 1.75;
      color: rgba(243,239,230,0.88);
      max-width: 880px;
      margin-top: 20px;
    }
    .hero-strapline {
      display: inline-block;
      align-self: flex-start;
      width: fit-content;
      background: var(--burgundy);
      font-family: var(--font-sans);
      font-size: clamp(0.82rem, 1.1vw, 0.98rem);
      font-weight: 700;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      color: var(--cream);
      padding: 13px 50px 13px 26px;
      margin-top: 26px;
    }
    .hero-strapline-2 { background: var(--teal); margin-top: 8px; margin-left: 44px; }
    .hero-ctas { display: flex; gap: 18px; margin-top: 28px; margin-bottom: 24px; flex-wrap: wrap; align-items: center; }
    .hero-support {
      font-size: 0.82rem;
      color: rgba(243,239,230,0.6);
      letter-spacing: 0.04em;
      margin-top: 20px;
      font-style: italic;
    }
    .hero-gold-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--gold); }

    /* ── INTRO ────────────────────────────────────────── */
    .section-intro { background: var(--navy); padding: 110px 0; }
    .intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .intro-copy h2 {
      font-family: var(--font-serif);
      font-size: clamp(2.2rem, 3.8vw, 3.6rem);
      font-weight: 700;
      line-height: 1.1;
      color: var(--cream);
    }
    .intro-copy h2 span { color: var(--gold); }
    .intro-copy p { font-size: 1.02rem; line-height: 1.82; color: rgba(243,239,230,0.82); margin-bottom: 18px; }
    .intro-support { font-size: 0.88rem; color: var(--gold); letter-spacing: 0.05em; font-style: italic; margin-top: 12px; }
    .intro-ctas { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }
    .intro-images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .intro-images img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border: 2px solid var(--gold); }
    .intro-images .intro-img-wide { grid-column: 1 / -1; aspect-ratio: 16 / 9; }

    /* ── FOOD ─────────────────────────────────────────── */
    .section-food {
      position: relative; overflow: hidden; min-height: 580px;
      background-image: linear-gradient(to right, rgba(13,26,38,0.86) 0%, rgba(13,26,38,0.72) 48%, rgba(13,26,38,0.1) 100%), url('/assets/images/the-whitelion-pub-stockport-chicken-salad.jpg');
      background-size: cover; background-position: center; background-attachment: fixed;
    }
    .food-content { position: relative; z-index: 2; padding: 110px 80px 110px 130px; max-width: 690px; }
    .food-content h2 {
      font-family: var(--font-serif);
      font-size: clamp(2.2rem, 3.8vw, 3.6rem);
      font-weight: 700; line-height: 1.1; color: var(--cream);
    }
    .food-content h2 span { color: var(--gold); }
    .food-content p { font-size: 1.02rem; line-height: 1.82; color: rgba(243,239,230,0.82); margin-bottom: 18px; }
    .food-standout { font-weight: 700 !important; color: var(--gold) !important; font-size: 1rem !important; }
    .section-food .gold-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--gold); }

    /* ── GALLERY ──────────────────────────────────────── */
    .section-gallery { background: #0c1824; padding: 56px 0; }
    .gallery-label {
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--gold); padding: 0 56px; margin-bottom: 22px;
    }
    .gallery-track {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px; padding: 0 56px;
    }
    .gallery-card { position: relative; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border-color 0.3s; }
    .gallery-card:hover { border-color: var(--gold); }
    .gallery-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform 0.5s ease; }
    .gallery-card:hover img { transform: scale(1.06); }
    .gallery-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,26,38,0.78) 0%, transparent 55%); }
    .gallery-card-label { position: absolute; bottom: 16px; left: 20px; font-family: var(--font-serif); font-size: 1.85rem; font-weight: 700; letter-spacing: 0.01em; line-height: 1.1; color: var(--cream); text-shadow: 0 2px 14px rgba(13,26,38,0.55); }
    .gallery-card-arrow { position: absolute; bottom: 20px; right: 18px; color: var(--gold); font-size: 1.2rem; }

    /* ── SPACES ───────────────────────────────────────── */
    .section-spaces { background: var(--navy); padding: 110px 0; }
    .spaces-header { padding: 0 56px 0 130px; margin-bottom: 64px; }
    .spaces-header h2 {
      font-family: var(--font-serif);
      font-size: clamp(2.2rem, 3.8vw, 3.6rem);
      font-weight: 700; line-height: 1.1; color: var(--cream);
    }
    .spaces-header h2 span { color: var(--gold); }
    .spaces-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px; }
    .space-card { position: relative; overflow: hidden; }
    .space-card img { width: 100%; height: 500px; object-fit: cover; transition: transform 0.6s ease; }
    .space-card:hover img { transform: scale(1.04); }
    .space-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,26,38,0.94) 0%, rgba(13,26,38,0.25) 60%); }
    .space-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 40px; }
    .space-tag {
      display: inline-block;
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: 0.18em; text-transform: uppercase;
      padding: 6px 14px; margin-bottom: 14px;
    }
    .tag-teal { background: var(--teal); color: var(--cream); }
    .tag-burg { background: var(--burgundy); color: var(--cream); }
    .tag-green { background: #1f6b3b; color: var(--cream); }
    .tag-gold { background: var(--gold); color: var(--near-black); }
    .space-card-content h3 { font-family: var(--font-serif); font-size: 2rem; font-weight: 700; color: var(--cream); margin-bottom: 14px; }
    .space-card-content p { font-size: 0.96rem; line-height: 1.75; color: rgba(243,239,230,0.82); max-width: 500px; }
    .space-highlights {
      display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px;
    }
    .space-highlight-pill {
      background: rgba(201,169,110,0.15);
      border: 1px solid rgba(201,169,110,0.4);
      color: var(--gold);
      font-size: 0.74rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 5px 14px;
    }
    .spaces-intro { max-width: 1000px; margin-top: 10px; }
    .spaces-intro p { font-size: 1.02rem; line-height: 1.82; color: rgba(243,239,230,0.82); margin-bottom: 14px; }
    .spaces-two { grid-template-columns: 1fr 1fr; margin-bottom: 4px; }
    /* Lion's Den — heavy downstairs feature row */
    .lions-den { display: grid; grid-template-columns: 1fr 1.05fr; align-items: stretch; min-height: 500px; }
    .lions-den-media { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 4px; }
    .lions-den-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .lions-den-media img:first-child { grid-row: 1 / -1; }
    .lions-den-copy { background: var(--burgundy); padding: 56px 52px; display: flex; flex-direction: column; justify-content: center; }
    .lions-den-copy .space-tag { align-self: flex-start; }
    .lions-den-copy h3 { font-family: var(--font-serif); font-size: clamp(2rem, 3vw, 2.8rem); font-weight: 700; color: var(--cream); margin: 8px 0 16px; line-height: 1.1; }
    .lions-den-copy p { font-size: 1rem; line-height: 1.8; color: rgba(243,239,230,0.9); margin-bottom: 14px; }
    .lions-den-copy .space-highlights { margin-top: 10px; }

    /* ── PULL QUOTE (burgundy standout) ───────────────── */
    .pull-quote { position: relative; overflow: hidden; background: linear-gradient(135deg, #7B1E2B 0%, #561019 100%); padding: 100px 0; }
    .pull-quote .container { position: relative; text-align: center; max-width: 1000px; }
    .pull-quote-mark { font-family: var(--font-serif); font-size: 8rem; line-height: 0.5; color: rgba(201,169,110,0.4); display: block; }
    .pull-quote blockquote { margin: 0; }
    .pull-quote-lead { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 700; line-height: 1.18; color: var(--cream); }
    .pull-quote-sub { font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.7; color: rgba(243,239,230,0.9); max-width: 780px; margin: 24px auto 0; }

    /* ── WHAT'S ON ────────────────────────────────────── */
    .section-whatson { position: relative; overflow: hidden; min-height: 560px; }
    .section-whatson .bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
    .whatson-overlay { position: absolute; inset: 0; background: rgba(10,61,82,0.78); }
    .whatson-content { position: relative; z-index: 2; padding: 110px 80px 110px 130px; }
    .whatson-content h2 {
      font-family: var(--font-serif);
      font-size: clamp(2.2rem, 3.8vw, 3.6rem);
      font-weight: 700; line-height: 1.1;
      color: var(--cream); max-width: 680px;
    }
    .whatson-content h2 span { color: var(--gold); }
    .whatson-content p { font-size: 1.02rem; line-height: 1.82; color: rgba(243,239,230,0.88); max-width: 640px; margin-bottom: 18px; }

    /* Weekly rhythm pills */
    .week-rhythm {
      display: flex; flex-wrap: wrap; gap: 12px;
      margin: 28px 0 36px;
    }
    .week-pill {
      background: rgba(13,26,38,0.55);
      border: 1px solid rgba(201,169,110,0.35);
      padding: 10px 20px;
      font-size: 0.82rem; font-weight: 600;
      letter-spacing: 0.06em; color: var(--cream);
    }
    .week-pill strong { color: var(--gold); display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 3px; }

    /* Foody Friday */
    .foody-friday {
      display: inline-flex;
      align-items: center;
      gap: 16px;
      background: var(--burgundy);
      padding: 18px 28px;
      margin: 28px 0 40px;
      max-width: 580px;
    }
    .foody-friday-icon { font-size: 1.8rem; }
    .foody-friday strong {
      display: block;
      font-family: var(--font-serif);
      font-size: 1.4rem; font-weight: 700;
      color: var(--cream); margin-bottom: 4px;
    }
    .foody-friday span {
      font-size: 0.82rem; font-weight: 500;
      color: rgba(243,239,230,0.8); line-height: 1.5;
    }
    .whatson-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
    .section-whatson .gold-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--gold); }

    /* ── PRIVATE HIRE ─────────────────────────────────── */
    .section-hire { position: relative; overflow: hidden; background: linear-gradient(135deg, #7B1E2B 0%, #561019 100%); }
    .hire-grid { display: grid; grid-template-columns: 1.05fr 0.9fr; align-items: stretch; max-width: 1280px; margin: 0 auto; }
    .hire-copy { padding: 92px 56px; }
    .hire-eyebrow { font-family: var(--font-sans); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 16px; }
    .hire-copy .gold-rule { margin: 18px 0 22px; }
    .hire-copy h2 { font-family: var(--font-serif); font-size: clamp(2.2rem, 3.8vw, 3.6rem); font-weight: 700; line-height: 1.1; color: var(--cream); }
    .hire-copy h2 span { color: var(--gold); }
    .hire-copy p { font-size: 1.02rem; line-height: 1.82; color: rgba(243,239,230,0.82); margin-bottom: 18px; }
    .hire-copy .hire-secondary { font-size: 1rem; line-height: 1.75; color: rgba(243,239,230,0.7); }
    .hire-list { list-style: none; margin: 24px 0 36px; }
    .hire-list li {
      font-size: 0.96rem; color: rgba(243,239,230,0.85);
      padding: 10px 0;
      border-bottom: 1px solid rgba(201,169,110,0.18);
      display: flex; align-items: center; gap: 14px;
    }
    .hire-list li::before { content: ''; display: block; width: 22px; height: 2px; background: var(--gold); flex-shrink: 0; }
    .hire-image { position: relative; min-height: 540px; }
    .hire-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .hire-image::after { content: ''; position: absolute; inset: 0; box-shadow: inset 5px 0 0 var(--gold); pointer-events: none; }

    /* ── BOOKING CTA BAND ─────────────────────────────── */
    .section-booking-cta {
      background: var(--teal);
      padding: 72px 0;
      text-align: center;
    }
    .section-booking-cta h2 {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 3.2vw, 3rem);
      font-weight: 700; color: var(--cream);
      margin-bottom: 16px;
    }
    .section-booking-cta p {
      font-size: 1.05rem; line-height: 1.75;
      color: rgba(243,239,230,0.88);
      max-width: 580px; margin: 0 auto 36px;
    }
    .booking-cta-btns { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

    /* ── FOOTER ───────────────────────────────────────── */
    .site-footer { background: #080e14; border-top: 3px solid var(--gold); padding: 72px 0 40px; }
    .footer-grid { display: grid; grid-template-columns: 1.7fr 1.6fr 1fr 1fr; gap: 44px; margin-bottom: 48px; }
    .footer-brand .footer-title { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 700; color: var(--gold); letter-spacing: 0.05em; margin: 0 0 10px; }
    .footer-brand p { font-size: 0.86rem; line-height: 1.75; color: rgba(243,239,230,0.6); }
    .footer-brand a { color: var(--gold); transition: color 0.2s; }
    .footer-brand a:hover { color: var(--cream); }
    .footer-hours-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; max-width: 320px; }
    .footer-hours-label { display: block; font-family: var(--font-sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(243,239,230,0.88); margin-bottom: 8px; }
    .footer-hours-col ul { list-style: none; }
    .footer-hours-col li { display: flex; justify-content: space-between; gap: 12px; font-size: 0.8rem; line-height: 1.1; padding: 3px 0; color: rgba(243,239,230,0.6); }
    .footer-hours-col li span:first-child { color: rgba(243,239,230,0.42); }
    .footer-col .footer-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin: 0 0 18px; }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 10px; }
    .footer-col a { font-size: 0.86rem; color: rgba(243,239,230,0.6); transition: color 0.2s; }
    .footer-col a:hover { color: var(--cream); }
    .footer-bottom { border-top: 1px solid rgba(201,169,110,0.18); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
    .footer-bottom p, .footer-bottom a { font-size: 0.76rem; color: rgba(243,239,230,0.38); transition: color 0.2s; }
    .footer-bottom a:hover { color: var(--cream); }
    .footer-legal { display: flex; gap: 24px; }

    /* ── RESPONSIVE ───────────────────────────────────── */
    @media (max-width: 1024px) {
      .intro-grid, .hire-grid { grid-template-columns: 1fr; gap: 48px; }
      .spaces-grid { grid-template-columns: 1fr; }
      .lions-den { grid-template-columns: 1fr; }
      .lions-den-media { min-height: 360px; }
      .gallery-track { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    }
    @media (max-width: 768px) {
      .top-bar { padding: 10px 24px; font-size: 0.72rem; grid-template-columns: 1fr; justify-items: center; text-align: center; row-gap: 7px; position: relative; }
      .top-bar > span:first-child { justify-self: center; order: 2; }
      .top-bar-logo { justify-self: center; order: 1; }
      .top-bar-logo img { height: 48px; }
      .top-bar-right { justify-self: center; order: 3; flex-wrap: wrap; justify-content: center; gap: 14px; }

      /* Hamburger lives in the header, top-left; the standalone nav bar is collapsed away */
      .nav-toggle { display: block; position: absolute; top: 10px; left: 10px; z-index: 1001; font-size: 1.7rem; }
      .site-nav { position: static; background: none; border-bottom: none; backdrop-filter: none; }
      .nav-inner { position: relative; height: 0; min-height: 0; padding: 0; }

      /* Mobile menu: drop panel under the header, revealed by .nav-open */
      .nav-menu {
        display: block;
        position: absolute;
        top: 0; left: 0; right: 0;
        z-index: 1200;
        background: rgba(17,34,51,0.98);
        border-bottom: 2px solid var(--gold);
        box-shadow: 0 14px 26px rgba(0,0,0,0.34);
        padding: 6px 24px 20px;
        opacity: 0; visibility: hidden; pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
      }
      .site-nav.nav-open .nav-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0); }
      .nav-menu .nav-links { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
      .nav-menu .nav-links li { border-bottom: 1px solid rgba(201,169,110,0.16); }
      .nav-menu .nav-links li:last-child { border-bottom: none; }
      .nav-menu .nav-links a { display: block; padding: 16px 2px; font-size: 0.95rem; opacity: 1; }
      .nav-menu .nav-links a::after { display: none; }
      .nav-menu .nav-cta { display: none; }   /* Book a Table removed from mobile menu — it's already in the hero */

      /* Hero: flow instead of fixed 100vh so nothing clips; badge becomes a row above the headline.
         NOTE: .hero-broadcasters override lives in the LATER media block (after its absolute base rule). */
      .hero { height: auto; min-height: 0; }
      .hero-overlay { background: linear-gradient(rgba(13,26,38,0.62), rgba(13,26,38,0.82)); }
      .hero-content {
        position: relative; inset: auto; z-index: 2;
        justify-content: flex-start;
        padding: 34px 24px 52px;
        min-width: 0;
        min-height: 0;   /* mobile hero hugs its content (override the desktop 100vh) */
      }
      /* .hero .hero-h1 beats luxe.css's later `.hero-h1 { text-wrap: balance }` (equal-specificity, loads after) */
      .hero .hero-h1 { font-size: clamp(2rem, 8vw, 2.9rem); max-width: 100%; min-width: 0; text-wrap: normal; overflow-wrap: break-word; }
      .hero-strapline { padding: 11px 22px; margin-top: 18px; font-size: 0.8rem; max-width: 100%; }
      .hero-strapline-2 { margin-left: 0; }
      .hero-body { margin-top: 18px; }
      .hero-ctas { margin-top: 24px; gap: 12px; }
      .hero-ctas .btn { width: 100%; text-align: center; }
      .food-content, .whatson-content { padding: 72px 28px; }
      .section-food { background-attachment: scroll; }
      .hire-copy { padding: 64px 28px; }
      .hire-image { min-height: 320px; }
      .pull-quote { padding: 72px 0; }
      .container, .spaces-header, .gallery-label, .gallery-track { padding-left: 28px; padding-right: 28px; }
      .gallery-track { grid-template-columns: 1fr; }
      .intro-images { grid-template-columns: 1fr; }
      /* Contact + Opening Hours span the top; Visit / Follow Us sit in a row of 2 */
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px 14px; }
      .footer-brand { grid-column: 1 / -1; }
      .footer-hours { grid-column: 1 / -1; }
      .footer-col .footer-title { margin-bottom: 14px; }
      .week-rhythm { flex-direction: column; }
    }

    /* ── FADE-UP ANIMATION ────────────────────────────── */
    .fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

/* temp logo fallback until real asset supplied */
.nav-wordmark { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--gold); letter-spacing: 0.04em; white-space: nowrap; }

/* active nav state (added for multi-page) */
.nav-links a.active { opacity: 1; }
.nav-links a.active::after { width: 100%; }

    /* ── HERO BROADCASTER BADGE (Sky + TNT) ───────────── */
    .hero-broadcasters {
      position: absolute;
      top: 34px;
      right: 48px;
      z-index: 4;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 9px;
    }
    .hero-broadcasters .bc-label {
      font-family: var(--font-sans);
      font-size: 0.66rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      text-shadow: 0 1px 6px rgba(0,0,0,0.5);
    }
    .hero-broadcasters .bc-tiles { display: flex; gap: 10px; }
    .broadcaster-tile {
      width: 106px;
      height: 52px;
      border-radius: 12px;
      border: 1px solid rgba(201,169,110,0.45);
      box-shadow: 0 8px 22px rgba(0,0,0,0.32);
      overflow: hidden;
      background: var(--near-black);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .broadcaster-tile img { display: block; }
    .broadcaster-tile--sky img { height: 34px; width: auto; }
    .broadcaster-tile--tnt img { width: 100%; height: 100%; object-fit: cover; }

    @media (max-width: 768px) {
      /* Broadcaster badge (LIVE SPORT HERE + Sky/TNT) hidden on mobile per Mark; kept on desktop */
      .hero-broadcasters { display: none; }
    }

    /* Very short viewports above the mobile breakpoint (landscape phones): the content is
       taller than the screen. The base hero already grows (no clip); here we just top-align,
       shrink the headline and hide the badge so it reads well. Placed after the base rules. */
    @media (min-width: 769px) and (max-height: 620px) {
      .hero { min-height: 0; }
      .hero-overlay { background: linear-gradient(rgba(13,26,38,0.58), rgba(13,26,38,0.82)); }
      .hero-content { min-height: 0; justify-content: flex-start; padding: 44px 64px 60px; }
      .hero-h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); max-width: 100%; }
      .hero-broadcasters { display: none; }   /* would overlap the flowing content on short screens */
    }
