/* ==========================================================================
   Faros Acharavi
   Design: whitewash ground, Ionian teal structure, lighthouse red accent.
   Type: Alegreya (display) + Commissioner (text/UI), both with Greek support.
   The site commits to one bright, sunlit visual world on every device.
   ========================================================================== */

:root {
  /* colour */
  --ground:      #ebefef;
  --ground-deep: #dfe6e5;
  --surface:     #ffffff;
  --ink:         #10262c;
  --ink-2:       #35545c;
  --muted:       #6b858b;
  --line:        #d2dedd;
  --sea:         #0c6b7a;
  --sea-deep:    #093f4a;
  --sea-night:   #062b33;
  --sea-pale:    #dcebeb;
  --beacon:      #be3a2b;
  --beacon-dark: #9c2c1f;
  --canvas:      #e6d8bb;

  /* type */
  --display: "Alegreya", "Iowan Old Style", Georgia, "Times New Roman", serif;
  --text: "Commissioner", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --fs-xs:   0.75rem;
  --fs-sm:   0.875rem;
  --fs-base: 1.0625rem;
  --fs-lg:   1.1875rem;
  --fs-xl:   1.375rem;
  --fs-2xl:  clamp(1.6rem, 1.15rem + 1.8vw, 2.35rem);
  --fs-3xl:  clamp(2.1rem, 1.35rem + 3.1vw, 3.5rem);
  --fs-hero: clamp(2.6rem, 1.4rem + 5.2vw, 5.25rem);

  /* layout */
  --wrap: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --header-h: 74px;
  --radius: 3px;
  --shadow-sm: 0 1px 2px rgba(9, 63, 74, 0.06), 0 6px 16px rgba(9, 63, 74, 0.06);
  --shadow-md: 0 2px 4px rgba(9, 63, 74, 0.08), 0 18px 40px rgba(9, 63, 74, 0.12);
}

/* --------------------------------------------------------------- base ---- */

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: var(--text);
  font-size: var(--fs-base);
  line-height: 1.65;
  font-weight: 380;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--sea); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--beacon); }

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

p { margin: 0; }

:focus-visible {
  outline: 3px solid var(--beacon);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: 50%; top: 0; transform: translate(-50%, -120%);
  z-index: 200; background: var(--surface); color: var(--ink);
  padding: 0.75rem 1.25rem; font-size: var(--fs-sm); font-weight: 600;
  box-shadow: var(--shadow-md);
}
.skip-link:focus { transform: translate(-50%, 0); }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: 820px; }

.eyebrow {
  font-family: var(--text);
  font-size: var(--fs-xs);
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sea);
  margin: 0;
}
.eyebrow--light { color: rgba(255, 255, 255, 0.82); }

.lede {
  font-size: var(--fs-lg);
  color: var(--ink-2);
  max-width: 62ch;
}

/* The beam: a hairline that fades out like a light sweeping away. */
.beam {
  height: 2px; border: 0; margin: 0;
  background: linear-gradient(90deg, var(--beacon) 0%, var(--beacon) 12%, rgba(190, 58, 43, 0.15) 45%, rgba(190, 58, 43, 0) 100%);
}

/* ------------------------------------------------------------ buttons ---- */

.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-family: var(--text); font-size: var(--fs-sm); font-weight: 650;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.95rem 1.6rem; border-radius: var(--radius);
  border: 1.5px solid transparent; text-decoration: none; cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--beacon { background: var(--beacon); color: #fff; }
.btn--beacon:hover { background: var(--beacon-dark); color: #fff; }

.btn--sea { background: var(--sea-deep); color: #fff; }
.btn--sea:hover { background: var(--sea); color: #fff; }

.btn--outline { border-color: var(--sea-deep); color: var(--sea-deep); background: transparent; }
.btn--outline:hover { background: var(--sea-deep); color: #fff; }

.btn--ghost { border-color: rgba(255, 255, 255, 0.55); color: #fff; background: rgba(255, 255, 255, 0.06); }
.btn--ghost:hover { background: #fff; color: var(--sea-deep); border-color: #fff; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; }

/* ------------------------------------------------------------- header ---- */

.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}
.header::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(6, 43, 51, 0.62), rgba(6, 43, 51, 0));
  opacity: 1; transition: opacity 0.25s ease;
}
.header.is-solid { background: var(--surface); box-shadow: var(--shadow-sm); border-bottom-color: var(--line); }
.header.is-solid::before { opacity: 0; }

.header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }

.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: #fff; }
.header.is-solid .brand { color: var(--ink); }
.brand__mark { flex: 0 0 auto; width: 26px; height: 34px; }
.brand__name {
  font-family: var(--display); font-size: 1.5rem; font-weight: 500;
  letter-spacing: 0.14em; line-height: 1; text-transform: uppercase;
}
.brand__sub {
  display: block; font-family: var(--text); font-size: 0.5625rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase; line-height: 1;
  margin-top: 0.32rem; opacity: 0.78;
}

.nav { display: flex; align-items: center; gap: 0.35rem; }
.nav a {
  font-size: var(--fs-sm); font-weight: 500; letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9); text-decoration: none;
  padding: 0.5rem 0.7rem; border-radius: var(--radius);
  position: relative;
}
.header.is-solid .nav a { color: var(--ink-2); }
.nav a::after {
  content: ""; position: absolute; left: 0.7rem; right: 0.7rem; bottom: 0.28rem;
  height: 1.5px; background: var(--beacon); transform: scaleX(0); transform-origin: left;
  transition: transform 0.2s ease;
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a:hover, .header.is-solid .nav a:hover { color: #fff; }
.header.is-solid .nav a:hover { color: var(--ink); }
.nav a[aria-current="page"] { color: #fff; }
.header.is-solid .nav a[aria-current="page"] { color: var(--ink); }

.nav__call {
  margin-left: 0.6rem; display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: var(--fs-sm); font-weight: 650; letter-spacing: 0.03em;
  padding: 0.6rem 1.05rem; border-radius: var(--radius);
  background: var(--beacon); color: #fff; text-decoration: none;
  white-space: nowrap;
}
.nav__call:hover { background: var(--beacon-dark); color: #fff; }
.nav__call svg { width: 15px; height: 15px; }

.burger {
  display: none; width: 44px; height: 44px; padding: 0; cursor: pointer;
  background: transparent; border: 1px solid rgba(255, 255, 255, 0.5); border-radius: var(--radius);
  align-items: center; justify-content: center;
}
.header.is-solid .burger { border-color: var(--line); }
.burger span { display: block; width: 19px; height: 1.5px; background: #fff; position: relative; transition: background-color 0.2s ease; }
.burger span::before, .burger span::after {
  content: ""; position: absolute; left: 0; width: 19px; height: 1.5px; background: inherit;
  transition: transform 0.22s ease, top 0.22s ease;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }
.header.is-solid .burger span, .header.is-solid .burger span::before, .header.is-solid .burger span::after { background: var(--ink); }
body.nav-open .burger span { background: transparent; }
body.nav-open .burger span::before { top: 0; transform: rotate(45deg); background: var(--ink); }
body.nav-open .burger span::after { top: 0; transform: rotate(-45deg); background: var(--ink); }

.drawer {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: var(--surface);
  padding: 2rem var(--gutter) 3rem;
  display: flex; flex-direction: column; gap: 0.25rem;
  overflow-y: auto;
  transform: translateY(-8px); opacity: 0; visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
body.nav-open .drawer { transform: translateY(0); opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }
.drawer a {
  font-family: var(--display); font-size: 1.75rem; color: var(--ink);
  text-decoration: none; padding: 0.7rem 0; border-bottom: 1px solid var(--line);
}
.drawer a:hover { color: var(--beacon); }
.drawer .btn { margin-top: 1.5rem; justify-content: center; font-size: var(--fs-base); }

@media (max-width: 940px) {
  .nav, .nav__call { display: none; }
  .burger { display: inline-flex; }
}

/* --------------------------------------------------------------- hero ---- */

.hero {
  position: relative; min-height: min(88svh, 780px);
  display: flex; align-items: flex-end;
  padding: calc(var(--header-h) + 4rem) 0 clamp(2.5rem, 6vw, 4.5rem);
  color: #fff; overflow: hidden;
  background: var(--sea-night);
}
.hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: center 58%;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(190deg, rgba(6, 43, 51, 0.5) 0%, rgba(6, 43, 51, 0.06) 34%, rgba(6, 43, 51, 0.55) 72%, rgba(6, 43, 51, 0.86) 100%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero__inner { max-width: 33rem; }
.hero h1 {
  font-size: var(--fs-hero); font-weight: 500; letter-spacing: -0.02em;
  margin: 1rem 0 1.25rem;
  text-shadow: 0 2px 30px rgba(6, 43, 51, 0.45);
}
.hero h1 em { font-style: italic; color: #ffd9a3; }
.hero p {
  font-size: var(--fs-lg); color: rgba(255, 255, 255, 0.92); max-width: 46ch;
  text-shadow: 0 1px 18px rgba(6, 43, 51, 0.6);
}
.hero .btn-row { margin-top: 2rem; }

.hero--page { min-height: min(56svh, 460px); }
.hero--page .hero__inner { max-width: 38rem; }
.hero--page h1 { font-size: var(--fs-3xl); }

/* --------------------------------------------------------------- strip --- */

.strip {
  background: var(--sea-night); color: rgba(255, 255, 255, 0.9);
  font-size: var(--fs-sm);
}
.strip .wrap {
  display: flex; flex-wrap: wrap; gap: 0.5rem 2.5rem;
  padding-block: 1.05rem; align-items: center; justify-content: space-between;
}
@media (max-width: 820px) {
  .strip .wrap { flex-direction: column; align-items: flex-start; gap: 0.55rem; }
}
.strip span { display: inline-flex; align-items: center; gap: 0.6rem; }
.strip span::before {
  content: ""; width: 5px; height: 5px; border-radius: 50%;
  background: var(--beacon); flex: 0 0 auto;
}

/* ------------------------------------------------------------ sections --- */

.section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }
.section--surface { background: var(--surface); }
.section--pale { background: var(--sea-pale); }
.section--night { background: var(--sea-night); color: rgba(255, 255, 255, 0.86); }
.section--night h2, .section--night h3 { color: #fff; }
.section--night a { color: #a9dbe2; }
.section--night .split__text p, .section--night .lede { color: rgba(255, 255, 255, 0.8); }
.section--night .figure figcaption { color: rgba(255, 255, 255, 0.6); }
.section--night .eyebrow { color: #7fc4cf; }

.section__head { display: flex; flex-direction: column; gap: 0.9rem; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section__head h2 { font-size: var(--fs-3xl); }
.section__head .lede { margin-top: 0.25rem; }

.split {
  display: grid; gap: clamp(2rem, 5vw, 4.5rem);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1fr 1fr; }
  .split--wide-left { grid-template-columns: 1.15fr 0.85fr; }
  .split--wide-right { grid-template-columns: 0.85fr 1.15fr; }
  .split--reverse > :first-child { order: 2; }
}
.split__text { display: flex; flex-direction: column; gap: 1.1rem; align-items: flex-start; }
.split__text h2 { font-size: var(--fs-2xl); }
.split__text p { max-width: 56ch; color: var(--ink-2); }

.figure { position: relative; }
a.figure { text-decoration: none; color: inherit; display: block; }
a.figure:hover figcaption { color: var(--beacon); }
.figure img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.figure figcaption {
  font-size: var(--fs-xs); color: var(--muted); margin-top: 0.75rem;
  letter-spacing: 0.04em; text-transform: uppercase; font-weight: 600;
}
.figure--stack { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.figure--stack img:first-child { grid-column: 1 / -1; aspect-ratio: 16 / 9; object-fit: cover; }
.figure--stack img:not(:first-child) { aspect-ratio: 4 / 3; object-fit: cover; }

/* ---------------------------------------------------------------- cards -- */

.cards {
  display: grid; gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; text-decoration: none; color: inherit;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
a.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--sea-pale); }
.card img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.card__body { padding: 1.35rem 1.4rem 1.55rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.card__body h3 { font-size: var(--fs-xl); }
.card__body p { font-size: var(--fs-sm); color: var(--ink-2); line-height: 1.6; }
.card__more {
  margin-top: auto; font-size: var(--fs-xs); font-weight: 650; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--beacon);
  display: inline-flex; align-items: center; gap: 0.45rem;
}
a.card:hover .card__more { gap: 0.75rem; }
.card__more::after { content: "\2192"; transition: transform 0.2s ease; }

/* ---------------------------------------------------------------- band --- */

.band { position: relative; color: #fff; overflow: hidden; background: var(--sea-night); }
.band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6, 43, 51, 0.88) 0%, rgba(6, 43, 51, 0.62) 50%, rgba(6, 43, 51, 0.35) 100%);
}
.band .wrap {
  position: relative; z-index: 2;
  padding-block: clamp(4rem, 10vw, 7.5rem);
  display: flex; flex-direction: column; gap: 1.1rem; align-items: flex-start;
}
.band blockquote {
  margin: 0; font-family: var(--display); font-size: var(--fs-3xl); line-height: 1.12;
  font-weight: 500; max-width: 20ch; text-wrap: balance;
}
.band p { max-width: 48ch; color: rgba(255, 255, 255, 0.86); }

/* ------------------------------------------------------------- gallery --- */

.gallery { display: grid; gap: 0.9rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 760px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1 / 1;
  border-radius: var(--radius); background: var(--ground-deep);
}
.gallery > *:first-child { grid-column: span 2; grid-row: span 2; }
.gallery > *:first-child img { aspect-ratio: 1 / 1; }

/* ---------------------------------------------------------------- menu --- */

.menubar {
  position: sticky; top: var(--header-h); z-index: 40;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
/* The rail scrolls sideways, but a scrollbar under the categories looks like a
   mistake. Hide it and fade the edge instead, only on the side that has more. */
.menubar__scroll {
  display: flex; gap: 0.4rem; overflow-x: auto; padding-block: 0.7rem;
  /* run to the edge of the wrap so the row reads as continuing off screen */
  margin-inline: calc(-1 * var(--gutter));
  padding-inline: var(--gutter);
  scroll-padding-inline: var(--gutter);
  scrollbar-width: none; -ms-overflow-style: none;
}
.menubar__scroll::-webkit-scrollbar { width: 0; height: 0; display: none; }
.menubar .wrap { position: relative; }
.menubar .wrap::before, .menubar .wrap::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 56px; z-index: 2;
  pointer-events: none; opacity: 0; transition: opacity 0.2s ease;
}
.menubar .wrap::before { left: 0; background: linear-gradient(90deg, rgba(255, 255, 255, 0.97) 35%, rgba(255, 255, 255, 0)); }
.menubar .wrap::after { right: 0; background: linear-gradient(270deg, rgba(255, 255, 255, 0.97) 35%, rgba(255, 255, 255, 0)); }
.menubar.can-start .wrap::before, .menubar.can-end .wrap::after { opacity: 1; }
.menubar a {
  flex: 0 0 auto; font-size: var(--fs-xs); font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--ink-2); text-decoration: none;
  padding: 0.5rem 0.85rem; border-radius: 100px; border: 1px solid var(--line);
  white-space: nowrap; transition: all 0.18s ease;
}
.menubar a:hover { border-color: var(--sea); color: var(--sea); }
.menubar a.is-active { background: var(--sea-deep); border-color: var(--sea-deep); color: #fff; }

.course { padding-top: clamp(2.5rem, 5vw, 4rem); scroll-margin-top: calc(var(--header-h) + 64px); }
.course__head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.4rem 1rem; margin-bottom: 0.5rem; }
.course__head h2 { font-size: var(--fs-2xl); }
.course__head .gr {
  font-family: var(--text); font-size: var(--fs-sm); font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
.course__note {
  font-size: var(--fs-sm); color: var(--sea); font-weight: 500;
  border-left: 2px solid var(--beacon); padding-left: 0.85rem; margin-top: 0.9rem;
  max-width: 60ch;
}

.dishes {
  display: grid; gap: 0 clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr;
  margin-top: 1.75rem;
}
@media (min-width: 820px) { .dishes { grid-template-columns: 1fr 1fr; } }

.dish { padding: 1rem 0; border-bottom: 1px solid var(--line); break-inside: avoid; }
.dish__name {
  font-family: var(--display); font-size: var(--fs-xl); font-weight: 500; line-height: 1.2;
  color: var(--ink); margin: 0;
}
.dish__gr { font-size: var(--fs-sm); color: var(--sea); margin: 0.15rem 0 0; font-weight: 400; }
.dish__desc { font-size: var(--fs-sm); color: var(--ink-2); margin: 0.35rem 0 0; line-height: 1.55; max-width: 52ch; }
.dish__tag {
  display: inline-block; margin-top: 0.5rem; font-size: 0.6875rem; font-weight: 650;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--beacon);
  border: 1px solid currentColor; border-radius: 100px; padding: 0.12rem 0.55rem;
}

.extras { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.5rem; }
.extras span {
  font-size: var(--fs-sm); background: var(--surface); border: 1px solid var(--line);
  border-radius: 100px; padding: 0.35rem 0.95rem; color: var(--ink-2);
}

/* --------------------------------------------------------------- facts --- */

.facts { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .facts { grid-template-columns: repeat(3, 1fr); } }
.fact h3 {
  font-family: var(--text); font-size: var(--fs-xs); font-weight: 650;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--sea);
  margin-bottom: 0.8rem;
}
.fact p, .fact address { font-style: normal; color: var(--ink-2); }
.fact a { color: var(--ink); }

.hours { width: 100%; border-collapse: collapse; font-size: var(--fs-base); }
.hours th, .hours td { text-align: left; padding: 0.4rem 0; border-bottom: 1px solid var(--line); font-weight: 400; }
.hours td { text-align: right; font-variant-numeric: tabular-nums; color: var(--ink-2); }
.hours tr:last-child th, .hours tr:last-child td { border-bottom: 0; }

.ticklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.ticklist li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: var(--fs-base); color: var(--ink-2); }
.ticklist li::before {
  content: ""; flex: 0 0 auto; width: 7px; height: 7px; margin-top: 0.62em;
  background: var(--beacon); transform: rotate(45deg);
}
.ticklist--two { grid-template-columns: 1fr; }
@media (min-width: 620px) { .ticklist--two { grid-template-columns: 1fr 1fr; gap: 0.55rem 2rem; } }

/* ---------------------------------------------------------------- form --- */

.form { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .form { grid-template-columns: 1fr 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: var(--fs-xs); font-weight: 650; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2); }
.field input, .field select, .field textarea {
  font-family: var(--text); font-size: var(--fs-base); color: var(--ink);
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 0.8rem 0.9rem; width: 100%;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sea); box-shadow: 0 0 0 3px rgba(12, 107, 122, 0.14);
}
.form__note { grid-column: 1 / -1; font-size: var(--fs-sm); color: var(--muted); }
.form .btn { grid-column: 1 / -1; justify-self: start; }

/* -------------------------------------------------------------- footer --- */

.footer { background: var(--sea-night); color: rgba(255, 255, 255, 0.74); font-size: var(--fs-sm); }
.footer .wrap { padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 760px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer h3 {
  font-family: var(--text); font-size: var(--fs-xs); font-weight: 650;
  letter-spacing: 0.16em; text-transform: uppercase; color: #fff; margin-bottom: 0.9rem;
}
.footer a { color: rgba(255, 255, 255, 0.82); text-decoration: none; }
.footer a:hover { color: #fff; text-decoration: underline; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.45rem; }
.footer address { font-style: normal; }
.footer .brand { color: #fff; margin-bottom: 1rem; }
.footer__hours { display: grid; grid-template-columns: auto auto; gap: 0.35rem 1.5rem; font-variant-numeric: tabular-nums; }
.footer__bottom {
  margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex; flex-wrap: wrap; gap: 0.75rem 2rem; justify-content: space-between;
  font-size: var(--fs-xs); color: rgba(255, 255, 255, 0.55);
}
.social { display: flex; gap: 0.6rem; margin-top: 1.1rem; }
.social a {
  width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24); border-radius: 50%;
}
.social a:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.5); }
.social svg { width: 17px; height: 17px; fill: currentColor; }

/* ------------------------------------------------------------- reveals --- */

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn:hover, a.card:hover { transform: none; }
}

/* ------------------------------------------------------------ lightbox --- */

.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  align-items: center; justify-content: center; padding: 4vmin;
  background: rgba(6, 43, 51, 0.94);
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 100%; max-height: 90vh; object-fit: contain; border-radius: var(--radius); }
.lightbox__close {
  position: absolute; top: 1.25rem; right: 1.25rem; width: 46px; height: 46px;
  background: transparent; border: 1px solid rgba(255, 255, 255, 0.4); border-radius: 50%;
  color: #fff; font-size: 1.4rem; line-height: 1; cursor: pointer;
}
.lightbox__close:hover { background: rgba(255, 255, 255, 0.12); }
.gallery button { padding: 0; border: 0; background: none; cursor: zoom-in; display: block; }

/* --------------------------------------------------------------- print --- */

@media print {
  .header, .drawer, .menubar, .footer, .hero, .band, .btn-row, .social { display: none !important; }
  body { background: #fff; font-size: 10.5pt; }
  .dishes { grid-template-columns: 1fr 1fr; }
  .course { page-break-inside: avoid; padding-top: 1.2rem; }
}
