@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&family=Outfit:wght@300;400;500;600;700&display=swap");

:root {
  --chili: #9c2b1a;
  --chili-deep: #6f1b12;
  --laksa: #c45c26;
  --gold-soft: #e8c36a;
  --cream: #f6efe4;
  --paper: #fffaf3;
  --ink: #1a120c;
  --ink-soft: #3b2d24;
  --muted: #6d5c50;
  --line: rgba(26, 18, 12, 0.12);
  --shadow: 0 24px 60px rgba(26, 18, 12, 0.16);
  --radius: 22px;
  --header-offset: 108px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font-family: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.7rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  top: 0.6rem;
}

.claim-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  min-height: 38px;
  padding: 0.45rem 1rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.82rem;
}

.claim-bar a {
  color: var(--gold-soft);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.claim-bar a:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 38px;
  z-index: 40;
  background: rgba(246, 239, 228, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  position: relative;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 70px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  display: block;
  line-height: 1;
}

.brand small {
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  padding: 0.5rem 0.7rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: var(--chili);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--chili-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255, 250, 243, 0.4);
}

.btn-outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 0.4rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: min(92vh, 860px);
  color: var(--paper);
  display: grid;
  place-items: end stretch;
}

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

.hero-media {
  background: var(--ink);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26, 18, 12, 0.2) 0%, rgba(26, 18, 12, 0.78) 70%),
    linear-gradient(90deg, rgba(26, 18, 12, 0.55), transparent 55%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 4.5rem;
}

.eyebrow {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--gold-soft);
  margin-bottom: 0.8rem;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.2rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.45rem;
}

.lede {
  max-width: 40rem;
  font-size: 1.12rem;
  color: rgba(255, 250, 243, 0.88);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.4rem 0 1.6rem;
}

.chip {
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.12);
  border: 1px solid rgba(255, 250, 243, 0.16);
  font-size: 0.86rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: var(--paper);
}

.wrap {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.4rem;
}

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

.about-grid,
.contact-grid,
.why-grid,
.feature-grid,
.gallery-grid,
.review-grid,
.special-grid {
  display: grid;
  gap: 1.2rem;
}

.about-grid,
.contact-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}

.why-grid,
.special-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid,
.review-grid,
.gallery-grid,
.menu-grid {
  grid-template-columns: repeat(2, 1fr);
}

.card,
.menu-card,
.review-card,
.why-card,
.feature-card,
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem;
  box-shadow: 0 10px 30px rgba(26, 18, 12, 0.04);
}

.section-alt .card,
.section-alt .menu-card,
.section-alt .review-card,
.section-alt .why-card,
.section-alt .feature-card {
  background: var(--cream);
}

.photo-frame {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.photo-frame img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
}

.menu-search {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 1.1rem;
  background: var(--paper);
  margin-bottom: 1rem;
}

.filters,
.tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.3rem;
  margin-bottom: 1rem;
  scrollbar-width: thin;
}

.tab,
.filter {
  white-space: nowrap;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  cursor: pointer;
  color: var(--ink-soft);
}

.tab.active,
.filter.active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.menu-card {
  display: grid;
  gap: 0.45rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.menu-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.menu-card.is-hidden {
  display: none;
}

.menu-card header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.price {
  font-weight: 700;
  color: var(--chili);
  white-space: nowrap;
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  background: #efe3d3;
  color: var(--ink-soft);
}

.menu-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
}

.options {
  font-size: 0.9rem;
  color: var(--muted);
}

.printed-menu img,
.gallery-grid img,
.feature-card img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.gallery-grid img,
.feature-card img {
  aspect-ratio: 4 / 3;
}

.printed-menu {
  margin-top: 2rem;
}

.printed-menu img {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.quote {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  margin: 0.4rem 0 0.8rem;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  padding: 1.15rem 1.3rem;
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0;
  padding: 0 1.3rem 1.2rem;
}

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

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.cta-band {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 5rem 1rem;
}

.cta-band p {
  max-width: 36rem;
  margin: 0 auto 1.5rem;
  color: rgba(255, 250, 243, 0.8);
}

.site-footer {
  background: #140e0a;
  color: rgba(255, 250, 243, 0.78);
  padding: 2.5rem 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.site-footer a {
  color: var(--gold-soft);
}

.breadcrumbs {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

.mobile-cta {
  display: none;
}

.local-copy,
.dining-copy {
  max-width: 46rem;
  font-size: 1.05rem;
}

.menu-empty {
  display: none;
  padding: 1rem 0;
}

.menu-empty.is-visible {
  display: block;
}

@media (max-width: 900px) {
  :root {
    --header-offset: 118px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--paper);
    padding: 1rem;
    border-bottom: 1px solid var(--line);
  }

  .menu-toggle {
    display: block;
  }

  .about-grid,
  .contact-grid,
  .why-grid,
  .feature-grid,
  .special-grid,
  .review-grid,
  .gallery-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 86vh;
  }

  .mobile-cta {
    display: flex;
    position: sticky;
    bottom: 0;
    z-index: 30;
    gap: 0.6rem;
    padding: 0.7rem 1rem calc(0.7rem + env(safe-area-inset-bottom));
    background: rgba(246, 239, 228, 0.95);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
  }

  .mobile-cta .btn {
    flex: 1;
  }
}
