:root {
  --ink: #15120f;
  --ink-soft: #29231e;
  --canvas: #f2f1ed;
  --surface: #fffdfa;
  --warm: #e9e0d5;
  --muted: #625b54;
  --line: #c9c1b8;
  --accent: #e85a18;
  --accent-dark: #9f350f;
  --header-height: 72px;
  --shell: min(1240px, calc(100% - 40px));
  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
  --z-header: 20;
  --z-mobile-bar: 25;
  --z-dialog: 40;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-height); }
body { margin: 0; color: var(--ink); background: var(--canvas); font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif; font-size: 16px; line-height: 1.6; }
body.modal-open { overflow: hidden; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: 4px; }
button { color: inherit; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 100; padding: 10px 14px; color: var(--ink); background: var(--surface); transform: translateY(-150%); }
.skip-link:focus { transform: translateY(0); }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: clamp(84px, 10vw, 148px); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.site-header { position: fixed; inset: 0 0 auto; z-index: var(--z-header); min-height: var(--header-height); padding: 0 28px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; color: #fff; border-bottom: 1px solid rgb(255 255 255 / .28); transition: color .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease); }
.site-header.is-scrolled { color: var(--ink); background: rgb(242 241 237 / .96); border-color: var(--line); }
.brand-link { display: inline-flex; align-items: center; gap: 10px; justify-self: start; text-decoration: none; font-weight: 850; letter-spacing: -.02em; }
.brand-link img { width: 38px; height: 38px; object-fit: contain; }
.site-header:not(.is-scrolled) .brand-link img { filter: invert(1); }
.desktop-nav { display: flex; align-items: center; gap: 25px; white-space: nowrap; }
.desktop-nav a { position: relative; font-size: .81rem; font-weight: 800; text-decoration: none; }
.desktop-nav a::after { content: ""; position: absolute; inset: auto 0 -7px; height: 2px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform 180ms var(--ease-out); }
.desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 8px; }
.social-link, .footer-social a { display: inline-grid; place-items: center; width: 40px; height: 40px; }
.social-link svg, .footer-social svg { width: 21px; height: 21px; fill: currentColor; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 0 9px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 6px 0; background: currentColor; transition: transform .25s var(--ease); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.mobile-menu { position: absolute; top: calc(var(--header-height) - 1px); left: 0; right: 0; padding: 16px 20px 20px; color: var(--ink); background: var(--canvas); border-bottom: 1px solid var(--line); }
.mobile-menu a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line); text-decoration: none; font-size: 1.2rem; font-weight: 850; }

.hero { position: relative; min-height: 100svh; min-height: 100dvh; isolation: isolate; overflow: hidden; color: #fff; display: flex; align-items: flex-end; }
.hero-photo, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-photo { z-index: -3; display: block; object-fit: cover; object-position: 50% 46%; filter: brightness(.84); transform: scale(1.035); animation: hero-drift 16s var(--ease-in-out) infinite alternate; }
.hero-overlay { z-index: -2; background: linear-gradient(to bottom, rgb(0 0 0 / .18), rgb(0 0 0 / .28) 48%, rgb(0 0 0 / .30)); }
.hero::after { content: ""; position: absolute; z-index: -1; width: min(56vw, 760px); aspect-ratio: 1; right: -14%; bottom: -38%; pointer-events: none; background: radial-gradient(circle, rgb(232 90 24 / .34), rgb(232 90 24 / .08) 42%, transparent 70%); mix-blend-mode: screen; animation: hero-glow 8s var(--ease-in-out) infinite alternate; }
.hero-seal { position: absolute; right: clamp(28px, 7vw, 112px); bottom: clamp(94px, 14vh, 142px); width: clamp(150px, 16vw, 224px); aspect-ratio: 1; display: grid; place-items: center; color: #fff; pointer-events: none; opacity: .86; }
.hero-seal svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; animation: seal-spin 24s linear infinite; }
.hero-seal svg text { fill: currentColor; font-size: 13px; font-weight: 900; letter-spacing: 2.5px; }
.hero-seal strong { width: 43%; aspect-ratio: 1; display: grid; place-items: center; border: 2px solid rgb(255 255 255 / .72); border-radius: 50%; font-size: clamp(1.35rem, 2.3vw, 2rem); letter-spacing: -.05em; }
.hero-content { padding-top: min(18vh, 96px); padding-bottom: clamp(48px, 8vh, 88px); }
.hero-brand { margin: 0 0 16px; font-size: .78rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.hero h1 { max-width: 850px; margin: 0; font-size: clamp(3.25rem, 7.2vw, 6rem); line-height: .95; letter-spacing: -.038em; text-wrap: balance; }
.hero-copy { max-width: 580px; margin: 22px 0 0; font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 650; line-height: 1.45; text-wrap: pretty; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 20px; border: 1px solid transparent; border-radius: 3px; text-decoration: none; font-weight: 850; white-space: nowrap; cursor: pointer; transition: transform 160ms var(--ease-out), background 180ms ease, color 180ms ease, border-color 180ms ease; }
.button-accent { color: #fff; background: var(--accent); border-color: var(--accent); }
.button-ghost { color: #fff; border-color: rgb(255 255 255 / .82); background: rgb(18 16 14 / .26); }
.button-dark { color: #fff; background: var(--ink); border-color: var(--ink); }
.button-light { color: var(--ink); background: #fff; border-color: #fff; }

.restaurant-rail { position: relative; isolation: isolate; overflow: hidden; display: grid; grid-template-columns: .8fr 1.2fr 1fr 1fr; color: var(--ink); background: var(--accent); }
.restaurant-rail::after { content: ""; position: absolute; z-index: -1; inset: 0; pointer-events: none; background: linear-gradient(105deg, transparent 35%, rgb(255 255 255 / .22) 48%, transparent 61%); transform: translateX(-120%); animation: rail-shine 7.5s var(--ease-in-out) infinite; }
.restaurant-rail__item { position: relative; min-height: 116px; padding: 22px clamp(20px, 3vw, 46px); display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgb(21 18 15 / .26); }
.restaurant-rail__item:last-child { border-right: 0; }
.restaurant-rail__item strong, .restaurant-rail__item span { display: block; }
.restaurant-rail__item strong { font-size: clamp(1rem, 1.4vw, 1.2rem); line-height: 1.2; }
.restaurant-rail__item span { margin-top: 5px; font-size: .83rem; font-weight: 700; }
.restaurant-rail__rating { flex-direction: row; align-items: center; justify-content: flex-start; gap: 14px; }
.restaurant-rail__rating strong { font-size: clamp(2.4rem, 4.5vw, 4rem); line-height: .8; letter-spacing: -.035em; }
.restaurant-rail__rating span { max-width: 10ch; margin: 0; line-height: 1.2; }
.restaurant-rail__address { text-decoration: none; transition: background .2s var(--ease); }

.brand-loop { overflow: hidden; color: #fff; background: var(--ink); border-block: 1px solid #3f3731; }
.brand-loop__track { width: max-content; display: flex; align-items: center; padding-block: 14px; animation: brand-marquee 24s linear infinite; }
.brand-loop__group { display: flex; align-items: center; gap: clamp(22px, 3vw, 48px); padding-right: clamp(22px, 3vw, 48px); }
.brand-loop__group span { font-size: clamp(.78rem, 1.1vw, .95rem); font-weight: 900; letter-spacing: .13em; white-space: nowrap; }
.brand-loop__group i { color: var(--accent); font-style: normal; font-size: .8rem; }

.ratio-3-4 { aspect-ratio: 3 / 4; overflow: hidden; }
.ratio-3-4 > img { width: 100%; height: 100%; display: block; object-fit: cover; }
.about { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(48px, 8vw, 112px); align-items: center; }
.about-visual { margin: 0; border: 1px solid var(--line); }
.about-visual img { object-position: 50% 45%; transform: scale(1.035); animation: image-breathe 10s var(--ease-in-out) infinite alternate; }
.about-copy h2, .section-heading h2, .reviews-heading h2, .booking-intro h2, .flavours-heading h2 { margin: 0; font-size: clamp(2.5rem, 5vw, 5rem); line-height: .98; letter-spacing: -.035em; text-wrap: balance; }
.about-copy h2 { font-size: clamp(3rem, 5.8vw, 5.8rem); }
.about-copy > p { max-width: 65ch; margin: 28px 0 0; color: #4c4640; font-size: 1.3rem; line-height: 1.6; text-wrap: pretty; }
.service-line { display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 30px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 1.08rem; font-weight: 850; }

.flavours-section { color: #fff; background: var(--ink); overflow: hidden; }
.flavours-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(48px, 8vw, 118px); align-items: center; }
.flavours-visual { position: relative; min-height: 680px; margin: 0; }
.flavours-visual img { width: 100%; height: 100%; display: block; object-fit: cover; position: absolute; inset: 0; transform: scale(1.04); animation: flavour-pan 13s var(--ease-in-out) infinite alternate; }
.flavours-visual p { position: absolute; inset: auto 0 0; margin: 0; padding: 24px 26px; display: grid; gap: 3px; color: var(--ink); background: var(--accent); animation: caption-float 5s var(--ease-in-out) infinite; }
.flavours-visual p strong { font-size: 1.2rem; }
.flavours-visual p span { font-size: .9rem; font-weight: 700; }
.section-label { margin: 0 0 18px; color: #ff9f73; font-size: .78rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.flavours-heading > p:last-child { max-width: 55ch; margin: 22px 0 0; color: #d9d2cb; font-size: 1.05rem; }
.flavour-list { list-style: none; margin: 42px 0 36px; padding: 0; counter-reset: flavour; border-top: 1px solid #4b423a; }
.flavour-list li { counter-increment: flavour; min-height: 72px; display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; border-bottom: 1px solid #4b423a; }
.flavour-list li::before { content: counter(flavour, decimal-leading-zero); color: #ff9f73; font-size: .76rem; font-weight: 900; }
.flavour-list span { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 850; }
.flavour-list strong { color: #d9d2cb; font-size: .82rem; text-align: right; }

.menu-section { background: var(--surface); border-bottom: 1px solid var(--line); }
.section-heading { max-width: 760px; margin-bottom: clamp(42px, 7vw, 80px); }
.section-heading p { max-width: 62ch; margin: 20px 0 0; color: var(--muted); font-size: 1.05rem; text-wrap: pretty; }
.menu-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(26px, 3vw, 44px); align-items: start; }
.menu-column { border-top: 4px solid var(--ink); padding-top: 18px; }
.menu-image { margin-bottom: 26px; background: #ded5c8; transform-origin: 50% 70%; animation: menu-float 7s var(--ease-in-out) infinite; }
.menu-column:nth-child(2) .menu-image { animation-delay: -2.2s; }
.menu-column:nth-child(3) .menu-image { animation-delay: -4.4s; }
.menu-image img { object-position: 50% 48%; transition: transform 260ms var(--ease-out), filter 260ms ease; }
.menu-column h3 { margin: 0; font-size: clamp(1.65rem, 2.7vw, 2.35rem); line-height: 1.05; letter-spacing: -.03em; text-wrap: balance; }
.menu-intro { min-height: 3.2em; margin: 12px 0 24px; color: var(--muted); }
.dish-list { list-style: none; margin: 0; padding: 0; }
.dish-list li { padding: 17px 0; border-bottom: 1px solid var(--line); }
.dish-list strong, .dish-list b { display: block; }
.dish-list strong { font-size: 1rem; }
.dish-list span { display: block; margin-top: 3px; color: var(--muted); font-size: .84rem; line-height: 1.45; }
.dish-list b { margin-top: 8px; color: var(--accent-dark); font-size: .83rem; }
.menu-cta { margin-top: 44px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; padding: 0 0 5px; border: 0; border-bottom: 2px solid currentColor; background: transparent; font-weight: 850; cursor: pointer; transition: transform 150ms var(--ease-out); }
.text-link span { font-size: 1.4em; line-height: 1; transition: transform 180ms var(--ease-out); }

.gallery-section { background: var(--canvas); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; align-items: start; }
.gallery-item { width: 100%; padding: 0; border: 0; background: #ded5c8; cursor: zoom-in; transition: transform 220ms var(--ease-out), filter 220ms ease; }
.gallery-item:nth-child(2), .gallery-item:nth-child(5) { margin-top: 54px; }
.gallery-item img { transition: transform 320ms var(--ease-out); }

.reviews-section { color: #fff; background: var(--ink-soft); }
.reviews-heading { display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: end; padding-bottom: 34px; border-bottom: 1px solid #51473f; }
.reviews-heading > div:first-child { display: grid; gap: 4px; }
.rating-number { font-size: clamp(3rem, 6vw, 5rem); font-weight: 900; line-height: .8; letter-spacing: -.035em; animation: rating-float 4.8s var(--ease-in-out) infinite; }
.rating-stars, .review-author span { color: #ff8d59; letter-spacing: .06em; }
.rating-stars { animation: stars-glow 3.8s var(--ease-in-out) infinite; }
.reviews-heading h2 { font-size: clamp(2.2rem, 4vw, 4rem); }
.reviews-heading p { margin: 8px 0 0; color: #cfc5bc; }
.reviews-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 22px; margin-top: 32px; }
.review { padding: 30px; background: #342c26; display: flex; flex-direction: column; justify-content: space-between; transition: transform 220ms var(--ease-out), background 220ms ease; }
.review-featured { grid-row: span 2; padding: clamp(32px, 5vw, 60px); color: var(--ink); background: var(--accent); }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.review-author strong, .review-author span { display: block; }
.review-author span { font-size: .78rem; }
.review-featured .review-author span { color: var(--ink); }
.review blockquote { margin: 26px 0; font-size: clamp(1.1rem, 2vw, 1.42rem); line-height: 1.45; letter-spacing: -.015em; }
.review-featured blockquote { font-size: clamp(1.5rem, 3vw, 2.35rem); line-height: 1.32; }
.review a { width: fit-content; color: #ff9f73; font-weight: 850; }
.review-featured a { color: var(--ink); }

.booking-section { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: clamp(44px, 8vw, 110px); align-items: start; }
.booking-intro { position: sticky; top: 110px; }
.booking-intro > p { max-width: 44ch; color: var(--muted); }
.phone-callout { display: grid; gap: 4px; margin-top: 32px; padding: 20px 0; border-block: 1px solid var(--line); text-decoration: none; }
.phone-callout span { color: var(--muted); font-size: .78rem; font-weight: 850; text-transform: uppercase; letter-spacing: .1em; }
.phone-callout strong { font-size: 1.35rem; }
.booking-panel { padding: clamp(24px, 5vw, 52px); background: var(--surface); border-top: 5px solid var(--accent); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; margin-bottom: 28px; }
.field { display: grid; gap: 7px; }
.field-wide { grid-column: 1 / -1; }
.field label { font-size: .84rem; font-weight: 850; }
.field label span { color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; min-height: 48px; padding: 11px 12px; color: var(--ink); background: #fff; border: 1px solid #756c64; border-radius: 2px; }
.field textarea { resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #6b635c; opacity: 1; }
.field [aria-invalid="true"] { border-color: #a12c22; box-shadow: 0 0 0 1px #a12c22; }
.field-error { min-height: 1.2em; color: #8d2018; font-size: .78rem; font-weight: 750; }
.booking-review h3 { margin: 0 0 24px; font-size: 2rem; letter-spacing: -.03em; }
.booking-review dl { margin: 0; }
.booking-review dl div { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 12px 0; border-bottom: 1px solid var(--line); }
.booking-review dt { color: var(--muted); }
.booking-review dd { margin: 0; font-weight: 850; }
.booking-review > p { margin: 28px 0; color: var(--muted); }
.review-actions { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; }

.visit-section { position: relative; padding-block: clamp(60px, 7vw, 96px); color: #fff; background: #55131b; overflow: hidden; }
.visit-shell { display: grid; grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr); gap: clamp(38px, 6vw, 88px); align-items: stretch; }
.visit-panel { min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.visit-panel h2 { max-width: 8ch; margin: 0; font-size: clamp(3.6rem, 6.3vw, 6rem); line-height: .92; letter-spacing: -.04em; text-wrap: balance; }
.visit-contact { margin-top: clamp(36px, 5vw, 64px); }
.visit-contact strong { display: block; margin-bottom: 4px; font-size: 1.08rem; }
.visit-contact address { margin: 0; font-style: normal; font-size: 1rem; line-height: 1.55; }
.visit-phone { display: block; width: fit-content; margin-top: 22px; color: #fff; font-size: 1.28rem; font-weight: 900; text-decoration-thickness: 2px; }
.hours { margin-top: 34px; padding-top: 26px; border-top: 1px solid rgb(255 255 255 / .22); }
.hours h3 { margin: 0 0 16px; font-size: 1rem; }
.hours dl { margin: 0; }
.hours dl div { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 18px; padding: 5px 0; }
.hours dt, .hours dd { line-height: 1.45; }
.hours dd { margin: 0; color: #fff; font-weight: 800; text-align: right; }
.visit-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button-outline-light { color: #fff; border-color: rgb(255 255 255 / .68); background: transparent; }
.visit-section::before { content: "SEOA'S CHICKEN · BEDFORD · SEOA'S CHICKEN · BEDFORD ·"; position: absolute; left: 0; bottom: -5.5rem; width: max-content; color: rgb(255 255 255 / .045); font-size: clamp(7rem, 15vw, 15rem); font-weight: 900; line-height: .8; letter-spacing: -.055em; white-space: nowrap; pointer-events: none; animation: visit-wordflow 28s linear infinite; }
.visit-shell { position: relative; z-index: 1; }
.map-wrap { width: 100%; min-height: 680px; background: #d7d0c7; overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 680px; display: block; border: 0; }

.site-footer { padding: 74px 0 24px; color: #f4efe7; background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr); gap: 48px; }
.footer-brand img { width: min(260px, 100%); height: auto; display: block; }
.footer-brand p, .site-footer p { color: #c8bfb5; }
.footer-brand p { max-width: 36ch; }
.site-footer h2 { margin: 0 0 16px; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.footer-grid > div:not(.footer-brand) > a { display: block; width: fit-content; margin: 8px 0; }
.footer-social { display: flex; gap: 4px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 58px; padding-top: 18px; border-top: 1px solid #49433d; color: #a99f94; font-size: .78rem; }
.mobile-action-bar { display: none; }

dialog { z-index: var(--z-dialog); padding: 0; color: var(--ink); background: var(--surface); border: 1px solid #8c8176; opacity: 0; transform: translateY(12px) scale(.985); transition: opacity 220ms var(--ease-out), transform 220ms var(--ease-out), display 220ms allow-discrete, overlay 220ms allow-discrete; }
dialog[open] { opacity: 1; transform: none; }
dialog::backdrop { background: rgb(16 14 12 / .82); opacity: 0; transition: opacity 220ms ease, display 220ms allow-discrete, overlay 220ms allow-discrete; }
dialog[open]::backdrop { opacity: 1; }
@starting-style {
  dialog[open] { opacity: 0; transform: translateY(12px) scale(.985); }
  dialog[open]::backdrop { opacity: 0; }
}
.menu-dialog { width: min(1080px, calc(100% - 24px)); max-height: calc(100dvh - 24px); }
.dialog-toolbar { position: sticky; top: 0; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 18px; background: var(--surface); border-bottom: 1px solid var(--line); }
.dialog-toolbar h2 { margin: 0; font-size: 1.4rem; }
.dialog-toolbar button, .lightbox-close, .lightbox-nav { min-height: 44px; padding: 8px 14px; color: inherit; background: transparent; border: 1px solid currentColor; cursor: pointer; }
.full-menu-pages { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; padding: 18px; }
.full-menu-pages img { width: 100%; height: auto; display: block; }
.lightbox { width: min(1200px, calc(100% - 20px)); max-width: 1200px; height: min(92dvh, 900px); overflow: hidden; color: #fff; background: #141210; border-color: #5a5148; }
.lightbox figure { width: 100%; height: 100%; margin: 0; padding: 60px 88px 48px; display: grid; grid-template-rows: minmax(0, 1fr) auto; place-items: center; gap: 12px; }
.lightbox figure img { max-width: 100%; max-height: 100%; width: auto; height: auto; display: block; object-fit: contain; }
.lightbox figcaption { color: #d7cec5; text-align: center; }
.lightbox-close { position: absolute; top: 12px; right: 12px; z-index: 2; }
.lightbox-nav { position: absolute; top: 50%; z-index: 2; transform: translateY(-50%); }
.lightbox-prev { left: 12px; }
.lightbox-next { right: 12px; }

.reveal { opacity: 1; transform: none; }
.reveal.is-visible { animation: reveal-in .72s var(--ease-out) both; animation-delay: var(--reveal-delay, 0ms); }

@keyframes reveal-in { from { opacity: .76; transform: translateY(20px); clip-path: inset(0 0 7% 0); } to { opacity: 1; transform: none; clip-path: inset(0); } }
@keyframes hero-drift { from { transform: scale(1.035) translate3d(-.45%, -.25%, 0); } to { transform: scale(1.075) translate3d(.55%, .35%, 0); } }
@keyframes hero-glow { from { transform: translate3d(-3%, 2%, 0) scale(.92); opacity: .62; } to { transform: translate3d(4%, -3%, 0) scale(1.08); opacity: 1; } }
@keyframes seal-spin { to { transform: rotate(360deg); } }
@keyframes rail-shine { 0%, 58% { transform: translateX(-120%); } 82%, 100% { transform: translateX(120%); } }
@keyframes brand-marquee { to { transform: translateX(-50%); } }
@keyframes image-breathe { from { transform: scale(1.035) translate3d(0, 0, 0); } to { transform: scale(1.075) translate3d(-1%, .8%, 0); } }
@keyframes flavour-pan { from { transform: scale(1.04) translate3d(0, 0, 0); } to { transform: scale(1.09) translate3d(1.2%, -.8%, 0); } }
@keyframes caption-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes menu-float { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-8px) rotate(.35deg); } }
@keyframes rating-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes stars-glow { 0%, 100% { opacity: .72; transform: scale(1); } 50% { opacity: 1; transform: scale(1.035); } }
@keyframes visit-wordflow { from { transform: translateX(0); } to { transform: translateX(-38%); } }

@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
  .social-link, .footer-social a { transition: transform 180ms var(--ease-out), color 180ms ease; }
  .social-link:hover, .footer-social a:hover { transform: translateY(-2px) rotate(7deg) scale(1.08); color: var(--accent); }
  .button:hover { transform: translateY(-2px); }
  .button-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); }
  .button-ghost:hover { background: rgb(18 16 14 / .48); }
  .button-dark:hover { background: #39312a; }
  .button-light:hover { color: #fff; background: transparent; }
  .button-outline-light:hover { color: var(--ink); background: #fff; border-color: #fff; }
  .restaurant-rail__address:hover { background: rgb(255 255 255 / .14); }
  .menu-column:hover .menu-image img { transform: scale(1.045); filter: saturate(1.08); }
  .gallery-item:hover { transform: translateY(-7px) rotate(.35deg); filter: saturate(1.08); }
  .gallery-item:nth-child(even):hover { transform: translateY(-7px) rotate(-.35deg); }
  .gallery-item:hover img { transform: scale(1.04); }
  .review:hover { transform: translateY(-5px); background: #3d332d; }
  .review-featured:hover { background: #f06625; }
  .text-link:hover span { transform: rotate(90deg); }
}

.button:active { transform: scale(.97); }
.gallery-item:active { transform: scale(.985); }
.text-link:active { transform: scale(.97); }
.dialog-toolbar button:active, .lightbox-close:active, .lightbox-nav:active { transform: scale(.96); }

.motion-paused .hero-photo,
.motion-paused .hero::after,
.motion-paused .hero-seal svg,
.motion-paused .restaurant-rail::after,
.motion-paused .brand-loop__track,
.motion-paused .about-visual img,
.motion-paused .flavours-visual img,
.motion-paused .flavours-visual p,
.motion-paused .menu-image,
.motion-paused .rating-number,
.motion-paused .rating-stars,
.motion-paused .visit-section::before { animation-play-state: paused; }

@media (max-width: 1100px) {
  .desktop-nav { gap: 16px; }
  .desktop-nav a { font-size: .76rem; }
  .restaurant-rail { grid-template-columns: repeat(2, 1fr); }
  .restaurant-rail__item:nth-child(2) { border-right: 0; }
  .restaurant-rail__item:nth-child(-n+2) { border-bottom: 1px solid rgb(21 18 15 / .26); }
}

@media (max-width: 980px) {
  :root { --shell: min(100% - 32px, 760px); }
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; padding-inline: 16px; }
  .menu-toggle { display: block; }
  .about, .booking-section, .flavours-layout { grid-template-columns: 1fr; }
  .about-visual { width: min(100%, 520px); }
  .flavours-visual { min-height: 620px; }
  .menu-grid { gap: 22px; }
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .gallery-item:nth-child(2), .gallery-item:nth-child(5) { margin-top: 0; }
  .booking-intro { position: static; }
  .visit-shell { grid-template-columns: 1fr; }
  .visit-panel { max-width: 640px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  :root { --header-height: 64px; --shell: calc(100% - 28px); }
  body { padding-bottom: 66px; }
  .site-header { min-height: var(--header-height); }
  .brand-link span { font-size: .92rem; }
  .site-header .social-link { display: none; }
  .mobile-menu { top: calc(var(--header-height) - 1px); }
  .hero-content { padding-top: 80px; padding-bottom: 96px; }
  .hero h1 { max-width: 10ch; font-size: clamp(3.05rem, 15vw, 4.75rem); }
  .hero-seal { display: none; }
  .hero-copy { max-width: 29ch; font-size: 1rem; }
  .hero-actions { width: 100%; }
  .hero-actions .button { flex: 1 1 140px; }
  .restaurant-rail { grid-template-columns: 1fr 1fr; }
  .restaurant-rail__item { min-height: 108px; padding: 18px 14px; }
  .restaurant-rail__rating { align-items: flex-start; flex-direction: column; gap: 6px; }
  .restaurant-rail__rating strong { font-size: 2.6rem; }
  .restaurant-rail__rating span { max-width: none; }
  .restaurant-rail__item strong { font-size: .92rem; }
  .restaurant-rail__item span { font-size: .76rem; }
  .section { padding-block: 82px; }
  .about { gap: 38px; }
  .about-visual { width: 100%; }
  .about-copy h2, .section-heading h2, .reviews-heading h2, .booking-intro h2, .flavours-heading h2 { font-size: clamp(2.3rem, 11.5vw, 3.6rem); }
  .about-copy h2 { font-size: clamp(2.6rem, 13vw, 3.8rem); }
  .service-line { gap: 8px 16px; }
  .flavours-visual { min-height: 500px; }
  .flavour-list li { grid-template-columns: auto 1fr; gap: 6px 12px; padding-block: 13px; }
  .flavour-list strong { grid-column: 2; text-align: left; }
  .menu-grid { grid-template-columns: 1fr; gap: 62px; }
  .menu-intro { min-height: 0; }
  .gallery-grid { grid-template-columns: 1fr; gap: 14px; }
  .reviews-heading { grid-template-columns: 1fr; align-items: start; }
  .reviews-grid { grid-template-columns: 1fr; }
  .review-featured { grid-row: auto; }
  .review-featured blockquote { font-size: 1.35rem; }
  .form-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .booking-review dl div { grid-template-columns: 1fr; gap: 2px; }
  .hours dl div { gap: 10px; }
  .visit-panel h2 { max-width: 9ch; font-size: clamp(3.1rem, 14vw, 4.5rem); }
  .visit-actions .button { flex: 1 1 145px; }
  .map-wrap, .map-wrap iframe { min-height: 430px; height: 430px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .mobile-action-bar { position: fixed; inset: auto 0 0; z-index: var(--z-mobile-bar); height: 66px; display: grid; grid-template-columns: repeat(3, 1fr); color: #fff; background: var(--ink); border-top: 1px solid #554a42; }
  .mobile-action-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; text-decoration: none; border-right: 1px solid #554a42; transition: transform 140ms var(--ease-out), filter 140ms ease; }
  .mobile-action-bar a:active { transform: scale(.97); filter: brightness(1.12); }
  .mobile-action-bar a:last-child { color: var(--ink); background: var(--accent); border-right: 0; }
  .mobile-action-bar span { font-size: .66rem; line-height: 1; }
  .mobile-action-bar strong { margin-top: 4px; font-size: .78rem; line-height: 1; }
  .full-menu-pages { grid-template-columns: 1fr; }
  .lightbox figure { padding: 66px 16px 100px; }
  .lightbox-nav { top: auto; bottom: 18px; transform: none; }
  .lightbox-prev { left: 16px; }
  .lightbox-next { right: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .reveal.is-visible { opacity: 1; transform: none; animation: none; }
  .hero-photo, .about-visual img, .flavours-visual img, .flavours-visual p, .menu-image, .rating-number, .rating-stars, .visit-section::before, .brand-loop__track { animation: none !important; transform: none; }
  .hero::after, .hero-seal { display: none; }
}
