:root {
  --ink: #171513;
  --soft-ink: #403a34;
  --muted: #746a60;
  --paper: #fffaf1;
  --cream: #f4eadb;
  --ivory: #fffdf8;
  --olive: #5f714d;
  --wine: #8e3d34;
  --gold: #c9932e;
  --line: rgba(34, 28, 22, 0.12);
  --shadow: 0 24px 70px rgba(38, 28, 18, 0.16);
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.modal-open { overflow: hidden; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 58px);
  background: rgba(255, 250, 241, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand img { width: 158px; }
.nav { display: flex; justify-content: center; gap: clamp(14px, 3vw, 32px); font-weight: 750; color: #332e29; }
.nav a { position: relative; padding: 10px 0; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}
.nav a:hover::after { transform: scaleX(1); }

.phone-button,
.primary-action,
.secondary-action,
.reservation-form button,
.call-summary a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 24px;
  border: 0;
  font-weight: 850;
  cursor: pointer;
}

.phone-button,
.primary-action,
.reservation-form button,
.call-summary a {
  color: #fff;
  background: var(--wine);
  box-shadow: 0 16px 34px rgba(142, 61, 52, 0.22);
}

.secondary-action {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(12px);
}

.hero {
  position: relative;
  min-height: min(790px, calc(100vh - 76px));
  display: grid;
  place-items: center;
  padding: 96px 18px 62px;
  margin-bottom: clamp(18px, 2.8vw, 34px);
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: #161412;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 52%, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.72) 66%),
    linear-gradient(0deg, rgba(18, 13, 9, 0.86), rgba(18, 13, 9, 0.48) 44%, rgba(18, 13, 9, 0.66));
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.52) contrast(1.05);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(880px, 100%);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(4.2rem, 12vw, 9.5rem);
  line-height: 0.9;
  color: transparent;
  background: linear-gradient(135deg, #f8d77b 0%, #ccb24e 20%, #fde89d 45%, #d9b03f 70%, #f5dc83 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 0 24px rgba(255, 226, 145, 0.55), 0 0 36px rgba(255, 210, 120, 0.25);
  position: relative;
}

.hero h1::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 25%, rgba(255, 255, 255, 0.75) 45%, transparent 65%);
  transform: translateX(-140%) skewX(-20deg);
  animation: hero-title-shimmer 3.8s infinite;
}

@keyframes hero-title-shimmer {
  100% {
    transform: translateX(140%) skewX(-20deg);
  }
}

.hero .eyebrow {
  color: #fff;
}

.hero p:not(.eyebrow) {
  max-width: 690px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.hero-meta span {
  min-height: 44px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
}

.hero-meta b { color: #fff; }

.section {
  padding: 84px clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.GoldenText {
  display: inline-block;
  position: relative;
  background: linear-gradient(135deg, #f7d26d 0%, #e8c145 25%, #f8e58d 50%, #e1b537 75%, #f6d86d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 10px rgba(255, 228, 145, 0.75), 0 0 22px rgba(255, 203, 70, 0.35);
}

.GoldenText::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.65) 50%, transparent 80%);
  transform: translateX(-120%) skewX(-20deg);
  animation: shimmer 3.5s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(120%) skewX(-20deg);
  }
}

.section-heading.compact { max-width: 920px; }
.section h2 { margin: 0; font-size: clamp(2.1rem, 5vw, 4.7rem); line-height: 1; }
.section-heading p:last-child, .contact-copy p { color: var(--muted); font-size: 1.08rem; line-height: 1.65; }

.breakfast-hero {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: #181512;
}

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

.breakfast-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.76) 72%),
    linear-gradient(0deg, rgba(18, 13, 9, 0.82), rgba(18, 13, 9, 0.35));
}

.breakfast-overlay {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 36px));
  margin-inline: auto;
}

.breakfast-overlay h2 {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  line-height: 0.98;
}

.breakfast-overlay p:not(.eyebrow) {
  max-width: 640px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  line-height: 1.6;
}

.breakfast-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, 290px));
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.breakfast-actions button {
  min-height: 74px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.breakfast-actions button.active {
  background: rgba(201, 147, 46, 0.28);
  border-color: rgba(201, 147, 46, 0.72);
  box-shadow: 0 14px 34px rgba(201, 147, 46, 0.18);
  transform: translateY(-2px);
}

.breakfast-actions b {
  display: block;
  margin-top: 8px;
  color: #fff2cc;
}

@media (max-width: 720px) {
  .breakfast-actions {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .breakfast-actions button {
    min-height: 110px;
    padding: 22px 24px;
    font-size: 1rem;
    border-radius: 14px;
  }

  .breakfast-actions b {
    margin-top: 12px;
    font-size: 1rem;
  }
}

.breakfast-details {
  background: var(--cream);
  padding-top: clamp(38px, 5vw, 64px);
}

.breakfast-panel {
  width: min(880px, 100%);
  margin-inline: auto;
  display: none;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffdf8;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.breakfast-panel.active {
  display: block;
  animation: breakfastMenuIn 360ms ease both;
}

.breakfast-menu-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

@keyframes breakfastMenuIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.favorites {
  width: min(var(--max), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.favorites article,
.menu-card,
.review-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 44px rgba(34, 28, 22, 0.07);
}

.favorites article { overflow: hidden; }
.favorite-image {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.favorite-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.favorites div:not(.favorite-image) { padding: 18px 18px 0; }
.favorites strong, .favorites span, .favorites b { display: block; }
.favorites span { margin-top: 8px; color: var(--muted); line-height: 1.45; }
.favorites b { padding: 18px; color: var(--wine); font-size: 1.3rem; }

.menu-section { background: #fff; }
.menu-toolbar {
  position: sticky;
  top: 75px;
  z-index: 12;
  width: min(var(--max), 100%);
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: minmax(220px, 340px) 1fr;
  gap: 14px;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.menu-toolbar input,
.reservation-form input,
.reservation-form textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.reservation-form textarea { padding-top: 12px; resize: vertical; }

.tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.tabs button {
  flex: 0 0 auto;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  color: #3d3832;
  background: var(--paper);
  font-weight: 850;
  cursor: pointer;
}

.tabs button.active { color: #fff; background: var(--olive); border-color: var(--olive); }

.menu-grid {
  width: min(var(--max), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.menu-card {
  display: grid;
  grid-template-columns: 142px 1fr;
  min-height: 156px;
  overflow: hidden;
}

.menu-thumb {
  min-height: 156px;
}

.menu-thumb-frame {
  position: relative;
  min-height: 156px;
  overflow: hidden;
  background: linear-gradient(135deg, #f4eadb, #fffaf1);
}

.menu-image {
  width: 142px;
  height: 100%;
  object-fit: cover;
  background: var(--cream);
}

.menu-image.is-missing {
  display: none;
}

.missing-image-label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 12px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  word-break: break-word;
}

.menu-image:not(.is-missing) + .missing-image-label {
  display: none;
}

.tile {
  background-image: url("assets/menu-collage.png");
  background-repeat: no-repeat;
  background-size: 300% 400%;
  background-position: var(--tile-pos, 0% 0%);
}

.tile-soup { --tile-pos: 0% 0%; }
.tile-salad { --tile-pos: 50% 0%; }
.tile-beet { --tile-pos: 100% 0%; }
.tile-breakfast { --tile-pos: 0% 33.333%; }
.tile-omelette { --tile-pos: 50% 33.333%; }
.tile-muesli { --tile-pos: 100% 33.333%; }
.tile-burger { --tile-pos: 0% 66.666%; }
.tile-veggie { --tile-pos: 50% 66.666%; }
.tile-pizza { --tile-pos: 100% 66.666%; }
.tile-pasta { --tile-pos: 0% 100%; }
.tile-coffee { --tile-pos: 50% 100%; }
.tile-drinks { --tile-pos: 100% 100%; }
.tile-buffet { background-image: url("assets/breakfast-buffet.png"); background-size: cover; background-position: center; }

.menu-card-body { padding: 17px; }
.menu-card h3 { margin: 0; font-size: 1.08rem; line-height: 1.25; }
.menu-card p { margin: 8px 0 14px; color: var(--muted); font-size: 0.95rem; line-height: 1.45; }
.menu-card footer { display: flex; justify-content: space-between; gap: 10px; align-items: end; }
.menu-card b { color: var(--wine); white-space: nowrap; }
.menu-card small { color: var(--olive); font-weight: 850; }

.gallery-section { background: #1b1a17; color: #fff; }
.gallery-section .section-heading p:last-child { color: rgba(255, 255, 255, 0.72); }
.photo-rail {
  width: min(1280px, 100%);
  margin-inline: auto;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(240px, 30vw);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 18px;
  scroll-snap-type: x mandatory;
}

.photo-rail img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  scroll-snap-align: start;
}

.reviews-section { background: var(--paper); }
.review-frame {
  width: min(940px, 100%);
  margin-inline: auto;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 520ms ease;
}

.review-card {
  flex: 0 0 100%;
  min-height: 270px;
  padding: clamp(26px, 4vw, 42px);
  text-align: center;
}

.google-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #4285f4 0 30%, #34a853 30% 55%, #fbbc05 55% 75%, #ea4335 75%);
  font-weight: 900;
}

.review-card strong { display: block; font-size: clamp(1.25rem, 2.4vw, 1.8rem); }
.review-card p { max-width: 720px; margin: 16px auto; color: var(--soft-ink); font-size: 1.14rem; line-height: 1.65; }
.review-card small { color: var(--gold); font-weight: 900; letter-spacing: 0.1em; }
.review-card .review-name { display: block; margin-top: 12px; color: var(--muted); font-weight: 800; }

.contact-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(22px, 5vw, 72px);
  align-items: center;
  background: var(--cream);
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.contact-choice,
.reservation-choice {
  display: grid;
  gap: 8px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fffdf8;
  box-shadow: 0 16px 44px rgba(34, 28, 22, 0.08);
  text-align: left;
  cursor: pointer;
}

.contact-choice span,
.reservation-choice span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-choice strong,
.reservation-choice strong {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.contact-choice small,
.reservation-choice small {
  color: var(--muted);
  line-height: 1.45;
}

.map-strip iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: saturate(0.92) contrast(0.96);
}

.footer {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 28px;
  padding: 48px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: #171717;
}

.footer img { width: 160px; filter: brightness(1.1); }
.footer h3 { margin: 0 0 12px; color: #fff; }
.footer p { margin: 0; line-height: 1.65; }
.footer a, .footer button {
  color: #fff;
  border: 0;
  padding: 0;
  background: transparent;
  font-weight: 850;
  cursor: pointer;
}

.modal[hidden] { display: none; }
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 12, 10, 0.58);
  backdrop-filter: blur(9px);
}

.reservation-dialog {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  max-height: min(860px, calc(100vh - 36px));
  overflow: auto;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.97);
  box-shadow: var(--shadow);
}

.close-button {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.modal-heading {
  max-width: 680px;
  margin: 0 auto 26px;
  text-align: center;
}

.modal-heading h2 { margin: 0; font-size: clamp(2rem, 5vw, 3.8rem); line-height: 1; }
.modal-heading p:last-child { color: var(--muted); line-height: 1.6; }

.reservation-options {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
  align-items: stretch;
}

.reservation-form {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 44px rgba(34, 28, 22, 0.08);
}

.reservation-form h3 { margin: 0 0 6px; font-size: 1.5rem; }
.form-row { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 12px; }
.reservation-form small { color: var(--muted); line-height: 1.4; }

.call-summary {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  width: min(390px, calc(100% - 36px));
  padding: 22px;
  border-radius: 8px;
  color: #fff;
  background: #171717;
  box-shadow: var(--shadow);
}

.call-summary button {
  position: absolute;
  top: 8px;
  right: 10px;
  border: 0;
  color: #fff;
  background: transparent;
  font-size: 1.5rem;
  cursor: pointer;
}

.call-summary p { color: rgba(255, 255, 255, 0.74); line-height: 1.5; }

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reviews-track { transition: none; }
}

@media (max-width: 1060px) {
  .site-header { grid-template-columns: 150px 1fr; }
  .phone-button { display: none; }
  .favorites { grid-template-columns: repeat(2, 1fr); }
  .contact-section, .reservation-options { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .site-header {
    position: sticky;
    top: 0;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 250, 241, 0.96);
  }
  .brand { display: none; }
  .nav {
    justify-content: space-between;
    gap: 14px;
    overflow-x: auto;
    padding-inline: 6px;
    font-size: 0.92rem;
  }
  .nav a { padding: 10px 8px; white-space: nowrap; }
  .hero { min-height: 720px; padding-top: 72px; }
  .hero h1 { font-size: clamp(3.1rem, 15.5vw, 4.2rem); }
  .hero-actions {
    width: min(320px, 100%);
    margin-inline: auto;
    flex-direction: column;
  }
  .hero-actions .primary-action,
  .hero-actions .secondary-action {
    width: 100%;
  }
  .section { padding: 62px 18px; }
  .breakfast-hero {
    min-height: 520px;
    margin-top: 0;
  }
  .breakfast-actions {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .breakfast-actions button {
    min-height: 94px;
    padding: 18px 22px;
    font-size: 1rem;
  }
  /* Make breakfast action buttons feel larger and edge-to-edge on small screens */
  .breakfast-overlay {
    width: 100%;
    padding-inline: 12px;
    box-sizing: border-box;
  }
  .breakfast-actions {
    width: 100%;
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 14px;
  }
  .breakfast-actions button {
    width: 100%;
    min-height: 110px;
    padding: 20px 18px;
    font-size: 1.05rem;
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(18,13,9,0.12);
  }
  .breakfast-details {
    padding: 46px 4px 58px;
  }
  .breakfast-panel {
    width: 100%;
    padding: 4px;
  }
  .favorites, .menu-grid, .contact-actions { grid-template-columns: 1fr; }
  .menu-toolbar {
    position: static;
    grid-template-columns: 1fr;
    padding-inline: 0;
  }
  .tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    overflow: visible;
  }
  .tabs button {
    min-width: 0;
    width: 100%;
    padding: 0 10px;
    white-space: normal;
    line-height: 1.15;
  }
  .menu-card { grid-template-columns: 108px 1fr; }
  .menu-thumb { min-height: 142px; }
  .menu-thumb-frame { min-height: 142px; }
  .menu-image { width: 108px; }
  .photo-rail {
    grid-auto-flow: row;
    grid-auto-columns: unset;
    overflow: visible;
  }
  .photo-rail img { aspect-ratio: 16 / 11; }
  .form-row { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; }
}

@media (min-width: 521px) and (max-width: 820px) {
  .tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
