:root {
  --aegean: #16304d;
  --aegean-deep: #0d1f36;
  --marble: #f5f1e8;
  --marble-shade: #ece5d6;
  --gold: #c2a14d;
  --gold-bright: #dbb95f;
  --bronze: #8a6d2b;
  --ink: #232c38;
  --muted: #6b6353;
  --radius: 4px;
  --enter: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 10px 30px rgba(13, 31, 54, 0.12);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jost", "Segoe UI", system-ui, sans-serif;
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--marble);
  line-height: 1.65;
}

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

h1, h2, h3 {
  font-family: "Marcellus", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.25;
}

.container {
  width: min(1080px, 92%);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

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

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(13, 31, 54, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(194, 161, 77, 0.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.9rem;
}

.logo {
  font-family: "Marcellus", Georgia, serif;
  font-weight: 400;
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--marble);
  text-decoration: none;
}

.logo span {
  color: var(--gold-bright);
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  color: var(--marble);
  text-decoration: none;
  font-family: "Jost", system-ui, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
}

@media (hover: hover) and (pointer: fine) {
  .nav-links a {
    transition: border-color 0.2s ease, color 0.2s ease;
  }

  .nav-links a:hover {
    border-color: var(--gold);
  }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--marble);
  border-radius: 2px;
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: flex-end;
  border-bottom: 2px solid var(--gold);
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 31, 54, 0.82), rgba(13, 31, 54, 0.2) 55%, rgba(13, 31, 54, 0.05));
  pointer-events: none;
}

.hero-overlay {
  position: relative;
  z-index: 1;
  padding-block: 5rem;
}

.hero-overlay h1 {
  color: var(--marble);
  font-size: clamp(2.3rem, 5.5vw, 3.8rem);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
  color: rgba(245, 241, 232, 0.92);
  font-size: 1.15rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  max-width: 32rem;
  margin-block: 1rem 1.8rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--aegean-deep);
  font-family: "Marcellus", Georgia, serif;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.1rem;
  border-radius: var(--radius);
}

.btn:focus-visible {
  outline-color: var(--marble);
}

@media (hover: hover) and (pointer: fine) {
  .btn {
    transition: background-color 0.15s ease, transform 0.15s var(--enter), box-shadow 0.15s ease;
  }

  .btn:hover {
    background: var(--gold-bright);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(13, 31, 54, 0.35);
  }
}

/* Greek key divider between hero and content */

.meander {
  height: 22px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='22' viewBox='0 0 32 22'%3E%3Cpath d='M0 21H1V1H23V13H9V21H32' fill='none' stroke='%23c2a14d' stroke-width='2'/%3E%3C/svg%3E")
    repeat-x center / 32px 22px,
    var(--aegean-deep);
}

/* ---------- Sections ---------- */

.section {
  padding-block: 5rem;
}

.section h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  margin-bottom: 0.9rem;
  color: var(--aegean);
}

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3.5rem;
  align-items: center;
}

.muse-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 3px solid var(--gold);
}

.about-thumbs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.about-thumbs img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 3px solid var(--gold);
}

.about-grid .eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.6rem;
}

.about-grid p {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 32rem;
}

/* ---------- Menu ---------- */

.menu {
  background: var(--marble-shade);
  border-block: 1px solid rgba(194, 161, 77, 0.4);
}

.section-sub {
  color: var(--muted);
  margin-bottom: 2.5rem;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.8rem;
}

.menu-card {
  background: var(--marble);
  border: 1px solid rgba(194, 161, 77, 0.4);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.js .menu-card {
  opacity: 0;
  transform: translateY(28px);
}

.js .menu-card.in {
  opacity: 1;
  transform: none;
  animation: cardIn 0.55s var(--enter) both;
  animation-delay: var(--d, 0ms);
}

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

.menu-card-body {
  padding: 1.2rem 1.3rem 1.4rem;
}

@media (hover: hover) and (pointer: fine) {
  .menu-card {
    transition: transform 0.15s var(--enter), box-shadow 0.15s var(--enter);
  }

  .menu-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(13, 31, 54, 0.18);
  }
}

.menu-card h3 {
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
  color: var(--aegean);
}

.price {
  font-family: "Jost", system-ui, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--bronze);
  white-space: nowrap;
}

.menu-card p {
  color: var(--muted);
  font-size: 1rem;
}

/* ---------- Visit ---------- */

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.visit address {
  font-style: normal;
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.visit-note {
  color: var(--muted);
}

.hours {
  width: 100%;
  border-collapse: collapse;
}

.hours td {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(194, 161, 77, 0.4);
}

.hours td:first-child {
  font-weight: 600;
}

.hours td:last-child {
  text-align: right;
  color: var(--muted);
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--aegean-deep);
  color: rgba(245, 241, 232, 0.8);
  text-align: center;
  padding-block: 2.5rem;
  font-size: 1rem;
  border-top: 2px solid var(--gold);
}

.logo-footer {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

/* ---------- Motion ---------- */

.rise {
  animation: rise 0.7s var(--enter) both;
}

.d1 { animation-delay: 0.15s; }
.d2 { animation-delay: 0.3s; }

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
  }
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
  }
}

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

  .rise {
    animation: none;
  }

  .js .menu-card {
    opacity: 1;
    transform: none;
  }

  .js .menu-card.in {
    animation: none;
    animation-delay: 0ms;
  }

  .menu-card,
  .menu-card:hover {
    transition: none;
    transform: none;
    box-shadow: var(--shadow);
  }
}

/* ---------- Responsive ---------- */

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

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--aegean-deep);
    display: none;
    padding: 0.5rem 4%;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    padding: 0.8rem 0;
  }

  .hero {
    min-height: 66vh;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-visual {
    max-width: 340px;
  }

  .menu-card img {
    aspect-ratio: 4 / 3;
  }

  .visit-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .section {
    padding-block: 3.5rem;
  }
}
