/* ==========================================================
   Αγκυροβόλι — style.css
   DESIGN.md v2 forensic build — Bodoni Moda + IBM Plex Sans
   ========================================================== */

/* -- Self-hosted GFS Didot (display) — high-contrast Greek Didot. Local +
   font-display:optional kills the FOUT swap. Greek + Latin, weight 400 only
   (the family ships no bold/italic on Google → italic is browser-synthesised). -- */
@font-face {
  font-family: 'GFS Didot'; font-style: normal; font-weight: 400; font-display: optional;
  src: url('fonts/gfsdidot-greek.woff2') format('woff2');
  unicode-range: U+0370-0377, U+037A-037F, U+0384-038A, U+038C, U+038E-03A1, U+03A3-03FF;
}
@font-face {
  font-family: 'GFS Didot'; font-style: normal; font-weight: 400; font-display: optional;
  src: url('fonts/gfsdidot-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* -- Tokens -------------------------------------------------- */
:root {
  /* Palette — all 10 tokens from DESIGN.md §2 */
  --canvas: #F5EAD0;
  --surface-2: #EFE0BE;
  --accent: #B8862C;
  --accent-deep: #8D6320;
  --aegean: #0F1620;
  --aegean-tint: #DCE6EC;
  --walnut: #3A2A1C;
  --teal-spark: #2EA8AD;
  --ink: #2A2218;
  --ink-muted: #6B5A47;
  --border: #DCC9A0;

  /* Type — locked families */
  --font-display: 'GFS Didot', Georgia, 'Times New Roman', serif;
  --font-body: 'IBM Plex Sans', system-ui, sans-serif;

  /* Space scale (DESIGN.md §5) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;
  --space-10: 128px;

  /* Elevation */
  --shadow-xs: 0 1px 2px rgba(58, 42, 28, 0.10);
  --shadow-sm: 0 4px 12px -4px rgba(58, 42, 28, 0.14);
  --shadow-md: 0 12px 32px -16px rgba(58, 42, 28, 0.22);
  --shadow-lg: 0 24px 48px -16px rgba(58, 42, 28, 0.32);
  --shadow-dark: 0 18px 44px -20px rgba(15, 10, 5, 0.45);

  /* Motion */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --t-fast: 180ms;
  --t-med: 220ms;
  --t-slow: 360ms;

  /* Layout */
  --container-max: 1600px;
  --container-pad: clamp(20px, 4vw, 56px);
}

/* -- Reset / base -------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { overflow-x: clip; max-width: 100%; }
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--canvas);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, video, iframe, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--accent-deep); text-decoration: none; transition: color var(--t-fast) var(--ease); }
a:hover { color: var(--walnut); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 1px; }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; padding: 0; margin: 0; }
figure { margin: 0; }
hr { border: 0; }

/* -- Layout helpers ------------------------------------------ */
.container {
  width: 100%;
  max-width: min(var(--container-max), 100%);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.section {
  padding-block: clamp(72px, 9vh, 128px);
  width: 100%;
  max-width: 100%;
  position: relative;
}
.section__head { max-width: 760px; margin-bottom: clamp(40px, 5vh, 72px); }
.section__head--center { text-align: center; margin-inline: auto; }
/* Polish 2026-06-01: restore heading→lede vertical rhythm (measured h2→lede was 0px) */
.section__head h2 + .body-lg,
.section__head h2 + .body,
.about__aside-inner h2 + .body-lg,
.about__aside-inner h3 + .body {
  margin-top: var(--space-5);
}

/* -- Typography ---------------------------------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink);
  margin: 0;
}
.display-xl { font-size: clamp(2.75rem, 6vw, 5.25rem); line-height: 1.04; letter-spacing: -0.015em; font-weight: 500; }
.display-lg { font-size: clamp(2.25rem, 4.4vw, 3.75rem); line-height: 1.08; letter-spacing: -0.012em; font-weight: 500; }
.display-md { font-size: clamp(1.5rem, 2.2vw, 2.125rem); line-height: 1.18; letter-spacing: -0.008em; font-weight: 500; }

em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.body-lg { font-size: 1.125rem; line-height: 1.65; max-width: 56ch; }
.body { font-size: 1rem; line-height: 1.7; max-width: 62ch; }
.caption {
  font-size: 0.875rem;
  line-height: 1.55;
  letter-spacing: 0.01em;
  color: var(--ink-muted);
  font-weight: 300;
  margin: 0;
}
.caption--inverted { color: rgba(245, 234, 208, 0.7); }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

/* Eyebrow */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 var(--space-5);
}
.eyebrow__rule {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--accent);
}
.eyebrow--inverted { color: rgba(245, 234, 208, 0.75); }
.eyebrow__rule--inverted { background: var(--accent); }

/* -- Buttons ------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95rem 1.85rem;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--t-med) var(--ease);
  line-height: 1;
}
.btn--sm { padding: 0.65rem 1.15rem; font-size: 0.78rem; letter-spacing: 0.14em; }

.btn-primary {
  background: var(--accent);
  color: var(--canvas);
  border-color: var(--accent);
  box-shadow: var(--shadow-xs);
}
.btn-primary:hover {
  background: var(--accent-deep);
  color: var(--canvas);
  border-color: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(58, 42, 28, 0.18);
}
.btn-primary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: inset 0 1px 2px rgba(58, 42, 28, 0.18);
}
.btn-primary:disabled, .btn-primary[aria-disabled="true"] {
  background: var(--border);
  border-color: var(--border);
  color: var(--ink-muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--walnut);
}
.btn-secondary:hover {
  background: var(--walnut);
  color: var(--canvas);
  border-color: var(--walnut);
}
.btn-secondary:focus-visible {
  outline: 2px solid var(--walnut);
  outline-offset: 3px;
}
.btn-secondary:active {
  transform: translateY(0);
  background: var(--ink);
  color: var(--canvas);
}
.btn-secondary:disabled, .btn-secondary[aria-disabled="true"] {
  background: transparent;
  color: var(--ink-muted);
  border-color: var(--border);
  cursor: not-allowed;
}

.btn-ghost {
  background: transparent;
  color: var(--accent-deep);
  border: 0;
  padding: 0.5rem 0;
  letter-spacing: 0.08em;
  text-transform: none;
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  border-radius: 1px;
}
.btn-ghost:hover { color: var(--walnut); text-decoration-color: var(--walnut); }
.btn-ghost:focus-visible { outline: 2px solid var(--accent-deep); outline-offset: 3px; }
.btn-ghost:active { color: var(--ink); }
.btn-ghost:disabled { color: var(--ink-muted); cursor: not-allowed; text-decoration: none; }

/* -- Inputs -------------------------------------------------- */
.input-text, .input-textarea, .input-select {
  width: 100%;
  background: var(--canvas);
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.4;
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
}
.input-text:hover, .input-textarea:hover, .input-select:hover { border-color: var(--ink-muted); }
.input-text:focus, .input-textarea:focus, .input-select:focus,
.input-text:focus-visible, .input-textarea:focus-visible, .input-select:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 134, 44, 0.18);
  outline: none;
}
.input-text:active, .input-textarea:active, .input-select:active { border-color: var(--accent-deep); }
.input-text:disabled, .input-textarea:disabled, .input-select:disabled {
  background: rgba(220, 201, 160, 0.4);
  color: var(--ink-muted);
  cursor: not-allowed;
}
.input-text::placeholder, .input-textarea::placeholder { color: var(--ink-muted); font-style: normal; }
.input-textarea { resize: vertical; min-height: 7rem; }

/* -- Card base ----------------------------------------------- */
.card {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: clamp(1.5rem, 2.4vw, 2.25rem);
  transition: border-color var(--t-med) var(--ease);
}
.card:hover { border-color: var(--accent-deep); }
.card:focus-within { outline: 2px solid var(--accent); outline-offset: 2px; }

.card--elevated {
  border: 0;
  padding: clamp(1.75rem, 2.8vw, 2.5rem);
  box-shadow: var(--shadow-md);
  transition: transform var(--t-slow) var(--ease), box-shadow var(--t-slow) var(--ease);
}
.card--elevated:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.card--elevated:focus-within { outline: 2px solid var(--accent); outline-offset: 2px; }

.card--dark {
  background: var(--walnut);
  color: var(--canvas);
  border: 1px solid rgba(184, 134, 44, 0.28);
  box-shadow: var(--shadow-dark);
}
.card--dark:hover { border-color: rgba(184, 134, 44, 0.48); }

.hr {
  height: 1px;
  background: var(--border);
  margin: var(--space-5) 0;
}

/* -- Top nav ------------------------------------------------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: transparent;            /* top: letters only, no bar chrome */
  border-bottom: 1px solid transparent;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease),
              border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
/* Scrolled below the hero → the bar's own background/chrome fades in.
   The letters stay visible in both states (see two-state rules below). */
.nav--solid {
  background: rgba(245, 234, 208, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
@media (prefers-reduced-motion: reduce) {
  .nav { transition: border-color var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease); }
}
/* Fixed nav overlays content → keep anchor targets clear of it */
main section[id] { scroll-margin-top: 84px; }
.nav__inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 40px);
  min-height: 72px;
  padding-block: 14px;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  margin-right: auto;
}
.nav__brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.45rem, 2.2vw, 1.75rem);
  letter-spacing: 0.24em;
  line-height: 1;
}
.nav__links {
  display: inline-flex;
  align-items: center;
  gap: clamp(18px, 2.6vw, 32px);
}
.nav-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  color: var(--ink);
  padding: 0.5rem 0;
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med) var(--ease), color var(--t-med) var(--ease);
}
.nav-link:hover {
  color: var(--accent-deep);
  border-bottom-color: var(--accent-deep);
}
.nav-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 1px;
}
.nav-link.is-active {
  color: var(--accent-deep);
  border-bottom-color: var(--accent-deep);
  font-weight: 500;
}
.nav__burger {
  display: none;
  background: transparent;
  border: 0;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav__burger span {
  width: 22px;
  height: 1.5px;
  background: var(--ink);
  transition: transform var(--t-med) var(--ease), opacity var(--t-med) var(--ease);
}
.nav__burger:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.nav__cta { white-space: nowrap; display: inline-flex; align-items: center; gap: 8px; }
.nav__cta-icon { flex: none; }

/* Bar two-state: transparent over the hero (light letters) → solid on scroll (ink) */
.nav .nav__brand-name,
.nav .nav-link {
  color: var(--canvas);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55), 0 0 2px rgba(0, 0, 0, 0.45);
  transition: color var(--t-med) var(--ease), text-shadow var(--t-med) var(--ease);
}
.nav:not(.nav--solid) .nav__burger span {
  background: var(--canvas);
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.45);
}
.nav:not(.nav--solid) .nav__cta {
  background: transparent;
  color: var(--canvas);
  border-color: rgba(245, 234, 208, 0.65);
  box-shadow: none;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}
.nav--solid .nav__brand-name,
.nav--solid .nav-link {
  color: var(--ink);
  text-shadow: none;
}

/* -- Drawer (mobile) ----------------------------------------- */
.drawer { position: fixed; inset: 0; z-index: 100; }
.drawer[hidden] { display: none; }
.drawer__overlay {
  position: absolute; inset: 0;
  background: rgba(42, 34, 24, 0.4);
  opacity: 0;
  transition: opacity var(--t-slow) var(--ease);
}
.drawer.is-open .drawer__overlay { opacity: 1; }
.drawer__panel {
  position: absolute;
  top: 0; right: 0;
  height: 100dvh;
  height: 100vh;
  width: min(360px, 86vw);
  background: var(--canvas);
  padding: clamp(48px, 6vh, 64px) clamp(24px, 5vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform: translateX(100%);
  transition: transform var(--t-slow) var(--ease);
  overflow-y: auto;
}
.drawer.is-open .drawer__panel { transform: translateX(0); }
.drawer__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  background: transparent;
  border: 0;
  font-size: 2rem;
  line-height: 1;
  color: var(--ink);
}
.drawer__links {
  display: flex; flex-direction: column;
  margin: 1.5rem 0;
}
.drawer__links .nav-link {
  font-size: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.drawer__cta { margin-top: auto; align-self: flex-start; }

/* -- HERO ---------------------------------------------------- */
.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  min-height: 100vh;
  min-height: 100dvh;
  padding: clamp(48px, 8vh, 128px) clamp(24px, 6vw, 96px);
  isolation: isolate;
  overflow: hidden;
}
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      transparent 0%,
      transparent 24%,
      rgba(0, 0, 0, 0.42) 60%,
      rgba(0, 0, 0, 0.80) 100%),
    linear-gradient(90deg,
      rgba(0, 0, 0, 0.62) 0%,
      rgba(0, 0, 0, 0.26) 44%,
      transparent 74%);
}
.hero__content {
  position: relative;
  max-width: min(640px, 52vw);
  text-shadow: 0 1px 28px rgba(0, 0, 0, 0.32);
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6vw, 5.25rem);
  line-height: 1.04;
  letter-spacing: -0.015em;
  font-weight: 500;
  margin: 0 0 1.25rem;
  color: var(--canvas);
}
.hero__title em { color: var(--canvas); }
.hero__lede {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(245, 234, 208, 0.92);
  margin: 0 0 1.75rem;
  max-width: 46ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
  align-items: center;
}
.btn-ghost--onphoto { color: var(--canvas); text-decoration-color: rgba(245, 234, 208, 0.5); }
.btn-ghost--onphoto:hover { color: var(--canvas); text-decoration-color: var(--canvas); }
.btn-ghost--onphoto:active { color: var(--canvas); }

/* -- MARQUEE ------------------------------------------------- */
.marquee {
  overflow: hidden;
  background: #0D0D0D;
  border-block: 1px solid rgba(245, 234, 208, 0.14);
}
.marquee__track {
  display: inline-flex;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 32s linear infinite;
}
.marquee__track span {
  padding: 0.9rem 0;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--canvas);
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; transform: none; }
}

/* -- ABOUT --------------------------------------------------- */
.about {
  background: var(--surface-2);
}
.about__inner {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.about__aside {
  position: relative;
}
.about__aside-inner {
  position: sticky;
  top: 100px;
}
.about__sub { margin-top: 2rem; }
.about__sub em { color: var(--accent); }
.about__story {
  display: grid;
  gap: clamp(32px, 4vw, 56px);
}
.about__photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-md);
}
.about__photo--first img { aspect-ratio: 16 / 11; }
.about__photo--second img { aspect-ratio: 5 / 4; }
.about__photo figcaption {
  margin-top: 0.85rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink-muted);
  font-style: normal;
  letter-spacing: 0.01em;
}
.about__pull {
  margin: 0;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border-left: 3px solid var(--accent);
  background: var(--canvas);
}
.about__pull p {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.4;
  color: var(--ink);
  font-weight: 400;
  font-style: italic;
  margin: 0 0 0.75rem;
}
.about__pull em { color: var(--accent); }
.about__pull cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
}

/* -- MENU ---------------------------------------------------- */
.menu { background: var(--canvas); }
.menu__title em { color: var(--accent); }
.menu__lede { color: var(--ink); }

.menu__bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
}
.menu-cell-a { grid-column: span 8; }
.menu-cell-b { grid-column: span 4; }
.menu-cell-c { grid-column: span 4; }
.menu-cell-d { grid-column: span 8; }
.menu-cell-cava { grid-column: span 12; margin-top: clamp(16px, 2vw, 24px); }

.menu-category {
  background: var(--canvas);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: clamp(1.5rem, 2.4vw, 2.25rem);
  transition: border-color var(--t-med) var(--ease), transform var(--t-med) var(--ease);
}
.menu-category:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.menu-category__head {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 2vw, 28px);
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.menu-category__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3rem, 5.5vw, 4.5rem);
  line-height: 0.85;
  color: var(--accent);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.menu-category__num--teal { color: var(--teal-spark); }
.menu-category__name { margin: 0; }
.menu-category__name em { color: var(--accent); }
.menu-category__head .caption { margin-top: 0.35rem; }

.menu-list { display: flex; flex-direction: column; gap: 0.55rem; }
.menu-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  align-items: baseline;
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.4;
  padding: 0.25rem 0;
}
.menu-line__name { color: var(--ink); }
.menu-line__price {
  color: var(--accent);
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Dark κάβα card */
.menu-card--dark { padding: clamp(1.75rem, 3vw, 2.75rem); }
.menu-card__head { margin-bottom: clamp(20px, 2.5vw, 32px); }
.menu-card__title { color: var(--canvas); margin: 0 0 0.5rem; }
.cava-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 36px);
}
.cava-col__label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 234, 208, 0.6);
  margin: 0 0 0.85rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(184, 134, 44, 0.32);
}
.menu-list--dark .menu-line__name { color: var(--canvas); }
.menu-list--dark .menu-line__price { color: var(--accent); }

.menu__note {
  margin-top: clamp(28px, 3vw, 40px);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink-muted);
  text-align: center;
}

/* -- ATMOSPHERE ---------------------------------------------- */
.atmosphere { background: var(--canvas); }
.atmosphere__lede { margin-inline: auto; }
.atmosphere__mosaic {
  display: grid;
  grid-template-columns: 7fr 5fr;
  grid-template-rows: 1fr 1fr;
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: clamp(16px, 2vw, 24px);
}
.mosaic__tile {
  overflow: hidden;
  border-radius: 4px;
  background: var(--walnut);
}
.mosaic__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}
.mosaic__tile:hover img { transform: scale(1.04); }
.mosaic__tile--tall {
  grid-row: 1 / span 2;
  min-height: clamp(380px, 56vh, 640px);
}
.mosaic__tile--top, .mosaic__tile--bottom {
  min-height: clamp(180px, 28vh, 312px);
}

.atmosphere__strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.strip__tile {
  overflow: hidden;
  border-radius: 4px;
  background: var(--walnut);
  aspect-ratio: 4 / 3;
}
.strip__tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}
.strip__tile:hover img { transform: scale(1.04); }

.atmosphere__note {
  margin-top: clamp(28px, 3vw, 40px);
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}

/* -- LOCATION ------------------------------------------------ */
.location {
  background: var(--aegean);
  color: var(--canvas);
}
.location .display-lg,
.location .display-md,
.location h2, .location h3 { color: var(--canvas); }
.location__title { letter-spacing: -0.012em; }
.location__lede { color: rgba(245, 234, 208, 0.85); max-width: 60ch; }
.location__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(28px, 3.5vw, 56px);
  align-items: start;
}
.location__map { position: relative; }
.map-frame {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  background: var(--walnut);
}
.map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: contrast(0.94) saturate(0.92);
}
.map-fallback {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: rgba(245, 234, 208, 0.78);
}
.map-fallback a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.map-fallback a:hover { color: var(--canvas); }

.location__card {
  background: var(--canvas);
  color: var(--ink);
}
.location__addr-title { color: var(--ink); margin: 0.25rem 0 0.5rem; }
.location__addr {
  font-style: normal;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink);
}
.location__landmarks-label, .location__hours-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  margin: 0 0 0.85rem;
}
.landmarks { display: flex; flex-direction: column; gap: 0.6rem; }
.landmarks li {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink);
}
.landmarks__dot {
  width: 6px; height: 6px;
  flex: 0 0 6px;
  border-radius: 50%;
  background: var(--teal-spark);
  transform: translateY(-1px);
}
.hours {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0 0 1.5rem;
}
.hours > div {
  display: flex;
  justify-content: space-between;
  font-size: 1.05rem;
  border-bottom: 1px dotted var(--border);
  padding-bottom: 0.4rem;
}
.hours dt, .hours dd { margin: 0; }
.hours dt { color: var(--ink); }
.hours dd { color: var(--ink-muted); font-variant-numeric: tabular-nums; }
.location__cta { margin-top: 0.5rem; }

/* -- CONTACT ------------------------------------------------- */
.contact { background: var(--surface-2); }
.contact__card { background: var(--canvas); }
.contact__head { margin-bottom: clamp(32px, 4vw, 56px); max-width: 720px; }
.contact__grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.contact__info { color: var(--ink); }
.contact__lede { margin: 0 0 1.5rem; max-width: 42ch; }
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin: 0;
}
.contact-list__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px dotted var(--border);
  font-size: 0.95rem;
}
.contact-list__row dt {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
  padding-top: 0.15rem;
}
.contact-list__row dd { margin: 0; color: var(--ink); }
.contact-list__row a { color: var(--accent-deep); }
.contact-list__row a:hover { color: var(--walnut); }

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1.25rem;
}
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field--full { grid-column: span 2; }
.field label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-muted);
}

/* -- FOOTER -------------------------------------------------- */
.footer {
  background: var(--aegean);
  color: var(--canvas);
  padding: clamp(56px, 7vh, 96px) 0 clamp(24px, 3vh, 40px);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
}
.footer a { color: var(--canvas); text-decoration: none; transition: color var(--t-fast) var(--ease); }
.footer a:hover { color: var(--teal-spark); }
.footer a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.footer__brand p { margin: 0 0 0.75rem; color: rgba(245, 234, 208, 0.78); }
.footer__brand .eyebrow {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.32em;
  color: var(--canvas);
}
.footer__brand .eyebrow__rule--inverted { background: var(--accent); }
.footer__tagline {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--canvas);
  font-weight: 400;
}
.footer__credit { font-size: 0.85rem; }
.footer__col-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 234, 208, 0.6);
  margin: 0 0 1rem;
  font-weight: 500;
}
.footer__nav { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.95rem; }
.footer__contact p { margin: 0 0 0.5rem; font-size: 0.95rem; }
.footer__hours { color: rgba(245, 234, 208, 0.7); font-size: 0.85rem; }
.footer__legal {
  margin-top: clamp(40px, 5vh, 64px);
  padding-top: clamp(20px, 3vh, 32px);
  border-top: 1px solid rgba(184, 134, 44, 0.24);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(245, 234, 208, 0.5);
  letter-spacing: 0.04em;
}

/* -- Reveal-on-scroll (gated by html.js) --------------------- */
html.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--ease), transform 600ms var(--ease);
}
html.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* -- Responsive: ≤ 1024 — collapse nav to drawer ------------- */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  /* Keep the phone CTA on mobile (icon-only) so click-to-call works on phones */
  .nav__cta { padding-inline: 0.7rem; }
  .nav__cta-text { display: none; }
  .nav__burger { display: inline-flex; }
}

/* -- Responsive: ≤ 980 ---------------------------------------- */
@media (max-width: 980px) {
  .menu-cell-a { grid-column: span 12; }
  .menu-cell-b { grid-column: span 6; }
  .menu-cell-c { grid-column: span 6; }
  .menu-cell-d { grid-column: span 12; }
  .cava-grid { grid-template-columns: repeat(2, 1fr); }
}

/* -- Responsive: ≤ 768 — mobile collapse --------------------- */
@media (max-width: 768px) {
  .section { padding-block: clamp(56px, 7vh, 88px); }

  .hero {
    padding: clamp(24px, 5vh, 64px) clamp(16px, 4vw, 32px);
    align-items: flex-end;
  }
  .hero__content {
    max-width: min(560px, calc(100vw - 32px));
    width: 100%;
  }
  .hero__title { font-size: clamp(2.25rem, 9vw, 3rem); }
  .hero__lede { font-size: 1rem; }
  .hero__actions { gap: 0.85rem; }

  .about__inner {
    grid-template-columns: 1fr;
    gap: clamp(28px, 4vh, 48px);
  }
  .about__aside-inner { position: static; }

  .menu-cell-a, .menu-cell-b, .menu-cell-c, .menu-cell-d, .menu-cell-cava {
    grid-column: span 12;
  }
  .cava-grid { grid-template-columns: 1fr; gap: 1.25rem; }

  .menu-category__head { gap: 1rem; }
  .menu-category__num { font-size: clamp(2.5rem, 11vw, 3.25rem); }

  .atmosphere__mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 1rem;
  }
  .mosaic__tile--tall {
    grid-row: auto;
    min-height: clamp(280px, 50vh, 420px);
  }
  .mosaic__tile--top, .mosaic__tile--bottom {
    min-height: clamp(200px, 36vh, 280px);
  }
  .atmosphere__strip {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .location__grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .contact__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact__form { grid-template-columns: 1fr; }
  .field--full { grid-column: span 1; }
  .contact-list__row { grid-template-columns: 100px 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: clamp(24px, 3vh, 36px); }
  .footer__legal { flex-direction: column; gap: 0.5rem; }
}

/* -- Responsive: ≤ 480 --------------------------------------- */
@media (max-width: 480px) {
  .container { padding-inline: 16px; }
  .nav__brand-name { font-size: 1.4rem; letter-spacing: 0.18em; }
  .hero__title { font-size: clamp(2rem, 10vw, 2.5rem); }
  .menu-category__head {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  .menu-category__num { font-size: 2.5rem; line-height: 1; }
  .contact-list__row { grid-template-columns: 1fr; gap: 0.25rem; padding-bottom: 1rem; }
  .contact-list__row dt { padding-top: 0; }
  .footer__legal p { font-size: 0.72rem; }
}

/* ============================================================
   BOLD pass 2026-06-01 — full-bleed media + de-elongated atmosphere.
   Palette frozen. Prose stays capped (≤65ch) for readability.
   Root uses overflow-x: clip (set on html,body) → 100vw bleed is
   scrollbar-trap-safe and keeps position: sticky working.
   ============================================================ */
.bleed {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

/* ABOUT — capped prose intro + full-bleed 2-up photo band */
.about__intro {
  display: grid;
  grid-template-columns: minmax(0, 65ch) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: center;
}
.about__text { max-width: 65ch; }
.about__gallery {
  margin-top: clamp(40px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(6px, 0.8vw, 12px);
}
.about__gallery .about__photo { margin: 0; }
.about__gallery .about__photo img {
  width: 100%;
  height: clamp(320px, 42vw, 600px);
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}
.about__gallery figcaption {
  padding-inline: var(--container-pad);
  margin-top: 0.75rem;
}

/* ATMOSPHERE — wide, short, full-bleed gallery (reads left → right) */
.atmosphere__gallery {
  margin-block: clamp(8px, 2vw, 24px);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(6px, 0.8vw, 12px);
}
.atmo-tile {
  margin: 0;
  overflow: hidden;
  background: var(--walnut);
}
.atmo-tile img {
  width: 100%;
  height: clamp(280px, 34vh, 460px);
  object-fit: cover;
  transition: transform 700ms var(--ease);
}
.atmo-tile:hover img { transform: scale(1.05); }
.atmosphere .atmosphere__note { margin-top: clamp(20px, 2.5vw, 32px); }

/* LOCATION — full-bleed map band + wide short address card below */
.location__media { margin-bottom: clamp(24px, 3vw, 44px); }
.location__media .map-frame {
  aspect-ratio: auto;
  height: clamp(380px, 52vh, 620px);
  border-radius: 0;
}
.location__info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3.5vw, 64px);
  align-items: start;
  color: var(--ink);   /* card sits on aegean band; .location sets canvas → re-assert ink */
}
.location__info .display-md,
.location__info .location__addr-title { color: var(--ink); }
.location__info .location__cta { margin-top: 1.25rem; }
.location .map-fallback { margin-bottom: clamp(20px, 2.5vw, 32px); }

/* -- Bold-pass responsive ------------------------------------ */
@media (max-width: 980px) {
  .about__intro { grid-template-columns: 1fr; gap: clamp(28px, 4vh, 48px); }
  .atmosphere__gallery { grid-template-columns: repeat(3, 1fr); }
  .location__info { grid-template-columns: 1fr; gap: 1.75rem; }
}
@media (max-width: 600px) {
  .about__gallery { grid-template-columns: 1fr; }
  .about__gallery .about__photo img { height: clamp(240px, 56vw, 340px); }
  .atmosphere__gallery { grid-template-columns: repeat(2, 1fr); }
  .atmo-tile img { height: clamp(170px, 30vh, 240px); }
}

/* ============================================================
   FINAL composition 2026-06-01 — about redesign (2-col editorial
   + full-width quote band), contained collages, caption boxes,
   location map BESIDE address card, navy aegean (μπεζ + navy).
   Appended last → wins cascade over BOLD/earlier blocks.
   ============================================================ */

/* Centered section heads keep their text block centred */
.section__head--center .body-lg,
.section__head--center .body { margin-inline: auto; }

/* -- ABOUT — balanced 2-col editorial intro ------------------ */
.about__intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 96px);
  align-items: center;
}
.about__intro-lead { min-width: 0; }
.about__heading { margin: 0; }
.about__intro-body { max-width: 56ch; min-width: 0; }
.about__intro-body .about__sub { margin: 0 0 1.1rem; }
.about__intro-body .about__sub em { color: var(--accent); }

/* Pull-quote → full-width statement band (no floating side box) */
.about__pull {
  margin: clamp(44px, 5vw, 80px) 0 0;
  max-width: 920px;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.75rem, 3vw, 2.75rem);
  border-left: 3px solid var(--accent);
  background: var(--canvas);
  box-shadow: var(--shadow-sm);
}
.about__pull p {
  font-family: var(--font-display);
  font-style: italic; font-weight: 400;
  font-size: clamp(1.5rem, 2.5vw, 2.35rem);
  line-height: 1.3; color: var(--ink); margin: 0 0 0.85rem;
}
.about__pull em { color: var(--accent); }
.about__pull cite {
  display: block; font-family: var(--font-body); font-style: normal;
  font-size: 0.9rem; letter-spacing: 0.08em; color: var(--ink-muted);
}

/* About photos — contained 2-up (inside .container) + caption boxes */
.about__gallery {
  margin-top: clamp(36px, 4vw, 68px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 1.6vw, 28px);
}
.about__gallery .about__photo { position: relative; margin: 0; }
.about__gallery .about__photo img {
  width: 100%; height: clamp(340px, 34vw, 520px);
  aspect-ratio: auto; object-fit: cover; border-radius: 4px; box-shadow: none;
}
.about__gallery figcaption {
  position: absolute; left: 0; bottom: 0; max-width: 86%; margin: 0;
  padding: 0.7rem 1.05rem; background: rgba(245, 234, 208, 0.94); color: var(--ink);
  font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.01em;
  line-height: 1.4; border-top-right-radius: 6px; box-shadow: var(--shadow-sm);
}

/* -- ATMOSPHERE — contained 3×2 collage + caption boxes ------- */
.atmosphere__gallery {
  width: 100%; max-width: var(--container-max);
  margin-inline: auto; padding-inline: var(--container-pad);
  margin-block: clamp(12px, 2vw, 28px);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 1.2vw, 22px);
}
.atmo-tile { position: relative; margin: 0; overflow: hidden; border-radius: 4px; background: var(--walnut); }
.atmo-tile img {
  width: 100%; height: auto; aspect-ratio: 4 / 3;
  object-fit: cover; transition: transform 700ms var(--ease);
}
.atmo-tile:hover img { transform: scale(1.05); }
.atmo-tile figcaption {
  position: absolute; left: 0; bottom: 0; margin: 0;
  padding: 0.5rem 0.8rem; background: rgba(42, 34, 24, 0.82); color: var(--canvas);
  font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.04em;
  line-height: 1.35; border-top-right-radius: 5px;
}

/* -- LOCATION — map BESIDE address card (navy band) ---------- */
.location__layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(24px, 3vw, 48px);
  align-items: stretch;
  margin-top: clamp(32px, 4vw, 56px);
}
.location__map { display: flex; flex-direction: column; gap: 0.85rem; }
.location__map .map-frame {
  position: relative; flex: 1 1 auto;
  aspect-ratio: auto; min-height: clamp(360px, 46vh, 560px);
  overflow: hidden; border-radius: clamp(18px, 2vw, 28px); box-shadow: var(--shadow-lg);
  background: var(--walnut);
}
.location__map .map-frame iframe {
  position: absolute; inset: 0; width: 100%; height: 100%; border: 0;
  filter: contrast(0.94) saturate(0.92);
}
.location__map .map-fallback {
  margin: 0; font-size: 0.85rem; color: rgba(245, 234, 208, 0.78);
}
.location__map .map-fallback a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.location__map .map-fallback a:hover { color: var(--canvas); }
.location__info {
  display: flex; flex-direction: column; justify-content: space-between;
  gap: clamp(22px, 2.4vw, 34px);
  color: var(--ink);
  padding: clamp(1.85rem, 2.8vw, 2.75rem);
}
.location__info .display-md, .location__info .location__addr-title { color: var(--ink); }
.location__info .location__cta { margin-top: 1rem; }

/* -- Responsive (last → wins) -------------------------------- */
@media (max-width: 980px) {
  .about__intro { grid-template-columns: 1fr; align-items: start; gap: clamp(24px, 4vh, 40px); }
  .location__layout { grid-template-columns: 1fr; }
  .location__map .map-frame { min-height: clamp(300px, 50vh, 440px); }
}
@media (max-width: 768px) {
  .atmosphere__gallery { grid-template-columns: repeat(2, 1fr); gap: clamp(10px, 2vw, 16px); }
}
@media (max-width: 600px) {
  .about__gallery { grid-template-columns: 1fr; }
  .about__gallery figcaption { font-size: 0.76rem; max-width: 92%; }
  .atmo-tile img { aspect-ratio: 4 / 5; }
  .atmo-tile figcaption { font-size: 0.66rem; padding: 0.4rem 0.62rem; }
}

/* ============================================================
   ABOUT v2 2026-06-01 — navy section, χιαστί (zigzag) photo+text
   rows. Κάθε row = φωτο + κείμενο δίπλα-δίπλα (align center) →
   κανένα κενό. Title centered. Navy = --aegean (#1B3A5C).
   ============================================================ */
.about { background: var(--aegean); color: var(--canvas); }
.about .about__heading,
.about h2, .about h3 { color: var(--canvas); }
.about em { color: var(--accent); }

.about__header {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto clamp(48px, 6vw, 88px);
}
.about__header .eyebrow { justify-content: center; color: rgba(245, 234, 208, 0.75); }
.about__heading {
  margin: 0;
  font-size: clamp(2.25rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.012em;
}

.about__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 88px);
  align-items: center;
  margin-bottom: clamp(40px, 5vw, 80px);
}
.about__row:last-child { margin-bottom: 0; }
.about__row--reverse .about__photo { order: 2; }

.about__photo { position: relative; margin: 0; }
.about__photo img {
  width: 100%; height: clamp(320px, 32vw, 480px);
  object-fit: cover; border-radius: 4px; box-shadow: var(--shadow-dark);
}
/* Caption boxes match section 3 (.atmo-tile figcaption): translucent dark + cream text */
.about__photo figcaption {
  position: absolute; left: 0; bottom: 0; max-width: 88%; margin: 0;
  padding: 0.5rem 0.8rem; background: rgba(42, 34, 24, 0.82); color: var(--canvas);
  font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.04em;
  line-height: 1.35; border-top-right-radius: 5px;
}

.about__copy { max-width: 52ch; }
.about__copy .about__sub { margin: 0 0 1rem; color: var(--canvas); }
.about__copy .about__sub em { color: var(--accent); }
.about__copy-text {
  font-family: var(--font-body); font-size: 1.05rem; line-height: 1.75;
  color: rgba(245, 234, 208, 0.86); margin: 0;
}

/* Pull-quote on navy (no box, accent rule) */
.about .about__pull {
  margin: 0; max-width: none; box-shadow: none; background: transparent;
  padding: clamp(1rem, 2vw, 1.5rem) 0 clamp(1rem, 2vw, 1.5rem) clamp(1.5rem, 2.5vw, 2rem);
  border-left: 3px solid var(--accent);
}
.about .about__pull p {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2.15rem); line-height: 1.32;
  color: var(--canvas); margin: 0 0 0.85rem;
}
.about .about__pull em { color: var(--accent); }
.about .about__pull cite {
  display: block; font-family: var(--font-body); font-style: normal;
  font-size: 0.9rem; letter-spacing: 0.08em; color: rgba(245, 234, 208, 0.6);
}

@media (max-width: 768px) {
  .about__row { grid-template-columns: 1fr; gap: clamp(20px, 4vw, 32px); }
  .about__row--reverse .about__photo { order: 0; }
  .about__copy { max-width: none; }
}

/* ============================================================
   LOCATION fix 2026-06-01 — card sizes to its content (no internal
   gap when the row grows), section a touch shorter.
   ============================================================ */
.location { padding-block: clamp(56px, 7vh, 100px); }
.location__layout {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  align-items: stretch;
}
.location__info { align-self: start; gap: clamp(18px, 2vw, 26px); }
.location__map .map-frame { min-height: clamp(340px, 38vh, 480px); flex: 1 1 auto; }
@media (max-width: 980px) {
  .location__layout { grid-template-columns: 1fr; }
}

/* ============================================================
   ABOUT gaps tightened 2026-06-01 — less empty space, shorter photos.
   ============================================================ */
.about { padding-block: clamp(56px, 7vh, 100px); }
.about__header { margin-bottom: clamp(30px, 3.5vw, 52px); }
.about__row { margin-bottom: clamp(26px, 3vw, 48px); gap: clamp(28px, 4vw, 72px); }
.about__photo img { height: clamp(300px, 28vw, 430px); }

/* ============================================================
   Footer → deep navy (was walnut) + stronger font contrast on navy.
   Map & card already equal height (align stretch + card-driven).
   ============================================================ */
.footer { background: #0F1620; }

/* Lock equal height (card drives, map fills to match) */
.location__layout { align-items: stretch; }
.location__info { align-self: stretch; }
.location__map .map-frame { flex: 1 1 auto; }

/* Stronger / more vivid font contrast on the navy sections */
.about__copy-text { color: #FFF7E8; }
.about__header .eyebrow { color: rgba(255, 247, 232, 0.82); }
.about .about__pull p { color: #FFF7E8; }
.about .about__pull cite { color: rgba(255, 247, 232, 0.74); }
.location__lede { color: rgba(255, 247, 232, 0.92); }
.about em,
.about__copy .about__sub em,
.about .about__pull em { color: #D4A24E; }

/* Equal-height location map (card drives height, map fills) */
.location__layout { align-items: stretch; }
.location__info { align-self: stretch; border-radius: clamp(18px, 2vw, 28px); }
.location__map .map-frame { min-height: clamp(340px, 38vh, 480px); flex: 1 1 auto; }

/* Hide map-fallback line (hung below the map, broke equal-height) */
.location__map .map-fallback { display: none; }

/* ============================================================
   Hero entrance — staggered fade-up. Above-the-fold → runs on load.
   eyebrow → title → lede → CTA. Reduced-motion: appears, no animation.
   ============================================================ */
@keyframes heroUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero__content > .eyebrow      { animation: heroUp 0.6s cubic-bezier(.2,.7,.2,1) both; animation-delay: 0.05s; }
.hero__content > .hero__title  { animation: heroUp 0.75s cubic-bezier(.2,.7,.2,1) both; animation-delay: 0.20s; }
.hero__content > .hero__lede   { animation: heroUp 0.7s cubic-bezier(.2,.7,.2,1) both; animation-delay: 0.38s; }
.hero__content > .hero__actions{ animation: heroUp 0.6s cubic-bezier(.2,.7,.2,1) both; animation-delay: 0.55s; }
@media (prefers-reduced-motion: reduce) {
  .hero__content > .eyebrow, .hero__content > .hero__title,
  .hero__content > .hero__lede, .hero__content > .hero__actions { animation: none; opacity: 1; transform: none; }
}

/* ============================================================
   Display type stabilisation 2026-06-02 — Bodoni Moda's hairline
   strokes (the «μ» descender, thin verticals) went spindly at large
   optical sizes. ROOT CAUSE of the earlier no-op fix: 'wght' was set
   via the font-weight property while font-variation-settings listed
   only 'opsz' — a registered axis omitted from variation-settings
   resets to its default (400), so the weight bump never reached the
   variable axis. FIX: drive BOTH axes through font-variation-settings
   together (same technique as etoimo-8's working "48" fix:
   'opsz' 36, 'wght' 700). Low opsz = thicker hairlines; wght 700 = solid
   descender, serif elegance intact.
   ============================================================ */
.display-xl, .display-lg, .display-md, .hero__title,
.display-xl em, .display-lg em, .display-md em, .hero__title em,
.about .about__pull p, .about .about__pull p em {
  /* Display font = GFS Didot (high-contrast Greek Didot, solid «μ»). It ships only
     one weight (400) — force it so the browser never faux-bolds the headings.
     Italic is browser-synthesised (the family has no italic file). */
  font-optical-sizing: auto;
  font-variation-settings: normal;
  font-weight: 400;
}
