:root {
  --paper: rgba(255, 248, 235, 0.82);
  --ink: #111111;
  --muted: #585145;
  --line: rgba(17, 17, 17, 0.08);
  --blue: #173a8a;
  --blue-deep: #0a1e50;
  --red: #b63a2d;
  --shadow: 0 24px 80px rgba(10, 30, 80, 0.18);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 20%, rgba(238, 174, 37, 0.38), transparent 26%),
    radial-gradient(circle at 85% 10%, rgba(23, 58, 138, 0.24), transparent 28%),
    linear-gradient(180deg, #f8edd2 0%, #f1e0b7 100%);
}

button,
a {
  font: inherit;
}

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
  background-size: 8px 8px;
}

.hero,
.section,
.footer {
  width: min(1200px, calc(100% - 28px));
  margin: 0 auto;
}

.hero {
  margin-top: 16px;
  padding: 24px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background:
    linear-gradient(135deg, rgba(255, 249, 239, 0.88), rgba(246, 231, 190, 0.7)),
    repeating-linear-gradient(
      90deg,
      rgba(16, 16, 16, 0.02) 0,
      rgba(16, 16, 16, 0.02) 1px,
      transparent 1px,
      transparent 22px
    );
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.15rem;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  color: white;
  background: linear-gradient(135deg, var(--red), var(--blue));
  box-shadow: 0 14px 30px rgba(23, 58, 138, 0.22);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--blue-deep);
}

.hero-grid,
.owner-grid,
.location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.hero-copy h1,
.owner-copy h2,
.section-head h2,
.showcase-card h2,
.menu-panel-copy h3,
.location-copy h2 {
  margin: 0;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: 0.02em;
}

.hero-copy h1 {
  font-size: clamp(3.5rem, 8vw, 7.2rem);
  max-width: 9ch;
}

.section-head h2,
.owner-copy h2,
.location-copy h2 {
  font-size: clamp(2.3rem, 5vw, 4.1rem);
}

.showcase-card h2,
.menu-panel-copy h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.eyebrow,
.panel-kicker,
.mini-label,
.tile-label {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.light .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.lead,
.owner-copy p,
.section-head p,
.showcase-card p,
.menu-panel-copy p,
.location-copy p,
.footer,
.footer {
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.info-tile:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 18px 28px rgba(23, 58, 138, 0.28);
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span,
.info-tile {
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(14px);
}

.hero-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.hero-showcase {
  display: grid;
  gap: 18px;
}

.showcase-stack {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}

.showcase-card,
.menu-interactive,
.map-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.showcase-card {
  padding: 24px;
}

.showcase-card.large {
  min-height: 320px;
  background:
    linear-gradient(145deg, rgba(8, 24, 63, 0.95), rgba(23, 58, 138, 0.86)),
    radial-gradient(circle at top right, rgba(238, 174, 37, 0.4), transparent 35%);
  color: white;
}

.showcase-card.large p,
.showcase-card.large .mini-label {
  color: rgba(255, 255, 255, 0.78);
}

.card-glow {
  position: absolute;
  inset: auto -60px -80px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238, 174, 37, 0.5), transparent 70%);
}

.menu-preview ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 12px;
}

.menu-preview li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.section {
  padding: 88px 0 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.menu-interactive,
.owner-photo-card,
.owner-copy,
.location-copy,
.map-card {
  padding: 28px;
}

.owner-photo-card,
.owner-copy {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--radius-xl);
  background: var(--paper);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.owner-photo-card {
  padding: 0;
  min-height: 420px;
}

.owner-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.menu-panels {
  position: relative;
}

.menu-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  align-items: start;
}

.menu-items {
  display: grid;
  gap: 12px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 17, 17, 0.06);
}

.menu-item strong {
  color: var(--blue-deep);
}

.location-grid {
  gap: 20px;
}

.info-tiles {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.info-tile {
  padding: 16px 18px;
  border-radius: var(--radius-md);
}

.tile-label {
  display: block;
  margin-bottom: 6px;
}

.hours-card {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(14px);
}

.hours-list {
  display: grid;
  gap: 10px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.hours-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.hours-row strong {
  color: var(--blue-deep);
}

.map-card {
  min-height: 360px;
  padding: 0;
  background:
    linear-gradient(135deg, rgba(255, 250, 239, 0.8), rgba(247, 228, 177, 0.78));
}

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

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 42px 0 24px;
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 180ms ease;
}

@media (max-width: 980px) {
  .hero-grid,
  .owner-grid,
  .location-grid,
  .menu-panel {
    grid-template-columns: 1fr;
  }

  .showcase-stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .hero,
  .section,
  .footer {
    width: min(100% - 16px, 1200px);
  }

  .hero {
    padding: 18px;
    border-radius: 28px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 28px;
  }

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

  .showcase-card,
  .menu-interactive,
  .owner-photo-card,
  .owner-copy,
  .map-card {
    border-radius: 24px;
  }

  .footer {
    flex-direction: column;
  }
}
