:root {
  --cobalt: #0649ad;
  --cobalt-dark: #05347d;
  --coral: #c7372f;
  --turquoise: #008f95;
  --paper: #fffdf7;
  --white: #ffffff;
  --ink: #10295d;
  --muted: #52627f;
  --line: #cbd7ef;
  --display: Georgia, "Times New Roman", serif;
  --body: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
}

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

a {
  color: inherit;
}

button {
  color: inherit;
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--turquoise);
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  min-height: 4.75rem;
  padding: 0.75rem clamp(1rem, 3vw, 3rem);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--cobalt);
  font: 800 clamp(1.2rem, 2vw, 1.65rem)/1 var(--body);
  letter-spacing: -0.04em;
  text-decoration: none;
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.25rem, 1vw, 1rem);
}

.site-header nav a,
.language-switch button,
.reserve-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
}

.site-header nav a {
  padding: 0.6rem 0.75rem;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-header nav a:hover {
  color: var(--cobalt);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.language-switch {
  display: flex;
}

.language-switch button {
  min-width: 2.75rem;
  padding: 0.4rem;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 800;
}

.language-switch button + button {
  border-left: 1px solid var(--line);
}

.language-switch button[aria-pressed="true"] {
  color: var(--coral);
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 0.25rem;
}

.portfolio-return {
  padding-block: 0.7rem;
  padding-inline: 1rem;
  color: var(--white);
  background: var(--coral);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  display: grid;
  grid-template-columns: minmax(20rem, 44%) minmax(0, 56%);
  min-height: 35.75rem;
  background: var(--white);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 5vw, 5rem) clamp(1.5rem, 5vw, 5.5rem);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--turquoise);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 700;
}

.hero h1 {
  max-width: 9ch;
  margin: 0.55rem 0 1.15rem;
  color: var(--cobalt);
  font-family: var(--body);
  font-size: clamp(4rem, 5.9vw, 6.1rem);
  font-weight: 850;
  line-height: 0.9;
  letter-spacing: -0.055em;
}

.coral-dot {
  color: var(--coral);
}

html[lang="el"] .hero h1 {
  font-size: clamp(2.8rem, 11.5vw, 4.8rem);
  letter-spacing: -0.04em;
}

.hero-intro {
  max-width: 32rem;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.55;
}

.concept-note {
  max-width: 34rem;
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.button {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.1rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.button-primary {
  color: var(--white);
  background: var(--cobalt);
}

.button-secondary {
  color: var(--cobalt);
  background: var(--white);
  border: 1px solid var(--cobalt);
}

.hero-media {
  min-width: 0;
  overflow: hidden;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
}

.info-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  color: var(--white);
  background: var(--cobalt);
}

.info-band > div {
  min-height: 8rem;
  padding: 1.5rem clamp(1rem, 2vw, 2rem);
  border-right: 1px solid rgba(255, 255, 255, 0.35);
}

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

.info-band span,
.info-band strong,
.info-band p {
  display: block;
}

.info-band span {
  margin-bottom: 1rem;
  color: #c2fbf7;
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.info-band strong {
  font: 700 1rem/1.2 var(--display);
}

.info-band p {
  margin: 0.35rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
}

section {
  scroll-margin-top: 6rem;
}

.section {
  padding: clamp(4.5rem, 8vw, 8rem) clamp(1.25rem, 6.5vw, 7rem);
}

.section-heading {
  max-width: 48rem;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

h2 {
  margin: 0;
  color: var(--cobalt);
  font-size: clamp(2.8rem, 5.5vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child {
  max-width: 40rem;
  margin: 1.2rem auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.menu-preview {
  background: var(--white);
  padding-top: 2.5rem;
}

.menu-preview h2 {
  font-size: clamp(2.6rem, 3.4vw, 3.6rem);
}

.menu-preview .section-heading {
  margin-bottom: 2.25rem;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.dish-card {
  min-width: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dish-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.dish-card > div {
  padding: 1.4rem;
}

.dish-card h3 {
  margin: 0;
  color: var(--cobalt);
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.dish-card p {
  margin: 0.45rem 0 1rem;
  color: var(--muted);
  line-height: 1.5;
}

.dish-card span,
.dish-card small {
  display: block;
  font-size: 0.72rem;
  line-height: 1.55;
}

.dish-card span {
  color: var(--cobalt);
  font-weight: 800;
}

.dish-card small {
  color: var(--muted);
}

.menu-disclaimer {
  max-width: 52rem;
  margin: 1.25rem 0 0 auto;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.6;
  text-align: right;
}

.food-story {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
  color: var(--white);
  background: var(--cobalt-dark);
}

.food-story h2 {
  color: var(--white);
}

.food-story p:not(.eyebrow) {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
}

.food-story img {
  min-height: 33rem;
  object-fit: cover;
}

.about {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: clamp(2rem, 6vw, 6rem);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.about div {
  max-width: 55rem;
}

.about p:last-child {
  max-width: 42rem;
  color: var(--muted);
  line-height: 1.75;
}

.concept-visit {
  text-align: center;
  background: var(--white);
}

.concept-visit h2,
.concept-visit > p {
  max-width: 58rem;
  margin-right: auto;
  margin-left: auto;
}

.concept-visit > p {
  color: var(--muted);
  line-height: 1.75;
}

.concept-visit .visit-warning {
  margin-top: 2rem;
  color: var(--ink);
  font-weight: 800;
}

.portfolio-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  margin-top: 1.25rem;
  color: var(--cobalt);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1.5rem;
  align-items: center;
  min-height: 5rem;
  padding: 1.25rem clamp(1.25rem, 4vw, 4rem);
  color: var(--white);
  background: var(--cobalt-dark);
  font-size: 0.75rem;
}

footer a {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 64rem) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }

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

  .info-band {
    grid-template-columns: repeat(2, 1fr);
  }

  .info-band > div:nth-child(2) {
    border-right: 0;
  }

  .info-band > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }

  .dish-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 48rem) {
  .site-header {
    position: static;
    gap: 0.75rem;
  }

  .site-header nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    overflow: visible;
    border: 1px solid var(--line);
  }

  .site-header nav a:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .site-header nav a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding: 3rem 1.25rem;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 17vw, 5.25rem);
  }

  .hero-media {
    min-height: 23rem;
  }

  .dish-grid,
  .food-story,
  .about {
    grid-template-columns: 1fr;
  }

  .food-story img {
    min-height: 24rem;
  }

  .about {
    gap: 1rem;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

@media (max-width: 28rem) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .header-actions,
  .site-header nav {
    grid-column: 1;
  }

  .header-actions {
    justify-content: space-between;
  }

  .portfolio-return {
    flex: 1;
  }

  .info-band {
    grid-template-columns: 1fr;
  }

  .info-band > div,
  .info-band > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  }

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

  .dessert-row {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

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

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