:root {
  --blue-900: #062d5f;
  --blue-800: #0a3f80;
  --blue-700: #0d4f96;
  --blue-500: #1f72b9;
  --blue-100: #e8f4ff;
  --white: #ffffff;
  --ink: #08131f;
  --muted: #536171;
  --line: rgba(13, 79, 150, 0.22);
  --gold: #d8aa4c;
  --olive: #526f4d;
  --stone: #f7f9fb;
  --shadow: 0 18px 48px rgba(6, 45, 95, 0.18);
  --container: 1160px;
  --header-height: 76px;
}

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

html {
  scroll-behavior: smooth;
  letter-spacing: 0;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

section {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.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: 50;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px clamp(28px, 5vw, 84px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(3, 22, 48, 0.72), rgba(3, 22, 48, 0));
  transition: background 220ms ease, box-shadow 220ms ease, min-height 220ms ease;
}

.site-header.is-scrolled,
.site-header-solid {
  color: var(--white);
  background: rgba(6, 45, 95, 0.92);
  box-shadow: 0 10px 30px rgba(6, 45, 95, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 112px;
  height: auto;
  filter: drop-shadow(0 7px 18px rgba(0, 0, 0, 0.28));
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.primary-nav a {
  position: relative;
  padding: 8px 0;
}

.primary-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.75);
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.12);
}

.nav-cta:hover {
  background: var(--white);
  color: var(--blue-900);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
  color: inherit;
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  padding: 128px 34px 112px;
  color: var(--white);
  overflow: hidden;
  background: var(--blue-900);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0 auto 0 0;
  width: 18px;
  background:
    linear-gradient(var(--white) 0 22px, transparent 22px 34px) 0 0 / 18px 68px repeat-y,
    var(--blue-700);
}

.hero::after,
.menu-hero::after,
.booking-band::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14px;
  background:
    linear-gradient(90deg, var(--white) 0 18px, transparent 18px 28px) 0 0 / 56px 7px repeat-x,
    linear-gradient(90deg, transparent 0 10px, var(--white) 10px 28px, transparent 28px 56px) 0 7px / 56px 7px repeat-x;
  opacity: 0.92;
}

.hero-video,
.hero-tint {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-tint {
  background:
    radial-gradient(circle at 76% 38%, rgba(216, 170, 76, 0.16), transparent 32%),
    linear-gradient(90deg, rgba(5, 11, 16, 0.88) 0%, rgba(13, 18, 20, 0.56) 44%, rgba(13, 18, 20, 0.1) 100%),
    linear-gradient(180deg, rgba(5, 11, 16, 0.08), rgba(5, 11, 16, 0.54));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 58px;
  align-items: end;
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
  margin: 0;
  text-align: left;
}

.greek-label,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1,
.menu-hero h1 {
  margin: 0;
  font-family: "GFS Didot", "Cinzel", Georgia, serif;
  line-height: 0.96;
  font-weight: 400;
}

.hero h1 {
  max-width: 860px;
  color: var(--white);
  font-size: 6.35rem;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.42);
  text-wrap: balance;
}

.hero-copy {
  max-width: 590px;
  margin: 24px 0 0;
  font-size: 1.22rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.32);
}

.hero-actions,
.contact-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue-700);
  border-color: var(--blue-700);
  color: var(--white);
}

.button-primary:hover {
  background: var(--blue-900);
  border-color: var(--blue-900);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
}

.button-ghost:hover,
.button-light:hover {
  background: var(--white);
  color: var(--blue-900);
}

.button-light {
  color: var(--white);
  border-color: var(--white);
  background: transparent;
}

.button-outline {
  color: var(--blue-800);
  border-color: var(--blue-800);
  background: transparent;
}

.button-outline:hover {
  background: var(--blue-800);
  color: var(--white);
}

.hero-info {
  display: grid;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(8, 19, 31, 0.34);
  color: var(--white);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.hero-info > p {
  margin: 0;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-info div {
  padding: 17px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-info div:last-child {
  border-bottom: 0;
}

.hero-info span,
.signature-item span,
.contact-panel dt,
.menu-meta .eyebrow,
.dish-price {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-info strong {
  display: block;
  margin-top: 2px;
  color: var(--white);
  font-size: 1.04rem;
}

.hero-ribbon {
  position: absolute;
  z-index: 3;
  left: 34px;
  right: 34px;
  bottom: 30px;
  width: min(var(--container), calc(100% - 68px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(6, 45, 95, 0.42);
  backdrop-filter: blur(12px);
}

.hero-ribbon span {
  padding: 12px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.86);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.hero-ribbon span:last-child {
  border-right: 0;
}

.intro-section,
.signature-section,
.contact-section,
.menu-shell {
  padding: 86px 34px;
}

.intro-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(13, 79, 150, 0.06) 0 1px, transparent 1px 48px),
    linear-gradient(180deg, var(--white), var(--blue-100));
}

.intro-section::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 18px;
  background: var(--blue-700);
}

.section-kicker {
  width: min(var(--container), 100%);
  margin: 0 auto 18px;
  color: var(--blue-700);
}

.split-intro {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 46px;
  align-items: start;
}

.intro-copy h2,
.section-heading h2,
.booking-inner h2,
.contact-panel h3,
.menu-meta h2 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: 2.55rem;
  line-height: 1.08;
  color: var(--blue-900);
}

.intro-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-block {
  min-height: 260px;
  padding: 26px;
  border-right: 1px solid var(--line);
}

.feature-block:last-child {
  border-right: 0;
}

.feature-block span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--blue-700);
  color: var(--white);
  font-weight: 900;
}

.feature-block h3 {
  margin: 24px 0 12px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.08rem;
  color: var(--blue-900);
}

.feature-block p {
  margin: 0;
  color: var(--muted);
}

.image-run {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 0;
  background: var(--blue-900);
}

.image-tile {
  min-height: 420px;
  overflow: hidden;
}

.image-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.image-tile:hover img {
  transform: scale(1.035);
}

.image-tile-wide {
  min-height: 500px;
}

.signature-section {
  background: var(--white);
}

.section-heading {
  width: min(var(--container), 100%);
  margin: 0 auto 36px;
}

.section-heading .greek-label {
  color: var(--blue-700);
}

.signature-list {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.signature-item {
  display: grid;
  grid-template-rows: 260px 1fr;
  border: 1px solid var(--line);
  background: var(--stone);
}

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

.signature-item div {
  padding: 24px;
}

.signature-item h3 {
  margin: 10px 0;
  font-family: "Cinzel", Georgia, serif;
  color: var(--blue-900);
}

.signature-item p {
  margin: 0;
  color: var(--muted);
}

.booking-band {
  position: relative;
  padding: 82px 34px 94px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(6, 45, 95, 0.95), rgba(13, 79, 150, 0.74)),
    url("../img/greek-salad-table.webp") center / cover;
}

.booking-inner {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
}

.booking-inner h2 {
  color: var(--white);
}

.booking-inner p:not(.greek-label) {
  margin: 18px auto 0;
  max-width: 570px;
  color: rgba(255, 255, 255, 0.86);
}

.contact-section {
  background: var(--blue-100);
}

.contact-grid {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-panel {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 30px;
}

.contact-panel dl,
.contact-panel p {
  margin: 20px 0 0;
}

.contact-panel dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.contact-panel dl div:last-child {
  border-bottom: 0;
}

.contact-panel dd {
  margin: 0;
  color: var(--blue-900);
  font-weight: 800;
}

.contact-actions {
  justify-content: flex-start;
}

.site-footer {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(6, 45, 95, 0.98), rgba(13, 79, 150, 0.94)),
    url("../img/grill-skewers.webp") center / cover;
}

.footer-pattern {
  height: 18px;
  background:
    linear-gradient(90deg, var(--white) 0 22px, transparent 22px 34px) 0 0 / 68px 9px repeat-x,
    linear-gradient(90deg, transparent 0 12px, var(--white) 12px 34px, transparent 34px 68px) 0 9px / 68px 9px repeat-x;
}

.footer-main {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 68px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 0.78fr 0.86fr 1fr;
  gap: 34px;
  padding: 64px 0 48px;
}

.footer-brand img {
  width: 154px;
  height: auto;
  margin-bottom: 24px;
}

.footer-brand p,
.footer-column p,
.footer-booking p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.footer-brand p {
  max-width: 280px;
  font-size: 1.02rem;
}

.footer-column h2,
.footer-booking h2 {
  margin: 0 0 16px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.1rem;
  color: var(--white);
  text-transform: uppercase;
}

.footer-column p + p {
  margin-top: 14px;
}

.footer-column a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: 2px solid rgba(255, 255, 255, 0.78);
}

.footer-booking {
  border: 1px solid rgba(255, 255, 255, 0.34);
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
}

.footer-booking .greek-label {
  margin-bottom: 10px;
}

.footer-booking .button {
  margin-top: 22px;
}

.footer-bottom {
  width: min(var(--container), calc(100% - 68px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.menu-page {
  background: var(--stone);
}

.menu-hero {
  position: relative;
  min-height: 460px;
  display: grid;
  align-items: end;
  padding: 128px 34px 72px;
  color: var(--white);
  overflow: hidden;
  background: var(--blue-900);
}

.menu-hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 45, 95, 0.92), rgba(6, 45, 95, 0.45)),
    url("../img/souvlaki-fries.webp") center 58% / cover;
}

.menu-hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.menu-hero h1 {
  font-size: 4.2rem;
}

.menu-hero p:not(.greek-label) {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.12rem;
}

.menu-shell {
  background: var(--stone);
}

.menu-toolbar {
  width: min(var(--container), 100%);
  margin: 0 auto 28px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.mode-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--blue-700);
  background: var(--white);
}

.mode-switch button,
.category-button {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--blue-900);
  font-weight: 900;
  text-transform: uppercase;
}

.mode-switch button {
  min-width: 150px;
  padding: 14px 18px;
}

.mode-switch button.is-active {
  background: var(--blue-700);
  color: var(--white);
}

.menu-layout {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.menu-layout > *,
.menu-content,
.category-rail,
.category-rail-inner {
  min-width: 0;
}

.category-rail {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.category-rail-inner {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(6, 45, 95, 0.08);
  scrollbar-color: var(--blue-700) rgba(13, 79, 150, 0.14);
  scrollbar-width: thin;
}

.category-rail-inner::-webkit-scrollbar {
  height: 6px;
}

.category-rail-inner::-webkit-scrollbar-track {
  background: rgba(13, 79, 150, 0.14);
}

.category-rail-inner::-webkit-scrollbar-thumb {
  background: var(--blue-700);
}

.category-button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  transition: background 160ms ease, color 160ms ease;
}

.category-button:last-child {
  border-bottom: 0;
}

.category-button:hover,
.category-button.is-active {
  background: var(--blue-700);
  color: var(--white);
}

.category-button small {
  color: currentColor;
  opacity: 0.7;
  font-weight: 700;
}

.menu-meta {
  min-height: 120px;
  display: grid;
  align-content: end;
  padding: 0 0 22px;
  border-bottom: 2px solid var(--blue-700);
}

.menu-meta p {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 680px;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding-top: 18px;
}

.dish-card {
  display: grid;
  align-content: start;
  min-height: 186px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(6, 45, 95, 0.06);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.dish-card:hover {
  border-color: rgba(13, 79, 150, 0.62);
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(6, 45, 95, 0.12);
}

.dish-card header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: start;
}

.dish-card h3 {
  margin: 0;
  color: var(--blue-900);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.06rem;
  line-height: 1.2;
}

.dish-price {
  min-width: 62px;
  color: var(--blue-700);
  text-align: right;
  font-size: 0.95rem;
}

.dish-desc {
  margin: 14px 0 0;
  color: var(--muted);
}

.dish-english {
  margin: 8px 0 0;
  color: #74808d;
  font-size: 0.92rem;
  font-style: italic;
}

.hub-page {
  background: var(--stone);
}

.hub-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: end;
  padding: 136px 34px 86px;
  color: var(--white);
  overflow: hidden;
  background: var(--blue-900);
}

.hub-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 45, 95, 0.92), rgba(6, 45, 95, 0.58) 48%, rgba(6, 45, 95, 0.22)),
    linear-gradient(180deg, rgba(4, 20, 42, 0.12), rgba(4, 20, 42, 0.7));
}

.hub-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 14px;
  background:
    linear-gradient(90deg, var(--white) 0 18px, transparent 18px 28px) 0 0 / 56px 7px repeat-x,
    linear-gradient(90deg, transparent 0 10px, var(--white) 10px 28px, transparent 28px 56px) 0 7px / 56px 7px repeat-x;
  opacity: 0.92;
}

.hub-hero-media,
.hub-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hub-hero-media img {
  object-fit: cover;
}

.hub-hero-content {
  position: relative;
  z-index: 3;
  width: min(var(--container), 100%);
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.breadcrumb a:hover {
  color: var(--white);
}

.hub-hero h1 {
  max-width: 860px;
  margin: 0;
  color: var(--white);
  font-family: "GFS Didot", "Cinzel", Georgia, serif;
  font-size: 5.1rem;
  font-weight: 400;
  line-height: 0.98;
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.38);
  text-wrap: balance;
}

.hub-lede {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.16rem;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.28);
}

.hub-lede a,
.hub-copy-section a:not(.button) {
  color: var(--blue-800);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hub-lede a {
  color: var(--white);
}

.hub-article,
.hub-directory {
  padding: 86px 34px;
  background:
    linear-gradient(90deg, rgba(13, 79, 150, 0.06) 0 1px, transparent 1px 48px),
    var(--stone);
}

.hub-article-grid {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  align-items: start;
}

.hub-copy,
.hub-sidebar,
.hub-card {
  min-width: 0;
}

.hub-feature-image {
  margin: 0 0 40px;
  aspect-ratio: 16 / 8.5;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--blue-100);
}

.hub-feature-image img,
.hub-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hub-copy-section {
  padding: 0 0 42px;
  margin: 0 0 42px;
  border-bottom: 1px solid var(--line);
}

.hub-copy-section:last-child {
  margin-bottom: 0;
}

.hub-copy-section h2,
.hub-sidebar h2,
.faq-item summary,
.hub-card h2 {
  margin: 0;
  color: var(--blue-900);
  font-family: "Cinzel", Georgia, serif;
  line-height: 1.12;
}

.hub-copy-section h2 {
  font-size: 2.34rem;
}

.hub-copy-section p {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.hub-copy-section .button {
  margin-top: 26px;
}

.hub-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
}

.hub-sidebar-inner {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(6, 45, 95, 0.08);
  padding: 26px;
}

.hub-sidebar .greek-label {
  color: var(--blue-700);
}

.hub-sidebar h2 {
  font-size: 1.55rem;
}

.hub-link-list {
  display: grid;
  margin-top: 20px;
  border-top: 1px solid var(--line);
}

.hub-link-list a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--blue-900);
  font-weight: 800;
}

.hub-link-list a:hover,
.hub-link-list a[aria-current="page"] {
  color: var(--blue-700);
}

.hub-contact-box {
  display: grid;
  gap: 3px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 2px solid var(--blue-700);
}

.hub-contact-box span {
  margin-top: 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hub-contact-box strong {
  color: var(--blue-900);
}

.hub-faq {
  padding: 86px 34px;
  background: var(--white);
}

.faq-list {
  width: min(900px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--stone);
}

.faq-item summary {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 1.08rem;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: inline-grid;
  place-items: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  background: var(--blue-700);
  color: var(--white);
  font-family: "Inter", Arial, sans-serif;
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
}

.hub-card-grid {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.hub-card {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(6, 45, 95, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.hub-card:hover {
  border-color: rgba(13, 79, 150, 0.62);
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(6, 45, 95, 0.12);
}

.hub-card a {
  display: grid;
  grid-template-rows: 220px auto auto 1fr;
  height: 100%;
}

.hub-card span,
.hub-card h2,
.hub-card p {
  margin-left: 22px;
  margin-right: 22px;
}

.hub-card span {
  margin-top: 22px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hub-card h2 {
  margin-top: 8px;
  font-size: 1.2rem;
}

.hub-card p {
  margin-top: 12px;
  margin-bottom: 24px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    padding: 12px clamp(20px, 6vw, 40px);
  }

  .nav-toggle {
    display: block;
    z-index: 60;
  }

  .primary-nav {
    position: fixed;
    inset: 0;
    z-index: 55;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding: 88px 28px 34px;
    background: rgba(6, 45, 95, 0.98);
    color: var(--white);
    transform: translateX(100%);
    transition: transform 220ms ease;
  }

  .nav-open .primary-nav {
    transform: translateX(0);
  }

  .primary-nav a {
    font-size: 1.2rem;
  }

  .hero {
    min-height: min(84svh, 880px);
    padding: 118px 22px 82px;
  }

  .hero h1 {
    font-size: 4.6rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: center;
  }

  .hero-info {
    max-width: 560px;
  }

  .hero-info div {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
  }

  .hero-ribbon {
    left: 22px;
    right: 22px;
    bottom: 24px;
    width: calc(100% - 44px);
  }

  .split-intro,
  .contact-grid,
  .menu-layout,
  .hub-article-grid {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .signature-list,
  .hub-card-grid {
    grid-template-columns: 1fr;
  }

  .feature-block {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-block:last-child {
    border-bottom: 0;
  }

  .image-run {
    grid-template-columns: 1fr;
  }

  .image-tile,
  .image-tile-wide {
    min-height: 300px;
  }

  .category-rail {
    position: static;
  }

  .hub-sidebar {
    position: static;
  }

  .category-rail-inner {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(160px, 1fr);
    overflow-x: auto;
  }

  .category-button {
    min-height: 58px;
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  .brand img {
    width: 98px;
  }

  .hero h1,
  .menu-hero h1,
  .hub-hero h1 {
    font-size: 2.9rem;
  }

  .hero-copy,
  .menu-hero p:not(.greek-label),
  .hub-lede {
    font-size: 1rem;
  }

  .hero {
    min-height: min(82svh, 880px);
    padding: 108px 18px 46px 30px;
  }

  .hero::before {
    width: 12px;
    background:
      linear-gradient(var(--white) 0 18px, transparent 18px 30px) 0 0 / 12px 60px repeat-y,
      var(--blue-700);
  }

  .hero-actions {
    margin-top: 24px;
  }

  .hero-info {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
  }

  .hero-info > p {
    display: none;
  }

  .hero-info div {
    padding: 13px 10px;
    border-top: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.22);
  }

  .hero-info div:last-child {
    border-right: 0;
  }

  .hero-info span {
    font-size: 0.62rem;
  }

  .hero-info strong {
    font-size: 0.74rem;
    line-height: 1.28;
  }

  .hero-ribbon {
    display: none;
  }

  .intro-section,
  .signature-section,
  .contact-section,
  .menu-shell {
    padding: 64px 18px;
  }

  .intro-section {
    padding-left: 30px;
  }

  .intro-section::before {
    width: 12px;
  }

  .booking-band {
    padding: 64px 18px 76px;
  }

  .hub-hero {
    min-height: 520px;
    padding: 118px 18px 72px;
  }

  .hub-article,
  .hub-directory,
  .hub-faq {
    padding: 64px 18px;
  }

  .intro-copy h2,
  .section-heading h2,
  .booking-inner h2,
  .contact-panel h3,
  .menu-meta h2,
  .hub-copy-section h2 {
    font-size: 2rem;
  }

  .hero-actions,
  .contact-actions,
  .menu-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .mode-switch button {
    width: 100%;
  }

  .mode-switch {
    width: 100%;
  }

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

  .dish-card header {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .dish-price {
    text-align: left;
  }

  .contact-panel {
    padding: 24px;
  }

  .hub-feature-image {
    aspect-ratio: 4 / 3;
    margin-bottom: 30px;
  }

  .hub-sidebar-inner,
  .faq-item summary,
  .faq-item p {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-panel dl div {
    display: block;
  }

  .contact-panel dd {
    margin-top: 2px;
  }

  .site-footer {
    display: block;
  }

  .footer-main,
  .footer-bottom {
    width: calc(100% - 36px);
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 0 34px;
  }

  .footer-bottom {
    flex-direction: column;
    padding-bottom: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
