@font-face {
  font-family: "Merienda";
  src: url("../fonts/Merienda-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Raleway Local";
  src: url("../fonts/Raleway-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #1c1815;
  --header: #2a2420;
  --gold: #e8c204;
  --sand: #c4b583;
  --chalk: #1f1c19;
  --accent: #ffc988;
  --cream: #f7f2ea;
  --white: #ffffff;
  --muted: #6b635c;
  --line: rgba(196, 181, 131, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Raleway Local", "Raleway", sans-serif;
  background: var(--cream);
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.eyebrow {
  margin: 0 0 0.55rem;
  font-family: Merienda, Georgia, serif;
  font-size: 0.95rem;
  color: #9a7b2f;
  letter-spacing: 0.04em;
}

.eyebrow.light {
  color: var(--gold);
}

.title-rule {
  width: 56px;
  height: 2px;
  margin: 0 auto 1.75rem;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Top bar */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(42, 36, 32, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 1.5rem;
  border-bottom: 1px solid rgba(232, 194, 4, 0.18);
}

.topbar-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-family: Merienda, Georgia, serif;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.topbar-phone:hover {
  color: var(--gold);
}

.topbar-phone i {
  color: var(--gold);
  font-size: 0.85rem;
}

.topbar-sep {
  opacity: 0.45;
  margin: 0 0.15rem;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: #2a2a2a;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
  transform: scale(1.04);
  animation: heroZoom 18s ease-out forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(18, 14, 10, 0.45) 0%, rgba(18, 14, 10, 0.28) 45%, rgba(18, 14, 10, 0.55) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 5.5rem 1.25rem 5rem;
  animation: fadeUp 1s ease both;
}

.hero-logo {
  width: min(38vw, 300px);
  margin: 0 auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.35));
}

.hero-tagline {
  margin: 1.1rem 0 1.6rem;
  color: rgba(255, 248, 232, 0.92);
  font-family: Merienda, Georgia, serif;
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  letter-spacing: 0.03em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.hero-cta {
  margin-top: 0.25rem;
}

.hero-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 22px;
  z-index: 3;
  color: var(--cream);
  line-height: 0;
}

.hero-shape svg {
  width: 100%;
  height: 100%;
  display: block;
}

.glf-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  align-items: center;
}

.glf-row--start {
  justify-content: flex-start;
}

.glf-button,
span.glf-button {
  display: inline-block;
  cursor: pointer;
  background: linear-gradient(180deg, #ffe0b0 0%, var(--accent) 100%);
  color: var(--ink);
  font-weight: 600;
  padding: 0.95rem 1.45rem;
  font-size: 1rem;
  border-radius: 999px;
  border: none;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.glf-button:hover,
span.glf-button:hover {
  filter: brightness(1.04);
  transform: translateY(-2px);
}

.glf-button.reservation {
  background: rgba(255, 255, 255, 0.12);
  color: #fff8e8;
  border: 1px solid rgba(255, 248, 232, 0.45);
  backdrop-filter: blur(6px);
  box-shadow: none;
}

.menu-section .glf-button.reservation {
  background: transparent;
  border-color: rgba(232, 194, 4, 0.45);
  color: var(--accent);
}

.menu-section .glf-button.reservation:hover {
  background: rgba(232, 194, 4, 0.1);
}

/* About */
.section {
  padding: 5rem 1.25rem 4rem;
}

.about {
  background:
    radial-gradient(ellipse at top, rgba(232, 194, 4, 0.08), transparent 55%),
    var(--cream);
}

.section-inner,
.contact-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 500;
  margin: 0;
  color: var(--ink);
  letter-spacing: 0.03em;
}

.about-text {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 680px;
  margin: 0 auto;
}

.about-text p {
  margin: 0 0 1rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Map + shop */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem 5rem;
}

.split-card {
  text-align: center;
}

.media-frame {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(28, 24, 21, 0.1);
  background: #ddd;
  padding: 0;
  cursor: default;
}

.media-frame--action {
  cursor: pointer;
  width: 100%;
}

.media-frame iframe,
.media-frame .shop-img {
  width: 100%;
  height: 360px;
  border: 0;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.media-frame--action:hover .shop-img {
  transform: scale(1.04);
}

.media-badge {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  background: rgba(28, 24, 21, 0.88);
  color: var(--accent);
  border: 1px solid rgba(232, 194, 4, 0.35);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.split-card h3 {
  font-family: Merienda, Georgia, serif;
  font-size: 1.3rem;
  margin: 1.1rem 0 0.25rem;
  font-weight: 400;
}

.split-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Menu section */
.menu-section {
  position: relative;
  background: var(--chalk);
  color: var(--white);
  padding: 5rem 1.25rem 5.5rem;
  overflow: hidden;
}

.menu-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 20%, rgba(232, 194, 4, 0.08), transparent 45%),
    radial-gradient(ellipse at 80% 80%, rgba(255, 201, 136, 0.05), transparent 40%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.015) 2px,
      rgba(255, 255, 255, 0.015) 3px
    );
  pointer-events: none;
}

.menu-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.menu-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.25rem;
}

.menu-intro .icon-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: var(--sand);
  margin-bottom: 1rem;
}

.menu-intro .icon-line::before,
.menu-intro .icon-line::after {
  content: "";
  width: 48px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.menu-intro h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.7rem);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 0.75rem;
  color: #fff8e8;
}

.menu-intro p {
  margin: 0;
  opacity: 0.88;
  color: rgba(247, 242, 234, 0.88);
}

.menu-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.25rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.menu-row.reverse {
  direction: rtl;
}

.menu-row.reverse > * {
  direction: ltr;
}

.menu-media {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(196, 181, 131, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.menu-media img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.menu-media:hover img {
  transform: scale(1.03);
}

.menu-copy h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  margin: 0 0 0.85rem;
  font-weight: 500;
  color: #fff8e8;
}

.menu-copy p {
  margin: 0 0 1.35rem;
  opacity: 0.88;
  max-width: 34ch;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(180deg, #ffe0b0 0%, var(--accent) 100%);
  color: var(--ink);
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-download:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.dot-divider {
  height: 26px;
  margin: 1.5rem 0 2.75rem;
  background-image: radial-gradient(circle, rgba(232, 194, 4, 0.45) 2px, transparent 2.5px);
  background-size: 16px 26px;
  background-repeat: repeat-x;
  background-position: center;
  opacity: 0.75;
}

/* Contact */
.contact {
  padding: 5rem 1.25rem;
  background:
    linear-gradient(180deg, #fffdf9 0%, var(--cream) 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.contact-item {
  display: block;
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

a.contact-item:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 194, 4, 0.45);
  box-shadow: 0 14px 28px rgba(28, 24, 21, 0.08);
}

.contact-icon {
  display: inline-grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.75rem;
  border-radius: 999px;
  background: rgba(232, 194, 4, 0.12);
  color: #9a7b2f;
}

.contact-item h3 {
  margin: 0 0 0.35rem;
  font-family: Merienda, Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: #9a7b2f;
}

.contact-item .value {
  margin: 0;
  font-size: 0.98rem;
  color: var(--ink);
  word-break: break-word;
  line-height: 1.5;
}

/* Footer */
.footer {
  background: var(--header);
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-top: 1px solid rgba(232, 194, 4, 0.18);
}

.footer-inner p {
  margin: 0;
  font-size: 0.92rem;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.footer-social a {
  width: 2.1rem;
  height: 2.1rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  color: var(--gold);
  border-color: rgba(232, 194, 4, 0.5);
}

/* Floating quick actions */
.float-actions {
  position: fixed;
  right: 1.1rem;
  bottom: 1.25rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: flex-end;
}

.fab {
  position: relative;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(232, 194, 4, 0.4);
  background: linear-gradient(180deg, #2f2924 0%, #1c1815 100%);
  color: var(--gold);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.fab i {
  font-size: 1rem;
  line-height: 1;
}

.fab-label {
  position: absolute;
  right: calc(100% + 0.65rem);
  top: 50%;
  transform: translateY(-50%) translateX(6px);
  white-space: nowrap;
  background: rgba(28, 24, 21, 0.94);
  color: #fff8e8;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(232, 194, 4, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.fab:hover,
.fab:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.34);
  outline: none;
}

.fab:hover .fab-label,
.fab:focus-visible .fab-label {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.fab-hours {
  color: var(--accent);
}

.fab-menu {
  background: linear-gradient(180deg, #f0d45a 0%, var(--gold) 100%);
  color: #1c1815;
  border-color: rgba(232, 194, 4, 0.7);
}

.fab-menu:hover,
.fab-menu:focus-visible {
  filter: brightness(1.04);
}

.fab-top {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.fab-top.visible {
  opacity: 0.95;
  pointer-events: auto;
  transform: translateY(0);
}

.fab-top.visible:hover {
  transform: translateY(-2px);
}

/* Trading hours modal — keep current look */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 14, 10, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.modal-panel {
  position: relative;
  background: linear-gradient(180deg, #2a2420 0%, #1c1815 42%, #161311 100%);
  color: #f4efe6;
  width: min(440px, 100%);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(232, 194, 4, 0.28);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.modal-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.9;
}

.modal-backdrop.open .modal-panel {
  transform: translateY(0) scale(1);
}

.modal-header {
  text-align: center;
  padding: 2rem 1.75rem 1.25rem;
}

.modal-eyebrow {
  margin: 0 0 0.45rem;
  font-family: Merienda, Georgia, serif;
  font-size: 0.95rem;
  color: var(--gold);
  letter-spacing: 0.04em;
}

.modal-header h4 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.1rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff8e8;
}

.modal-address {
  margin: 0.7rem 0 0;
  font-size: 0.88rem;
  color: rgba(244, 239, 230, 0.72);
  line-height: 1.45;
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  z-index: 2;
}

.modal-close:hover {
  background: rgba(232, 194, 4, 0.15);
  border-color: rgba(232, 194, 4, 0.55);
  color: var(--gold);
}

.modal-body {
  padding: 0 1.35rem 0.5rem;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.hours-card {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(196, 181, 131, 0.22);
  border-radius: 14px;
  padding: 1.1rem 0.85rem 1.15rem;
  text-align: center;
}

.hours-icon {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: rgba(232, 194, 4, 0.12);
  color: var(--gold);
  margin-bottom: 0.65rem;
  font-size: 0.9rem;
}

.hours-card h5 {
  margin: 0 0 0.35rem;
  font-family: Merienda, Georgia, serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--accent);
}

.hours-days {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.62);
}

.hours-time {
  margin: 0.4rem 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  color: #fff8e8;
}

.hours-phones {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  margin: 1.35rem 0 0.85rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(196, 181, 131, 0.2);
}

.hours-phones a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: rgba(244, 239, 230, 0.9);
  font-size: 0.92rem;
  transition: color 0.2s ease;
}

.hours-phones a i {
  color: var(--gold);
  font-size: 0.78rem;
}

.hours-phones a:hover {
  color: var(--gold);
}

.hours-thanks {
  margin: 0;
  text-align: center;
  font-family: Merienda, Georgia, serif;
  font-size: 0.95rem;
  color: var(--sand);
}

.modal-footer {
  padding: 1.15rem 1.35rem 1.5rem;
  text-align: center;
}

.btn-modal {
  min-width: 8.5rem;
  background: linear-gradient(180deg, #f0d45a 0%, var(--gold) 100%);
  color: #1c1815;
  border: none;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  font-family: "Raleway Local", Raleway, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 20px rgba(232, 194, 4, 0.25);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-modal:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1);
  }
}

@media (max-width: 900px) {
  .split,
  .menu-row,
  .menu-row.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .glf-row--start {
    justify-content: center;
  }

  .menu-copy {
    text-align: center;
  }

  .menu-copy p {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-logo {
    width: min(58vw, 240px);
  }
}

@media (max-width: 600px) {
  .media-frame iframe,
  .media-frame .shop-img {
    height: 280px;
  }

  .hours-grid {
    grid-template-columns: 1fr;
  }

  .modal-header {
    padding: 1.75rem 1.25rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .hero-bg,
  .hero-content,
  .menu-media img,
  .media-frame .shop-img {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
