/* ==========================================================================
   MYKONOS — Cocktail & Dessert · Kale, Skopje
   Design tokens → base → layout → components → pages → motion → responsive
   Palette: whitewash + Aegean blue, bougainvillea pink as the single accent.
   Brand rule: no cross motifs anywhere (see README).
   ========================================================================== */

/* ── 1. Tokens ─────────────────────────────────────────────────────────── */
:root {
  /* colour — semantic, never raw hex in components.
     --aegean is the brand blue sampled straight from the logo artwork (#0154E8). */
  --aegean:          #0154E8;
  --aegean-deep:     #0A3CA8;
  --aegean-darker:   #072A73;
  --aegean-night:    #04173F;
  --sky:             #4E86F0;
  --sky-pale:        #A9C4F8;
  --foam:            #E9EFFD;
  --whitewash:       #F7F9FE;
  --paper:           #FFFFFF;

  --ink:             #0B1730;
  --ink-soft:        #46587A;
  --ink-faint:       #7C88A8;

  --flower:          #E0447A;
  --flower-deep:     #C21F55;
  --blossom:         #FFD6E4;
  --lemon:           #F2C33C;
  --sand:            #EFE7D8;

  --border:          #D8E6F2;
  --border-strong:   #B9D2E8;
  --danger:          #C62B35;
  --success:         #147A52;

  /* surfaces */
  --surface:         var(--paper);
  --surface-sunk:    var(--whitewash);
  --on-surface:      var(--ink);

  /* type */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body:    "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.14vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.45rem);
  --step-2:  clamp(1.45rem, 1.3rem + 0.75vw, 2rem);
  --step-3:  clamp(1.8rem, 1.5rem + 1.5vw, 2.9rem);
  --step-4:  clamp(2.3rem, 1.7rem + 3vw, 4.4rem);
  --step-5:  clamp(2.6rem, 1.6rem + 4.2vw, 5.4rem);

  /* spacing — 4/8 rhythm, spacious end of the scale */
  --sp-1: 4px;  --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 24px; --sp-6: 32px;  --sp-7: 48px;  --sp-8: 64px;
  --sp-9: 96px; --sp-10: 128px;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);
  --radius-sm: 6px;
  --radius:    14px;
  --radius-lg: 26px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px -2px rgba(10, 58, 104, .18);
  --shadow:    0 18px 44px -24px rgba(10, 58, 104, .45);
  --shadow-lg: 0 34px 80px -34px rgba(8, 48, 79, .55);

  --ease:      cubic-bezier(.22, .61, .36, 1);
  --ease-out:  cubic-bezier(.16, 1, .3, 1);
  --dur-fast:  160ms;
  --dur:       260ms;
  --dur-slow:  520ms;

  /* z-index scale */
  --z-base: 1; --z-sticky: 40; --z-nav: 60; --z-drawer: 80; --z-modal: 100;

  --nav-h: 76px;
  --logo: 44px;
}

/* ── 2. Reset & base ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  font-weight: 400;
  line-height: 1.65;
  color: var(--on-surface);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

p { margin: 0 0 1em; max-width: 68ch; }
img, svg, video { max-width: 100%; display: block; }
img { height: auto; }

a { color: inherit; text-decoration: none; }
a:not([class]) {
  color: var(--aegean-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

button { font: inherit; color: inherit; cursor: pointer; }

:where(a, button, input, textarea, select, [tabindex]):focus-visible {
  outline: 3px solid var(--flower);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

::selection { background: var(--blossom); color: var(--ink); }

.skip-link {
  position: absolute;
  left: var(--sp-4);
  top: -100px;
  z-index: var(--z-modal);
  background: var(--paper);
  color: var(--aegean-deep);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow);
  font-weight: 600;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: var(--sp-4); }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

/* ── 3. Layout primitives ──────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(var(--sp-8), 9vw, var(--sp-10)); }
.section--tight { padding-block: clamp(var(--sp-7), 6vw, var(--sp-9)); }
.section--sunk { background: var(--surface-sunk); }

.section--blue {
  background: linear-gradient(165deg, var(--aegean-deep), var(--aegean-darker));
  color: var(--paper);
}
.section--blue .kicker { color: var(--sky-pale); }
.section--blue .section__lead { color: rgba(255, 255, 255, .84); }

.section__head { max-width: 62ch; margin-bottom: var(--sp-7); }
.section__head--centre { margin-inline: auto; text-align: center; }
.section__title { font-size: var(--step-3); margin-bottom: var(--sp-4); }
.section__lead { font-size: var(--step-1); color: var(--ink-soft); font-weight: 300; }

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-top: var(--sp-7);
  max-width: none;
}
.actions--centre { justify-content: center; }

.kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--aegean);
  margin-bottom: var(--sp-4);
}
.kicker::before {
  content: "";
  width: 28px; height: 2px;
  background: var(--flower);
  flex: none;
}

/* Greek key divider — rectilinear spirals, no cross forms */
.meander {
  height: 26px;
  color: var(--aegean);
  opacity: .38;
  background: url("../img/meander.svg") repeat-x center / auto 26px;
}
.meander--light { color: var(--paper); opacity: .3; }

/* ── 4. Buttons ────────────────────────────────────────────────────────── */
.btn {
  --btn-bg: var(--aegean-deep);
  --btn-fg: var(--paper);
  --btn-bd: var(--aegean-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-3);
  min-height: 48px;
  padding: var(--sp-3) var(--sp-6);
  border: 2px solid var(--btn-bd);
  border-radius: var(--radius-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: transform var(--dur-fast) var(--ease),
              box-shadow var(--dur) var(--ease),
              background-color var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--aegean-deep); }
.btn--ghost:hover { --btn-bg: var(--aegean-deep); --btn-fg: var(--paper); }

.btn--light { --btn-bg: var(--paper); --btn-fg: var(--aegean-deep); --btn-bd: var(--paper); }

.btn--outline-light { --btn-bg: transparent; --btn-fg: var(--paper); --btn-bd: rgba(255,255,255,.6); }
.btn--outline-light:hover { --btn-bg: var(--paper); --btn-fg: var(--aegean-deep); --btn-bd: var(--paper); }

.btn--flower { --btn-bg: var(--flower); --btn-fg: var(--paper); --btn-bd: var(--flower); }
.btn--flower:hover { --btn-bg: var(--flower-deep); --btn-bd: var(--flower-deep); }

.btn .icon { width: 18px; height: 18px; flex: none; }

.icon { width: 20px; height: 20px; stroke-width: 1.75; flex: none; }

/* ── 5. Navigation ─────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-nav);
  transition: background-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
  min-height: var(--nav-h);
  padding-block: var(--sp-3);
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  margin-inline-end: auto;
  color: var(--paper);
  transition: color var(--dur) var(--ease);
}
.nav__mark { width: var(--logo); height: var(--logo); flex: none; border-radius: 50%; }
.nav__word {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  line-height: 1;
}
.nav__sub {
  display: block;
  font-size: .55rem;
  letter-spacing: .3em;
  font-weight: 400;
  opacity: .78;
  margin-top: 4px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(var(--sp-4), 2vw, var(--sp-6));
  list-style: none;
  margin: 0; padding: 0;
}
.nav__link {
  position: relative;
  display: inline-block;
  padding: var(--sp-2) 0;
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--paper);
  transition: color var(--dur) var(--ease);
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--flower);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--dur) var(--ease);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav__link[aria-current="page"] { font-weight: 600; }

.nav__aside { display: flex; align-items: center; gap: var(--sp-4); }

.lang {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: var(--radius-pill);
  transition: border-color var(--dur) var(--ease);
}
.lang__btn {
  min-width: 38px;
  min-height: 30px;
  padding: 0 var(--sp-2);
  border: 0;
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--paper);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.lang__btn[aria-pressed="true"] { background: var(--paper); color: var(--aegean-deep); }
.lang__btn:hover:not([aria-pressed="true"]) { background: rgba(255, 255, 255, .18); }

.nav__cta { display: none; }

.nav__toggle {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: var(--radius-pill);
  background: transparent;
  color: var(--paper);
}
.nav__toggle .icon-close { display: none; }
body.nav-open .nav__toggle .icon-close { display: block; }
body.nav-open .nav__toggle .icon-menu { display: none; }

/* solid state after scroll, and on all sub-pages */
.nav.is-solid,
.nav.is-opaque {
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.nav.is-solid .nav__brand, .nav.is-opaque .nav__brand,
.nav.is-solid .nav__link,  .nav.is-opaque .nav__link,
.nav.is-solid .nav__toggle, .nav.is-opaque .nav__toggle,
.nav.is-solid .lang__btn,  .nav.is-opaque .lang__btn { color: var(--aegean-deep); }
.nav.is-solid .lang, .nav.is-opaque .lang,
.nav.is-solid .nav__toggle, .nav.is-opaque .nav__toggle { border-color: var(--border-strong); }
.nav.is-solid .lang__btn[aria-pressed="true"],
.nav.is-opaque .lang__btn[aria-pressed="true"] { background: var(--aegean-deep); color: var(--paper); }
.nav.is-solid .lang__btn:hover:not([aria-pressed="true"]),
.nav.is-opaque .lang__btn:hover:not([aria-pressed="true"]) { background: var(--foam); }

/* ── 6. Hero ───────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 100svh;
  padding-top: calc(var(--nav-h) + var(--sp-7));
  padding-bottom: clamp(var(--sp-8), 10vh, var(--sp-10));
  isolation: isolate;
  color: var(--paper);
  background: var(--aegean-darker);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img,
.hero__media video,
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 42%;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    /* darkest behind the headline on the left, so the type always clears AA */
    linear-gradient(100deg, rgba(4, 23, 63, .86) 0%, rgba(4, 23, 63, .58) 42%, rgba(4, 23, 63, .30) 75%),
    linear-gradient(180deg, rgba(4, 23, 63, .62) 0%, rgba(4, 23, 63, .20) 38%, rgba(4, 23, 63, .80) 100%),
    radial-gradient(120% 80% at 50% 100%, rgba(7, 42, 115, .55), transparent 70%);
}

/* The reel is a 576x1024 phone clip. Native size on mobile; on wide screens it
   is scaled well past its resolution, so soften it into ambient texture rather
   than pretending it is sharp footage. */
.hero__video { filter: saturate(1.06); }
@media (min-width: 901px) {
  .hero__video { filter: blur(3px) saturate(1.12) brightness(.96); transform: scale(1.05); }
}

.hero__content { position: relative; max-width: 40ch; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--blossom);
  margin-bottom: var(--sp-5);
}
.hero__eyebrow::before { content: ""; width: 34px; height: 2px; background: var(--flower); }

.hero__title {
  font-size: var(--step-5);
  line-height: .95;
  letter-spacing: -.02em;
  margin-bottom: var(--sp-5);
  text-shadow: 0 2px 30px rgba(6, 30, 51, .5);
}
.hero__title em {
  display: block;
  font-style: italic;
  color: var(--sky-pale);
}
.hero__sub {
  font-size: var(--step-1);
  font-weight: 300;
  color: rgba(255, 255, 255, .9);
  max-width: 34ch;
  margin-bottom: var(--sp-6);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--sp-4); }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3) var(--sp-6);
  margin-top: var(--sp-6);
  padding-top: var(--sp-4);
  border-top: 1px solid rgba(255, 255, 255, .22);
  font-size: var(--step--1);
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .82);
}
.hero__meta span { display: inline-flex; align-items: center; gap: var(--sp-2); }
.hero__meta .icon { width: 16px; height: 16px; color: var(--blossom); }

.hero__scroll {
  position: absolute;
  left: 50%; bottom: var(--sp-5);
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: var(--sp-2);
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .7);
}
.hero__scroll::after {
  content: "";
  width: 1px; height: 46px;
  background: linear-gradient(rgba(255, 255, 255, .8), transparent);
  animation: scrollCue 2.4s var(--ease) infinite;
}
@keyframes scrollCue {
  0%   { transform: scaleY(0); transform-origin: top; }
  45%  { transform: scaleY(1); transform-origin: top; }
  55%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── 7. Marquee band ───────────────────────────────────────────────────── */
.band {
  background: var(--aegean-deep);
  color: var(--paper);
  padding-block: var(--sp-4);
  overflow: hidden;
}
.band__track {
  display: flex;
  width: max-content;
  gap: var(--sp-6);
  animation: marquee 34s linear infinite;
}
.band:hover .band__track { animation-play-state: paused; }
.band__item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-6);
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--step-1);
  white-space: nowrap;
}
.band__item::after {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--flower);
  flex: none;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── 8. Intro / about ──────────────────────────────────────────────────── */
.intro__grid {
  display: grid;
  gap: clamp(var(--sp-6), 5vw, var(--sp-9));
  align-items: center;
}
.intro__body p { color: var(--ink-soft); font-weight: 300; font-size: var(--step-1); }
.intro__body strong { color: var(--ink); font-weight: 500; }

.pills { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-top: var(--sp-6); padding: 0; list-style: none; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  background: var(--paper);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--aegean-deep);
}
.pill .icon { width: 16px; height: 16px; color: var(--flower); }

.collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.collage figure { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.collage img { width: 100%; height: 100%; aspect-ratio: 3 / 4; object-fit: cover; }
.collage figure:first-child { grid-row: span 2; }
/* Let the spanning figure fill both rows instead of keeping its own ratio,
   otherwise column one ends short and leaves a gap. */
.collage figure:first-child img { aspect-ratio: auto; min-height: 100%; }

/* ── 9. Experience cards ───────────────────────────────────────────────── */
.cards {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  list-style: none; margin: 0; padding: 0;
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  /* Cards sit inside .section--blue, which sets colour:white. Re-assert ink
     explicitly or the headings vanish against the white card. */
  color: var(--ink);
  padding: var(--sp-6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card__num {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--flower);
}
.card__title { font-size: var(--step-2); }
.card p { color: var(--ink-soft); font-weight: 300; margin: 0; }
.card .icon { width: 26px; height: 26px; color: var(--aegean); }

/* ── 10. Menu ──────────────────────────────────────────────────────────── */
.menu-preview {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.menu-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: var(--sp-6);
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  color: var(--paper);
  background: var(--aegean-deep);
}
.menu-card img {
  position: absolute; inset: 0; z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}
.menu-card::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(6, 30, 51, .25), rgba(6, 30, 51, .88));
}
.menu-card:hover img { transform: scale(1.06); }
.menu-card__title { font-size: var(--step-2); margin-top: auto; }
.menu-card p { color: rgba(255, 255, 255, .82); font-weight: 300; margin: var(--sp-2) 0 0; }
.menu-card__more {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  margin-top: var(--sp-4);
  font-size: var(--step--1); font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--blossom);
}
.menu-card__more .icon { width: 16px; height: 16px; transition: transform var(--dur) var(--ease); }
.menu-card:hover .menu-card__more .icon { transform: translateX(4px); }
.menu-card__link::after { content: ""; position: absolute; inset: 0; }

/* full menu page */
.menu-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: var(--z-sticky);
  display: flex;
  gap: var(--sp-2);
  overflow-x: auto;
  padding: var(--sp-4) 0;
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  scrollbar-width: thin;
  /* Fade the right edge so it reads as scrollable rather than clipped. */
  -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 48px), transparent 100%);
          mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 48px), transparent 100%);
}
.menu-nav__link {
  flex: none;
  min-height: 44px;
  display: inline-flex; align-items: center;
  padding: 0 var(--sp-5);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-pill);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--aegean-deep);
  white-space: nowrap;
  transition: background-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.menu-nav__link:hover, .menu-nav__link.is-active {
  background: var(--aegean-deep); color: var(--paper); border-color: var(--aegean-deep);
}

.menu-group + .menu-group { margin-top: var(--sp-9); }
.menu-group__head {
  display: flex; align-items: baseline; gap: var(--sp-4);
  padding-bottom: var(--sp-4);
  margin-bottom: var(--sp-5);
  border-bottom: 2px solid var(--aegean);
}
.menu-group__title { font-size: var(--step-3); }
.menu-group__note { font-size: var(--step--1); color: var(--ink-faint); letter-spacing: .1em; text-transform: uppercase; }

.menu-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-2); }
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: var(--sp-3);
  padding: var(--sp-4) 0;
  border-bottom: 1px dashed var(--border);
}
.menu-item:last-child { border-bottom: 0; }
.menu-item__name { font-family: var(--font-display); font-size: var(--step-1); }
.menu-item__desc {
  grid-column: 1 / -1;
  margin: var(--sp-1) 0 0;
  font-size: var(--step--1);
  font-weight: 300;
  color: var(--ink-soft);
}
.menu-item__price {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  color: var(--aegean-deep);
  white-space: nowrap;
}
.menu-item__price span { font-size: .7em; font-weight: 400; color: var(--ink-faint); margin-left: 2px; }
.tag {
  display: inline-block;
  margin-left: var(--sp-2);
  padding: 2px var(--sp-2);
  border-radius: var(--radius-sm);
  background: var(--blossom);
  color: var(--flower-deep);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  vertical-align: middle;
}
.tag--blue { background: var(--foam); color: var(--aegean-deep); }

.menu-note {
  margin-top: var(--sp-7);
  padding: var(--sp-5);
  border-left: 3px solid var(--flower);
  background: var(--surface-sunk);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: var(--step--1);
  color: var(--ink-soft);
}
.menu-note p:last-child { margin-bottom: 0; }

/* ── 11. Gallery ───────────────────────────────────────────────────────── */
/* Dense mosaic of tall/wide tiles, dimmed at rest so the grid reads as one
   calm block of blue; a tile lifts to full colour on hover or keyboard focus. */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  grid-auto-flow: dense;
  gap: var(--sp-4);
}
.g-item {
  position: relative;
  display: block;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--aegean-darker);
  box-shadow: var(--shadow);
  cursor: pointer;
}
.g-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.80) saturate(1.06);
  transform: scale(1.01);
  transition: transform .7s var(--ease), filter .45s var(--ease);
}
/* navy veil over the top of the dim */
.g-item::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(7, 42, 115, .22), rgba(4, 23, 63, .46));
  transition: opacity .45s var(--ease);
  pointer-events: none;
}
/* accent hairline on hover, matching the flowers */
.g-item::after {
  content: "";
  position: absolute; inset: 0;
  z-index: 3;
  border: 2px solid transparent;
  border-radius: inherit;
  transition: border-color .35s var(--ease);
  pointer-events: none;
}
.g-item:hover img, .g-item:focus-visible img { filter: none; transform: scale(1.07); }
.g-item:hover::before, .g-item:focus-visible::before { opacity: 0; }
.g-item:hover::after, .g-item:focus-visible::after { border-color: rgba(224, 68, 122, .8); }

.g-item__cap {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: var(--sp-8) var(--sp-4) var(--sp-4);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--paper);
  text-align: left;
  background: linear-gradient(transparent, rgba(4, 23, 63, .88));
  transform: translateY(101%);
  transition: transform .4s var(--ease);
}
.g-item:hover .g-item__cap, .g-item:focus-visible .g-item__cap { transform: none; }

.g-item--wide { grid-column: span 2; }
.g-item--tall { grid-row: span 2; }

/* No hover to reveal with: lighten the rest state and pin the captions open. */
@media (hover: none) {
  .g-item img { filter: brightness(.9) saturate(1.04); }
  .g-item::before { opacity: .55; }
  .g-item__cap { transform: none; }
}

/* reels */
.reels {
  display: grid;
  gap: var(--sp-5);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-top: var(--sp-8);
}
.reel { margin: 0; }
.reel video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--aegean-darker);
  box-shadow: var(--shadow);
}
.reel figcaption {
  margin-top: var(--sp-3);
  font-size: var(--step--1);
  color: var(--ink-soft);
}

/* lightbox */
.lightbox {
  position: fixed; inset: 0;
  z-index: var(--z-modal);
  display: grid;
  place-items: center;
  padding: var(--sp-5);
  background: rgba(6, 30, 51, .93);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur);
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox__stage {
  max-width: min(92vw, 900px);
  max-height: 84svh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: scale(.96);
  transition: transform var(--dur) var(--ease-out);
}
.lightbox.is-open .lightbox__stage { transform: scale(1); }
.lightbox__cap {
  position: absolute;
  left: 50%; bottom: var(--sp-5);
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .84);
  font-size: var(--step--1);
  letter-spacing: .08em;
  text-align: center;
}
.lightbox__btn {
  position: absolute;
  display: grid; place-items: center;
  width: 52px; height: 52px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  color: var(--paper);
  transition: background-color var(--dur) var(--ease);
}
.lightbox__btn:hover { background: rgba(255, 255, 255, .25); }
.lightbox__close { top: var(--sp-5); right: var(--sp-5); }
.lightbox__prev { left: var(--sp-4); top: 50%; transform: translateY(-50%); }
.lightbox__next { right: var(--sp-4); top: 50%; transform: translateY(-50%); }

/* ── 12. Visit / contact ───────────────────────────────────────────────── */
.visit__grid { display: grid; gap: clamp(var(--sp-6), 5vw, var(--sp-8)); align-items: start; }

.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-5); }
.info-item { display: grid; grid-template-columns: auto 1fr; gap: var(--sp-4); align-items: start; }
.info-item__icon {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--foam);
  color: var(--aegean-deep);
}
.section--blue .info-item__icon { background: rgba(255, 255, 255, .14); color: var(--paper); }
.info-item__label {
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 2px;
}
.section--blue .info-item__label { color: var(--sky-pale); }
.info-item__value { font-size: var(--step-1); font-weight: 400; }
.info-item__value a { text-decoration: none; border-bottom: 1px solid currentColor; }

.hours { list-style: none; margin: 0; padding: 0; }
.hours li {
  display: flex; justify-content: space-between; gap: var(--sp-4);
  padding: var(--sp-3) 0;
  border-bottom: 1px dashed var(--border);
  font-variant-numeric: tabular-nums;
}
.section--blue .hours li { border-color: rgba(255, 255, 255, .2); }
.hours li:last-child { border-bottom: 0; }
.hours .is-today { font-weight: 600; color: var(--flower); }
.section--blue .hours .is-today { color: var(--blossom); }

.map-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--foam);
  min-height: 320px;
}
.map-card iframe, .map-card img { width: 100%; height: 100%; min-height: 320px; border: 0; object-fit: cover; }
.map-card__pin {
  position: absolute;
  left: var(--sp-5); bottom: var(--sp-5);
  display: inline-flex; align-items: center; gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius-pill);
  background: var(--paper);
  box-shadow: var(--shadow);
  font-size: var(--step--1);
  font-weight: 500;
  color: var(--aegean-deep);
}
.map-card__pin .icon { color: var(--flower); }

/* forms */
.form { display: grid; gap: var(--sp-5); }
.form__row { display: grid; gap: var(--sp-5); }
.field { display: grid; gap: var(--sp-2); }
.field__label { font-size: var(--step--1); font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); }
.field__req { color: var(--flower); margin-left: 2px; }
.field__hint { font-size: var(--step--1); font-weight: 300; color: var(--ink-faint); }
.field input, .field select, .field textarea {
  min-height: 48px;
  padding: var(--sp-3) var(--sp-4);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--paper);
  font: inherit;
  color: var(--ink);
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--aegean); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--aegean);
  box-shadow: 0 0 0 3px rgba(15, 111, 184, .16);
  outline: none;
}
.field__error {
  display: none;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--step--1);
  font-weight: 500;
  color: var(--danger);
}
.field__error .icon { width: 15px; height: 15px; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--danger); }
.field.has-error .field__error { display: flex; }

.form__status {
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-sm);
  font-size: var(--step--1);
  font-weight: 500;
}
.form__status:empty { display: none; }
.form__status.is-ok { background: #E7F5EE; color: var(--success); border-left: 3px solid var(--success); }
.form__status.is-err { background: #FDECEC; color: var(--danger); border-left: 3px solid var(--danger); }

/* ── 13. Footer ────────────────────────────────────────────────────────── */
.footer {
  position: relative;
  background: var(--aegean-night);
  color: rgba(255, 255, 255, .72);
  overflow: hidden;
}
.footer__cta { padding-block: clamp(var(--sp-8), 8vw, var(--sp-9)); text-align: center; }
.footer__headline {
  font-size: var(--step-4);
  line-height: 1.02;
  color: var(--paper);
  margin-bottom: var(--sp-6);
}
.footer__headline em { font-style: italic; color: var(--sky-pale); }

.footer__grid {
  display: grid;
  gap: var(--sp-7);
  padding-block: var(--sp-8);
  border-top: 1px solid rgba(255, 255, 255, .12);
}
.footer__brandcol { display: grid; gap: var(--sp-4); align-content: start; }
.footer__mark { width: 60px; height: 60px; border-radius: 50%; }
.footer__tagline { font-family: var(--font-display); font-style: italic; font-size: var(--step-1); color: var(--sky-pale); margin: 0; }

.footer__col h3 {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: var(--sp-4);
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-3); }
.footer__col a {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  min-height: 30px;
  transition: color var(--dur) var(--ease);
}
.footer__col a:hover { color: var(--paper); }

.social { display: flex; gap: var(--sp-3); }
.social a {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), color var(--dur) var(--ease);
}
.social a:hover { background: var(--flower); border-color: var(--flower); color: var(--paper); }

.footer__bar {
  display: flex; flex-wrap: wrap; gap: var(--sp-3) var(--sp-5);
  align-items: center; justify-content: space-between;
  padding-block: var(--sp-5);
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: var(--step--1);
}
.footer__watermark {
  font-family: var(--font-body);
  font-size: clamp(4rem, 19vw, 15rem);
  font-weight: 600;
  letter-spacing: .06em;
  line-height: .8;
  text-align: center;
  color: rgba(255, 255, 255, .045);
  padding-bottom: var(--sp-4);
  user-select: none;
  pointer-events: none;
}

/* ── 14. Page hero (sub-pages) ─────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(var(--sp-8), 12vw, var(--sp-10)));
  padding-bottom: clamp(var(--sp-7), 8vw, var(--sp-9));
  background: linear-gradient(170deg, var(--foam), var(--paper));
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.page-hero__title { font-size: var(--step-4); margin-bottom: var(--sp-4); }
.page-hero__lead { font-size: var(--step-1); font-weight: 300; color: var(--ink-soft); max-width: 52ch; }
.page-hero__decor {
  position: absolute;
  right: -40px; bottom: -10%;
  width: min(38%, 400px);
  opacity: .42;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(120% 120% at 70% 50%, #000 45%, transparent 78%);
          mask-image: radial-gradient(120% 120% at 70% 50%, #000 45%, transparent 78%);
}
@media (max-width: 720px) { .page-hero__decor { display: none; } }

.crumbs { display: flex; gap: var(--sp-2); font-size: var(--step--1); color: var(--ink-faint); margin-bottom: var(--sp-4); list-style: none; padding: 0; }
.crumbs a { color: var(--aegean-deep); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

/* ── 15. Motion ────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 80ms; }
.reveal[data-delay="2"] { transition-delay: 160ms; }
.reveal[data-delay="3"] { transition-delay: 240ms; }
.reveal[data-delay="4"] { transition-delay: 320ms; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .band__track { animation: none; }
  .hero__scroll::after { animation: none; }
  /* Autoplaying footage is exactly what reduced-motion asks us to avoid —
     fall back to the poster frame, which the video element still paints. */
  .hero__video { display: none; }
  .hero__media { background: url("../img/photo/cocktails-night.jpg") center/cover no-repeat; }
}

/* ── 16. Responsive ────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  /* Logo + wordmark + language switcher + burger will not all fit at 375px.
     Drop the sub-line, tighten the lockup and shrink the switcher so the
     burger — the only way into the menu — always stays on screen. */
  .nav__inner { gap: var(--sp-3); }
  .nav__sub { display: none; }
  .nav__word { font-size: .95rem; letter-spacing: .18em; }
  .nav__mark { width: 36px; height: 36px; }
  .lang__btn { min-width: 30px; padding: 0 var(--sp-1); font-size: .66rem; }
  .nav__aside { gap: var(--sp-2); }
  /* The cue sits on top of .hero__meta once the hero shortens. */
  .hero__scroll { display: none; }

  .nav__links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(86vw, 380px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: var(--sp-5);
    padding: var(--sp-9) var(--sp-7);
    background: var(--aegean-deep);
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform var(--dur) var(--ease-out);
    z-index: var(--z-drawer);
  }
  body.nav-open .nav__links { transform: none; }
  .nav__link { color: var(--paper) !important; font-size: var(--step-2); letter-spacing: .1em; }
  .nav__link::after { background: var(--blossom); }
  .nav__scrim {
    position: fixed; inset: 0;
    z-index: calc(var(--z-drawer) - 1);
    background: rgba(6, 30, 51, .55);
    opacity: 0; visibility: hidden;
    transition: opacity var(--dur) var(--ease), visibility var(--dur);
  }
  body.nav-open .nav__scrim { opacity: 1; visibility: visible; }
}

@media (min-width: 901px) {
  .nav__toggle, .nav__scrim { display: none; }
  .nav__cta { display: inline-flex; }
}

@media (min-width: 720px) {
  .form__row--2 { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 601px) and (max-width: 900px) {
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 190px; }
}

@media (min-width: 860px) {
  .intro__grid { grid-template-columns: 1.05fr .95fr; }
  .intro__grid--flip .intro__body { order: 2; }
  .visit__grid { grid-template-columns: 1fr 1.1fr; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
}

@media (max-width: 600px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 250px; }
  .g-item--wide, .g-item--tall { grid-column: auto; grid-row: auto; }
  .hero { min-height: 92svh; }
  .lightbox__prev, .lightbox__next { top: auto; bottom: var(--sp-8); transform: none; }
}

@media print {
  .nav, .hero__scroll, .footer__cta, .band { display: none; }
  body { color: #000; background: #fff; }
}
