@font-face { font-family: "Outfit"; src: url("assets/fonts/outfit-300.ttf") format("truetype"); font-weight: 300; font-display: swap; }
@font-face { font-family: "Outfit"; src: url("assets/fonts/outfit-400.ttf") format("truetype"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Outfit"; src: url("assets/fonts/outfit-500.ttf") format("truetype"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Outfit"; src: url("assets/fonts/outfit-600.ttf") format("truetype"); font-weight: 600; font-display: swap; }
@font-face { font-family: "Outfit"; src: url("assets/fonts/outfit-700.ttf") format("truetype"); font-weight: 700; font-display: swap; }

:root {
  --ink: #11110f;
  --ink-soft: #171714;
  --panel: #20201c;
  --line: rgba(241, 237, 225, .17);
  --cream: #f1ede1;
  --muted: #aaa79e;
  --accent: #c9b68f;
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; color: var(--cream); background: var(--ink); font-family: "Outfit", "Arial Nova", Arial, sans-serif; font-weight: 300; overflow-x: hidden; }
body.is-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; width: 100%; }
::selection { color: var(--ink); background: var(--accent); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; }

.skip-link { position: fixed; left: 1rem; top: 1rem; z-index: 100; padding: .75rem 1rem; color: var(--ink); background: var(--accent); transform: translateY(-180%); transition: transform 160ms var(--ease-out); }
.skip-link:focus { transform: translateY(0); }
.page-loader { position: fixed; inset: 0; z-index: 90; display: grid; place-content: center; gap: 1.25rem; background: var(--ink); transition: opacity 220ms ease, visibility 220ms ease; }
.page-loader.is-hidden { opacity: 0; visibility: hidden; }
.loader-logo { width: clamp(110px, 14vw, 170px); aspect-ratio: 1; object-fit: contain; }
.loader-line { width: min(70vw, 340px); height: 1px; overflow: hidden; background: var(--line); }
.loader-line span { display: block; width: 100%; height: 100%; background: var(--accent); transform: translateX(-100%); animation: loader 900ms var(--ease-in-out) infinite; }
@keyframes loader { 50%, 100% { transform: translateX(100%); } }

.site-header { position: fixed; inset: 0 0 auto; z-index: 30; height: 72px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 clamp(1rem, 3vw, 3rem); border-bottom: 1px solid transparent; transition: background-color 200ms ease, border-color 200ms ease; }
.site-header.is-scrolled { background: rgba(17,17,15,.88); border-color: var(--line); backdrop-filter: blur(18px); }
.brand { display: flex; align-items: center; justify-self: start; }
.brand-logo { width: 58px; height: 58px; object-fit: contain; transition: transform 420ms var(--ease-out); }
.brand:hover .brand-logo { transform: rotate(-2deg) scale(1.035); }
.desktop-nav { display: flex; gap: 2.1rem; font-size: .82rem; font-weight: 400; }
.desktop-nav a { color: #d3d0c8; transition: color 180ms ease; }
.desktop-nav a:hover { color: var(--cream); }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; width: max-content; padding: 0 1.45rem; color: var(--ink); background: var(--accent); border: 1px solid var(--accent); border-radius: 999px; font-size: .82rem; font-weight: 600; letter-spacing: .03em; white-space: nowrap; transition: transform 150ms var(--ease-out), background-color 180ms ease; }
.button:hover { background: #ddcba7; }
.button:active { transform: scale(.97); }
.button-small { justify-self: end; min-height: 40px; padding: 0 1.1rem; }
.mobile-nav-button { display: none; justify-self: end; padding: .6rem 0; border: 0; background: none; font-size: .8rem; }
.mobile-menu { position: fixed; inset: 72px 0 0; z-index: 29; display: none; background: rgba(17,17,15,.98); opacity: 0; visibility: hidden; transition: opacity 180ms ease, visibility 180ms ease; }
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: grid; padding: 2rem 1.25rem; }
.mobile-menu a { padding: 1rem 0; border-bottom: 1px solid var(--line); font-size: 1.5rem; }

.hero { min-height: 100dvh; display: grid; grid-template-columns: minmax(0, 7fr) minmax(380px, 5fr); align-items: stretch; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 7rem 5vw 4rem; }
.eyebrow { margin: 0 0 1.6rem; color: var(--accent); font-size: .7rem; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; }
.hero h1 { max-width: 10ch; margin: 0; font-size: clamp(3.4rem, 7.4vw, 8.3rem); font-weight: 400; letter-spacing: -.065em; line-height: .88; text-wrap: balance; }
.hero-intro { max-width: 35rem; margin: 2rem 0 0; color: #c9c6be; font-size: clamp(1rem, 1.5vw, 1.22rem); line-height: 1.5; }
.hero-actions { display: flex; align-items: center; gap: 1.5rem; margin-top: 2rem; }
.text-link { position: relative; display: inline-flex; align-items: center; gap: .8rem; width: max-content; padding: .65rem 0; color: var(--cream); background: none; border: 0; border-bottom: 1px solid rgba(241,237,225,.35); font-size: .84rem; font-weight: 500; cursor: pointer; transition: color 180ms ease, border-color 180ms ease; }
.text-link:hover { color: var(--accent); border-color: var(--accent); }
.text-link:active { transform: scale(.98); }
.hero-media { position: relative; min-height: 100dvh; overflow: hidden; }
.hero-media img { height: 100%; object-fit: cover; object-position: 47% 50%; }
.hero-media-wash { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(17,17,15,.4), transparent 35%), linear-gradient(0deg, rgba(17,17,15,.28), transparent 35%); pointer-events: none; }

.service-strip { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-strip > div { min-height: 118px; display: flex; flex-direction: column; justify-content: center; padding: 1.5rem clamp(1rem, 3vw, 3rem); border-right: 1px solid var(--line); }
.service-strip > div:last-child { border-right: 0; }
.service-strip span { margin-bottom: .55rem; color: var(--muted); font-size: .68rem; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; }
.service-strip strong, .service-strip a { font-size: clamp(1rem, 1.5vw, 1.2rem); font-weight: 400; }

.manifesto { display: grid; grid-template-columns: minmax(0, 9fr) minmax(210px, 3fr); align-items: end; gap: 6vw; padding: clamp(5rem, 8vw, 8.5rem) 5vw; }
.manifesto-main { max-width: 1080px; }
.manifesto-copy { margin: 0; font-size: clamp(2.6rem, 4.7vw, 5.5rem); font-weight: 400; letter-spacing: -.052em; line-height: .98; }
.manifesto-aside { align-self: end; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.manifesto-aside strong { display: block; margin-bottom: .8rem; color: var(--accent); font-size: clamp(3.6rem, 6vw, 6rem); font-weight: 300; letter-spacing: -.07em; line-height: .8; }
.manifesto-aside p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.55; }

.menu-story { position: relative; padding: clamp(5.5rem, 8vw, 8.5rem) 5vw; background: var(--ink-soft); }
.menu-heading { max-width: 820px; margin-bottom: clamp(3rem, 5vw, 5rem); }
.menu-heading h2, .lounge-copy h2, .booking h2 { margin: 0; font-size: clamp(3rem, 6vw, 6.5rem); font-weight: 400; letter-spacing: -.055em; line-height: .92; }
.menu-heading h2 { max-width: none; font-size: clamp(3rem, 5.2vw, 5.8rem); line-height: .95; text-wrap: balance; }
.menu-heading > p:not(.eyebrow) { max-width: 24rem; margin: 2rem 0 1.2rem; color: var(--muted); font-size: .95rem; line-height: 1.65; }
.menu-plates { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr); gap: clamp(1.5rem, 2.5vw, 2.75rem); align-items: start; }
.plate-card { display: grid; gap: 1.5rem; }
.plate-card-featured { grid-row: span 2; }
.plate-image { aspect-ratio: 16 / 10; overflow: hidden; background: var(--panel); }
.plate-card-featured .plate-image { aspect-ratio: 4 / 5; }
.plate-image img { height: 100%; object-fit: cover; transition: transform 700ms var(--ease-out); }
.plate-card:hover .plate-image img { transform: scale(1.035); }
.plate-copy { display: grid; grid-template-columns: 1fr auto; gap: .8rem 1rem; align-items: start; }
.plate-copy span { color: var(--muted); font-size: .7rem; text-transform: uppercase; letter-spacing: .15em; }
.plate-copy h3 { margin: .35rem 0 0; font-size: clamp(1.45rem, 2.4vw, 2.5rem); font-weight: 400; letter-spacing: -.03em; }
.plate-copy strong { color: var(--accent); font-size: 1.2rem; font-weight: 500; }
.plate-copy p { grid-column: 1 / -1; max-width: 36rem; margin: 0; color: var(--muted); line-height: 1.55; }

.photo-accordion { height: 68vh; min-height: 520px; display: grid; grid-template-columns: 2fr repeat(4, 1fr); overflow: hidden; }
.photo-panel { position: relative; min-width: 0; overflow: hidden; border-right: 1px solid rgba(241,237,225,.28); cursor: pointer; }
.photo-panel:last-child { border-right: 0; }
.photo-panel img { height: 100%; object-fit: cover; filter: saturate(.7) brightness(.72); transition: transform 700ms var(--ease-out), filter 500ms ease; }
.photo-panel.is-active img { transform: scale(1.02); filter: saturate(.9) brightness(.8); }
.photo-panel > div { position: absolute; inset: auto 1.25rem 1.25rem; display: grid; gap: .5rem; min-width: 0; opacity: 0; transform: translateY(10px); transition: opacity 220ms ease, transform 220ms var(--ease-out); }
.photo-panel.is-active > div { opacity: 1; transform: translateY(0); }
.photo-panel span { color: var(--accent); font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; }
.photo-panel strong { max-width: 12ch; font-size: clamp(1.05rem, 1.7vw, 1.8rem); font-weight: 400; line-height: 1.05; }

.lounge-feature { display: grid; grid-template-columns: minmax(0, 7fr) minmax(320px, 5fr); background: #141412; }
.lounge-image { min-height: 640px; overflow: hidden; }
.lounge-image img { height: 100%; object-fit: cover; filter: saturate(.78); }
.lounge-copy { display: flex; flex-direction: column; justify-content: center; padding: 7vw; }
.lounge-copy p { max-width: 34rem; margin: 2rem 0 1.3rem; color: var(--muted); font-size: 1rem; line-height: 1.65; }

.reviews { display: grid; grid-template-columns: 4fr 8fr; gap: 6vw; align-items: end; padding: clamp(5.5rem, 8vw, 8.5rem) 5vw; border-top: 1px solid var(--line); }
.review-score { display: flex; flex-direction: column; }
.review-score strong { color: var(--accent); font-size: clamp(5rem, 11vw, 10rem); font-weight: 300; letter-spacing: -.07em; line-height: .8; }
.review-score span { max-width: 12rem; margin-top: 1rem; color: var(--muted); font-size: .82rem; line-height: 1.4; }
.review-carousel { position: relative; min-height: 290px; }
.review { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: space-between; margin: 0; opacity: 0; pointer-events: none; transform: translateY(12px); transition: opacity 220ms ease, transform 260ms var(--ease-out); }
.review.is-current { opacity: 1; pointer-events: auto; transform: translateY(0); }
.review p { max-width: 940px; margin: 0; font-size: clamp(2rem, 3.8vw, 3.8rem); font-weight: 300; letter-spacing: -.04em; line-height: 1.03; }
.review footer { margin-top: 2rem; color: var(--muted); font-size: .8rem; }
.carousel-controls { position: absolute; right: 0; bottom: 0; display: flex; align-items: center; gap: 1rem; }
.carousel-controls button { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; transition: border-color 180ms ease, transform 150ms var(--ease-out); }
.carousel-controls button:hover { border-color: var(--accent); }
.carousel-controls button:active { transform: scale(.95); }
.carousel-controls span { min-width: 46px; color: var(--muted); font-size: .72rem; text-align: center; }

.booking { position: relative; min-height: 68vh; display: grid; place-items: center; overflow: hidden; padding: 6rem 1.25rem; text-align: center; border-top: 1px solid var(--line); }
.booking-texture { position: absolute; inset: 0; height: 100%; object-fit: cover; opacity: .78; }
.booking::after { content: ""; position: absolute; inset: 0; background: rgba(17,17,15,.2); }
.booking-content { position: relative; z-index: 1; display: grid; justify-items: center; }
.booking-logo { width: clamp(90px, 10vw, 128px); margin-bottom: 1.4rem; filter: drop-shadow(0 16px 34px rgba(0,0,0,.24)); }
.booking h2 { font-size: clamp(3.8rem, 8vw, 7.5rem); }
.booking-content > p:not(.eyebrow) { max-width: 32rem; margin: 1.5rem 0 2rem; color: #d1cec6; line-height: 1.6; }

.site-footer { padding: 5rem 5vw 2rem; border-top: 1px solid var(--line); }
.footer-logo { width: clamp(150px, 16vw, 210px); }
.footer-grid { display: grid; grid-template-columns: 2fr 2fr 1.2fr 1fr; gap: 3rem; margin: 4rem 0; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: .55rem; }
.footer-grid span { margin-bottom: .45rem; color: var(--accent); font-size: .65rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; }
.footer-grid a, .footer-grid p { margin: 0; color: #c3c0b8; font-size: .86rem; line-height: 1.6; transition: color 180ms ease; }
.footer-grid a:hover { color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 1.5rem; border-top: 1px solid var(--line); color: #77756f; font-size: .68rem; }

.menu-modal { position: fixed; inset: 0; z-index: 60; display: grid; grid-template-rows: auto 1fr auto; background: #151513; opacity: 0; visibility: hidden; transform: translateY(3%); transition: opacity 220ms ease, transform 300ms var(--ease-out), visibility 220ms ease; }
.menu-modal.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
.menu-modal-bar { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 3vw; border-bottom: 1px solid var(--line); }
.menu-modal-title { display: flex; align-items: center; gap: 1rem; }
.menu-modal-title img { width: 48px; height: 48px; object-fit: contain; }
.menu-modal-bar span { color: var(--accent); font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; }
.menu-modal-bar h2 { margin: .2rem 0 0; font-size: 1.6rem; font-weight: 400; }
.menu-modal-bar button { padding: .65rem 0; border: 0; border-bottom: 1px solid var(--line); background: transparent; cursor: pointer; }
.menu-modal-layout { min-height: 0; display: grid; grid-template-columns: minmax(210px, 3fr) minmax(0, 9fr); }
.menu-categories { min-height: 0; overflow-y: auto; padding: 2rem 3vw; border-right: 1px solid var(--line); scrollbar-width: none; }
.menu-categories::-webkit-scrollbar { display: none; }
.menu-categories button { display: block; width: 100%; padding: .65rem 0; color: #85827b; background: none; border: 0; text-align: left; cursor: pointer; transition: color 160ms ease, transform 160ms var(--ease-out); }
.menu-categories button:hover { color: var(--cream); }
.menu-categories button.is-active { color: var(--accent); transform: translateX(7px); }
.menu-content { min-height: 0; overflow-y: auto; padding: clamp(2rem, 5vw, 5rem); }
.menu-section { max-width: 950px; margin: 0 auto 6rem; scroll-margin-top: 2rem; }
.menu-section h3 { margin: 0 0 2rem; font-size: clamp(2.4rem, 5vw, 5rem); font-weight: 400; letter-spacing: -.05em; }
.menu-items { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2.2rem 3rem; }
.menu-item { display: grid; grid-template-columns: 1fr auto; gap: .45rem 1rem; align-items: baseline; }
.menu-item h4 { margin: 0; font-size: 1rem; font-weight: 500; }
.menu-item strong { color: var(--accent); font-size: .9rem; font-weight: 500; }
.menu-item p { grid-column: 1 / -1; margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.5; }
.menu-item p:empty { display: none; }
.menu-note { margin: 0; padding: 1rem 3vw; color: #77756f; border-top: 1px solid var(--line); font-size: .68rem; }
.menu-loading { display: grid; gap: 1rem; }
.menu-loading span { height: 2rem; background: linear-gradient(90deg, var(--panel), #2b2a25, var(--panel)); background-size: 200% 100%; animation: shimmer 1.2s linear infinite; }
@keyframes shimmer { to { background-position: -200% 0; } }
.menu-error { padding: 3rem; border: 1px solid var(--line); color: var(--muted); text-align: center; }

@media (hover: hover) and (pointer: fine) {
  .plate-card:hover .plate-image img { transform: scale(1.035); }
}

@media (max-width: 980px) {
  .desktop-nav, .site-header .button-small { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .mobile-nav-button, .mobile-menu { display: block; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 76dvh; padding: 7rem 1.25rem 3rem; }
  .hero h1 { max-width: 9ch; font-size: clamp(3.7rem, 14vw, 7.5rem); }
  .hero-media { min-height: 62vh; }
  .manifesto { grid-template-columns: 1fr; padding-inline: 1.25rem; }
  .manifesto-aside { max-width: 24rem; padding-top: 1.5rem; }
  .menu-story { padding-inline: 1.25rem; }
  .menu-heading { margin-bottom: 3rem; }
  .menu-plates { gap: 1.5rem; }
  .plate-image { aspect-ratio: 16 / 13; }
  .lounge-feature { grid-template-columns: 1fr; }
  .lounge-image { min-height: 70vh; }
  .lounge-copy { padding: 7rem 1.25rem; }
  .reviews { grid-template-columns: 1fr; padding-inline: 1.25rem; }
  .review-score { flex-direction: row; align-items: end; gap: 1.5rem; }
  .review-carousel { min-height: 390px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 700px) {
  .hero-actions { align-items: flex-start; flex-direction: column; gap: .8rem; }
  .service-strip { grid-template-columns: 1fr; }
  .service-strip > div { min-height: 92px; border-right: 0; border-bottom: 1px solid var(--line); }
  .service-strip > div:last-child { border-bottom: 0; }
  .manifesto { gap: 3rem; padding-block: 6rem; }
  .manifesto-copy { font-size: clamp(2.4rem, 11vw, 4rem); }
  .menu-story { padding-block: 6rem; }
  .menu-plates { grid-template-columns: 1fr; gap: 3.5rem; }
  .plate-card-featured { grid-row: auto; }
  .plate-card-featured .plate-image, .plate-image { aspect-ratio: 16 / 13; }
  .photo-accordion { height: auto; min-height: 0; display: grid; grid-template-columns: 1fr; }
  .photo-panel, .photo-panel.is-active { min-height: 0; height: 190px; border-right: 0; border-bottom: 1px solid rgba(241,237,225,.28); }
  .photo-panel > div { opacity: 1; transform: none; }
  .photo-panel img, .photo-panel.is-active img { transform: none; filter: saturate(.82) brightness(.72); }
  .lounge-image { min-height: 52vh; }
  .lounge-copy { padding-block: 6rem; }
  .reviews { padding-block: 6rem; }
  .review-carousel { min-height: 420px; }
  .review p { font-size: clamp(2rem, 9vw, 3rem); }
  .carousel-controls { right: auto; left: 0; }
  .booking { min-height: 60vh; padding-block: 5rem; }
  .site-footer { padding-inline: 1.25rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; }
  .menu-modal-bar { padding-inline: 1.25rem; }
  .menu-modal-layout { grid-template-columns: 1fr; grid-template-rows: auto 1fr; }
  .menu-categories { display: flex; gap: 1rem; overflow-x: auto; padding: 1rem 1.25rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .menu-categories button { flex: 0 0 auto; width: auto; white-space: nowrap; }
  .menu-categories button.is-active { transform: none; }
  .menu-content { padding: 2.5rem 1.25rem; }
  .menu-items { grid-template-columns: 1fr; }
  .menu-note { padding-inline: 1.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .page-loader { display: none; }
  .image-reveal { clip-path: none !important; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-scrolled { background: var(--ink); backdrop-filter: none; }
}

/* Cold-luxury visual direction */
:root {
  --ink: #0b0d0e;
  --ink-soft: #101214;
  --panel: #181b1d;
  --line: rgba(232, 235, 232, .14);
  --cream: #eceeea;
  --muted: #979c9a;
  --accent: #c9cbc7;
}

body { background: #0b0d0e; }

.site-header {
  height: 76px;
  padding-inline: clamp(1.25rem, 4vw, 4.5rem);
  border-bottom-color: rgba(236, 238, 234, .08);
}
.site-header.is-scrolled { background: rgba(11, 13, 14, .86); border-color: rgba(236, 238, 234, .12); }
.brand-logo { width: 62px; height: 62px; }
.brand:hover .brand-logo { transform: scale(1.025); }
.desktop-nav { gap: 2.6rem; font-size: .67rem; font-weight: 500; letter-spacing: .13em; text-transform: uppercase; }
.desktop-nav a { color: #c1c5c2; }

.button {
  min-height: 48px;
  padding-inline: 1.55rem;
  color: #0b0d0e;
  background: #e0e2de;
  border-color: #e0e2de;
  border-radius: 2px;
  font-size: .67rem;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: transform 160ms var(--ease-out), background-color 180ms ease, border-color 180ms ease;
}
.button:hover { background: #f0f1ee; border-color: #f0f1ee; }
.button-small { min-height: 38px; }
.text-link { color: #d7dad6; font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }

.hero { position: relative; isolation: isolate; min-height: 92dvh; display: block; overflow: hidden; }
.hero-copy { min-height: 92dvh; justify-content: flex-end; padding: 8rem 6vw 6vw; }
.hero h1 { max-width: 9ch; font-size: clamp(4.4rem, 8vw, 8.6rem); line-height: .86; }
.hero-intro { max-width: 31rem; color: #c8ccc9; font-size: clamp(.98rem, 1.25vw, 1.15rem); }
.hero-media { position: absolute; inset: 0; z-index: -1; min-height: 0; }
.hero-media img { object-position: 52% 48%; filter: saturate(.68) contrast(1.06) brightness(.82); }
.hero-media-wash {
  background:
    linear-gradient(90deg, rgba(8, 10, 11, .93) 0%, rgba(8, 10, 11, .78) 34%, rgba(8, 10, 11, .26) 69%, rgba(8, 10, 11, .08) 100%),
    linear-gradient(0deg, rgba(8, 10, 11, .72) 0%, transparent 48%);
}
.eyebrow { margin-bottom: 1.35rem; color: #c9cbc7; font-size: .63rem; letter-spacing: .24em; }

.service-strip { background: #0d0f10; border-color: rgba(236, 238, 234, .12); }
.service-strip > div { min-height: 88px; padding-inline: clamp(1.25rem, 4vw, 4.5rem); border-color: rgba(236, 238, 234, .12); }
.service-strip span { color: #777d7a; font-size: .61rem; letter-spacing: .18em; }
.service-strip strong, .service-strip a { color: #d8dbd7; font-size: clamp(.9rem, 1.2vw, 1.05rem); }

.manifesto { grid-template-columns: minmax(0, 8.5fr) minmax(230px, 3.5fr); padding: clamp(5.5rem, 8vw, 8rem) 6vw; background: #0b0d0e; }
.manifesto-copy { max-width: 1020px; font-size: clamp(2.5rem, 4.3vw, 5rem); line-height: 1; }
.manifesto-aside { border-color: rgba(236, 238, 234, .16); }
.manifesto-aside strong { color: #d7d9d6; }

.menu-story { padding: clamp(5.5rem, 8vw, 8rem) 6vw; background: #101214; border-top: 1px solid rgba(236, 238, 234, .08); }
.menu-heading { max-width: 940px; margin-bottom: clamp(2.8rem, 4vw, 4.2rem); }
.menu-heading h2 { font-size: clamp(3rem, 5vw, 5.6rem); }
.menu-heading > p:not(.eyebrow) { color: #929795; }
.menu-plates { grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr); gap: clamp(1.25rem, 2vw, 2rem); }
.plate-card { gap: 1rem; }
.plate-card-featured .plate-image { aspect-ratio: 5 / 6; }
.plate-image { background: #181b1d; }
.plate-image img { filter: saturate(.72) contrast(1.04); transition-duration: 850ms; }
.plate-copy { padding-top: 1rem; border-top: 1px solid rgba(236, 238, 234, .14); }
.plate-copy span { color: #777d7a; font-size: .62rem; letter-spacing: .19em; }
.plate-copy h3 { font-weight: 300; }
.plate-copy strong { color: #daddd9; font-weight: 400; }
.plate-copy p { color: #8f9491; font-size: .88rem; }

.photo-accordion { height: 58vh; min-height: 480px; grid-template-columns: 1.75fr repeat(4, 1fr); border-top: 1px solid rgba(236, 238, 234, .1); border-bottom: 1px solid rgba(236, 238, 234, .1); }
.photo-panel { border-color: rgba(236, 238, 234, .16); }
.photo-panel img { filter: grayscale(.28) saturate(.56) contrast(1.08) brightness(.68); }
.photo-panel.is-active img { filter: grayscale(.05) saturate(.72) contrast(1.06) brightness(.77); }
.photo-panel span { color: #c9cbc7; }

.lounge-feature { grid-template-columns: minmax(0, 7.5fr) minmax(340px, 4.5fr); background: #0d0f10; }
.lounge-image { min-height: 600px; }
.lounge-image img { filter: grayscale(.18) saturate(.66) contrast(1.06); }
.lounge-copy { padding: 6vw; }
.lounge-copy h2 { font-size: clamp(3rem, 5vw, 5.6rem); }

.reviews { padding: clamp(5.5rem, 8vw, 8rem) 6vw; background: #0b0d0e; }
.review-score strong { color: #d9dcd8; font-size: clamp(4.8rem, 9vw, 8rem); }
.review p { color: #dfe1de; font-size: clamp(2rem, 3.3vw, 3.35rem); line-height: 1.06; }
.carousel-controls button { border-radius: 2px; }

.booking { min-height: 62vh; padding-block: 5.5rem; }
.booking-texture { filter: grayscale(.58) contrast(1.12) brightness(.72); opacity: .68; }
.booking::after { background: rgba(8, 10, 11, .5); }
.booking-logo { width: clamp(96px, 9vw, 120px); filter: drop-shadow(0 18px 40px rgba(0, 0, 0, .28)); }
.booking h2 { font-size: clamp(3.8rem, 7vw, 6.8rem); }

.site-footer { padding: 4.5rem 6vw 2rem; background: #0b0d0e; }
.footer-logo { width: clamp(140px, 14vw, 180px); }
.footer-grid { margin: 3.5rem 0; }
.footer-grid span { color: #bfc2bf; }
.footer-grid a, .footer-grid p { color: #919693; }

.menu-modal { background: #0d0f10; }
.menu-modal-bar, .menu-categories, .menu-note { border-color: rgba(236, 238, 234, .14); }
.menu-modal-bar span { color: #bfc2bf; }
.menu-categories button.is-active, .menu-item strong { color: #d7dad6; }

@media (max-width: 980px) {
  .hero, .hero-copy { min-height: 92dvh; }
  .hero-copy { padding: 7.5rem 1.25rem 4rem; }
  .hero-media { min-height: 0; }
  .hero h1 { max-width: 8.5ch; font-size: clamp(3.7rem, 13vw, 6.8rem); }
  .manifesto, .menu-story, .reviews { padding-inline: 1.25rem; }
  .manifesto { grid-template-columns: 1fr; }
  .manifesto-aside { max-width: 25rem; }
  .menu-plates { grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr); }
  .lounge-feature { grid-template-columns: 1fr; }
  .lounge-image { min-height: 58vh; }
}

@media (max-width: 700px) {
  .site-header { height: 70px; }
  .brand-logo { width: 56px; height: 56px; }
  .mobile-menu { inset-block-start: 70px; }
  .hero, .hero-copy { min-height: 88dvh; }
  .hero-copy { padding: 7rem 1.25rem 3rem; }
  .hero h1 { font-size: clamp(3.25rem, 14.5vw, 4.8rem); }
  .hero-intro { max-width: 29rem; }
  .hero-media img { object-position: 58% 50%; }
  .service-strip > div { min-height: 78px; }
  .manifesto { padding-block: 5.5rem; }
  .manifesto-copy { font-size: clamp(2.3rem, 10.5vw, 3.7rem); }
  .menu-story { padding-block: 5.5rem; }
  .menu-plates { grid-template-columns: 1fr; gap: 3rem; }
  .plate-card-featured .plate-image, .plate-image { aspect-ratio: 4 / 3; }
  .photo-accordion { height: auto; min-height: 0; grid-template-columns: 1fr; }
  .photo-panel, .photo-panel.is-active { height: 150px; }
  .lounge-image { min-height: 48vh; }
  .lounge-copy { padding-block: 5.5rem; }
  .reviews { padding-block: 5.5rem; }
  .booking { min-height: 58vh; }
}

@media (prefers-reduced-motion: reduce) {
  .brand-logo, .plate-image img, .photo-panel img { transition-duration: .01ms !important; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-scrolled { background: #0b0d0e; backdrop-filter: none; }
}

/* Palette-inspired editorial direction, interpreted for Central Lounge */
:root {
  --ink: #061a11;
  --ink-soft: #0a2418;
  --panel: #113121;
  --line: rgba(240, 235, 221, .16);
  --cream: #f0ecdf;
  --muted: #a8b1aa;
  --accent: #d6c89f;
}

body { color: var(--cream); background: var(--ink); }

.site-header {
  height: 84px;
  grid-template-columns: 1fr auto 1fr;
  padding-inline: clamp(1.25rem, 4.5vw, 5rem);
  background: rgba(6, 26, 17, .18);
  border-bottom-color: rgba(240, 235, 221, .12);
}
.site-header.is-scrolled { background: rgba(6, 26, 17, .9); border-color: rgba(240, 235, 221, .14); }
.brand { grid-column: 2; grid-row: 1; justify-self: center; }
.brand-logo { width: 68px; height: 68px; }
.desktop-nav { grid-column: 1; grid-row: 1; justify-self: start; gap: 2.3rem; font-size: .64rem; letter-spacing: .16em; }
.site-header .button-small { grid-column: 3; grid-row: 1; justify-self: end; }

.button {
  color: #f0ecdf;
  background: transparent;
  border-color: rgba(240, 235, 221, .72);
  border-radius: 0;
}
.button:hover { color: #061a11; background: #f0ecdf; border-color: #f0ecdf; }
.text-link { color: #ece8dc; border-color: rgba(240, 235, 221, .34); }
.text-link:hover { color: var(--accent); border-color: var(--accent); }

.hero { min-height: 78dvh; }
.hero-copy { min-height: 78dvh; justify-content: center; padding: 9rem 7vw 5rem; }
.hero h1 {
  max-width: 12ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.6rem, 6.2vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .94;
}
.hero-intro { max-width: 34rem; color: #d7d7cb; font-size: 1rem; }
.hero-media img { object-position: 54% 48%; filter: saturate(.82) contrast(1.03) brightness(.68); }
.hero-media-wash {
  background:
    linear-gradient(90deg, rgba(4, 21, 13, .9) 0%, rgba(4, 21, 13, .68) 39%, rgba(4, 21, 13, .16) 72%),
    linear-gradient(0deg, rgba(4, 21, 13, .5), transparent 52%);
}
.eyebrow { color: var(--accent); }

.service-strip { background: #071f15; border-color: rgba(240, 235, 221, .14); }
.service-strip > div { border-color: rgba(240, 235, 221, .14); }
.service-strip span { color: #8d9b91; }
.service-strip strong, .service-strip a { color: #ebe7da; }

.manifesto {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 2.8rem;
  padding: clamp(6rem, 9vw, 9rem) 6vw;
  text-align: center;
  background: #061a11;
}
.manifesto-main { max-width: 980px; }
.manifesto-copy {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 4.4vw, 5rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.03;
}
.manifesto-aside { max-width: 580px; display: flex; align-items: center; gap: 1.5rem; padding-top: 1.5rem; text-align: left; }
.manifesto-aside strong { flex: 0 0 auto; color: var(--accent); font-family: Georgia, "Times New Roman", serif; }

.menu-story { padding: clamp(6rem, 8vw, 8rem) 5vw; background: #0a2418; }
.menu-heading { max-width: 800px; margin-inline: auto; text-align: center; }
.menu-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 5.3vw, 5.8rem);
  font-weight: 400;
  line-height: .98;
}
.menu-heading > p:not(.eyebrow) { margin-inline: auto; color: #a8b1aa; }
.menu-heading .text-link { margin-inline: auto; }
.menu-plates { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(1rem, 1.8vw, 1.8rem); }
.plate-card-featured { grid-row: auto; }
.plate-card-featured .plate-image, .plate-image { aspect-ratio: 4 / 5; }
.plate-image { background: #113121; }
.plate-image img { filter: saturate(.9) contrast(1.02) brightness(.93); }
.plate-copy { padding-top: .95rem; border-top: 0; }
.plate-copy span { color: #8b9a8f; }
.plate-copy h3 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.45rem, 2vw, 2rem); font-weight: 400; }
.plate-copy strong { color: var(--accent); }
.plate-copy p { color: #9eaaa1; font-size: .82rem; }

.photo-accordion { height: 54vh; min-height: 460px; border-color: rgba(240, 235, 221, .14); }
.photo-panel { border-color: rgba(240, 235, 221, .18); }
.photo-panel img { filter: saturate(.75) contrast(1.03) brightness(.72); }
.photo-panel.is-active img { filter: saturate(.95) contrast(1.02) brightness(.8); }
.photo-panel span { color: var(--accent); }

.lounge-feature { background: #061a11; }
.lounge-image img { filter: saturate(.8) contrast(1.02) brightness(.82); }
.lounge-copy h2, .booking h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 400; }
.lounge-copy p { color: #a8b1aa; }

.reviews { grid-template-columns: 1fr; justify-items: center; gap: 3rem; padding-block: clamp(6rem, 9vw, 9rem); text-align: center; background: #0a2418; }
.review-score { flex-direction: row; align-items: end; gap: 1.3rem; }
.review-score strong { color: var(--accent); font-family: Georgia, "Times New Roman", serif; }
.review-score span { margin-block: 0 .5rem; text-align: left; }
.review-carousel { width: min(100%, 1040px); min-height: 300px; }
.review { align-items: center; }
.review p { font-family: Georgia, "Times New Roman", serif; font-weight: 400; line-height: 1.12; }
.carousel-controls { right: 50%; transform: translateX(50%); }
.carousel-controls button { border-radius: 0; }

.booking { background: #061a11; }
.booking-texture { filter: sepia(.15) saturate(.72) contrast(1.04) brightness(.68); }
.booking::after { background: rgba(5, 24, 15, .55); }
.booking h2 { letter-spacing: -.045em; }

.site-footer { background: #061a11; }
.footer-grid span { color: var(--accent); }
.footer-grid a, .footer-grid p { color: #a8b1aa; }
.menu-modal { background: #071f15; }
.menu-modal-bar span, .menu-categories button.is-active, .menu-item strong { color: var(--accent); }

@media (max-width: 1100px) {
  .menu-plates { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 3rem 1.5rem; }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; height: 72px; }
  .brand { grid-column: 1; justify-self: start; }
  .brand-logo { width: 58px; height: 58px; }
  .mobile-nav-button { grid-column: 2; }
  .mobile-menu { inset-block-start: 72px; }
  .hero, .hero-copy { min-height: 82dvh; }
  .hero-copy { padding: 8rem 1.25rem 4rem; }
  .manifesto { padding-inline: 1.25rem; }
}

@media (max-width: 700px) {
  .hero, .hero-copy { min-height: 86dvh; }
  .hero h1 { max-width: 9ch; font-size: clamp(3.3rem, 15vw, 5rem); }
  .hero-media img { object-position: 60% 50%; }
  .manifesto { padding-block: 5.5rem; }
  .manifesto-aside { align-items: flex-start; }
  .menu-story { padding-block: 5.5rem; }
  .menu-plates { grid-template-columns: 1fr; gap: 3.5rem; }
  .plate-card-featured .plate-image, .plate-image { aspect-ratio: 4 / 3; }
  .photo-accordion { height: auto; min-height: 0; grid-template-columns: 1fr; }
  .photo-panel, .photo-panel.is-active { height: 150px; }
  .review-score { align-items: center; }
  .review-score strong { font-size: 5rem; }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-scrolled { background: #061a11; }
}

/* Premium black styling, preserving the Palette-inspired layout */
:root {
  --ink: #080909;
  --ink-soft: #0e0f10;
  --panel: #171819;
  --line: rgba(241, 238, 230, .15);
  --cream: #f1eee6;
  --muted: #aaa8a2;
  --accent: #cdb985;
}

body { color: var(--cream); background: #080909; }

.site-header { background: rgba(8, 9, 9, .2); border-bottom-color: rgba(241, 238, 230, .12); }
.site-header.is-scrolled { background: rgba(8, 9, 9, .9); border-color: rgba(241, 238, 230, .14); }
.desktop-nav a { color: #d0cdc6; }

.button { color: #f1eee6; border-color: rgba(241, 238, 230, .72); }
.button:hover { color: #080909; background: #f1eee6; border-color: #f1eee6; }
.text-link { color: #ece9e1; border-color: rgba(241, 238, 230, .34); }

.hero-intro { color: #d4d1ca; }
.hero-media img { filter: saturate(.78) contrast(1.07) brightness(.64); }
.hero-media-wash {
  background:
    linear-gradient(90deg, rgba(5, 6, 6, .92) 0%, rgba(5, 6, 6, .7) 39%, rgba(5, 6, 6, .16) 72%),
    linear-gradient(0deg, rgba(5, 6, 6, .58), transparent 52%);
}

.service-strip { background: #0a0b0b; border-color: rgba(241, 238, 230, .14); }
.service-strip > div { border-color: rgba(241, 238, 230, .14); }
.service-strip span { color: #8d8c87; }
.service-strip strong, .service-strip a { color: #e9e6de; }

.manifesto { background: #080909; }
.manifesto-aside p { color: #aaa8a2; }

.menu-story { background: #0e0f10; }
.menu-heading > p:not(.eyebrow) { color: #aaa8a2; }
.plate-image { background: #171819; }
.plate-image img { filter: saturate(.86) contrast(1.04) brightness(.9); }
.plate-copy span { color: #8f8e89; }
.plate-copy p { color: #a5a39d; }

.photo-accordion { border-color: rgba(241, 238, 230, .14); }
.photo-panel { border-color: rgba(241, 238, 230, .18); }
.photo-panel img { filter: saturate(.67) contrast(1.06) brightness(.66); }
.photo-panel.is-active img { filter: saturate(.9) contrast(1.04) brightness(.78); }

.lounge-feature { background: #090a0a; }
.lounge-image img { filter: saturate(.74) contrast(1.05) brightness(.76); }
.lounge-copy p { color: #aaa8a2; }

.reviews { background: #0e0f10; }
.review p { color: #ece9e1; }

.booking { background: #080909; }
.booking-texture { filter: grayscale(.35) sepia(.08) saturate(.68) contrast(1.09) brightness(.62); }
.booking::after { background: rgba(7, 8, 8, .58); }

.site-footer { background: #080909; }
.footer-grid a, .footer-grid p { color: #aaa8a2; }
.menu-modal { background: #0a0b0b; }

@media (prefers-reduced-transparency: reduce) {
  .site-header.is-scrolled { background: #080909; }
}

/* Bold menu typography and non-overlapping review choreography */
.menu-heading h2 { font-weight: 700; letter-spacing: -.055em; }
.plate-copy h3 { font-weight: 700; }
.menu-modal-bar h2 { font-family: Georgia, "Times New Roman", serif; font-weight: 700; letter-spacing: -.025em; }
.menu-categories button { font-weight: 600; letter-spacing: .045em; }
.menu-section h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 700; letter-spacing: -.045em; }
.menu-item h4 { font-size: 1.04rem; font-weight: 600; }
.menu-item strong { font-weight: 700; }

.review-carousel { min-height: 340px; }
.review { justify-content: flex-start; }
.review.is-leaving { opacity: 0; pointer-events: none; transform: translateY(-8px); transition-duration: 140ms; }
.review footer { padding-bottom: 4.6rem; }
.carousel-controls { right: auto; left: 50%; bottom: 0; transform: translateX(-50%); }

@media (max-width: 700px) {
  .review-carousel { min-height: 440px; }
  .review footer { padding-bottom: 5rem; }
}

/* Typography rhythm and true-black navigation refinement */
.site-header,
.site-header.is-scrolled {
  height: 88px;
  background: #000;
  border-bottom-color: rgba(241, 238, 230, .13);
  backdrop-filter: none;
}

.brand-logo {
  width: 76px;
  height: 76px;
}

.desktop-nav {
  gap: 2.5rem;
  letter-spacing: .18em;
}

.hero-copy {
  padding-top: 9.5rem;
}

.hero .eyebrow {
  margin-bottom: 1.6rem;
  letter-spacing: .26em;
}

.hero h1 {
  letter-spacing: -.045em;
  line-height: .96;
}

.hero-intro {
  max-width: 33rem;
  margin-top: 2.35rem;
  line-height: 1.62;
}

.hero-actions {
  gap: 1.65rem;
  margin-top: 2.25rem;
}

.menu-modal,
.menu-modal-bar,
.menu-categories,
.menu-content,
.menu-note,
.mobile-menu {
  background: #000;
}

.menu-modal-bar {
  padding-block: 1.35rem;
}

.menu-modal-title {
  gap: 1.15rem;
}

.menu-modal-title img {
  width: 54px;
  height: 54px;
}

.menu-modal-bar h2 {
  margin-top: .32rem;
  line-height: 1.08;
}

.menu-categories button {
  padding-block: 1.05rem;
  line-height: 1.3;
}

.menu-section h3 {
  margin-bottom: 1.6rem;
  line-height: 1;
}

.menu-item {
  padding-block: 1.15rem;
}

.menu-item h4 {
  line-height: 1.35;
}

@media (max-width: 980px) {
  .site-header,
  .site-header.is-scrolled {
    height: 78px;
  }

  .brand-logo {
    width: 66px;
    height: 66px;
  }

  .mobile-menu {
    inset-block-start: 78px;
  }

  .hero-copy {
    padding-top: 8.75rem;
  }
}

@media (max-width: 700px) {
  .hero .eyebrow {
    margin-bottom: 1.35rem;
  }

  .hero h1 {
    letter-spacing: -.04em;
    line-height: .98;
  }

  .hero-intro {
    margin-top: 1.8rem;
    line-height: 1.58;
  }

  .hero-actions {
    margin-top: 1.85rem;
  }
}

/* Open hero typography: relaxed tracking and a more generous vertical cadence */
.hero .eyebrow {
  margin-bottom: 2rem;
}

.hero h1 {
  max-width: 12.5ch;
  letter-spacing: -.012em;
  line-height: 1.06;
}

.hero-intro {
  max-width: 35rem;
  margin-top: 3rem;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 2.7rem;
}

@media (max-width: 700px) {
  .hero .eyebrow {
    margin-bottom: 1.7rem;
  }

  .hero h1 {
    letter-spacing: -.01em;
    line-height: 1.04;
  }

  .hero-intro {
    margin-top: 2.15rem;
    line-height: 1.72;
  }

  .hero-actions {
    margin-top: 2.2rem;
  }
}

/* Compact mobile reviews and centred mobile footer */
@media (max-width: 700px) {
  .reviews {
    gap: 1.8rem;
    padding-block: 4.5rem;
  }

  .review-score {
    gap: 1rem;
  }

  .review-carousel {
    min-height: 360px;
  }

  .review footer {
    margin-top: 1.5rem;
    padding-bottom: 3.75rem;
  }

  .site-footer {
    padding-inline: 1.5rem;
    text-align: center;
  }

  .footer-logo {
    display: block;
    margin-inline: auto;
  }

  .footer-grid {
    justify-items: center;
    margin-block: 3rem;
    text-align: center;
  }

  .footer-grid > div {
    width: 100%;
    align-items: center;
  }

  .footer-bottom {
    align-items: center;
    text-align: center;
  }
}
