@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/dm-sans-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Protest Riot';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/protest-riot-latin.woff2') format('woff2');
}

:root {
  --burgundy: #500411;
  --burgundy-deep: #3a030c;
  --orange: #f3870c;
  --gold: #ffb600;
  --cream: #f9f9f7;
  --cream-warm: #f7f5e7;
  --cream-muted: #f3f3f0;
  --sage: #dbdfd0;
  --ink: #2c2f24;
  --ink-soft: #5c5c5c;
  --footer: #111111;
  --footer-muted: #3f4255;
  --green: #0e5506;
  --white: #ffffff;
  --max: 1140px;
  --font-display: 'Protest Riot', Georgia, serif;
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
  --radius-btn: 20px;
  --header-h: 88px;
  color-scheme: light;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  line-height: 1.15;
  font-weight: 500;
  margin: 0 0 0.6em;
}

p {
  margin: 0 0 1em;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius-btn);
  border: 2px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease,
    border-color 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-primary:hover {
  background: #e0790a;
  border-color: #e0790a;
}

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

.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-burgundy {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}

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

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

.btn-outline-light:hover {
  background: var(--white);
  color: var(--burgundy);
}

/* Section titles */
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--ink);
  text-align: center;
}

.section-lead {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.5rem;
  color: var(--ink-soft);
}

.page {
  min-height: 60vh;
}

.page-hero {
  padding: 4.5rem 0 3rem;
  background:
    radial-gradient(ellipse at top right, rgba(243, 135, 12, 0.12), transparent 50%),
    linear-gradient(180deg, var(--cream-warm), var(--cream));
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--burgundy);
}

.page-hero p {
  max-width: 38rem;
  margin: 0.75rem auto 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* Reveal animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes highlightDraw {
  0% {
    background-size: 0% 40%;
  }
  100% {
    background-size: 100% 40%;
  }
}

.reveal {
  animation: fadeUp 0.8s ease both;
}

.reveal-delay-1 {
  animation-delay: 0.12s;
}
.reveal-delay-2 {
  animation-delay: 0.24s;
}
.reveal-delay-3 {
  animation-delay: 0.36s;
}

/* Floating order bar */
.order-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: var(--burgundy);
  color: var(--white);
  text-align: center;
  padding: 0.85rem 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
}

.order-bar:hover {
  background: var(--burgundy-deep);
}

.app-shell {
  padding-bottom: 3.25rem;
}

/* Sticky socials */
.sticky-socials {
  position: fixed;
  left: 0;
  top: 45%;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.sticky-socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--burgundy);
  color: var(--white);
  border-radius: 0 8px 8px 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.sticky-socials a:hover {
  background: var(--orange);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .sticky-socials {
    display: none;
  }
}

/* Scroll top */
.scroll-top {
  position: fixed;
  right: 1.25rem;
  bottom: 4.5rem;
  z-index: 50;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(243, 135, 12, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.2s ease;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  transform: translateY(-3px);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(80, 4, 17, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1.5rem;
}

.brand img {
  width: clamp(110px, 16vw, 160px);
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.25rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a,
.nav-parent {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  padding: 0.35rem 0;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
}

.main-nav a::after,
.nav-parent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after,
.nav-parent:hover::after {
  transform: scaleX(1);
}

.main-nav a.active {
  color: var(--burgundy);
}

.has-children {
  position: relative;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  margin-top: 0.35rem;
  background: var(--white);
  border: 1px solid rgba(44, 47, 36, 0.08);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 0.5rem !important;
  display: none !important;
  flex-direction: column;
  gap: 0.15rem !important;
  z-index: 20;
}

/* Invisible bridge so the pointer can move into the menu without losing hover */
.submenu::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -0.5rem;
  height: 0.5rem;
}

.has-children:hover .submenu,
.has-children.is-open .submenu {
  display: flex !important;
}

.submenu a {
  display: block;
  padding: 0.65rem 0.85rem !important;
  border-radius: 8px;
  font-size: 0.9rem;
}

.submenu a::after {
  display: none;
}

.submenu a:hover {
  background: var(--cream-warm);
}

.main-nav .header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0.65rem 1.15rem;
  background: var(--orange);
  color: var(--white);
  border: 2px solid var(--orange);
  border-radius: var(--radius-btn);
  line-height: 1.1;
  box-shadow: none;
}

.main-nav .header-cta::after {
  content: none;
}

.main-nav .header-cta:hover {
  background: #e0790a;
  border-color: #e0790a;
  color: var(--white);
  transform: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  z-index: 110;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--burgundy);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 960px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    width: min(100%, 320px);
    gap: 0.5rem;
  }

  .main-nav a,
  .nav-parent {
    font-size: 1.2rem;
    width: 100%;
    text-align: left;
    padding: 0.75rem 0;
  }

  .submenu {
    position: static;
    box-shadow: none;
    border: none;
    background: transparent;
    padding-left: 1rem !important;
    margin-top: 0;
    display: none !important;
  }

  .submenu::before {
    display: none;
  }

  .has-children.is-open .submenu {
    display: flex !important;
  }

  .main-nav .header-cta {
    width: min(100%, 320px);
    margin-top: 1rem;
  }
}
.site-footer {
  background: var(--footer);
  color: #d8d8d8;
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand img {
  width: 140px;
  margin-bottom: 1rem;
  filter: brightness(1.05);
}

.footer-brand p {
  color: #a8a8a8;
  max-width: 18rem;
  font-size: 0.95rem;
}

.footer-socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.footer-socials a {
  min-width: 40px;
  height: 40px;
  padding: 0 0.6rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-socials a:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

.site-footer h3 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.site-footer a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  font-size: 0.85rem;
  color: #888;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(249, 249, 247, 0.92) 0%, rgba(247, 245, 231, 0.7) 45%, rgba(219, 223, 208, 0.45) 100%),
    url('../images/rucola-png.webp') right bottom / min(55vw, 620px) auto no-repeat,
    radial-gradient(circle at 80% 20%, rgba(243, 135, 12, 0.15), transparent 40%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(80, 4, 17, 0.06), transparent 45%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  padding-block: 3rem 4rem;
}

.eyebrow {
  font-family: var(--font-serif);
  color: var(--burgundy);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  color: var(--ink);
  max-width: 14ch;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero-visual::after {
  content: '';
  position: absolute;
  z-index: 0;
  left: 18%;
  right: 18%;
  bottom: 2%;
  height: 22px;
  border-radius: 50%;
  background: rgba(80, 4, 17, 0.16);
}

.hero-dish {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
}

.section {
  padding: 5rem 0;
}

.categories {
  background: var(--white);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.category-card {
  text-align: center;
  padding: 1.75rem 1.25rem;
  border-radius: 18px;
  background: var(--cream);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(80, 4, 17, 0.08);
}

.category-icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--burgundy);
  color: var(--white);
}

.category-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--burgundy);
}

.category-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  min-height: 6.5em;
}

.about-teaser {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.about-image img {
  width: min(100%, 480px);
  margin-inline: auto;
}

.about-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

.highlight {
  background: linear-gradient(transparent 60%, rgba(243, 135, 12, 0.45) 60%);
  animation: highlightDraw 1.2s ease both;
  background-repeat: no-repeat;
  background-position: left bottom;
}

.fast-casual {
  background:
    linear-gradient(180deg, var(--cream-muted), var(--white));
}

.fast-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.fast-collage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

.fast-collage .c1 {
  grid-row: 1 / 3;
  border-radius: 24px;
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 460px;
}

.fast-collage .c2,
.fast-collage .c3 {
  border-radius: 18px;
  background: var(--cream-warm);
  padding: 0.75rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  display: grid;
  gap: 0.85rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 600;
}

.feature-list .dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--burgundy);
  flex-shrink: 0;
  position: relative;
}

.feature-list .dot::after {
  content: '';
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  background: var(--orange);
}

.testimonials {
  position: relative;
  margin-top: 2.5rem;
}

.t-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  min-height: 220px;
}

.t-card {
  margin: 0;
  background: var(--cream);
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.t-card p {
  font-size: 1rem;
  color: var(--ink);
}

.t-card footer {
  display: grid;
  gap: 0.15rem;
}

.t-card strong {
  color: var(--burgundy);
}

.t-card span {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.t-nav {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--burgundy);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 2;
}

.t-nav.prev {
  left: -0.5rem;
}
.t-nav.next {
  right: -0.5rem;
}

.t-dots {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
}

.t-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--sage);
  cursor: pointer;
  padding: 0;
}

.t-dots button.active {
  background: var(--orange);
}

.subscribe {
  padding-bottom: 6rem;
}

.subscribe-panel {
  border-radius: 28px;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(80, 4, 17, 0.82), rgba(14, 85, 6, 0.65)),
    url('../images/Wonton.webp') center / cover;
  box-shadow: 0 24px 60px rgba(80, 4, 17, 0.2);
}

.subscribe-panel h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1.75rem;
}

.subscribe-form {
  display: flex;
  gap: 0.75rem;
  max-width: 520px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.subscribe-form input {
  flex: 1 1 240px;
  border: none;
  border-radius: var(--radius-btn);
  padding: 0.95rem 1.2rem;
  background: rgba(255, 255, 255, 0.95);
}

.thanks {
  font-size: 1.1rem;
  margin: 0;
}

@media (max-width: 1000px) {
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .about-grid,
  .fast-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero h1 {
    max-width: none;
  }

  .t-track {
    grid-template-columns: 1fr;
  }

  .t-track .t-card:nth-child(n + 2) {
    display: none;
  }

  .t-nav.prev {
    left: 0;
  }
  .t-nav.next {
    right: 0;
  }
}

@media (max-width: 600px) {
  .category-grid {
    grid-template-columns: 1fr;
  }

  .fast-collage {
    grid-template-columns: 1fr 1fr;
  }

  .fast-collage .c1 {
    grid-row: auto;
    grid-column: 1 / -1;
    max-height: 280px;
  }
}
.content-block.alt {
  background: var(--cream-muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

.rounded-media {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  max-height: 480px;
}

.prose h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--burgundy);
}

.prose p {
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.photo-stack {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.photo-stack img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 16px;
}

.photo-stack img:first-child {
  grid-column: 1 / -1;
  height: 240px;
}

.detail-list {
  display: grid;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.detail-list dt {
  font-weight: 700;
  color: var(--burgundy);
  margin-bottom: 0.25rem;
}

.detail-list dd {
  margin: 0;
  color: var(--ink-soft);
}

.detail-list a:hover {
  color: var(--orange);
}

.contact-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(80, 4, 17, 0.06);
}

.map-frame {
  margin-top: 2rem;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  aspect-ratio: 16 / 8;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.catering-hero {
  background:
    linear-gradient(120deg, rgba(80, 4, 17, 0.88), rgba(243, 135, 12, 0.55)),
    url('../images/feast.webp') center / cover;
  color: white;
}

.catering-hero h1,
.catering-hero p {
  color: white;
}

.catering-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.catering-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 12px 32px rgba(80, 4, 17, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.catering-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  background: var(--cream);
}

.catering-card h3 {
  font-family: var(--font-serif);
  color: var(--burgundy);
  margin: 0;
}

.catering-card p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  flex: 1;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 2.5rem;
  align-items: start;
}

.faq-item {
  border-bottom: 1px solid rgba(44, 47, 36, 0.12);
}

.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  text-align: left;
  padding: 1.15rem 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--ink);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--burgundy);
  color: white;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.faq-item.open .faq-q {
  color: var(--burgundy);
}

.faq-a {
  padding: 0 0 1.25rem;
  color: var(--ink-soft);
  animation: fadeUp 0.35s ease both;
}

.faq-aside {
  background: var(--burgundy);
  color: white;
  border-radius: 24px;
  padding: 2rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.faq-aside h2 {
  font-family: var(--font-serif);
  color: white;
}

.faq-aside ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 1rem;
}

.faq-aside li {
  display: grid;
  gap: 0.2rem;
}

.faq-aside span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

.faq-aside .btn {
  width: 100%;
  background: var(--orange);
  border-color: var(--orange);
}

.form-embed {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  padding: 1rem;
}

.form-embed iframe {
  width: 100%;
  min-height: 1200px;
  border: 0;
}

.form-fallback {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.form-fallback a {
  color: var(--burgundy);
  text-decoration: underline;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(80, 4, 17, 0.06);
  transition: transform 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: var(--cream);
}

.blog-card-body {
  padding: 1.35rem 1.5rem 1.75rem;
}

.blog-card time {
  font-size: 0.8rem;
  color: var(--orange);
  font-weight: 600;
}

.blog-card h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0.5rem 0;
  color: var(--burgundy);
}

.blog-card p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.read-more {
  color: var(--burgundy);
  font-weight: 700;
  font-size: 0.9rem;
}

.post {
  max-width: 760px;
}

.back-link {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--burgundy);
  font-weight: 600;
}

.post-hero-img {
  width: 100%;
  border-radius: 24px;
  max-height: 420px;
  object-fit: cover;
  margin-bottom: 1.5rem;
}

.post h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--burgundy);
}

.post .lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
}

@media (max-width: 1000px) {
  .split,
  .faq-layout,
  .catering-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .split.reverse {
    direction: ltr;
  }

  .faq-aside {
    position: static;
  }

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

@media (max-width: 600px) {
  .catering-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

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

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

html.route-pending #app {
  visibility: hidden;
}
