:root {
  --black: #080705;
  --charcoal: #15120e;
  --espresso: #24160f;
  --cream: #f7eddd;
  --white: #fffaf3;
  --gold: #d2a64c;
  --gold-light: #f4d37d;
  --orange: #b7602b;
  --green: #566d3d;
  --sage: #dfe6d4;
  --muted: #766c5f;
  --line: rgba(210, 166, 76, 0.26);
  --shadow: 0 24px 70px rgba(8, 7, 5, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--charcoal);
  background:
    radial-gradient(circle at top left, rgba(210, 166, 76, 0.2), transparent 25rem),
    linear-gradient(180deg, var(--white), var(--cream) 52%, #fffdf8);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 10px 16px;
  color: var(--white);
  background: rgba(8, 7, 5, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
}

.brand img,
.hero-logo,
.site-footer img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  object-position: center;
  background: var(--black);
  border: 1px solid rgba(244, 211, 125, 0.88);
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
  filter: saturate(1.08) contrast(1.08);
  box-shadow:
    0 0 0 3px rgba(8, 7, 5, 0.95),
    0 0 0 5px rgba(244, 211, 125, 0.2),
    0 12px 30px rgba(0, 0, 0, 0.34);
}

.brand span {
  overflow: hidden;
  font-size: 0.98rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.top-nav {
  display: none;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 13px;
  color: var(--black);
  background: var(--gold-light);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 950;
}

.language-toggle {
  display: inline-flex;
  gap: 3px;
  padding: 3px;
  background: rgba(255, 250, 243, 0.08);
  border: 1px solid rgba(210, 166, 76, 0.24);
  border-radius: 999px;
}

.language-toggle button {
  min-height: 34px;
  padding: 0 10px;
  color: rgba(255, 250, 243, 0.78);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
}

.language-toggle button.is-active {
  color: var(--black);
  background: var(--gold-light);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero-slider,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slider {
  overflow: hidden;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
  opacity: 0;
  filter: saturate(1.08) contrast(1.03);
  transform: scale(1.03);
  transition: opacity 950ms ease, transform 6500ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.08);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(8, 7, 5, 0.22), rgba(8, 7, 5, 0.72) 58%, rgba(8, 7, 5, 0.96)),
    linear-gradient(90deg, rgba(8, 7, 5, 0.9), rgba(8, 7, 5, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 720px;
  width: min(100% - 32px, 820px);
  margin: 0 auto;
  padding: 96px 0 52px;
}

.hero-logo {
  width: 104px;
  height: 104px;
  border-width: 2px;
  box-shadow:
    0 0 0 5px rgba(8, 7, 5, 0.9),
    0 0 0 8px rgba(244, 211, 125, 0.18),
    0 22px 58px rgba(0, 0, 0, 0.48);
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-top: 22px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 10.8ch;
  margin: 10px 0 0;
  font-size: clamp(3rem, 14.5vw, 6.8rem);
  line-height: 0.9;
}

.hero-line {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 250, 243, 0.9);
  font-size: clamp(1.05rem, 4.1vw, 1.5rem);
  line-height: 1.48;
}

.hero-actions,
.order-actions {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.hero-dots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  max-width: 280px;
  margin-top: 26px;
}

.hero-dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(244, 211, 125, 0.62);
  border-radius: 50%;
  background: rgba(255, 250, 243, 0.16);
  cursor: pointer;
}

.hero-dot.is-active {
  width: 30px;
  background: var(--gold-light);
  border-radius: 999px;
}

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

.btn:hover,
.dish-card:hover,
.prep-card:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 58%, #a66b2d);
  box-shadow: 0 16px 38px rgba(210, 166, 76, 0.24);
}

.btn-ghost {
  color: var(--white);
  border-color: rgba(244, 211, 125, 0.54);
  background: rgba(255, 250, 243, 0.08);
}

.btn-dark {
  color: var(--white);
  background: var(--black);
  border-color: rgba(210, 166, 76, 0.38);
}

.btn-outline {
  color: var(--black);
  background: var(--white);
  border-color: var(--line);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(100%, 1180px);
  margin: 0 auto;
  background: var(--line);
  border-inline: 1px solid var(--line);
}

.trust-strip div {
  display: grid;
  gap: 3px;
  padding: 18px 10px;
  text-align: center;
  background: rgba(255, 250, 243, 0.9);
}

.trust-strip span {
  color: var(--black);
  font-weight: 950;
}

.trust-strip small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.section,
.catering-section,
.contact-section,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section-heading {
  display: grid;
  gap: 10px;
}

.section-heading.narrow {
  max-width: 820px;
}

.section-heading h2,
.catering-panel h2,
.contact-wrap h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(2.25rem, 10vw, 5rem);
  line-height: 0.96;
}

.section-heading p:not(.section-kicker),
.catering-panel p,
.contact-wrap p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.about-panel {
  display: grid;
  gap: 26px;
  padding: 28px;
  background: rgba(255, 250, 243, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-copy {
  display: grid;
  gap: 16px;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.about-copy .spanish-note,
.menu-notice,
.menu-availability-note {
  color: var(--charcoal);
  background: linear-gradient(135deg, rgba(223, 230, 212, 0.78), rgba(255, 250, 243, 0.96));
  border: 1px solid rgba(86, 109, 61, 0.24);
  border-radius: 8px;
}

.about-copy .spanish-note {
  padding: 16px;
}

.dish-grid {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.dish-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 243, 0.94);
  box-shadow: var(--shadow);
  transition: transform 180ms ease;
}

.dish-card img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.03);
}

.dish-card div {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.dish-card h3,
.prep-card h3 {
  margin: 0;
  color: var(--black);
  font-size: 1.36rem;
  line-height: 1.12;
}

.dish-card p,
.prep-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.dish-card a,
.prep-card a {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 13px;
  color: var(--black);
  background: var(--gold-light);
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 950;
}

.availability-tag {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  color: var(--green);
  background: rgba(223, 230, 212, 0.86);
  border: 1px solid rgba(86, 109, 61, 0.22);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.gallery-actions {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.menu-availability-note {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 18px;
  box-shadow: 0 16px 42px rgba(8, 7, 5, 0.1);
}

.menu-availability-note strong {
  color: var(--black);
  font-size: 1.02rem;
}

.menu-availability-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.note-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.note-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 13px;
  color: var(--black);
  background: var(--gold-light);
  border-radius: 8px;
  font-size: 0.84rem;
  font-weight: 950;
}

.note-actions a:last-child {
  color: var(--white);
  background: var(--black);
}

.meal-prep-section {
  background:
    linear-gradient(135deg, rgba(8, 7, 5, 0.95), rgba(36, 22, 15, 0.96)),
    radial-gradient(circle at 85% 15%, rgba(86, 109, 61, 0.4), transparent 26rem);
  border-block: 1px solid rgba(210, 166, 76, 0.32);
}

.meal-prep-section .section-heading h2,
.meal-prep-section .section-heading p:not(.section-kicker) {
  color: var(--white);
}

.menu-notice {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 18px;
}

.menu-notice strong {
  color: var(--black);
}

.menu-notice p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.prep-grid,
.menu-grid {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.prep-card {
  display: grid;
  gap: 13px;
  padding: 20px;
  background: rgba(255, 250, 243, 0.96);
  border: 1px solid rgba(244, 211, 125, 0.28);
  border-radius: 8px;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease;
}

.prep-card span {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.prep-card strong {
  color: var(--orange);
}

.how-section {
  padding-top: 72px;
}

.steps-grid {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.step-card {
  display: grid;
  gap: 12px;
  padding: 20px;
  background: rgba(255, 250, 243, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.step-card span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--black);
  background: var(--gold-light);
  border-radius: 50%;
  font-weight: 950;
}

.step-card h3 {
  margin: 0;
  color: var(--black);
  font-size: 1.25rem;
}

.step-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
}

.faq-section {
  padding-top: 72px;
}

.faq-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.faq-item {
  overflow: hidden;
  background: rgba(255, 250, 243, 0.94);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(8, 7, 5, 0.12);
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 68px;
  padding: 18px;
  color: var(--black);
  cursor: pointer;
  font-weight: 950;
  list-style: none;
}

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

.faq-item summary::after {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  content: "+";
  color: var(--black);
  background: var(--gold-light);
  border-radius: 50%;
  font-size: 1.1rem;
  line-height: 1;
}

.faq-item[open] summary {
  border-bottom: 1px solid var(--line);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-answer {
  display: grid;
  gap: 14px;
  padding: 18px;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
  line-height: 1.62;
}

.faq-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.faq-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  color: var(--black);
  background: var(--gold-light);
  border: 1px solid rgba(210, 166, 76, 0.36);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 950;
}

.faq-link.dark {
  color: var(--white);
  background: var(--black);
  border-color: rgba(210, 166, 76, 0.38);
}

.catering-section {
  padding: 72px 0 0;
}

.catering-panel {
  display: grid;
  gap: 24px;
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(8, 7, 5, 0.93), rgba(36, 22, 15, 0.95)),
    radial-gradient(circle at 90% 20%, rgba(210, 166, 76, 0.28), transparent 24rem);
  border: 1px solid rgba(210, 166, 76, 0.32);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.catering-panel h2 {
  color: var(--white);
}

.catering-panel p {
  margin: 16px 0 0;
  color: rgba(255, 250, 243, 0.8);
}

.contact-section {
  padding: 72px 0;
}

.contact-wrap {
  display: grid;
  gap: 24px;
  align-items: center;
  padding: 28px;
  background: rgba(255, 250, 243, 0.92);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-wrap p {
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  gap: 12px;
  width: 100%;
  padding: 34px max(16px, calc((100vw - 1180px) / 2)) 42px;
  color: rgba(255, 250, 243, 0.72);
  background: var(--black);
  border-top: 1px solid rgba(210, 166, 76, 0.32);
}

.site-footer div {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.site-footer strong,
.site-footer a {
  color: var(--white);
}

.site-footer p {
  margin: 0;
}

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

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

@media (min-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto auto auto;
    padding-inline: clamp(24px, 5vw, 56px);
  }

  .top-nav {
    display: flex;
    gap: 4px;
    padding: 5px;
    background: rgba(255, 250, 243, 0.08);
    border: 1px solid rgba(210, 166, 76, 0.2);
    border-radius: 999px;
  }

  .top-nav a {
    padding: 9px 13px;
    color: rgba(255, 250, 243, 0.78);
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 850;
  }

  .top-nav a:hover {
    color: var(--black);
    background: var(--gold-light);
  }

  .hero,
  .hero-content {
    min-height: 760px;
  }

  .hero-content {
    justify-content: center;
    margin-left: clamp(28px, 7vw, 96px);
    padding-bottom: 90px;
  }

  .hero-actions,
  .order-actions,
  .gallery-actions {
    display: flex;
    flex-wrap: wrap;
  }

  .trust-strip {
    transform: translateY(-36px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }

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

  .about-panel {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
    padding: 38px;
  }

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

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

  .catering-panel,
  .contact-wrap {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-footer {
    grid-template-columns: minmax(0, 1.2fr) auto auto auto;
    align-items: center;
  }
}

.site-error {
  padding: 14px 16px;
  color: var(--white);
  background: #8d2f1c;
  font-weight: 900;
  text-align: center;
}

@media (min-width: 1080px) {
  .dish-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 440px) {
  .site-header {
    padding-inline: 12px;
  }

  .brand span {
    max-width: 132px;
  }

  .header-action {
    display: none;
  }

  .language-toggle button {
    min-height: 32px;
    padding: 0 8px;
    font-size: 0.73rem;
  }

  .hero,
  .hero-content {
    min-height: 700px;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }
}
