:root {
  --bg: #f6f2ea;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: #fffdf9;
  --text: #1f1d19;
  --muted: #665f53;
  --line: rgba(31, 29, 25, 0.1);
  --accent: #071bc9;
  --accent-soft: #dee7ff;
  --shadow: 0 24px 70px rgba(46, 37, 24, 0.12);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --page: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(128, 160, 138, 0.2), transparent 30%),
    radial-gradient(circle at right 20%, rgba(214, 192, 145, 0.2), transparent 28%),
    linear-gradient(180deg, #fbf8f2 0%, var(--bg) 100%);
  font-family: "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

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

a:hover {
  color: var(--accent);
}

a:focus-visible,
.button:focus-visible {
  outline: 3px solid rgba(7, 27, 201, 0.28);
  outline-offset: 3px;
}

.page-shell {
  width: min(var(--page), calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 72px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 18px 0 32px;
}

.brand-mark {
  width: 295px;
  filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.08));
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav a {
  padding-bottom: 3px;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  border-color: rgba(7, 27, 201, 0.35);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 26px;
  align-items: stretch;
}

.panel {
  background: var(--surface);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 560px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
}

h1 {
  margin-top: 22px;
  font-size: clamp(2rem, 4.3vw, 3.4rem);
}

.hero-copy p {
  max-width: 38rem;
  margin: 22px 0 0;
  font-size: 1.05rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--accent);
  color: #f8f6f1;
}

.button-primary:hover {
  background: #000;
  color: #f8f6f1;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--line);
}

.hero-media {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

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

.hero-card {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 252, 247, 0.9);
  backdrop-filter: blur(12px);
}

.hero-card strong,
.detail-card strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.hero-card a {
  color: var(--accent);
}

.hero-card a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.hero-card span,
.detail-card span,
.detail-card p,
.visit-copy p,
.about p {
  color: var(--muted);
}

section {
  margin-top: 28px;
}

.gallery {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr;
  gap: 18px;
}

.menu-preview {
  padding: 34px;
}

.section-heading {
  max-width: 48rem;
}

.section-heading h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.section-heading p {
  margin: 14px 0 0;
  color: var(--muted);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.menu-card {
  padding: 22px;
  border-radius: var(--radius-md);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(249, 244, 234, 0.88));
  border: 1px solid rgba(31, 29, 25, 0.08);
}

.menu-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-card h3 {
  font-size: 1.45rem;
}

.menu-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.menu-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.gallery figure {
  margin: 0;
  min-height: 240px;
  overflow: hidden;
  border-radius: var(--radius-md);
  position: relative;
  box-shadow: var(--shadow);
}

.gallery figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease;
}

.gallery figure:hover img {
  transform: scale(1.03);
}

.gallery figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(26, 25, 22, 0.6);
  color: #fffdf8;
  font-size: 0.84rem;
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 24px;
  align-items: start;
}

.visit-copy,
.about {
  padding: 34px;
}

.visit-copy .eyebrow {
  margin-bottom: 16px;
}

.about .eyebrow {
  margin-bottom: 16px;
}

.about h2 {
  max-width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.visit-copy h2,
.about h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 14px;
}

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

.detail-card {
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.detail-card a {
  color: var(--accent);
}

.detail-card a:hover {
  color: var(--accent);
  text-decoration: underline;
}

.detail-card p {
  margin: 0;
}

.detail-card-hours {
  grid-column: 1 / -1;
}

.hours {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hours li + li {
  margin-top: 6px;
}

.action-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.map-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  min-height: 100%;
  background: #d8d1c2;
  box-shadow: var(--shadow);
}

.map-frame iframe {
  width: 100%;
  min-height: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.about {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.about::after {
  content: "";
  position: absolute;
  inset: auto -70px -70px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(7, 27, 201, 0.16), transparent 70%);
  pointer-events: none;
}

.about p {
  max-width: 66ch;
  margin: 0 auto;
}

.about p + p {
  margin-top: 16px;
}

.about-ticker {
  position: relative;
  width: calc(100% + 20px);
  margin: 26px -10px 30px;
  overflow: hidden;
}

.about-ticker::before,
.about-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 96px;
  z-index: 1;
  pointer-events: none;
}

.about-ticker::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 253, 249, 1), rgba(255, 253, 249, 0));
}

.about-ticker::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 253, 249, 1), rgba(255, 253, 249, 0));
}

.about-ticker-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: aboutTicker 210s linear infinite;
}

.about-ticker:hover .about-ticker-track {
  animation-play-state: paused;
}

.about-ticker-track img {
  width: 264px;
  height: 180px;
  border-radius: 18px;
  object-fit: cover;
  flex: 0 0 auto;
  box-shadow: 0 16px 34px rgba(46, 37, 24, 0.12);
}

@keyframes aboutTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 7px));
  }
}

footer {
  padding: 28px 6px 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

@media (max-width: 980px) {
  .hero,
  .visit,
  .gallery {
    grid-template-columns: 1fr;
  }

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

  .hero-copy,
  .hero-media {
    min-height: auto;
  }

  .hero-media {
    min-height: 420px;
  }

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

  .map-frame {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(var(--page), calc(100% - 18px));
    padding-bottom: 42px;
  }

  .topbar {
    padding: 14px 0 26px;
  }

  .hero-copy,
  .menu-preview,
  .visit-copy,
  .about {
    padding: 26px;
  }

  .hero-card {
    position: static;
    margin: 14px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-card > div {
    width: 100%;
  }

  .hero-card span,
  .hero-card a {
    display: block;
    overflow-wrap: anywhere;
  }

  .hero-media {
    min-height: auto;
    padding-bottom: 14px;
    overflow: visible;
    display: flex;
    flex-direction: column;
  }

  .hero-media img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .hero-actions,
  .menu-actions,
  .action-stack {
    flex-direction: column;
  }

  .hero-actions .button,
  .menu-actions .button,
  .action-stack .button {
    width: 100%;
  }

  .gallery figure {
    min-height: 220px;
  }

  .map-frame {
    min-height: 320px;
    height: 320px;
  }

  .map-frame iframe {
    min-height: 320px;
    height: 320px;
  }

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

  .about-ticker {
    width: calc(100% + 8px);
    margin: 24px -4px 28px;
  }

  .about h2 {
    max-width: 100%;
  }

  .about-ticker::before,
  .about-ticker::after {
    width: 42px;
  }

  .about-ticker-track img {
    width: 212px;
    height: 149px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-ticker-track {
    animation: none;
  }
}
