:root {
  --aegean: #0d5eaf;
  --aegean-dark: #063c73;
  --sea: #4ca4d8;
  --sun: #ffffff;
  --terracotta: #c46f43;
  --olive: #65793f;
  --cream: #ffffff;
  --sand: #f4f8fc;
  --paper: #ffffff;
  --ink: #171b1e;
  --muted: #5f6864;
  --line: rgba(23, 27, 30, 0.14);
  --shadow: 0 28px 80px rgba(6, 60, 115, 0.16);
  --radius: 18px;
  --container: min(1160px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #ffffff;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  margin: 0;
  overflow-x: hidden;
}

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

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

.skip-link {
  background: var(--ink);
  clip: rect(0 0 0 0);
  color: white;
  height: 1px;
  left: 0;
  overflow: hidden;
  padding: 10px 14px;
  position: absolute;
  top: 0;
  white-space: nowrap;
  width: 1px;
  z-index: 100;
}

.skip-link:focus,
.skip-link:focus-visible {
  clip: auto;
  height: auto;
  left: 16px;
  overflow: visible;
  position: fixed;
  top: 12px;
  width: auto;
}

.site-header {
  align-items: center;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 42px rgba(6, 60, 115, 0.12);
  color: var(--aegean-dark);
  display: flex;
  justify-content: space-between;
  left: 0;
  min-height: 116px;
  padding: 12px max(16px, calc((100vw - 1160px) / 2));
  position: fixed;
  right: 0;
  top: 0;
  transition: background 220ms ease, box-shadow 220ms ease, color 220ms ease;
  z-index: 30;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 50px rgba(6, 60, 115, 0.16);
  color: var(--aegean-dark);
}

.brand img {
  background: white;
  border: 1px solid rgba(13, 94, 175, 0.1);
  border-radius: 18px;
  filter: none;
  height: 108px;
  object-fit: contain;
  padding: 8px 14px;
  transition: height 220ms ease, filter 220ms ease, box-shadow 220ms ease;
  width: auto;
}

.site-header.is-scrolled .brand img,
.site-header.is-open .brand img {
  background: white;
  filter: none;
  height: 94px;
}

.site-nav {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 800;
  gap: 26px;
  text-shadow: none;
}

.site-header.is-scrolled .site-nav,
.site-header.is-open .site-nav {
  text-shadow: none;
}

.site-nav a {
  position: relative;
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta,
.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav-cta {
  background: var(--aegean);
  box-shadow: 0 12px 28px rgba(13, 94, 175, 0.22);
  color: white;
  padding: 12px 18px;
  text-shadow: none;
}

.button {
  border: 1px solid rgba(255, 255, 255, 0.32);
  min-height: 54px;
  padding: 15px 24px;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--aegean);
  border-color: var(--aegean);
  box-shadow: 0 18px 45px rgba(13, 94, 175, 0.34);
  color: white;
}

.button-light {
  background: rgba(255, 255, 255, 0.14);
  color: white;
}

.contact .button-light {
  border-color: var(--line);
  color: var(--ink);
}

.menu-toggle {
  align-items: center;
  background: rgba(13, 94, 175, 0.08);
  border: 1px solid rgba(13, 94, 175, 0.22);
  border-radius: 999px;
  display: none;
  flex-direction: column;
  gap: 6px;
  height: 48px;
  justify-content: center;
  padding: 12px;
  width: 48px;
}

.site-header.is-scrolled .menu-toggle,
.site-header.is-open .menu-toggle {
  border-color: rgba(13, 94, 175, 0.24);
}

.menu-toggle span {
  background: currentColor;
  display: block;
  height: 2px;
  transition: transform 180ms ease;
  width: 21px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  background: var(--aegean-dark);
  color: white;
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.hero-slider,
.hero-slide,
.hero-slide img,
.hero-shade {
  inset: 0;
  position: absolute;
}

.hero-slide {
  opacity: 0;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  width: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(4, 22, 34, 0.84) 0%, rgba(4, 22, 34, 0.64) 34%, rgba(4, 22, 34, 0.16) 75%),
    linear-gradient(180deg, rgba(5, 57, 94, 0.42) 0%, transparent 36%, rgba(24, 14, 7, 0.28) 100%);
  z-index: 2;
}

.hero-inner {
  align-items: center;
  display: grid;
  min-height: 100svh;
  padding: 178px 0 88px;
  position: relative;
  z-index: 5;
}

.hero-copy {
  margin: 0 auto;
  width: var(--container);
}

.overline {
  color: #d8ecff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 0;
}

h1 {
  color: white;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(48px, 7.4vw, 92px);
  font-weight: 700;
  max-width: 720px;
  text-shadow: 0 16px 60px rgba(0, 0, 0, 0.34);
}

h2 {
  color: var(--aegean-dark);
  font-size: clamp(38px, 5vw, 76px);
}

.hero-copy > p:not(.overline) {
  font-size: clamp(18px, 2.1vw, 24px);
  margin: 26px 0 0;
  max-width: 660px;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.36);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-strip span {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  padding: 8px 13px;
}

.hero-progress {
  bottom: 32px;
  display: flex;
  gap: 10px;
  left: max(16px, calc((100vw - 1160px) / 2));
  position: absolute;
  z-index: 6;
}

.hero-progress button {
  background: rgba(255, 255, 255, 0.38);
  border: 0;
  border-radius: 999px;
  height: 4px;
  padding: 0;
  transition: width 220ms ease, background 220ms ease;
  width: 28px;
}

.hero-progress button.is-active {
  background: white;
  width: 56px;
}

section {
  padding: clamp(64px, 8vw, 118px) 0;
}

.section-shell {
  margin: 0 auto;
  width: var(--container);
}

.two-col {
  align-items: center;
  display: grid;
  gap: clamp(34px, 6vw, 88px);
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
}

.two-col.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
}

.welcome {
  background: white;
}

.section-media {
  position: relative;
}

.section-media::before {
  background: var(--aegean);
  border-radius: var(--radius);
  content: "";
  inset: 22px -18px -18px 22px;
  position: absolute;
  z-index: 0;
}

.section-media img,
.host-card,
.contact-panel,
.dish,
.review,
details {
  box-shadow: var(--shadow);
}

.section-media img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  object-fit: cover;
  position: relative;
  width: 100%;
  z-index: 1;
}

.stamp {
  background: var(--aegean);
  border-radius: 999px;
  bottom: 22px;
  color: white;
  font-family: Cinzel, Georgia, serif;
  font-weight: 800;
  left: 22px;
  padding: 12px 18px;
  position: absolute;
  z-index: 2;
}

.section-copy p:not(.overline),
.section-heading p,
.contact-panel p,
.local-inner p,
details p {
  color: var(--muted);
  font-size: 18px;
  margin: 22px 0 0;
}

.mood-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.mood-list span {
  background: rgba(11, 103, 167, 0.1);
  border: 1px solid rgba(11, 103, 167, 0.18);
  border-radius: 999px;
  color: var(--aegean-dark);
  font-weight: 900;
  padding: 10px 14px;
}

.section-heading {
  margin: 0 auto 38px;
  max-width: 780px;
  text-align: center;
  width: var(--container);
}

.menu-preview {
  background: white;
}

.menu-preview .overline,
.welcome .overline,
.contact .overline,
.reviews .overline,
.faq .overline {
  color: var(--aegean);
}

.dish-rail,
.review-grid,
.faq-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0 auto;
  width: var(--container);
}

.dish {
  background: white;
  border-radius: var(--radius);
  isolation: isolate;
  overflow: hidden;
  position: relative;
  transform: translateY(0);
  transition: box-shadow 280ms ease, transform 280ms ease;
  will-change: transform;
}

.dish img {
  aspect-ratio: 4 / 3;
  filter: saturate(1) contrast(1);
  object-fit: cover;
  transform: scale(1);
  transition: transform 560ms ease, filter 560ms ease;
  width: 100%;
}

.dish::after {
  background:
    linear-gradient(180deg, transparent 46%, rgba(13, 94, 175, 0.14)),
    linear-gradient(115deg, transparent 0%, transparent 35%, rgba(255, 255, 255, 0.24) 47%, transparent 58%, transparent 100%);
  content: "";
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transition: opacity 260ms ease;
}

.dish:hover,
.dish:focus-within {
  box-shadow: 0 34px 90px rgba(13, 94, 175, 0.24);
  transform: translateY(-10px);
}

.dish:hover img,
.dish:focus-within img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.06);
}

.dish:hover::after,
.dish:focus-within::after {
  opacity: 1;
}

.dish div {
  padding: 22px;
}

.dish strong {
  color: var(--aegean-dark);
  display: block;
  font-size: 22px;
  line-height: 1.1;
}

.dish span {
  color: var(--muted);
  display: block;
  margin-top: 9px;
}

.story {
  background:
    linear-gradient(135deg, rgba(13, 94, 175, 0.96), rgba(6, 60, 115, 0.98)),
    var(--aegean-dark);
  color: white;
  overflow: hidden;
  position: relative;
}

.story .section-shell {
  position: relative;
  z-index: 1;
}

.story h2,
.story .section-copy p:not(.overline) {
  color: white;
}

.proof-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 30px;
}

.proof-row div {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 18px;
}

.proof-row strong {
  color: white;
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 38px;
  line-height: 1;
}

.proof-row span {
  display: block;
  font-size: 13px;
  margin-top: 8px;
}

.host-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
}

.host-card img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
}

.host-card div {
  color: var(--ink);
  padding: 24px;
}

.host-card span,
.contact-facts span {
  color: var(--aegean);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.host-card strong {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 32px;
  line-height: 1.08;
}

.reviews {
  background: white;
}

.review {
  background:
    linear-gradient(180deg, rgba(11, 103, 167, 0.06), transparent),
    white;
  border-radius: var(--radius);
  padding: 30px;
}

.review blockquote {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 28px;
  line-height: 1.1;
  margin: 0;
}

.review blockquote::before {
  color: var(--aegean);
  content: "“";
  display: block;
  font-size: 60px;
  line-height: 0.68;
}

.review figcaption {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  margin-top: 20px;
}

.local {
  background:
    linear-gradient(rgba(5, 57, 94, 0.76), rgba(5, 57, 94, 0.76)),
    url("assets/media/restaurant/taverna-platon-innen2.webp") center / cover;
  color: white;
  text-align: center;
}

.local h2,
.local p {
  color: white;
}

.local-inner {
  margin: 0 auto;
  max-width: 820px;
  width: var(--container);
}

.contact {
  background: white;
}

.contact-panel {
  background: #f7fbff;
  border: 1px solid rgba(13, 94, 175, 0.14);
  border-radius: var(--radius);
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  margin: 0 auto;
  padding: clamp(26px, 5vw, 58px);
  width: var(--container);
}

.contact-facts {
  display: grid;
  gap: 14px;
}

.contact-facts div {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
}

.contact-facts strong {
  display: block;
  line-height: 1.45;
}

.faq {
  background: white;
}

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

details {
  background: white;
  border-radius: 14px;
  padding: 20px;
}

summary {
  color: var(--aegean-dark);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.mobile-reserve {
  display: none;
  transform: translateY(110%);
  transition: transform 220ms ease;
}

.mobile-reserve.is-visible {
  transform: translateY(0);
}

.site-footer {
  align-items: center;
  background: #061f33;
  color: white;
  display: grid;
  gap: 18px;
  grid-template-columns: 150px 1fr auto;
  padding: 30px max(16px, calc((100vw - 1160px) / 2));
}

.site-footer img {
  background: white;
  border-radius: 10px;
  max-width: 150px;
  padding: 5px 8px;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.site-footer div:nth-child(2) {
  flex-direction: column;
  gap: 2px;
}

.site-footer span,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.footer-credit {
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  display: flex;
  flex-direction: column;
  gap: 4px;
  grid-column: 1 / -1;
  justify-content: center;
  margin-top: 2px;
  padding: 6px 0 0;
  text-align: center;
}

.footer-credit strong,
.footer-credit small {
  display: block;
}

.footer-credit strong {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Nunito Sans", Inter, system-ui, sans-serif;
  font-size: clamp(13px, 1.1vw, 17px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.25;
}

.footer-credit small {
  color: rgba(255, 255, 255, 0.58);
  font-family: "Nunito Sans", Inter, system-ui, sans-serif;
  font-size: clamp(11px, 0.95vw, 14px);
  font-weight: 700;
}

.footer-credit span,
.footer-credit a {
  color: #77baff;
}

.footer-credit small span {
  color: rgba(255, 255, 255, 0.58);
  font-size: inherit;
}

.footer-credit a {
  font-size: inherit;
  font-weight: 800;
}

.legal-main {
  background: linear-gradient(180deg, #f7fbff 0%, white 38%);
  padding: 168px 0 96px;
}

.legal-shell {
  margin: 0 auto;
  max-width: 900px;
  width: var(--container);
}

.legal-shell .overline {
  color: var(--aegean);
}

.legal-shell h1 {
  color: var(--aegean-dark);
  font-size: clamp(42px, 6vw, 72px);
  max-width: none;
  text-shadow: none;
}

.legal-card {
  background: white;
  border: 1px solid rgba(13, 94, 175, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-top: 34px;
  padding: clamp(24px, 4vw, 46px);
}

.legal-card section {
  padding: 0;
}

.legal-card section + section {
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 28px;
}

.legal-card h2 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
}

.legal-card p,
.legal-card address {
  color: var(--muted);
  font-style: normal;
  margin: 14px 0 0;
}

.legal-card a {
  color: var(--aegean);
  font-weight: 800;
}

.reveal {
  opacity: 1;
}

:focus-visible {
  outline: 3px solid rgba(13, 94, 175, 0.45);
  outline-offset: 4px;
}

@media (max-width: 940px) {
  .menu-toggle {
    display: flex;
  }

  .site-nav {
    align-items: stretch;
    background: white;
    border-bottom: 1px solid rgba(13, 94, 175, 0.12);
    box-shadow: 0 18px 44px rgba(6, 60, 115, 0.12);
    color: var(--aegean-dark);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 10px 18px 22px;
    position: absolute;
    right: 0;
    text-shadow: none;
    top: 132px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
  }

  .nav-cta {
    margin-top: 10px;
    text-align: center;
  }

  .two-col,
  .two-col.reverse,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .dish {
    display: grid;
    grid-template-columns: minmax(130px, 0.9fr) minmax(0, 1fr);
  }

  .dish img {
    height: 100%;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding-bottom: 94px;
  }

  .mobile-reserve {
    background: rgba(13, 94, 175, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    bottom: 0;
    color: white;
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(3, 1fr);
    left: 0;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    position: fixed;
    right: 0;
    z-index: 40;
  }

  .mobile-reserve a {
    background: rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
    padding: 11px 8px;
    text-align: center;
  }
}

@media (max-width: 620px) {
  :root {
    --container: min(100vw - 28px, 1160px);
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand img {
    height: 78px;
    max-width: 230px;
  }

  .site-header.is-scrolled .brand img,
  .site-header.is-open .brand img {
    height: 72px;
  }

  .site-nav {
    top: 102px;
  }

  .hero-inner {
    align-items: end;
    padding: 142px 0 54px;
  }

  .legal-main {
    padding: 126px 0 72px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(4, 22, 34, 0.18) 0%, rgba(4, 22, 34, 0.44) 34%, rgba(4, 22, 34, 0.9) 100%),
      linear-gradient(90deg, rgba(4, 22, 34, 0.46), transparent 70%);
  }

  h1 {
    font-size: clamp(40px, 11.8vw, 54px);
  }

  .hero-copy > p:not(.overline) {
    font-size: 17px;
    line-height: 1.52;
    margin-top: 18px;
  }

  .overline {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .hero-actions .button {
    min-height: 50px;
    width: 100%;
  }

  .trust-strip span {
    flex: 1 1 auto;
    font-size: 12px;
    padding: 7px 10px;
    text-align: center;
  }

  .section-media::before {
    inset: 14px -10px -10px 14px;
  }

  .dish {
    display: block;
  }

  .proof-row,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .review blockquote {
    font-size: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
