:root {
  --bg: #efe4d6;
  --surface: transparent;
  --surface-soft: transparent;
  --surface-tint: transparent;
  --ink: #f7efe5;
  --muted: #ead4bc;
  --line: rgba(122, 86, 58, 0.22);
  --olive: #ebe0d2;
  --olive-soft: #dcc1a2;
  --accent: #bf654f;
  --accent-soft: #ead8ca;
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255, 243, 232, 0.34), transparent 30%),
    radial-gradient(circle at 82% 18%, rgba(216, 156, 124, 0.16), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(133, 152, 118, 0.14), transparent 34%),
    linear-gradient(145deg, #91614e 0%, #a6735d 42%, #855d50 100%);
  background-attachment: fixed;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.14), transparent 22%, rgba(33, 15, 9, 0.04)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 26px);
  opacity: 0.72;
  pointer-events: none;
  z-index: 0;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

.page-shell {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 28px));
  margin: 20px auto 42px;
}

.site-header,
.hero,
.promo-band,
.menu-section,
.selection-section,
.gallery-section,
.story-panel,
.quote-card,
.visit,
.contact-hub,
.site-footer {
  border: none;
  box-shadow: 0 8px 20px rgba(35, 13, 4, 0.06);
}

.site-header {
  position: sticky;
  top: 10px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 12px;
  padding: 18px 24px;
  border-radius: 24px;
  background: rgba(255, 250, 245, 0.18);
  box-shadow: 0 18px 44px rgba(45, 22, 12, 0.16);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  flex: none;
  border-radius: 16px;
  background: var(--olive);
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  overflow: hidden;
}

.brand-logo-image,
.brand-logo-fallback {
  grid-area: 1 / 1;
}

.brand-logo-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hidden {
  display: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-text strong,
.hero-brand-title,
.section-heading h2,
.story-panel h2,
.menu-card h3,
.gallery-copy h3,
.quote-card p,
.product-copy h3,
.product-price,
.price {
  font-family: "Cormorant Garamond", Georgia, serif;
}

.brand-text strong {
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}

.brand-text small {
  color: var(--muted);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.site-nav a {
  color: #fff1e1;
  text-decoration: none;
  font-weight: 700;
  padding: 9px 14px;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease;
}

.site-nav a:hover {
  background: rgba(255, 245, 235, 0.14);
}

.site-nav a.is-active {
  background: rgba(255, 245, 235, 0.22);
  color: #fff8ef;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  padding: 12px 16px;
  background: #e8ece1;
  color: var(--olive);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.hero,
.promo-band,
.menu-section,
.selection-section,
.gallery-section,
.story,
.visit,
.contact-hub {
  margin-top: 20px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: 36px;
  padding: 42px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 249, 243, 0.18), rgba(255, 244, 235, 0.08)),
    rgba(255, 248, 240, 0.08);
  box-shadow: 0 28px 68px rgba(45, 22, 12, 0.2);
  backdrop-filter: blur(10px);
}

.hero-copy {
  align-self: center;
  width: 100%;
  max-width: 40rem;
  padding: 12px 4px 12px 6px;
}

.eyebrow,
.promo-kicker,
.gallery-kicker,
.info-label,
.menu-card-index {
  margin: 0;
  color: var(--olive-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-brand-title {
  display: inline-block;
  width: fit-content;
  margin: 0 0 14px;
  padding: 0;
  color: #fff7ef;
  background: transparent;
  border: none;
  border-radius: 18px;
  box-shadow: none;
  font-size: clamp(3.15rem, 5.6vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-shadow: 0 10px 24px rgba(59, 18, 5, 0.16);
}

.hero-description {
  max-width: 44ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.78;
  letter-spacing: 0.01em;
  text-wrap: pretty;
  text-shadow: none;
}

.hero-text,
.section-intro,
.product-copy p,
.gallery-copy p,
.story-panel p,
.visit-card p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-text {
  max-width: 50ch;
  margin: 16px 0 0;
  font-size: 1.06rem;
}

.button,
.product-cta,
.gallery-link,
.promo-tile a,
.section-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.button-primary,
.product-cta,
.gallery-link {
  background: var(--olive);
  color: #fff;
}

.button-secondary,
.promo-tile a,
.section-link {
  border: 1px solid var(--line);
  background: rgba(255, 250, 244, 0.14);
  color: #fff4e6;
}

.hero-visual {
  display: grid;
  gap: 18px;
  max-width: 560px;
  justify-items: end;
}

.hero-image-frame,
.product-media,
.gallery-media {
  overflow: hidden;
  position: relative;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.92), transparent 32%),
    linear-gradient(145deg, #f3e5d5 0%, #e6d1bb 55%, #dbc0a8 100%);
}

.hero-image-frame {
  aspect-ratio: 1 / 1;
  min-height: 0;
  max-width: 470px;
  width: min(100%, 470px);
  border: none;
  border-radius: 32px;
  isolation: isolate;
  background:
    radial-gradient(circle at 20% 16%, rgba(255, 255, 255, 0.9), transparent 32%),
    linear-gradient(145deg, #f1e3d4 0%, #e4cfba 58%, #d9bea6 100%);
}

.hero-image-frame::before,
.product-media::before,
.gallery-media::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.26), transparent 42%),
    radial-gradient(circle at 50% 84%, rgba(85, 102, 78, 0.09), transparent 34%);
  pointer-events: none;
}

.hero-image-frame::before,
.hero-image-frame::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 42%),
    radial-gradient(circle at 50% 84%, rgba(85, 102, 78, 0.08), transparent 34%);
  filter: none;
}

.hero-image-frame::after,
.product-media::after,
.gallery-media::after {
  content: "";
  position: absolute;
  inset: auto 12% 18px;
  height: 26px;
  border-radius: 999px;
  background: rgba(86, 63, 44, 0.14);
  filter: blur(18px);
  pointer-events: none;
}

.hero-image,
.product-media img,
.gallery-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  padding: 26px;
  filter: saturate(1.03) contrast(1.02);
  transform: scale(1.02);
  transition: transform 260ms ease, filter 260ms ease;
}

.hero-image {
  padding: 30px;
  transform: scale(0.96);
  border-radius: 26px;
}

.product-media img {
  border-radius: 24px;
}

.price-row,
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.price {
  color: var(--accent);
  font-size: 2rem;
  font-weight: 700;
}

.promo-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 320px));
  justify-content: start;
  gap: 14px;
  padding: 0;
  border: 0;
  box-shadow: none;
}

.promo-tile {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 98px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(247, 239, 229, 0.92);
}

.promo-tile h2 {
  margin: 0;
  max-width: 14ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.02;
  color: #274730;
}

.promo-tile a {
  margin-top: auto;
  min-height: 32px;
  padding: 0 12px;
  background: #f7f1e7;
  color: #274730;
  border-color: rgba(39, 71, 48, 0.14);
}

.promo-tile-dark {
  background: #d9ccb8;
  border-color: rgba(147, 84, 52, 0.18);
  color: inherit;
}

.promo-tile-dark a {
  background: #f7f1e7;
  border-color: rgba(39, 71, 48, 0.14);
  color: #274730;
}

.promo-tile-accent {
  background: #e6d8c6;
}

.menu-section,
.selection-section,
.gallery-section,
.visit,
.contact-hub,
.story-panel,
.quote-card,
.site-footer {
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 248, 240, 0.11);
}

.section-heading {
  align-items: flex-end;
  margin-bottom: 24px;
}

.section-heading-left {
  align-items: flex-start;
}

.section-heading-left > div {
  max-width: 34rem;
}

.section-heading h2,
.story-panel h2 {
  margin: 8px 0 0;
  font-size: clamp(2.15rem, 3.5vw, 3.25rem);
  line-height: 1.02;
}

.section-intro {
  max-width: 33ch;
  margin: 0;
}

.menu-grid,
.product-grid,
.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.menu-grid {
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  max-width: 980px;
  margin: 0 auto;
  gap: 18px 20px;
  align-items: start;
}

.menu-column {
  display: grid;
  gap: 18px;
  align-content: start;
}

.menu-card,
.product-card,
.visit-card,
.gallery-card {
  border: none;
  border-radius: 26px;
  background: var(--surface-soft);
}

.menu-card {
  height: fit-content;
  padding: 18px 16px 16px;
  align-self: start;
  background: linear-gradient(180deg, rgba(255, 249, 243, 0.16), rgba(255, 248, 240, 0.1));
  box-shadow: 0 18px 34px rgba(45, 22, 12, 0.12);
}

.menu-card:nth-child(2n) {
  background: linear-gradient(180deg, rgba(255, 249, 243, 0.14), rgba(255, 248, 240, 0.09));
}

.menu-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.menu-card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 247, 236, 0.26);
  font-size: 0.7rem;
}

.menu-card h3 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.05;
}

.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 9px;
}

.menu-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
}

.menu-item-name {
  font-weight: 700;
  font-size: 0.96rem;
  color: #fff6ee;
}

.menu-item-dot {
  height: 1px;
  background: rgba(255, 240, 221, 0.28);
}

.menu-item-price {
  font-size: 0.95rem;
  color: #ffe7cf;
}

.product-card {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 249, 243, 0.16), rgba(255, 248, 240, 0.1));
  box-shadow: 0 18px 34px rgba(45, 22, 12, 0.12);
}

.product-media {
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 28px;
  max-width: 190px;
  width: 100%;
  margin: 0 auto;
}

.product-card:hover .product-media img,
.gallery-card:hover .gallery-media img,
.hero-image-frame:hover .hero-image {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

.product-label {
  display: inline-flex;
  width: fit-content;
  padding: 5px 9px;
  border-radius: 999px;
  background: transparent;
  color: #ffe8cf;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-copy h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  line-height: 1.08;
}

.product-copy p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.product-price {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.gallery-card {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  padding: 16px;
  border-radius: 28px;
  gap: 10px;
  background: linear-gradient(180deg, rgba(255, 249, 243, 0.16), rgba(255, 248, 240, 0.1));
  box-shadow: 0 18px 34px rgba(45, 22, 12, 0.12);
}

.gallery-media {
  aspect-ratio: 1 / 1;
  min-height: 0;
  max-width: 190px;
  width: 100%;
  margin: 0 auto;
  border-radius: 28px;
}

.gallery-media::before {
  inset: 10px;
  border-radius: 24px;
}

.gallery-media img {
  padding: 24px;
  border-radius: 24px;
}

.gallery-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 8px 6px 0;
  text-align: center;
}

.gallery-copy h3 {
  margin: 0;
  max-width: none;
  font-size: 1.16rem;
  line-height: 1.06;
}

.gallery-copy p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.52;
}

.contact-hub {
  background: linear-gradient(180deg, rgba(255, 249, 243, 0.18), rgba(255, 248, 240, 0.1));
  padding: 36px 40px;
  border-radius: 28px;
  box-shadow: 0 20px 42px rgba(45, 22, 12, 0.14);
  backdrop-filter: blur(8px);
}

.contact-kicker,
.contact-label {
  margin: 0;
  color: #9d3f31;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: none;
}

.contact-hub-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.82fr);
  align-items: start;
  gap: 18px 60px;
}

.contact-hub .section-heading,
.contact-hub .section-intro {
  display: none;
}

.contact-story,
.contact-panel {
  display: grid;
  align-content: start;
  gap: 10px;
}

.contact-title {
  margin: 0;
  font-size: clamp(1.28rem, 2vw, 1.55rem);
  line-height: 1.06;
  color: #2d1d16;
  max-width: 18rem;
}

.contact-body,
.contact-note {
  margin: 0;
  max-width: 30rem;
  color: #2f241d;
  font-size: 0.96rem;
  line-height: 1.52;
}

.contact-note {
  max-width: 28rem;
  color: #2f241d;
}

.contact-panel-title {
  margin: 0;
  font-size: clamp(1.24rem, 1.8vw, 1.55rem);
  line-height: 1.04;
  color: #2c1c16;
}

.contact-lines {
  display: grid;
  gap: 8px;
}

.contact-line {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  column-gap: 10px;
}

.contact-value,
.doordash-text {
  margin: 0;
  color: #c64a35;
  font-size: 0.92rem;
  line-height: 1.28;
}

.contact-link {
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-line-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: #20242b;
  font-size: 1.1rem;
  line-height: 1;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 12px;
}

.social-link {
  display: inline-grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.12);
  box-shadow: 0 14px 24px rgba(45, 22, 12, 0.1);
  text-decoration: none;
  color: #355ca8;
  transition: transform 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 250, 245, 0.16);
}

.social-link.is-disabled {
  opacity: 0.86;
}

.social-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
}

.social-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon svg path,
.social-icon svg rect,
.social-icon svg circle {
  vector-effect: non-scaling-stroke;
}

.social-icon .social-dot {
  fill: currentColor;
  stroke: none;
}

.social-empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
}

.doordash-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  padding: 0;
  color: #2d1d16;
  text-decoration: none;
  width: fit-content;
}

.doordash-copy-inline {
  display: grid;
  gap: 2px;
}

.doordash-text {
  font-size: 0.92rem;
  line-height: 1.12;
}

.doordash-link.is-disabled {
  opacity: 0.84;
  pointer-events: none;
}

.doordash-logo-wrap {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  background: rgba(255, 250, 245, 0.12);
  box-shadow: 0 14px 24px rgba(45, 22, 12, 0.1);
  overflow: hidden;
}

.doordash-logo,
.doordash-logo-fallback {
  grid-area: 1 / 1;
}

.doordash-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.doordash-logo-fallback {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #2d1d16;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 18px;
}

.story-panel p {
  margin: 16px 0 0;
}

.quote-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  background: var(--surface-tint);
}

.quote-card p {
  margin: 0;
  font-size: 1.55rem;
  line-height: 1.18;
}

.quote-card span {
  color: var(--muted);
  font-weight: 700;
}

.visit {
  background: transparent;
}

.visit-grid {
  gap: 16px;
}

.visit-card {
  padding: 18px;
  background: transparent;
}

.visit-card h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.visit-card p {
  margin: 0;
}

.site-footer {
  margin-top: 20px;
  text-align: center;
  background: transparent;
  box-shadow: none;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .hero,
  .promo-band,
  .story,
  .product-grid,
  .visit-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .contact-hub-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-story,
  .contact-panel {
    gap: 12px;
  }

  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-header {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    padding-top: 8px;
  }

  .site-nav.open {
    display: flex;
  }

  .hero-image-frame,
  .gallery-media,
  .product-media {
    min-height: 240px;
    height: 240px;
  }

  .hero-image,
  .product-media img,
  .gallery-media img {
    padding: 18px;
  }
}

@media (max-width: 600px) {
  .page-shell {
    width: min(100% - 14px, 100%);
  }

  .site-header,
  .hero,
  .menu-section,
  .selection-section,
  .gallery-section,
  .story-panel,
  .quote-card,
  .visit,
  .contact-hub,
  .site-footer {
    padding: 18px;
  }

  .section-heading h2,
  .story-panel h2 {
    font-size: 2.25rem;
  }

  .hero-brand-title {
    font-size: 2.5rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .price-row,
  .product-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-copy {
    padding: 22px;
  }

.gallery-copy h3 {
  font-size: 1.6rem;
}
}

body.landing-v2 {
  background: #f5f1ea;
  color: #1c1917;
}

body.landing-v2::before {
  background:
    radial-gradient(circle at top left, rgba(220, 38, 38, 0.12), transparent 24%),
    radial-gradient(circle at bottom right, rgba(146, 64, 14, 0.12), transparent 24%);
  opacity: 1;
}

.landing-v2 .page-shell,
.landing-v2 .site-footer {
  display: none;
}

.landing-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(214, 211, 209, 0.7);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.landing-header-inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
}

.landing-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.landing-brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 14px;
  border: 1.5px solid rgba(185, 28, 28, 0.22);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.landing-brand-logo,
.landing-brand-fallback {
  width: 100%;
  height: 100%;
}

.landing-brand-logo {
  display: block;
  object-fit: contain;
  object-position: center;
  padding: 4px;
}

.landing-brand-fallback {
  display: block;
}

.landing-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.landing-brand-title {
  color: #b91c1c;
  font-size: 1.52rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
}

.landing-nav {
  display: flex;
  gap: 24px;
}

body.landing-v2 .menu-toggle {
  display: none;
}

.landing-nav a {
  padding: 0;
  color: #292524;
  font-size: 0.94rem;
  font-weight: 600;
  border-radius: 0;
}

.landing-nav a:hover,
.landing-nav a.is-active {
  background: transparent;
  color: #b91c1c;
  box-shadow: none;
}

.landing-hero {
  position: relative;
  overflow: hidden;
}

.landing-hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(220, 38, 38, 0.12), transparent 35%),
    radial-gradient(circle at bottom right, rgba(146, 64, 14, 0.12), transparent 35%);
  pointer-events: none;
}

.landing-hero-inner,
.landing-section,
.landing-contact {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
}

.landing-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: 40px;
  padding: 64px 0 96px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.landing-badge {
  display: inline-flex;
  margin-bottom: 18px;
  border: 1px solid #fecaca;
  border-radius: 999px;
  background: #fef2f2;
  padding: 10px 18px;
  color: #b91c1c;
  font-size: 0.94rem;
  font-weight: 700;
}

.landing-hero-copy h1,
.landing-section h2,
.landing-story h2,
.landing-contact h2 {
  margin: 0;
  color: #1c1917;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.landing-hero-copy h1 {
  max-width: 740px;
  font-size: clamp(3.15rem, 6vw, 5rem);
  line-height: 1.03;
}

.landing-hero-copy h1 span {
  color: #b91c1c;
}

.landing-hero-copy > p {
  max-width: 650px;
  margin: 24px 0 0;
  color: #57534e;
  font-size: 1.12rem;
  line-height: 1.85;
}

.landing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 18px;
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, color 180ms ease, background-color 180ms ease;
}

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

.landing-button-primary {
  background: #b91c1c;
  color: #fff;
  box-shadow: 0 16px 28px rgba(185, 28, 28, 0.24);
}

.landing-button-secondary {
  border: 1px solid #d6d3d1;
  background: #fff;
  color: #1c1917;
}

.landing-button-secondary:hover {
  border-color: #fecaca;
  color: #b91c1c;
}

.landing-highlights {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-highlight {
  border: 1px solid #e7e5e4;
  border-radius: 18px;
  background: #fff;
  padding: 16px;
  color: #44403c;
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 10px 18px rgba(28, 25, 23, 0.04);
}

.landing-hero-visual {
  position: relative;
}

.landing-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(56px);
  pointer-events: none;
}

.landing-orb-left {
  top: -24px;
  left: -24px;
  width: 112px;
  height: 112px;
  background: rgba(253, 224, 71, 0.4);
}

.landing-orb-right {
  right: -32px;
  bottom: -32px;
  width: 144px;
  height: 144px;
  background: rgba(252, 165, 165, 0.32);
}

.landing-hero-grid {
  position: relative;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.88fr);
}

.landing-stack {
  display: grid;
  gap: 16px;
}

.landing-media-card {
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 28px 44px rgba(28, 25, 23, 0.12);
}

.landing-media-card img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.landing-media-card-tall img {
  height: 420px;
}

.landing-media-card-short img {
  height: 208px;
}

.landing-hours-card {
  border-radius: 32px;
  background: #1c1917;
  padding: 28px;
  color: #fff;
  box-shadow: 0 24px 36px rgba(28, 25, 23, 0.16);
}

.landing-hours-label,
.landing-eyebrow {
  color: #b91c1c;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.landing-hours-title {
  margin-top: 12px;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.landing-hours-meta {
  margin-top: 8px;
  color: #d6d3d1;
}

.landing-hours-note {
  margin-top: 24px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  padding: 16px;
  color: #e7e5e4;
  font-size: 0.92rem;
}

.landing-section {
  padding: 64px 0;
}

.landing-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.landing-section h2,
.landing-gallery-head h2 {
  margin-top: 10px;
  font-size: clamp(2.15rem, 4vw, 3rem);
  line-height: 1.05;
}

.landing-note {
  border: 1px solid #e7e5e4;
  border-radius: 18px;
  background: #fff;
  padding: 14px 16px;
  color: #57534e;
  font-size: 0.9rem;
  box-shadow: 0 10px 18px rgba(28, 25, 23, 0.04);
}

.landing-feature-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-feature-card {
  overflow: hidden;
  border: 1px solid #e7e5e4;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 14px 26px rgba(28, 25, 23, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.landing-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 40px rgba(28, 25, 23, 0.12);
}

.landing-feature-media {
  overflow: hidden;
  min-height: 260px;
  background: #f8f3ee;
}

.landing-feature-media img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center center;
  transform: translateY(var(--feature-image-shift, 0));
  transition: transform 420ms ease;
}

.landing-feature-card:nth-child(1) .landing-feature-media img,
.landing-feature-card:nth-child(2) .landing-feature-media img {
  --feature-image-shift: 18px;
}

.landing-feature-card:hover .landing-feature-media img {
  transform: translateY(var(--feature-image-shift, 0)) scale(1.02);
}

.landing-feature-copy {
  padding: 24px;
}

.landing-feature-copy h3 {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.landing-feature-copy p {
  margin: 12px 0 0;
  color: #57534e;
  line-height: 1.7;
}

.landing-menu-box {
  margin-top: 40px;
  border-radius: 32px;
  background: #fff;
  padding: 32px;
  box-shadow: 0 12px 22px rgba(28, 25, 23, 0.05);
}

.landing-menu-title {
  margin-bottom: 20px;
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.landing-menu-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-menu-chip {
  border: 1px solid #e7e5e4;
  border-radius: 18px;
  background: #fafaf9;
  padding: 16px;
  color: #57534e;
  font-size: 0.92rem;
  font-weight: 700;
}

.landing-story {
  background: #1c1917;
  color: #fff;
}

.landing-story-inner {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  gap: 40px;
  padding: 64px 0;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.landing-eyebrow-gold {
  color: #fde68a;
}

.landing-story h2 {
  margin-top: 12px;
  color: #fff;
  font-size: clamp(2.15rem, 4vw, 3rem);
  line-height: 1.05;
}

.landing-story p {
  max-width: 650px;
  margin: 24px 0 0;
  color: #d6d3d1;
  font-size: 1.04rem;
  line-height: 1.9;
}

.landing-story-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-story-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  color: #f5f5f4;
  font-size: 1rem;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.landing-gallery-head {
  margin-bottom: 32px;
}

.landing-gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.landing-gallery-card {
  overflow: hidden;
  border: 1px solid #e7e5e4;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 12px 22px rgba(28, 25, 23, 0.05);
}

.landing-gallery-card img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.landing-contact {
  padding: 0 0 80px;
}

.landing-contact-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.landing-contact-primary {
  border-radius: 32px;
  background: linear-gradient(135deg, #b91c1c, #7f1d1d);
  padding: 32px;
  color: #fff;
  box-shadow: 0 24px 42px rgba(127, 29, 29, 0.24);
}

.landing-contact-primary h2 {
  margin-top: 12px;
  color: #fff;
  font-size: clamp(2.15rem, 4vw, 3rem);
  line-height: 1.05;
}

.landing-contact-primary p {
  max-width: 660px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

.landing-contact-cards {
  display: grid;
  gap: 16px;
  margin-top: 32px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.landing-contact-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 26px;
}

.landing-social-group {
  display: grid;
  gap: 12px;
}

.landing-social-title {
  color: #fef3c7;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.landing-contact-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
}

.landing-contact-card-label {
  color: #fef3c7;
  font-size: 0.88rem;
}

.landing-contact-card-value {
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.landing-contact-card-value a {
  text-decoration: none;
}

.landing-contact .social-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.landing-contact .social-link {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  transition: transform 180ms ease, background-color 180ms ease;
}

.landing-contact .social-link:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.22);
}

.landing-contact .social-link.is-disabled {
  opacity: 0.55;
}

.landing-contact .social-icon {
  width: 20px;
  height: 20px;
}

.landing-contact .social-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.landing-contact .social-icon .social-dot {
  fill: currentColor;
  stroke: none;
}

.landing-delivery-link {
  min-width: 220px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-radius: 18px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
}

.landing-delivery-link.is-disabled {
  opacity: 0.62;
}

.landing-delivery-copy {
  display: grid;
  gap: 2px;
}

.landing-delivery-kicker {
  color: #fef3c7;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.landing-delivery-text {
  font-weight: 800;
}

.landing-contact-form {
  border: 1px solid #e7e5e4;
  border-radius: 32px;
  background: #fff;
  padding: 32px;
  box-shadow: 0 12px 22px rgba(28, 25, 23, 0.05);
}

.landing-contact-form-title {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.landing-form-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.landing-form-grid input,
.landing-form-grid textarea {
  width: 100%;
  border: 1px solid #d6d3d1;
  border-radius: 18px;
  padding: 16px;
  color: #1c1917;
  font: inherit;
  background: #fff;
  outline: none;
}

.landing-form-grid input:focus,
.landing-form-grid textarea:focus {
  border-color: #ef4444;
}

.landing-form-grid textarea {
  min-height: 130px;
  resize: vertical;
}

.landing-form-grid button {
  border: 0;
  border-radius: 18px;
  background: #1c1917;
  padding: 16px 24px;
  color: #fff;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 180ms ease;
}

.landing-form-grid button:hover {
  background: #b91c1c;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366 0%, #128c4a 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 20px 36px rgba(18, 140, 74, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 42px rgba(18, 140, 74, 0.34);
}

.whatsapp-float.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.whatsapp-float-icon {
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.whatsapp-float-icon svg {
  width: 100%;
  height: 100%;
}

.whatsapp-float-label {
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

@media (max-width: 1024px) {
  .landing-hero-inner,
  .landing-story-inner,
  .landing-contact-grid,
  .landing-feature-grid,
  .landing-gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .landing-section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .landing-header-inner,
  .landing-hero-inner,
  .landing-section,
  .landing-contact,
  .landing-story-inner {
    width: min(100% - 28px, 100%);
  }

  body.landing-v2 .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .landing-brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .landing-brand-title {
    font-size: 1.16rem;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 13px 15px;
  }

  .whatsapp-float-label {
    display: none;
  }

  .landing-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 12px;
    padding-top: 12px;
  }

  .landing-nav.open {
    display: flex;
  }

  .landing-highlights,
  .landing-contact-cards,
  .landing-menu-grid,
  .landing-story-grid {
    grid-template-columns: 1fr;
  }

  .landing-contact-social-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .landing-hero-grid {
    grid-template-columns: 1fr;
  }

  .landing-hero-copy h1 {
    font-size: 2.75rem;
  }

  .landing-section,
  .landing-story-inner {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .landing-contact {
    padding-bottom: 48px;
  }
}
