.sf-main-shell {
  background: var(--db);
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.sf-home-shell {
  background: var(--db);
  color: var(--tl);
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

body.sf-site-shell-active #wrap_all,
body.sf-site-shell-active #main,
body.sf-site-shell-active .sf-main-shell,
body.sf-site-shell-active .sf-site-nav,
body.sf-site-shell-active .sf-page-hero,
body.sf-site-shell-active .sf-intro,
body.sf-site-shell-active .sf-values,
body.sf-site-shell-active .sf-timeline,
body.sf-site-shell-active .sf-ethos {
  width: 100%;
  max-width: 100vw;
  min-width: 0;
  overflow-x: clip;
}

body.sf-site-shell-active .sf-site-nav {
  left: 0;
  right: 0;
}

.sf-grain {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.3;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
}

.sf-cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--wg);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s;
}

.sf-cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(200, 144, 42, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s;
}

@media (hover: none), (pointer: coarse), (max-width: 768px), (prefers-reduced-motion: reduce) {
  .sf-cursor,
  .sf-cursor-ring {
    display: none;
    pointer-events: none;
  }
}

.sf-site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
  max-width: 100%;
  padding: 20px 40px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 32px;
  background: linear-gradient(to bottom, rgba(26, 10, 4, 0.9), transparent);
  backdrop-filter: blur(2px);
}

.sf-nav-logo {
  display: inline-flex;
  align-items: center;
  align-self: center;
  flex: 0 0 auto;
  min-width: 0;
  max-width: min(32vw, 390px);
  line-height: 0;
  text-decoration: none;
  transform-origin: left center;
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.sf-nav-logo-image {
  display: block;
  width: auto;
  height: clamp(66px, 5.4vw, 86px);
  max-width: 100%;
  object-fit: contain;
  transform: translateY(1px);
}

.sf-nav-logo-fallback {
  font-family: var(--sf-heading-font);
  font-size: 21px;
  font-weight: 600;
  font-style: italic;
  color: var(--wg);
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1;
}

.sf-nav-logo:hover,
.sf-nav-logo:focus {
  color: var(--wg);
}

body.home.sf-home-logo-experiment .sf-site-nav .sf-nav-logo {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px) scale(0.94);
}

body.home.sf-home-logo-experiment.sf-header-logo-visible .sf-site-nav .sf-nav-logo,
body.home.sf-home-logo-experiment .sf-site-nav.is-open .sf-nav-logo {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.sf-site-nav-menu {
  min-width: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}

.sf-nav-panel {
  flex: none;
  min-width: 0;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
}

.sf-nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  flex-wrap: nowrap;
}

.sf-nav-links li {
  min-width: 0;
  flex: 0 1 auto;
  position: relative;
}

.sf-nav-links > .menu-item-has-children::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  width: 260px;
  height: 18px;
  transform: translateX(-50%);
}

.sf-nav-links a {
  display: block;
  position: relative;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.65);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
  line-height: 1.25;
}

.sf-nav-links > li > a {
  padding: 10px 0;
}

.sf-nav-links > .menu-item-has-children > a {
  padding-right: 16px;
}

.sf-nav-links > .menu-item-has-children > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  opacity: 0.75;
}

.sf-nav-links a:hover,
.sf-nav-links a.active,
.sf-nav-links a[aria-current="page"],
.sf-nav-links .current-menu-item > a,
.sf-nav-links .current-menu-ancestor > a,
.sf-nav-links .current-menu-parent > a,
.sf-nav-links .current_page_item > a,
.sf-nav-links .current_page_parent > a {
  color: var(--wg);
}

.sf-nav-links .sub-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  min-width: 220px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  border: 1px solid rgba(245, 237, 216, 0.1);
  border-radius: 18px;
  background: rgba(12, 5, 2, 0.98);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 10px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  z-index: 1002;
}

.sf-nav-links > li:hover > .sub-menu,
.sf-nav-links > li:focus-within > .sub-menu,
.sf-nav-links > li.sf-menu-open > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.sf-nav-links .sub-menu li {
  width: 100%;
}

.sf-nav-links .sub-menu li + li {
  border-top: 1px solid rgba(245, 237, 216, 0.06);
}

.sf-nav-links .sub-menu a {
  padding: 12px 18px;
  font-size: 9px;
  letter-spacing: 0.18em;
  line-height: 1.45;
  color: rgba(245, 237, 216, 0.78);
}

.sf-nav-links .sub-menu a:hover,
.sf-nav-links .sub-menu a:focus,
.sf-nav-links .sub-menu .current-menu-item > a,
.sf-nav-links .sub-menu .current_page_item > a {
  color: var(--wg);
}

.sf-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(245, 237, 216, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--tl);
  cursor: pointer;
}

.sf-nav-toggle-line {
  display: block;
  width: 18px;
  height: 1px;
  margin: 2.5px 0;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.sf-site-nav.is-open .sf-nav-toggle-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.sf-site-nav.is-open .sf-nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.sf-site-nav.is-open .sf-nav-toggle-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.sf-nav-cta {
  font-family: var(--sf-body-font);
  font-size: 8.9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--wg);
  color: var(--db);
  padding: 11px 18px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}

.sf-nav-cta:hover {
  background: var(--lg);
  color: var(--db);
}

body.sf-nav-open {
  overflow: hidden;
}

.eyebrow {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--wg);
  display: block;
  margin-bottom: 16px;
}

.s-rule {
  height: 1px;
  background: linear-gradient(to right, var(--wg), transparent);
  width: 40px;
  margin: 0 0 28px;
}

.s-rule.c {
  margin: 0 auto 28px;
}

.btn-fire {
  font-family: var(--sf-body-font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--wg);
  color: var(--db);
  padding: 18px 42px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}

.btn-fire::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 65%
  );
  transform: translateX(-120%);
  transition: transform 0.55s;
}

.btn-fire:hover {
  transform: translateY(-2px);
  color: var(--db);
}

.btn-fire:hover::before {
  transform: translateX(120%);
}

.btn-outline {
  font-family: var(--sf-body-font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: transparent;
  color: var(--tl);
  padding: 17px 42px;
  border: 1px solid rgba(245, 237, 216, 0.2);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.25s, color 0.25s;
}

.btn-outline:hover {
  border-color: var(--wg);
  color: var(--wg);
}

.sf-hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 112px 24px 44px;
  overflow: hidden;
  background: var(--db);
}

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

.sf-hero-logo-shell {
  position: relative;
  z-index: 2;
  width: min(92vw, 900px);
  margin: 0 auto 2px;
  animation: sfFU 0.9s 0.4s both;
  transform-origin: center center;
  transition: opacity 0.18s linear, transform 0.18s ease-out;
  will-change: opacity, transform;
}

.sf-hero-logo-shell::before {
  content: "";
  position: absolute;
  inset: 12% 16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 184, 75, 0.2), rgba(139, 0, 0, 0.04) 56%, transparent 74%);
  filter: blur(26px);
  z-index: -1;
  opacity: 0.75;
}

.sf-hero-logo-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: clamp(300px, 42vw, 460px);
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.34));
}


.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sf-eyebrow-hero {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 26px;
  animation: sfFU 0.9s 0.2s both;
}

.sf-eyebrow-hero-line {
  width: 32px;
  height: 1px;
  background: var(--wg);
  opacity: 0.55;
}

.sf-eyebrow-hero span {
  font-family: var(--sf-body-font);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  color: var(--wg);
  border: 1px solid rgba(200, 144, 42, 0.32);
  padding: 9px 22px;
  position: relative;
}

.sf-eyebrow-hero span::before,
.sf-eyebrow-hero span::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-color: var(--wg);
  border-style: solid;
  opacity: 0.45;
}

.sf-eyebrow-hero span::before {
  top: -1px;
  left: -1px;
  border-width: 1px 0 0 1px;
}

.sf-eyebrow-hero span::after {
  bottom: -1px;
  right: -1px;
  border-width: 0 1px 1px 0;
}

.hero-title {
  font-family: var(--sf-heading-font);
  font-size: clamp(94px, 13.2vw, 170px);
  font-weight: 300;
  line-height: 0.84;
  color: var(--tl);
  letter-spacing: -0.03em;
  position: relative;
  z-index: 2;
  animation: sfFU 0.9s 0.4s both;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.hero-title em {
  font-style: italic;
  color: var(--wg);
  display: block;
  font-weight: 300;
}

.hero-rule {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--wg), transparent);
  margin: 22px auto;
  opacity: 0.45;
  position: relative;
  z-index: 2;
  animation: sfFU 0.9s 0.55s both;
}

.sf-hero-sub {
  font-family: var(--sf-heading-font);
  font-size: clamp(19px, 2.45vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 237, 216, 0.72);
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  position: relative;
  z-index: 2;
  animation: sfFU 0.9s 0.65s both;
}

.sf-hero-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.42);
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
  animation: sfFU 0.9s 0.75s both;
}

.sf-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 2;
  animation: sfFU 0.9s 0.9s both;
}

@media (min-width: 769px) {
  .sf-home-shell .sf-hero {
    min-height: 78vh;
    padding: 146px 24px 28px;
  }

  .sf-home-shell .sf-eyebrow-hero {
    margin-bottom: 30px;
  }

  .sf-home-shell .sf-hero-logo-shell {
    width: min(80vw, 760px);
    margin-bottom: 8px;
  }

  .sf-home-shell .sf-hero-logo-image {
    max-height: clamp(260px, 32vw, 380px);
  }

  .sf-home-shell .hero-rule {
    height: 28px;
    margin: 8px auto 14px;
  }

  .sf-home-shell .sf-hero-sub {
    margin-bottom: 10px;
  }

  .sf-home-shell .sf-hero-tag {
    margin-bottom: 20px;
  }

  .sf-home-shell .sf-ctas {
    margin-top: 0;
  }
}

.sf-scroll {
  position: absolute;
  bottom: 38px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 10;
  animation: sfFU 0.9s 1.1s both;
}

.sf-scroll span {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.3);
}

.sf-scroll-mouse {
  width: 24px;
  height: 38px;
  border: 1.5px solid rgba(245, 237, 216, 0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}

.sf-scroll-dot {
  width: 3px;
  height: 7px;
  background: var(--wg);
  border-radius: 2px;
  animation: sfDot 2.2s ease-in-out infinite;
}

.sf-ticker {
  background: var(--sr);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(200, 144, 42, 0.15);
  border-bottom: 1px solid rgba(200, 144, 42, 0.15);
}

.sf-ticker-track {
  display: inline-flex;
  animation: sfTick 32s linear infinite;
  white-space: nowrap;
}

.sf-ticker-track span {
  font-family: var(--sf-heading-font);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.8);
  padding: 0 22px;
}

.sf-ticker-track em {
  color: var(--lg);
  font-style: normal;
}

.sf-heritage {
  background: var(--ow);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.sf-heritage::after {
  content: "STORY";
  position: absolute;
  bottom: -30px;
  right: -20px;
  font-family: var(--sf-heading-font);
  font-size: min(18vw, 180px);
  font-weight: 700;
  font-style: italic;
  color: rgba(59, 26, 8, 0.04);
  pointer-events: none;
  line-height: 1;
}

.sf-heritage-in {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}

.sf-heritage .eyebrow {
  color: var(--sr);
}

.sf-heritage h2 {
  font-family: var(--sf-heading-font);
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 300;
  line-height: 1;
  color: var(--db);
  margin-bottom: 28px;
}

.sf-heritage h2 em {
  font-style: italic;
  color: var(--sr);
}

.sf-heritage p {
  font-size: 15.5px;
  line-height: 1.92;
  color: #4a2810;
  margin-bottom: 18px;
}

.sf-heritage p + p {
  opacity: 0.72;
}

.sf-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}

.sf-stat {
  padding: 52px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}

.sf-stat:hover {
  transform: translateY(-3px);
}

.sf-stat::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--wg);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.sf-stat:hover::before {
  transform: scaleX(1);
}

.sf-stat:nth-child(1) {
  background: var(--db);
}

.sf-stat:nth-child(2) {
  background: var(--sr);
}

.sf-stat:nth-child(3) {
  background: var(--rb);
}

.sf-stat:nth-child(4) {
  background: var(--fg);
}

.sf-stat-n {
  font-family: var(--sf-heading-font);
  font-size: 56px;
  font-weight: 300;
  color: var(--wg);
  line-height: 1;
  display: block;
  margin-bottom: 10px;
}

.sf-stat-n.stars {
  font-size: 20px;
  color: var(--lg);
  letter-spacing: 3px;
}

.sf-stat-l {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.55);
}

.sf-founder {
  background: var(--db);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.sf-founder-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--sf-heading-font);
  font-size: clamp(140px, 22vw, 280px);
  font-weight: 700;
  font-style: italic;
  color: rgba(255, 255, 255, 0.015);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.sf-founder-in {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.sf-emblem {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sf-emblem svg {
  animation: slowSpin 60s linear infinite;
}

.sf-emblem-mono {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sf-emblem-mono span {
  font-family: var(--sf-heading-font);
  font-size: 72px;
  font-weight: 300;
  font-style: italic;
  color: var(--wg);
  line-height: 1;
}

.sf-emblem-mono small {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(200, 144, 42, 0.45);
}

.sf-founder h2 {
  font-family: var(--sf-heading-font);
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 300;
  line-height: 1.02;
  color: var(--tl);
  margin-bottom: 24px;
}

.sf-founder h2 em {
  font-style: italic;
  color: var(--wg);
}

.sf-founder p {
  font-size: 15.5px;
  line-height: 1.92;
  color: rgba(245, 237, 216, 0.7);
  margin-bottom: 18px;
}

.sf-pq {
  border-left: 2px solid var(--wg);
  padding: 18px 26px;
  margin: 32px 0;
  background: rgba(200, 144, 42, 0.05);
}

.sf-pq p {
  font-family: var(--sf-heading-font);
  font-size: 23px;
  font-style: italic;
  color: rgba(245, 237, 216, 0.82);
  line-height: 1.58;
  margin: 0;
}

.sf-menu {
  background: var(--wb);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.sf-menu::after {
  content: "MENU";
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: var(--sf-heading-font);
  font-size: clamp(100px, 18vw, 220px);
  font-weight: 700;
  font-style: italic;
  color: rgba(59, 26, 8, 0.04);
  pointer-events: none;
  line-height: 1;
}

.sf-menu-hd {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.sf-menu-hd h2 {
  font-family: var(--sf-heading-font);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 300;
  line-height: 1;
  color: var(--db);
}

.sf-menu-hd h2 em {
  font-style: italic;
  color: var(--sr);
}

.sf-menu-hd .eyebrow {
  color: var(--sr);
  text-align: center;
}

.sf-menu-hd p {
  font-size: 15px;
  line-height: 1.86;
  color: #6b4020;
  margin-top: 16px;
}

.sf-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: 1140px;
  margin: 0 auto 52px;
}

.sf-dish {
  background: #fff;
  padding: 38px 30px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}

.sf-dish::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--sr), var(--wg));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.sf-dish:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(59, 26, 8, 0.13);
}

.sf-dish:hover::after {
  transform: scaleX(1);
}

.sf-dish.sig {
  background: var(--db);
}

.sf-dish.sig::after {
  background: linear-gradient(to right, var(--wg), var(--lg));
}

.sf-dish-tag {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wg);
  margin-bottom: 14px;
  display: block;
}

.sf-dish.sig .sf-dish-tag {
  color: rgba(200, 144, 42, 0.6);
}

.sf-dish-name {
  font-family: var(--sf-heading-font);
  font-size: 30px;
  font-weight: 600;
  color: var(--db);
  line-height: 1.15;
  margin-bottom: 12px;
}

.sf-dish.sig .sf-dish-name {
  color: var(--tl);
}

.sf-dish-desc {
  font-size: 14px;
  line-height: 1.82;
  color: #6b4020;
  margin-bottom: 22px;
}

.sf-dish.sig .sf-dish-desc {
  color: rgba(245, 237, 216, 0.5);
}

.sf-dish-ft {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sf-dish-price {
  font-family: var(--sf-heading-font);
  font-size: 24px;
  font-weight: 600;
  color: var(--sr);
}

.sf-dish.sig .sf-dish-price {
  color: var(--wg);
}

.sf-dish-arr {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(92, 46, 10, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--rb);
  transition: all 0.25s;
}

.sf-dish:hover .sf-dish-arr {
  background: var(--wg);
  border-color: var(--wg);
  color: var(--db);
}

.sf-dish.sig .sf-dish-arr {
  border-color: rgba(200, 144, 42, 0.2);
  color: rgba(245, 237, 216, 0.4);
}

.sf-menu-cta {
  text-align: center;
}

.sf-diff {
  background: var(--rb);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.sf-diff::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.18) 0%, transparent 55%);
  pointer-events: none;
}

.sf-diff-hd {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

.sf-diff-hd h2 {
  font-family: var(--sf-heading-font);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--tl);
}

.sf-diff-hd h2 em {
  font-style: italic;
  color: var(--wg);
}

.sf-diff-hd p {
  font-size: 15px;
  line-height: 1.86;
  color: rgba(245, 237, 216, 0.48);
  margin-top: 16px;
}

.sf-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1140px;
  margin: 0 auto;
  border: 1px solid rgba(245, 237, 216, 0.07);
}

.sf-pillar {
  padding: 56px 44px;
  border-right: 1px solid rgba(245, 237, 216, 0.07);
  position: relative;
  overflow: hidden;
  transition: background 0.35s;
}

.sf-pillar:last-child {
  border-right: none;
}

.sf-pillar:hover {
  background: rgba(139, 0, 0, 0.15);
}

.sf-pn {
  font-family: var(--sf-heading-font);
  font-size: 88px;
  font-weight: 300;
  color: rgba(200, 144, 42, 0.12);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
  transition: color 0.35s;
}

.sf-pillar:hover .sf-pn {
  color: rgba(200, 144, 42, 0.22);
}

.sf-pillar h3 {
  font-family: var(--sf-heading-font);
  font-size: 28px;
  font-weight: 600;
  color: var(--tl);
  margin-bottom: 14px;
  line-height: 1.2;
}

.sf-pillar p {
  font-size: 14.5px;
  line-height: 1.9;
  color: rgba(245, 237, 216, 0.72);
}

.sf-p-cta {
  display: inline-block;
  margin-top: 28px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wg);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(200, 144, 42, 0.3);
  transition: letter-spacing 0.2s, border-color 0.2s;
}

.sf-p-cta:hover {
  letter-spacing: 0.38em;
  border-color: var(--wg);
  color: var(--wg);
}

.sf-catering {
  background: var(--ow);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.sf-cater-hd {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

.sf-cater-hd h2 {
  font-family: var(--sf-heading-font);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--db);
}

.sf-cater-hd h2 em {
  font-style: italic;
  color: var(--sr);
}

.sf-cater-hd .eyebrow {
  color: var(--sr);
}

.sf-cater-hd p {
  font-size: 15px;
  line-height: 1.86;
  color: #6b4020;
  margin-top: 16px;
}

.sf-cater-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  max-width: 1140px;
  margin: 0 auto 52px;
}

.sf-ccard {
  background: var(--wb);
  padding: 48px 40px;
  border-bottom: 3px solid transparent;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.sf-ccard:hover {
  border-bottom-color: var(--sr);
  background: #ede5ce;
  transform: translateY(-2px);
}

.sf-ccard-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(92, 46, 10, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  font-size: 20px;
  transition: all 0.3s;
}

.sf-ccard:hover .sf-ccard-icon {
  background: var(--sr);
  border-color: var(--sr);
}

.sf-ccard h3 {
  font-family: var(--sf-heading-font);
  font-size: 28px;
  font-weight: 600;
  color: var(--db);
  margin-bottom: 12px;
}

.sf-ccard p {
  font-size: 14.5px;
  line-height: 1.9;
  color: #6b4020;
}

.sf-catering-cta {
  text-align: center;
}

.sf-social {
  background: var(--db);
  padding: 80px 24px;
  border-top: 1px solid rgba(200, 144, 42, 0.08);
}

.sf-social-in {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.sf-social-title {
  font-family: var(--sf-heading-font);
  font-size: clamp(32px, 3.9vw, 46px);
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 237, 216, 0.5);
  margin-bottom: 48px;
}

.sf-social-title em {
  color: var(--wg);
  font-style: normal;
}

.sf-reviews {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 32px;
}

.sf-review {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 237, 216, 0.06);
  padding: 32px 28px;
  text-align: left;
  transition: background 0.3s, border-color 0.3s;
}

.sf-review:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(200, 144, 42, 0.15);
}

.sf-review-stars {
  color: var(--lg);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 14px;
  display: block;
}

.sf-review-text {
  font-family: var(--sf-heading-font);
  font-size: 18.5px;
  font-style: italic;
  font-weight: 300;
  color: rgba(245, 237, 216, 0.75);
  line-height: 1.68;
  margin-bottom: 18px;
}

.sf-review-name {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.35);
}

.sf-g-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(245, 237, 216, 0.1);
  padding: 10px 20px;
  font-size: 11px;
  color: rgba(245, 237, 216, 0.4);
  letter-spacing: 0.1em;
}

.sf-g-badge strong {
  color: var(--wg);
}

.sf-testi {
  background: var(--sr);
  padding: 138px 24px 128px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sf-testi::before {
  content: "\201C";
  font-family: var(--sf-heading-font);
  font-size: min(38vw, 480px);
  font-weight: 700;
  color: rgba(245, 237, 216, 0.04);
  position: absolute;
  top: -44px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}

.sf-testi-div {
  width: 1px;
  height: 52px;
  background: rgba(200, 144, 42, 0.4);
  margin: 0 auto 40px;
}

.sf-testi blockquote {
  font-family: var(--sf-heading-font);
  font-size: clamp(26px, 3.45vw, 44px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.46;
  color: var(--tl);
  max-width: 920px;
  margin: 0 auto 36px;
  position: relative;
  z-index: 1;
}

.sf-testi cite {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.46);
  font-style: normal;
}

.sf-findus {
  background: var(--db);
  padding: 128px 24px;
  position: relative;
  overflow: hidden;
}

.sf-findus::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 45%;
  background: linear-gradient(to left, rgba(92, 46, 10, 0.18), transparent);
  pointer-events: none;
}

.sf-findus-in {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 96px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.sf-findus h2 {
  font-family: var(--sf-heading-font);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  color: var(--tl);
  line-height: 1.02;
  margin-bottom: 10px;
}

.sf-findus h2 em {
  font-style: italic;
  color: var(--wg);
}

.sf-addr-block {
  margin-top: 48px;
  padding-top: 42px;
  border-top: 1px solid rgba(245, 237, 216, 0.07);
}

.sf-addr-row {
  display: flex;
  gap: 24px;
  margin-bottom: 30px;
}

.sf-addr-lbl {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--wg);
  min-width: 76px;
  padding-top: 3px;
}

.sf-addr-val {
  font-size: 15px;
  color: rgba(245, 237, 216, 0.74);
  line-height: 1.78;
  max-width: 34rem;
}

.sf-addr-val a {
  color: var(--wg);
  text-decoration: none;
  border-bottom: 1px solid rgba(200, 144, 42, 0.25);
}

.sf-hours-panel {
  border: 1px solid rgba(245, 237, 216, 0.08);
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.035),
    rgba(255, 255, 255, 0.012)
  );
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16);
}

.sf-hours-head {
  padding: 30px 38px 22px;
  border-bottom: 1px solid rgba(245, 237, 216, 0.07);
  font-family: var(--sf-heading-font);
  font-size: 24px;
  font-weight: 600;
  color: var(--tl);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sf-open-badge {
  font-family: var(--sf-body-font);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: rgba(42, 74, 30, 0.45);
  color: #a8d89a;
  border: 1px solid rgba(168, 216, 154, 0.22);
  padding: 5px 12px;
}

.sf-hours-body {
  padding: 10px 38px 30px;
}

.sf-hr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid rgba(245, 237, 216, 0.05);
  font-size: 13px;
}

.sf-hr:last-child {
  border-bottom: none;
}

.sf-hr-day {
  color: rgba(245, 237, 216, 0.4);
}

.sf-hr-time {
  color: var(--tl);
  font-weight: 500;
}

.sf-hr-time.cl {
  color: rgba(245, 237, 216, 0.18);
  font-family: var(--sf-heading-font);
  font-style: italic;
  font-size: 15px;
}

.sf-hr-time.op {
  color: var(--lg);
}

.sf-map-btn {
  display: block;
  padding: 20px 36px;
  background: var(--wg);
  color: var(--db);
  font-family: var(--sf-body-font);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
}

.sf-map-btn:hover {
  background: var(--lg);
  color: var(--db);
}

.sf-order {
  background: var(--sr);
  padding: 104px 24px 82px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sf-order::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(59, 26, 8, 0.28) 0%,
    transparent 50%,
    rgba(59, 26, 8, 0.18) 100%
  );
}

.sf-order h2 {
  font-family: var(--sf-heading-font);
  font-size: clamp(36px, 5.2vw, 64px);
  font-weight: 300;
  font-style: italic;
  color: var(--tl);
  margin-bottom: 14px;
  position: relative;
}

.sf-order p {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.46);
  margin-bottom: 42px;
  line-height: 1.82;
  position: relative;
}

.sf-site-footer {
  background: linear-gradient(
    to bottom,
    rgba(59, 26, 8, 0.56),
    rgba(0, 0, 0, 0.42)
  );
  padding: 38px 24px 44px;
  text-align: center;
  border-top: 1px solid rgba(200, 144, 42, 0.14);
}

.sf-site-footer-in {
  max-width: 1180px;
  margin: 0 auto;
}

.sf-footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
  margin-bottom: 16px;
}

.sf-footer-legal a {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.58);
  text-decoration: none;
}

.sf-footer-legal a:hover,
.sf-footer-legal a:focus {
  color: var(--wg);
}

.sf-site-footer p {
  margin: 0;
  font-size: 11px;
  color: rgba(245, 237, 216, 0.3);
  letter-spacing: 0.14em;
  line-height: 1.9;
}




.sf-site-footer a {
  color: var(--wg);
  text-decoration: none;
}

@media (max-width: 768px) {
  .sf-page-hero {
    min-height: 58vh;
    padding: calc(var(--sf-nav-height, 86px) + 32px) 20px 64px;
  }

  .sf-page-hero-inner {
    min-width: 0;
    width: 100%;
  }

  .sf-page-hero h1,
  .sf-page-hero-sub {
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .sf-site-footer-in {
    min-width: 0;
  }

  .sf-footer-legal {
    gap: 10px 18px;
  }

  .sf-site-footer p {
    max-width: 100%;
  }
}

.sf-notice-link {
  margin-top: 22px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(74, 40, 16, 0.8);
}

.sf-notice-link a {
  color: var(--sr);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sf-notice-link a:hover,
.sf-notice-link a:focus {
  color: var(--db);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

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

@keyframes sfDot {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  55% {
    transform: translateY(12px);
    opacity: 0;
  }

  56% {
    transform: translateY(0);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes sfFU {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sfTick {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes slowSpin {
  to {
    transform: rotate(360deg);
  }
}

.admin-bar .sf-site-nav {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .sf-site-nav {
    top: 46px;
  }
}

@media (max-width: 768px) {
  .sf-site-nav {
    padding: 12px 14px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    justify-content: space-between;
    background: linear-gradient(to bottom, rgba(12, 5, 2, 0.96), rgba(18, 8, 3, 0.92));
    border-bottom: 1px solid rgba(232, 184, 75, 0.12);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    overflow: visible;
  }

  .sf-site-nav.is-open {
    overflow: visible;
  }

  .sf-nav-logo {
    max-width: min(58vw, 210px);
  }

  .sf-nav-logo-image {
    height: clamp(42px, 10vw, 54px);
    transform: none;
  }

  .sf-hero {
    min-height: 80vh;
    padding: 116px 20px 40px;
  }

  .sf-hero-sub {
    font-size: clamp(18px, 5.5vw, 24px);
  }

  .sf-hero-tag {
    font-size: 10px;
    letter-spacing: 0.22em;
  }

  .sf-nav-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .sf-site-nav-menu {
    overflow: visible;
  }

  .sf-nav-panel {
    position: fixed;
    top: calc(var(--sf-nav-bottom, 86px) + 8px);
    left: 12px;
    right: 12px;
    width: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
    align-content: start;
    gap: 16px;
    padding: 16px;
    border: 1px solid rgba(245, 237, 216, 0.1);
    border-radius: 20px;
    background: rgba(12, 5, 2, 0.98);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.34);
    max-height: calc(100dvh - var(--sf-nav-bottom, 86px) - 20px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .sf-site-nav.is-open .sf-nav-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .sf-site-nav.is-open .sf-nav-links > li,
  .sf-site-nav.is-open .sf-nav-links .sub-menu {
    visibility: visible;
  }

  .sf-nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .sf-nav-links > li,
  .sf-nav-links > .menu-item-has-children {
    width: 100%;
  }

  .sf-nav-links > li + li {
    border-top: 1px solid rgba(245, 237, 216, 0.08);
  }

  .sf-nav-links > .menu-item-has-children::before {
    display: none;
  }

  .sf-nav-links > li > a {
    padding: 12px 0;
    font-size: 10px;
    letter-spacing: 0.2em;
    line-height: 1.4;
  }

  .sf-nav-links > .menu-item-has-children > a {
    padding-right: 0;
  }

  .sf-nav-links > .menu-item-has-children > a::after {
    display: none;
  }

  .sf-nav-links .sub-menu {
    display: block;
    position: static;
    width: 100%;
    min-width: 0;
    margin: 0 0 12px;
    padding: 6px 0 0 14px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .sf-nav-links .sub-menu li + li {
    border-top: none;
  }

  .sf-nav-links .sub-menu a {
    padding: 8px 0;
    font-size: 9px;
    letter-spacing: 0.16em;
    color: rgba(245, 237, 216, 0.62);
  }

  .sf-hero-logo-shell {
    width: min(96vw, 640px);
    margin-bottom: 0;
  }

  .sf-hero-logo-image {
    max-height: clamp(200px, 48vw, 320px);
  }

  .sf-nav-cta {
    grid-column: 1 / -1;
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 18px;
  }

  .sf-heritage-in,
  .sf-founder-in,
  .sf-findus-in {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .sf-menu-grid,
  .sf-pillars,
  .sf-cater-grid,
  .sf-reviews {
    grid-template-columns: 1fr;
  }

  .sf-stats {
    grid-template-columns: 1fr 1fr;
  }

  .sf-pillar {
    border-right: none;
    border-bottom: 1px solid rgba(245, 237, 216, 0.07);
  }

  .sf-emblem {
    display: none;
  }

  .sf-testi {
    padding: 110px 20px 102px;
  }

  .sf-testi blockquote {
    font-size: clamp(24px, 8.4vw, 34px);
  }

  .sf-findus {
    padding: 108px 20px;
  }

  .sf-addr-row {
    flex-direction: column;
    gap: 8px;
  }

  .sf-hours-head {
    padding: 24px 24px 18px;
    font-size: 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sf-hours-body {
    padding: 8px 24px 24px;
  }

  .sf-map-btn {
    padding: 18px 24px;
  }

  .sf-order {
    padding: 88px 20px 70px;
  }

  .sf-order p {
    letter-spacing: 0.18em;
  }

  .sf-site-footer {
    padding: 34px 20px 38px;
  }
}

@media (min-width: 769px) and (max-width: 1360px) {
  .sf-site-nav {
    padding-left: 24px;
    padding-right: 24px;
    gap: 24px;
  }

  .sf-nav-logo {
    max-width: min(28vw, 330px);
  }

  .sf-nav-logo-image {
    height: clamp(58px, 4.8vw, 74px);
  }

  .sf-nav-panel {
    gap: 18px;
  }

  .sf-nav-links {
    gap: clamp(12px, 1vw, 16px);
  }

  .sf-nav-links a {
    font-size: 10px;
    letter-spacing: 0.14em;
  }

  .sf-nav-cta {
    font-size: 8.4px;
    letter-spacing: 0.14em;
    padding: 10px 15px;
  }
}

.sf-about-shell {
  background: var(--db);
  color: var(--tl);
}

.sf-page-hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 24px 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 120% 80% at 50% 110%, rgba(92, 46, 10, 0.95) 0%, transparent 65%),
    radial-gradient(ellipse 60% 50% at 15% 10%, rgba(139, 0, 0, 0.18) 0%, transparent 55%),
    linear-gradient(to bottom, rgba(8, 4, 2, 1) 0%, rgba(30, 12, 4, 1) 60%, rgba(59, 26, 8, 1) 100%);
}

.sf-page-hero canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.sf-page-hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.sf-page-hero h1 {
  font-family: var(--sf-heading-font);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300;
  line-height: 0.88;
  color: var(--tl);
  letter-spacing: -0.02em;
  animation: sfFU 0.9s 0.25s both;
}

.sf-page-hero h1 em {
  font-style: italic;
  color: var(--wg);
}

.sf-page-hero .eyebrow {
  animation: sfFU 0.8s 0.1s both;
}

.sf-page-hero-sub {
  font-family: var(--sf-heading-font);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 237, 216, 0.5);
  margin-top: 20px;
  animation: sfFU 0.9s 0.4s both;
  max-width: 600px;
}

.sf-gold-rule {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200, 144, 42, 0.4), transparent);
}

.sf-intro {
  background: var(--ow);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.sf-intro::after {
  content: "SAFARI";
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: var(--sf-heading-font);
  font-size: min(20vw, 200px);
  font-weight: 700;
  font-style: italic;
  color: rgba(59, 26, 8, 0.04);
  pointer-events: none;
  line-height: 1;
}

.sf-intro-in {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.sf-intro .eyebrow,
.sf-ethos .eyebrow {
  color: var(--sr);
}

.sf-intro h2,
.sf-ethos h2 {
  font-family: var(--sf-heading-font);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--db);
  margin-bottom: 28px;
}

.sf-values-hd h2,
.sf-timeline-hd h2 {
  font-family: var(--sf-heading-font);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  line-height: 1.1;
}

.sf-intro h2 em,
.sf-values-hd h2 em,
.sf-timeline-hd h2 em,
.sf-ethos h2 em {
  font-style: italic;
  color: var(--sr);
}

.sf-values-hd h2 em,
.sf-timeline-hd h2 em {
  color: var(--wg);
}

.sf-intro p,
.sf-ethos p {
  font-size: 14.5px;
  line-height: 1.9;
  color: #4a2810;
  margin-bottom: 18px;
}

.sf-intro-panel {
  background: var(--db);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
}

.sf-intro-panel::before {
  content: "\201C";
  font-family: var(--sf-heading-font);
  font-size: 160px;
  color: rgba(200, 144, 42, 0.08);
  position: absolute;
  top: -20px;
  left: 20px;
  line-height: 1;
  pointer-events: none;
}

.sf-intro-panel blockquote {
  font-family: var(--sf-heading-font);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  font-style: italic;
  color: rgba(245, 237, 216, 0.85);
  line-height: 1.55;
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.sf-intro-panel cite {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.35);
  font-style: normal;
}

.sf-intro-panel .gold-bar {
  width: 40px;
  height: 2px;
  background: var(--wg);
  margin-bottom: 24px;
}

.sf-values {
  background: var(--db);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.sf-values::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(92, 46, 10, 0.5), transparent);
  pointer-events: none;
}

.sf-values-hd,
.sf-timeline-hd {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}

.sf-values-hd h2,
.sf-timeline-hd h2 {
  color: var(--tl);
}

.sf-values-hd p {
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(245, 237, 216, 0.45);
  margin-top: 16px;
}

.sf-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: 1140px;
  margin: 0 auto;
}

.sf-val {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 237, 216, 0.06);
  padding: 52px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s, border-color 0.35s;
}

.sf-val:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(200, 144, 42, 0.2);
}

.sf-val-num {
  font-family: var(--sf-heading-font);
  font-size: 80px;
  font-weight: 300;
  color: rgba(200, 144, 42, 0.1);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  transition: color 0.35s;
}

.sf-val:hover .sf-val-num {
  color: rgba(200, 144, 42, 0.2);
}

.sf-val h3 {
  font-family: var(--sf-heading-font);
  font-size: 24px;
  font-weight: 600;
  color: var(--tl);
  margin-bottom: 14px;
  line-height: 1.2;
}

.sf-val p {
  font-size: 13.5px;
  line-height: 1.85;
  color: rgba(245, 237, 216, 0.58);
}

.sf-val-icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}

.sf-timeline {
  background: var(--rb);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.sf-timeline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.15), transparent 60%);
  pointer-events: none;
}

.sf-tl-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.sf-tl-inner::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(200, 144, 42, 0.3) 10%, rgba(200, 144, 42, 0.3) 90%, transparent);
  transform: translateX(-50%);
}

.sf-tl-item {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  gap: 0;
  align-items: start;
  margin-bottom: 64px;
}

.sf-tl-item:last-child {
  margin-bottom: 0;
}

.sf-tl-left {
  padding-right: 40px;
  text-align: right;
}

.sf-tl-right {
  padding-left: 40px;
}

.sf-tl-dot {
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.sf-tl-dot span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--wg);
  border: 2px solid var(--rb);
  box-shadow: 0 0 0 4px rgba(200, 144, 42, 0.2);
  flex-shrink: 0;
}

.sf-tl-year {
  font-family: var(--sf-heading-font);
  font-size: 42px;
  font-weight: 300;
  color: var(--wg);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.sf-tl-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.35);
  margin-bottom: 0;
}

.sf-tl-title {
  font-family: var(--sf-heading-font);
  font-size: 22px;
  font-weight: 600;
  color: var(--tl);
  margin-bottom: 10px;
  line-height: 1.2;
}

.sf-tl-text {
  font-size: 13.5px;
  line-height: 1.82;
  color: rgba(245, 237, 216, 0.6);
}

.sf-tl-item.flip .sf-tl-left {
  text-align: left;
  padding-right: 0;
  padding-left: 40px;
  order: 3;
}

.sf-tl-item.flip .sf-tl-dot {
  order: 2;
}

.sf-tl-item.flip .sf-tl-right {
  padding-left: 0;
  padding-right: 40px;
  text-align: right;
  order: 1;
}

.sf-ethos {
  background: var(--ow);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.sf-ethos-in {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
  align-items: center;
}

.sf-ethos-emblem {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sf-ethos-mono {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sf-ethos-mono span {
  font-family: var(--sf-heading-font);
  font-size: 72px;
  font-weight: 300;
  font-style: italic;
  color: var(--sr);
  line-height: 1;
}

.sf-ethos-mono small {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(139, 0, 0, 0.45);
}

.sf-ethos-actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sf-cta-band {
  background: var(--sr);
  padding: 90px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sf-cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(59, 26, 8, 0.28) 0%, transparent 50%, rgba(59, 26, 8, 0.18) 100%);
}

.sf-cta-band h2 {
  font-family: var(--sf-heading-font);
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 300;
  font-style: italic;
  color: var(--tl);
  margin-bottom: 12px;
  position: relative;
}

.sf-cta-band p {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.38);
  margin-bottom: 36px;
  position: relative;
}

.sf-cta-band-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

@media (max-width: 768px) {
  .sf-page-hero {
    min-height: 58vh;
    padding: calc(var(--sf-nav-height, 86px) + 32px) 20px 64px;
  }

  .sf-page-hero h1 {
    font-size: clamp(42px, 11.5vw, 70px);
  }

  .sf-intro-in,
  .sf-ethos-in {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .sf-values-grid {
    grid-template-columns: 1fr;
  }

  .sf-tl-inner::before {
    left: 20px;
  }

  .sf-tl-item {
    grid-template-columns: 20px 1fr;
  }

  .sf-tl-left,
  .sf-tl-item.flip .sf-tl-left {
    display: none;
  }

  .sf-tl-dot,
  .sf-tl-item.flip .sf-tl-dot {
    order: 1;
    justify-content: flex-start;
    padding-top: 4px;
  }

  .sf-tl-right,
  .sf-tl-item.flip .sf-tl-right {
    order: 2;
    padding-left: 16px;
    padding-right: 0;
    text-align: left;
  }

  .sf-ethos-emblem {
    display: none;
  }
}

.sf-catering-shell {
  background: var(--db);
  color: var(--tl);
}

.sf-catering-template .sf-intro::after {
  content: "FEAST";
  right: -10px;
  font-size: min(20vw, 210px);
}

.sf-catering-template .sf-intro h2 {
  font-size: clamp(36px, 5vw, 54px);
}

.sf-intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 8px;
}

.sf-istat {
  padding: 32px 24px;
  text-align: center;
}

.sf-istat:nth-child(1) {
  background: var(--db);
}

.sf-istat:nth-child(2) {
  background: var(--sr);
}

.sf-istat:nth-child(3) {
  background: var(--rb);
}

.sf-istat:nth-child(4) {
  background: var(--fg);
}

.sf-istat-n {
  font-family: var(--sf-heading-font);
  font-size: 44px;
  font-weight: 300;
  color: var(--wg);
  line-height: 1;
  display: block;
  margin-bottom: 6px;
}

.sf-istat-l {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.5);
}

.sf-istat-stars {
  font-size: 18px;
  letter-spacing: 2px;
}

.sf-services {
  background: var(--db);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.sf-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(92, 46, 10, 0.4), transparent);
  pointer-events: none;
}

.sf-services-hd,
.sf-how-hd {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 80px;
}

.sf-services-hd h2,
.sf-how-hd h2 {
  font-family: var(--sf-heading-font);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  color: var(--tl);
  line-height: 1.1;
}

.sf-services-hd h2 em,
.sf-how-hd h2 em {
  font-style: italic;
  color: var(--wg);
}

.sf-services-hd p,
.sf-how-hd p {
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(245, 237, 216, 0.45);
  margin-top: 16px;
}

.sf-svc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  max-width: 1140px;
  margin: 0 auto;
}

.sf-svc {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 237, 216, 0.06);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s, border-color 0.35s;
}

.sf-svc::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--wg), var(--lg));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.sf-svc:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(200, 144, 42, 0.18);
}

.sf-svc:hover::after {
  transform: scaleX(1);
}

.sf-svc-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 20px;
}

.sf-svc h3 {
  font-family: var(--sf-heading-font);
  font-size: 32px;
  font-weight: 600;
  color: var(--tl);
  margin-bottom: 16px;
  line-height: 1.1;
}

.sf-svc p {
  font-size: 13.5px;
  line-height: 1.85;
  color: rgba(245, 237, 216, 0.6);
  margin-bottom: 20px;
}

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

.sf-svc-list li {
  font-size: 12.5px;
  color: rgba(245, 237, 216, 0.5);
  padding: 7px 0;
  border-bottom: 1px solid rgba(245, 237, 216, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.sf-svc-list li::before {
  content: "✦";
  color: var(--wg);
  font-size: 9px;
  flex-shrink: 0;
}

.sf-svc-list li:last-child {
  border-bottom: none;
}

.sf-how {
  background: var(--rb);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.sf-how::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.15), transparent 60%);
  pointer-events: none;
}

.sf-how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1140px;
  margin: 0 auto;
  border: 1px solid rgba(245, 237, 216, 0.07);
}

.sf-step {
  padding: 52px 36px;
  border-right: 1px solid rgba(245, 237, 216, 0.07);
  text-align: center;
  position: relative;
}

.sf-step:last-child {
  border-right: none;
}

.sf-step-n {
  font-family: var(--sf-heading-font);
  font-size: 72px;
  font-weight: 300;
  color: rgba(200, 144, 42, 0.15);
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.sf-step-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 16px;
}

.sf-step h3 {
  font-family: var(--sf-heading-font);
  font-size: 20px;
  font-weight: 600;
  color: var(--tl);
  margin-bottom: 10px;
}

.sf-step p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(245, 237, 216, 0.55);
}

.sf-step::after {
  content: "→";
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(200, 144, 42, 0.3);
  font-size: 24px;
  z-index: 1;
}

.sf-step:last-child::after {
  display: none;
}

.sf-event-menu {
  background: var(--ow);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.sf-event-menu::after {
  content: "MENU";
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: var(--sf-heading-font);
  font-size: min(18vw, 200px);
  font-weight: 700;
  font-style: italic;
  color: rgba(59, 26, 8, 0.04);
  pointer-events: none;
  line-height: 1;
}

.sf-event-menu-hd {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 72px;
}

.sf-event-menu-hd .eyebrow {
  color: var(--sr);
}

.sf-event-menu-hd h2 {
  font-family: var(--sf-heading-font);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  color: var(--db);
  line-height: 1.1;
}

.sf-event-menu-hd h2 em {
  font-style: italic;
  color: var(--sr);
}

.sf-event-menu-hd p {
  font-size: 13.5px;
  line-height: 1.8;
  color: #6b4020;
  margin-top: 16px;
}

.sf-em-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: 1140px;
  margin: 0 auto 52px;
}

.sf-em-item {
  background: #fff;
  padding: 36px 28px;
  border-bottom: 3px solid transparent;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.sf-em-item:hover {
  border-bottom-color: var(--sr);
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(59, 26, 8, 0.1);
}

.sf-em-tag {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--wg);
  margin-bottom: 12px;
  display: block;
}

.sf-em-name {
  font-family: var(--sf-heading-font);
  font-size: 24px;
  font-weight: 600;
  color: var(--db);
  margin-bottom: 8px;
}

.sf-em-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #6b4020;
}

.sf-event-menu-cta {
  text-align: center;
}

.sf-catering-quote-btn {
  background: var(--sr);
  color: var(--tl);
}

.sf-catering-quote-btn:hover {
  color: var(--tl);
}

.sf-catering-template .sf-testi {
  background: var(--sr);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sf-catering-template .sf-testi::before {
  content: "\201C";
  font-family: var(--sf-heading-font);
  font-size: min(36vw, 440px);
  font-weight: 700;
  color: rgba(245, 237, 216, 0.04);
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}

.sf-catering-template .sf-testi-div {
  width: 1px;
  height: 44px;
  background: rgba(200, 144, 42, 0.4);
  margin: 0 auto 32px;
}

.sf-catering-template .sf-testi blockquote {
  font-family: var(--sf-heading-font);
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  color: var(--tl);
  max-width: 800px;
  margin: 0 auto 28px;
  position: relative;
  z-index: 1;
}

.sf-catering-template .sf-testi cite {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.38);
  font-style: normal;
}

.sf-catering-template .sf-cta-band {
  background: var(--db);
  padding: 90px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(200, 144, 42, 0.1);
}

.sf-catering-template .sf-cta-band::before {
  display: none;
}

.sf-catering-template .sf-cta-band h2 {
  font-family: var(--sf-heading-font);
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 300;
  font-style: italic;
  color: var(--tl);
  margin-bottom: 12px;
}

.sf-catering-template .sf-cta-band p {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.35);
  margin-bottom: 36px;
}

.sf-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .sf-svc-grid {
    grid-template-columns: 1fr;
  }

  .sf-how-steps {
    grid-template-columns: 1fr 1fr;
  }

  .sf-step::after {
    display: none;
  }

  .sf-em-grid {
    grid-template-columns: 1fr;
  }
}

.sf-contact-shell {
  background: var(--db);
  color: var(--tl);
}

.sf-contact-main {
  background: var(--ow);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.sf-contact-main::after {
  content: "HELLO";
  position: absolute;
  bottom: -40px;
  right: -10px;
  font-family: var(--sf-heading-font);
  font-size: min(20vw, 210px);
  font-weight: 700;
  font-style: italic;
  color: rgba(59, 26, 8, 0.04);
  pointer-events: none;
  line-height: 1;
}

.sf-contact-in {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}

.sf-contact-info .eyebrow {
  color: var(--sr);
}

.sf-contact-info h2 {
  font-family: var(--sf-heading-font);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--db);
  margin-bottom: 24px;
}

.sf-contact-info h2 em {
  font-style: italic;
  color: var(--sr);
}

.sf-contact-info p {
  font-size: 14px;
  line-height: 1.9;
  color: #4a2810;
  margin-bottom: 40px;
}

.sf-cdetail {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(59, 26, 8, 0.08);
}

.sf-cdetail:last-of-type {
  border-bottom: none;
}

.sf-cdetail-icon {
  width: 44px;
  height: 44px;
  background: var(--db);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.sf-cdetail-label {
  font-size: 8.5px;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--wg);
  display: block;
  margin-bottom: 5px;
}

.sf-cdetail-val {
  font-size: 14px;
  color: var(--db);
  line-height: 1.6;
}

.sf-cdetail-val a {
  color: var(--sr);
  text-decoration: none;
  border-bottom: 1px solid rgba(139, 0, 0, 0.2);
}

.sf-cdetail-val a:hover {
  border-color: var(--sr);
  color: var(--sr);
}

.sf-hours-compact {
  margin-top: 8px;
}

.sf-hrow {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(59, 26, 8, 0.06);
}

.sf-hrow:last-child {
  border-bottom: none;
}

.sf-hrow-day {
  color: #6b4020;
}

.sf-hrow-time {
  color: var(--db);
  font-weight: 500;
}

.sf-hrow-time.cl {
  color: rgba(59, 26, 8, 0.35);
  font-style: italic;
  font-family: var(--sf-heading-font);
}

.sf-hrow-time.op {
  color: var(--fg);
  font-weight: 600;
}

.sf-form-wrap {
  background: var(--db);
  padding: 56px 48px;
  position: relative;
  overflow: hidden;
}

.sf-form-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--wg), var(--lg));
}

.sf-form-title {
  font-family: var(--sf-heading-font);
  font-size: 28px;
  font-weight: 600;
  color: var(--tl);
  margin-bottom: 8px;
}

.sf-form-sub {
  font-size: 13px;
  color: rgba(245, 237, 216, 0.45);
  margin-bottom: 36px;
  line-height: 1.6;
}

.sf-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.sf-form-row.full {
  grid-template-columns: 1fr;
}

.sf-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sf-field label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245, 237, 216, 0.45);
}

.sf-field input,
.sf-field select,
.sf-field textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(245, 237, 216, 0.12);
  color: var(--tl);
  font-family: var(--sf-body-font);
  font-size: 13.5px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  -webkit-appearance: none;
  appearance: none;
}

.sf-field input::placeholder,
.sf-field textarea::placeholder {
  color: rgba(245, 237, 216, 0.25);
}

.sf-field input:focus,
.sf-field select:focus,
.sf-field textarea:focus {
  border-color: rgba(200, 144, 42, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.sf-field select {
  cursor: pointer;
  color: rgba(245, 237, 216, 0.6);
}

.sf-field select option {
  background: var(--db);
  color: var(--tl);
}

.sf-field textarea {
  min-height: 120px;
  resize: vertical;
}

.sf-form-actions {
  margin-top: 24px;
}

.sf-form-note {
  font-size: 11px;
  color: rgba(245, 237, 216, 0.3);
  margin-top: 12px;
  line-height: 1.6;
}

.sf-form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.sf-form-success.visible {
  display: block;
}

.sf-form-success-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}

.sf-form-success h3 {
  font-family: var(--sf-heading-font);
  font-size: 28px;
  font-weight: 300;
  color: var(--tl);
  margin-bottom: 10px;
}

.sf-form-success p {
  font-size: 13.5px;
  color: rgba(245, 237, 216, 0.55);
  line-height: 1.7;
}

.btn-fire-full {
  font-family: var(--sf-body-font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--wg);
  color: var(--db);
  padding: 18px 42px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s;
}

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

.sf-contact-template .sf-findus {
  background: var(--db);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.sf-contact-template .sf-findus::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  background: linear-gradient(to left, rgba(92, 46, 10, 0.15), transparent);
  pointer-events: none;
}

.sf-contact-template .sf-findus-in {
  align-items: start;
  position: relative;
  z-index: 1;
}

.sf-faq {
  background: var(--rb);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.sf-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.15), transparent 60%);
  pointer-events: none;
}

.sf-faq-hd {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

.sf-faq-hd h2 {
  font-family: var(--sf-heading-font);
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 300;
  color: var(--tl);
  line-height: 1.1;
}

.sf-faq-hd h2 em {
  font-style: italic;
  color: var(--wg);
}

.sf-faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sf-faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 237, 216, 0.07);
  overflow: hidden;
}

.sf-faq-q {
  width: 100%;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.25s;
  background: transparent;
  border: 0;
  text-align: left;
}

.sf-faq-q:hover {
  background: rgba(255, 255, 255, 0.04);
}

.sf-faq-q-text {
  font-family: var(--sf-heading-font);
  font-size: 20px;
  font-weight: 600;
  color: var(--tl);
  line-height: 1.3;
  padding-right: 20px;
}

.sf-faq-icon {
  color: var(--wg);
  font-size: 20px;
  flex-shrink: 0;
  transition: transform 0.3s;
  line-height: 1;
}

.sf-faq-item.open .sf-faq-icon {
  transform: rotate(45deg);
}

.sf-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.sf-faq-item.open .sf-faq-a {
  max-height: 400px;
}

.sf-faq-a-inner {
  padding: 20px 28px 24px;
  font-size: 13.5px;
  line-height: 1.85;
  color: rgba(245, 237, 216, 0.6);
  border-top: 1px solid rgba(245, 237, 216, 0.06);
}

@media (max-width: 768px) {
  .sf-contact-in,
  .sf-contact-template .sf-findus-in {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .sf-form-row {
    grid-template-columns: 1fr;
  }

  .sf-form-wrap {
    padding: 36px 24px;
  }
}

@media (max-width: 560px) {
  .sf-page-hero {
    min-height: 52vh;
    padding: calc(var(--sf-nav-height, 86px) + 24px) 16px 52px;
  }

  .sf-page-hero-inner,
  .sf-intro-in,
  .sf-values-grid,
  .sf-tl-inner,
  .sf-ethos-in,
  .sf-contact-in,
  .sf-contact-template .sf-findus-in,
  .sf-faq-grid,
  .sf-booking-intro-in,
  .sf-booking-form-shell,
  .sf-booking-reassure-grid,
  .sf-booking-support-in {
    min-width: 0;
  }

  .sf-page-hero h1 {
    font-size: clamp(38px, 11vw, 56px);
    line-height: 0.94;
    max-width: 9ch;
  }

  .sf-page-hero-sub {
    font-size: clamp(15px, 4.5vw, 18px);
    line-height: 1.45;
    max-width: 32ch;
  }

  body.sf-about-template .sf-intro,
  body.sf-about-template .sf-values,
  body.sf-about-template .sf-timeline,
  body.sf-about-template .sf-ethos,
  body.sf-about-template .sf-cta-band {
    padding: 88px 16px;
  }

  body.sf-about-template .sf-intro-in,
  body.sf-about-template .sf-ethos-in {
    gap: 32px;
  }

  body.sf-about-template .sf-intro-panel {
    padding: 36px 24px;
  }

  body.sf-about-template .sf-values-hd,
  body.sf-about-template .sf-timeline-hd {
    margin-bottom: 44px;
  }

  body.sf-about-template .sf-values-grid {
    gap: 12px;
  }

  body.sf-about-template .sf-val {
    padding: 34px 24px;
  }

  body.sf-about-template .sf-val-num {
    font-size: 48px;
  }

  body.sf-about-template .sf-val h3 {
    font-size: 22px;
  }

  body.sf-about-template .sf-tl-inner::before {
    left: 14px;
  }

  body.sf-about-template .sf-tl-item {
    grid-template-columns: 14px minmax(0, 1fr);
    gap: 14px;
    margin-bottom: 40px;
  }

  body.sf-about-template .sf-tl-right,
  body.sf-about-template .sf-tl-item.flip .sf-tl-right {
    padding-left: 0;
  }

  body.sf-about-template .sf-ethos-actions,
  body.sf-about-template .sf-cta-band-btns {
    width: 100%;
    gap: 12px;
  }

  body.sf-about-template .sf-ethos-actions > *,
  body.sf-about-template .sf-cta-band-btns > * {
    width: 100%;
    text-align: center;
  }

  body.sf-contact-template .sf-contact-main,
  body.sf-contact-template .sf-findus,
  body.sf-contact-template .sf-faq {
    padding: 88px 16px;
  }

  body.sf-contact-template .sf-contact-in,
  body.sf-contact-template .sf-findus-in {
    gap: 32px;
  }

  body.sf-contact-template .sf-contact-info,
  body.sf-contact-template .sf-form-wrap,
  body.sf-contact-template .sf-hours-panel {
    min-width: 0;
  }

  body.sf-contact-template .sf-contact-info p {
    margin-bottom: 24px;
  }

  body.sf-contact-template .sf-cdetail {
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 18px;
  }

  body.sf-contact-template .sf-cdetail-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  body.sf-contact-template .sf-form-wrap {
    padding: 28px 20px;
  }

  body.sf-contact-template .sf-form-title {
    font-size: 24px;
  }

  body.sf-contact-template .sf-form-row {
    gap: 14px;
  }

  body.sf-contact-template .sf-field input,
  body.sf-contact-template .sf-field select,
  body.sf-contact-template .sf-field textarea {
    width: 100%;
    min-width: 0;
    font-size: 16px;
  }

  body.sf-contact-template .sf-hours-head {
    padding: 22px 20px 16px;
    font-size: 20px;
  }

  body.sf-contact-template .sf-hours-body {
    padding: 8px 20px 20px;
  }

  body.sf-contact-template .sf-map-btn {
    width: 100%;
    padding: 16px 20px;
    text-align: center;
  }

  body.sf-contact-template .sf-faq-hd {
    margin-bottom: 44px;
  }

  body.sf-contact-template .sf-faq-q {
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
  }

  body.sf-contact-template .sf-faq-q-text {
    font-size: 18px;
    padding-right: 0;
  }

  body.sf-contact-template .sf-faq-a-inner {
    padding: 16px 20px 20px;
  }

  body.sf-book-catering-template .sf-booking-intro,
  body.sf-book-catering-template .sf-booking-form-section,
  body.sf-book-catering-template .sf-booking-reassure,
  body.sf-book-catering-template .sf-booking-support {
    padding: 88px 16px;
  }

  body.sf-book-catering-template .sf-booking-intro-in,
  body.sf-book-catering-template .sf-booking-support-in {
    gap: 32px;
  }

  body.sf-book-catering-template .sf-booking-points,
  body.sf-book-catering-template .sf-booking-form-head,
  body.sf-book-catering-template .sf-booking-support-actions {
    min-width: 0;
  }

  body.sf-book-catering-template .sf-booking-point,
  body.sf-book-catering-template .sf-booking-reassure-card {
    padding: 30px 20px;
  }

  body.sf-book-catering-template .sf-booking-point-num {
    font-size: 36px;
  }

  body.sf-book-catering-template .sf-booking-point h3,
  body.sf-book-catering-template .sf-booking-reassure-card h3 {
    font-size: 22px;
  }

  body.sf-book-catering-template .sf-booking-form-head,
  body.sf-book-catering-template .sf-booking-reassure-hd {
    margin-bottom: 40px;
  }

  body.sf-book-catering-template .sf-booking-reassure-grid {
    gap: 12px;
  }

  body.sf-book-catering-template .sf-booking-support-actions {
    width: 100%;
    gap: 12px;
  }

  body.sf-book-catering-template .sf-booking-support-actions > * {
    width: 100%;
    text-align: center;
  }
}

.sf-booking-shell {
  background: var(--db);
  color: var(--tl);
}

.sf-booking-hero {
  min-height: 58vh;
}

.sf-booking-intro {
  background: var(--ow);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.sf-booking-intro::after {
  content: "QUOTE";
  position: absolute;
  bottom: -28px;
  right: -8px;
  font-family: var(--sf-heading-font);
  font-size: min(19vw, 210px);
  font-weight: 700;
  font-style: italic;
  color: rgba(59, 26, 8, 0.04);
  pointer-events: none;
  line-height: 1;
}

.sf-booking-intro-in {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 96px;
  align-items: start;
}

.sf-booking-intro .eyebrow,
.sf-booking-support .eyebrow {
  color: var(--sr);
}

.sf-booking-intro h2,
.sf-booking-support h2 {
  font-family: var(--sf-heading-font);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 300;
  line-height: 1.04;
  color: var(--db);
  margin-bottom: 24px;
}

.sf-booking-intro h2 em,
.sf-booking-support h2 em {
  font-style: italic;
  color: var(--sr);
}

.sf-booking-intro p,
.sf-booking-support p {
  font-size: 14.5px;
  line-height: 1.9;
  color: #4a2810;
  margin-bottom: 18px;
}

.sf-booking-points {
  display: grid;
  gap: 3px;
}

.sf-booking-point {
  background: #fff;
  padding: 34px 32px;
  border-left: 3px solid transparent;
  box-shadow: 0 18px 44px rgba(59, 26, 8, 0.06);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.sf-booking-point:hover {
  transform: translateY(-4px);
  border-left-color: var(--sr);
  box-shadow: 0 24px 54px rgba(59, 26, 8, 0.1);
}

.sf-booking-point-num {
  display: block;
  font-family: var(--sf-heading-font);
  font-size: 42px;
  font-weight: 300;
  color: rgba(139, 0, 0, 0.22);
  line-height: 1;
  margin-bottom: 10px;
}

.sf-booking-point h3 {
  font-family: var(--sf-heading-font);
  font-size: 26px;
  font-weight: 600;
  color: var(--db);
  margin-bottom: 10px;
}

.sf-booking-point p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.85;
  color: #6b4020;
}

.sf-booking-form-section {
  background: var(--db);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.sf-booking-form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(92, 46, 10, 0.42), transparent);
  pointer-events: none;
}

.sf-booking-form-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}

.sf-booking-form-head h2 {
  font-family: var(--sf-heading-font);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  color: var(--tl);
  line-height: 1.08;
}

.sf-booking-form-head h2 em {
  font-style: italic;
  color: var(--wg);
}

.sf-booking-form-head p {
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(245, 237, 216, 0.45);
}

.sf-booking-form-shell {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}

.sf-booking-reassure {
  background: var(--rb);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.sf-booking-reassure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.15), transparent 60%);
  pointer-events: none;
}

.sf-booking-reassure-hd {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 660px;
  margin: 0 auto 72px;
}

.sf-booking-reassure-hd h2 {
  font-family: var(--sf-heading-font);
  font-size: clamp(34px, 5vw, 50px);
  font-weight: 300;
  color: var(--tl);
  line-height: 1.08;
}

.sf-booking-reassure-hd h2 em {
  font-style: italic;
  color: var(--wg);
}

.sf-booking-reassure-grid {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.sf-booking-reassure-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 237, 216, 0.07);
  padding: 46px 38px;
}

.sf-booking-reassure-icon {
  display: block;
  font-size: 28px;
  margin-bottom: 16px;
}

.sf-booking-reassure-card h3 {
  font-family: var(--sf-heading-font);
  font-size: 28px;
  font-weight: 600;
  color: var(--tl);
  margin-bottom: 12px;
}

.sf-booking-reassure-card p {
  font-size: 13.5px;
  line-height: 1.86;
  color: rgba(245, 237, 216, 0.6);
  margin: 0;
}

.sf-booking-support {
  background: var(--ow);
  padding: 110px 24px;
}

.sf-booking-support-in {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
  gap: 72px;
  align-items: center;
}

.sf-booking-support-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.sf-booking-support .btn-outline {
  color: var(--db);
  border-color: rgba(59, 26, 8, 0.18);
  background: rgba(255, 255, 255, 0.5);
}

.sf-booking-support .btn-outline:hover,
.sf-booking-support .btn-outline:focus {
  color: var(--db);
  border-color: var(--wg);
  background: rgba(245, 237, 216, 0.9);
}

.sf-text-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sr);
  text-decoration: none;
}

.sf-text-link:hover,
.sf-text-link:focus {
  color: var(--rb);
}

@media (max-width: 768px) {
  .sf-booking-intro-in,
  .sf-booking-support-in {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .sf-booking-reassure-grid {
    grid-template-columns: 1fr;
  }

  .sf-booking-point,
  .sf-booking-reassure-card {
    padding: 34px 24px;
  }

  .sf-booking-form-section,
  .sf-booking-reassure,
  .sf-booking-support,
  .sf-booking-intro {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.sf-portal-page-shell {
  background: var(--db);
  color: var(--tl);
}

.sf-portal-hero {
  min-height: 58vh;
}

.sf-portal-intro {
  background: var(--ow);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.sf-portal-intro::after {
  content: "PORTAL";
  position: absolute;
  bottom: -30px;
  right: -10px;
  font-family: var(--sf-heading-font);
  font-size: min(19vw, 210px);
  font-weight: 700;
  font-style: italic;
  color: rgba(59, 26, 8, 0.04);
  pointer-events: none;
  line-height: 1;
}

.sf-portal-intro-in {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 96px;
  align-items: start;
}

.sf-portal-intro .eyebrow,
.sf-portal-support .eyebrow {
  color: var(--sr);
}

.sf-portal-intro h2,
.sf-portal-support h2 {
  font-family: var(--sf-heading-font);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 300;
  line-height: 1.04;
  color: var(--db);
  margin-bottom: 24px;
}

.sf-portal-intro h2 em,
.sf-portal-support h2 em {
  font-style: italic;
  color: var(--sr);
}

.sf-portal-intro p,
.sf-portal-support p {
  font-size: 14.5px;
  line-height: 1.9;
  color: #4a2810;
  margin-bottom: 18px;
}

.sf-portal-intro-cards {
  display: grid;
  gap: 3px;
}

.sf-portal-intro-card {
  background: #fff;
  padding: 34px 32px;
  border-left: 3px solid transparent;
  box-shadow: 0 18px 44px rgba(59, 26, 8, 0.06);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.sf-portal-intro-card:hover {
  transform: translateY(-4px);
  border-left-color: var(--sr);
  box-shadow: 0 24px 54px rgba(59, 26, 8, 0.1);
}

.sf-portal-intro-num {
  display: block;
  font-family: var(--sf-heading-font);
  font-size: 42px;
  font-weight: 300;
  color: rgba(139, 0, 0, 0.22);
  line-height: 1;
  margin-bottom: 10px;
}

.sf-portal-intro-card h3,
.sf-portal-how-card h3 {
  font-family: var(--sf-heading-font);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}

.sf-portal-intro-card h3 {
  color: var(--db);
}

.sf-portal-intro-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.85;
  color: #6b4020;
}

.sf-portal-section {
  background: var(--db);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.sf-portal-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(92, 46, 10, 0.42), transparent);
  pointer-events: none;
}

.sf-portal-section-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 72px;
}

.sf-portal-section-head h2,
.sf-portal-how-head h2 {
  font-family: var(--sf-heading-font);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  line-height: 1.08;
}

.sf-portal-section-head h2 {
  color: var(--tl);
}

.sf-portal-section-head h2 em,
.sf-portal-how-head h2 em {
  font-style: italic;
  color: var(--wg);
}

.sf-portal-section-head p {
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(245, 237, 216, 0.45);
}

.sf-portal-shortcode-shell {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}

.sf-portal-how {
  background: var(--rb);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.sf-portal-how::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.15), transparent 60%);
  pointer-events: none;
}

.sf-portal-how-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 660px;
  margin: 0 auto 72px;
}

.sf-portal-how-head h2 {
  color: var(--tl);
}

.sf-portal-how-grid {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.sf-portal-how-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 237, 216, 0.07);
  padding: 46px 38px;
}

.sf-portal-how-icon {
  display: block;
  font-size: 28px;
  margin-bottom: 16px;
}

.sf-portal-how-card h3 {
  color: var(--tl);
}

.sf-portal-how-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.86;
  color: rgba(245, 237, 216, 0.6);
}

.sf-portal-support {
  background: var(--ow);
  padding: 110px 24px;
}

.sf-portal-support-in {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
  gap: 72px;
  align-items: center;
}

.sf-portal-support-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.sf-portal-support .btn-outline {
  color: var(--db);
  border-color: rgba(59, 26, 8, 0.18);
  background: rgba(255, 255, 255, 0.5);
}

.sf-portal-support .btn-outline:hover,
.sf-portal-support .btn-outline:focus {
  color: var(--db);
  border-color: var(--wg);
  background: rgba(245, 237, 216, 0.9);
}

@media (max-width: 768px) {
  .sf-portal-intro-in,
  .sf-portal-support-in {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .sf-portal-how-grid {
    grid-template-columns: 1fr;
  }

  .sf-portal-intro-card,
  .sf-portal-how-card {
    padding: 34px 24px;
  }

  .sf-portal-intro,
  .sf-portal-section,
  .sf-portal-how,
  .sf-portal-support {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.sf-truck-page-shell {
  background: var(--db);
  color: var(--tl);
}

.sf-truck-hero {
  min-height: 58vh;
}

.sf-truck-intro {
  background: var(--ow);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.sf-truck-intro::after {
  content: "TRUCK";
  position: absolute;
  bottom: -30px;
  right: -10px;
  font-family: var(--sf-heading-font);
  font-size: min(19vw, 210px);
  font-weight: 700;
  font-style: italic;
  color: rgba(59, 26, 8, 0.04);
  pointer-events: none;
  line-height: 1;
}

.sf-truck-intro-in {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 96px;
  align-items: start;
}

.sf-truck-intro .eyebrow,
.sf-truck-support .eyebrow {
  color: var(--sr);
}

.sf-truck-intro h2,
.sf-truck-support h2 {
  font-family: var(--sf-heading-font);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 300;
  line-height: 1.04;
  color: var(--db);
  margin-bottom: 24px;
}

.sf-truck-intro h2 em,
.sf-truck-support h2 em {
  font-style: italic;
  color: var(--sr);
}

.sf-truck-intro p,
.sf-truck-support p {
  font-size: 14.5px;
  line-height: 1.9;
  color: #4a2810;
  margin-bottom: 18px;
}

.sf-truck-intro-cards {
  display: grid;
  gap: 3px;
}

.sf-truck-intro-card {
  background: #fff;
  padding: 34px 32px;
  border-left: 3px solid transparent;
  box-shadow: 0 18px 44px rgba(59, 26, 8, 0.06);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.sf-truck-intro-card:hover {
  transform: translateY(-4px);
  border-left-color: var(--sr);
  box-shadow: 0 24px 54px rgba(59, 26, 8, 0.1);
}

.sf-truck-intro-num {
  display: block;
  font-family: var(--sf-heading-font);
  font-size: 42px;
  font-weight: 300;
  color: rgba(139, 0, 0, 0.22);
  line-height: 1;
  margin-bottom: 10px;
}

.sf-truck-intro-card h3,
.sf-truck-how-card h3 {
  font-family: var(--sf-heading-font);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}

.sf-truck-intro-card h3 {
  color: var(--db);
}

.sf-truck-intro-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.85;
  color: #6b4020;
}

.sf-truck-status-section {
  background: var(--db);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.sf-truck-status-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(92, 46, 10, 0.42), transparent);
  pointer-events: none;
}

.sf-truck-status-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}

.sf-truck-status-head h2,
.sf-truck-how-head h2 {
  font-family: var(--sf-heading-font);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  line-height: 1.08;
}

.sf-truck-status-head h2 {
  color: var(--tl);
}

.sf-truck-status-head h2 em,
.sf-truck-how-head h2 em {
  font-style: italic;
  color: var(--wg);
}

.sf-truck-status-head p {
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(245, 237, 216, 0.45);
}

.sf-truck-shortcode-shell {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
}

.sf-truck-how {
  background: var(--rb);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.sf-truck-how::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.15), transparent 60%);
  pointer-events: none;
}

.sf-truck-how-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 660px;
  margin: 0 auto 72px;
}

.sf-truck-how-head h2 {
  color: var(--tl);
}

.sf-truck-how-grid {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.sf-truck-how-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 237, 216, 0.07);
  padding: 46px 38px;
}

.sf-truck-how-icon {
  display: block;
  font-size: 28px;
  margin-bottom: 16px;
}

.sf-truck-how-card h3 {
  color: var(--tl);
}

.sf-truck-how-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.86;
  color: rgba(245, 237, 216, 0.6);
}

.sf-truck-support {
  background: var(--ow);
  padding: 110px 24px;
}

.sf-truck-support-in {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
  gap: 72px;
  align-items: center;
}

.sf-truck-support-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.sf-truck-support .btn-outline {
  color: var(--db);
  border-color: rgba(59, 26, 8, 0.18);
  background: rgba(255, 255, 255, 0.5);
}

.sf-truck-support .btn-outline:hover,
.sf-truck-support .btn-outline:focus {
  color: var(--db);
  border-color: var(--wg);
  background: rgba(245, 237, 216, 0.9);
}

@media (max-width: 768px) {
  .sf-truck-intro-in,
  .sf-truck-support-in {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .sf-truck-how-grid {
    grid-template-columns: 1fr;
  }

  .sf-truck-intro-card,
  .sf-truck-how-card {
    padding: 34px 24px;
  }

  .sf-truck-intro,
  .sf-truck-status-section,
  .sf-truck-how,
  .sf-truck-support {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.sf-menu-page-shell {
  background: var(--db);
  color: var(--tl);
}

.sf-menu-hero {
  min-height: 58vh;
}

.sf-menu-intro {
  background: var(--ow);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.sf-menu-intro::after {
  content: "MENU";
  position: absolute;
  bottom: -30px;
  right: -10px;
  font-family: var(--sf-heading-font);
  font-size: min(19vw, 210px);
  font-weight: 700;
  font-style: italic;
  color: rgba(59, 26, 8, 0.04);
  pointer-events: none;
  line-height: 1;
}

.sf-menu-intro-in {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 96px;
  align-items: start;
}

.sf-menu-intro .eyebrow,
.sf-menu-cta .eyebrow {
  color: var(--sr);
}

.sf-menu-intro h2,
.sf-menu-cta h2 {
  font-family: var(--sf-heading-font);
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 300;
  line-height: 1.04;
  color: var(--db);
  margin-bottom: 24px;
}

.sf-menu-intro h2 em,
.sf-menu-cta h2 em {
  font-style: italic;
  color: var(--sr);
}

.sf-menu-intro p,
.sf-menu-cta p {
  font-size: 14.5px;
  line-height: 1.9;
  color: #4a2810;
  margin-bottom: 18px;
}

.sf-menu-intro-cards {
  display: grid;
  gap: 3px;
}

.sf-menu-intro-card {
  background: #fff;
  padding: 34px 32px;
  border-left: 3px solid transparent;
  box-shadow: 0 18px 44px rgba(59, 26, 8, 0.06);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.sf-menu-intro-card:hover {
  transform: translateY(-4px);
  border-left-color: var(--sr);
  box-shadow: 0 24px 54px rgba(59, 26, 8, 0.1);
}

.sf-menu-intro-num {
  display: block;
  font-family: var(--sf-heading-font);
  font-size: 42px;
  font-weight: 300;
  color: rgba(139, 0, 0, 0.22);
  line-height: 1;
  margin-bottom: 10px;
}

.sf-menu-intro-card h3,
.sf-menu-support-card h3 {
  font-family: var(--sf-heading-font);
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}

.sf-menu-intro-card h3 {
  color: var(--db);
}

.sf-menu-intro-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.85;
  color: #6b4020;
}

.sf-menu-display-section {
  background: var(--db);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.sf-menu-display-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(92, 46, 10, 0.42), transparent);
  pointer-events: none;
}

.sf-menu-display-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 72px;
}

.sf-menu-display-head h2,
.sf-menu-support-head h2 {
  font-family: var(--sf-heading-font);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 300;
  line-height: 1.08;
}

.sf-menu-display-head h2 {
  color: var(--tl);
}

.sf-menu-display-head h2 em,
.sf-menu-support-head h2 em {
  font-style: italic;
  color: var(--wg);
}

.sf-menu-display-head p {
  margin-top: 16px;
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(245, 237, 216, 0.45);
}

.sf-menu-shortcode-shell {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
}

.sf-menu-support {
  background: var(--rb);
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
}

.sf-menu-support::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 0, 0, 0.15), transparent 60%);
  pointer-events: none;
}

.sf-menu-support-head {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.sf-menu-support-head h2 {
  color: var(--tl);
}

.sf-menu-support-grid {
  position: relative;
  z-index: 1;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.sf-menu-support-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(245, 237, 216, 0.07);
  padding: 46px 38px;
}

.sf-menu-support-icon {
  display: block;
  font-size: 28px;
  margin-bottom: 16px;
}

.sf-menu-support-card h3 {
  color: var(--tl);
}

.sf-menu-support-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.86;
  color: rgba(245, 237, 216, 0.6);
}

.sf-menu-cta {
  background: var(--ow);
  padding: 110px 24px;
}

.sf-menu-cta-in {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.78fr);
  gap: 72px;
  align-items: center;
}

.sf-menu-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.sf-menu-cta .btn-outline {
  color: var(--db);
  border-color: rgba(59, 26, 8, 0.18);
  background: rgba(255, 255, 255, 0.5);
}

.sf-menu-cta .btn-outline:hover,
.sf-menu-cta .btn-outline:focus {
  color: var(--db);
  border-color: var(--wg);
  background: rgba(245, 237, 216, 0.9);
}

@media (max-width: 768px) {
  .sf-menu-intro-in,
  .sf-menu-cta-in {
    grid-template-columns: 1fr;
    gap: 52px;
  }

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

  .sf-menu-intro-card,
  .sf-menu-support-card {
    padding: 34px 24px;
  }

  .sf-menu-intro,
  .sf-menu-display-section,
  .sf-menu-support,
  .sf-menu-cta {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Mobile nav click-through fix
   Prevent hidden mobile menu links from staying clickable after the panel closes. */
@media (max-width: 768px) {
  .sf-site-nav:not(.is-open) .sf-nav-panel,
  .sf-site-nav:not(.is-open) .sf-nav-panel *,
  .sf-site-nav:not(.is-open) .sf-nav-links,
  .sf-site-nav:not(.is-open) .sf-nav-links *,
  .sf-site-nav:not(.is-open) .sub-menu,
  .sf-site-nav:not(.is-open) .sub-menu * {
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .sf-site-nav.is-open .sf-nav-panel {
    visibility: visible !important;
    pointer-events: auto !important;
  }

  .sf-site-nav.is-open .sf-nav-panel *,
  .sf-site-nav.is-open .sf-nav-links,
  .sf-site-nav.is-open .sf-nav-links *,
  .sf-site-nav.is-open .sub-menu,
  .sf-site-nav.is-open .sub-menu * {
    visibility: visible !important;
    pointer-events: auto !important;
  }
}

/* Order Now mobile-first UX tightening */
.sf-order-page-shell .sf-order-hero {
  min-height: 62vh;
}

.sf-order-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.sf-order-quick-status {
  background: var(--ow);
  padding: 64px 24px 72px;
}

.sf-order-status-card {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: center;
  padding: 34px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid rgba(59, 26, 8, 0.08);
  box-shadow: 0 22px 60px rgba(59, 26, 8, 0.08);
}

.sf-order-status-card .eyebrow {
  color: var(--sr);
}

.sf-order-status-card h2 {
  margin: 10px 0 12px;
  font-family: var(--sf-heading-font);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 400;
  line-height: 1.06;
  color: var(--db);
}

.sf-order-status-card p {
  max-width: 560px;
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: #4a2810;
}

.sf-order-status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.sf-order-status-item {
  min-height: 120px;
  padding: 22px 18px;
  border-radius: 18px;
  background: #f8efe2;
  border: 1px solid rgba(59, 26, 8, 0.08);
}

.sf-order-status-item span {
  display: block;
  margin-bottom: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(59, 26, 8, 0.56);
}

.sf-order-status-item strong {
  display: block;
  font-size: 17px;
  line-height: 1.28;
  color: var(--db);
}

.sf-order-flow-section {
  padding-top: 86px;
}

.sf-order-flow-section .sf-truck-status-head {
  margin-bottom: 34px;
}

.sf-order-allergy-note {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(245, 237, 216, 0.08);
  border: 1px solid rgba(232, 184, 75, 0.14);
  color: rgba(245, 237, 216, 0.82);
}

.sf-order-allergy-note strong {
  color: var(--sf-light-gold);
}

.sf-order-allergy-note span {
  color: rgba(245, 237, 216, 0.7);
}

.sf-order-allergy-note a {
  margin-left: auto;
  color: var(--sf-light-gold);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.sf-order-good-to-know {
  padding-top: 86px;
  padding-bottom: 86px;
}

.sf-order-support {
  padding-top: 86px;
  padding-bottom: 86px;
}

@media (max-width: 768px) {
  .sf-order-page-shell .sf-order-hero {
    min-height: 58vh;
  }

  .sf-order-hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 24px;
  }

  .sf-order-hero-actions .btn-fire,
  .sf-order-hero-actions .btn-outline {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .sf-order-quick-status {
    padding: 38px 18px 46px;
  }

  .sf-order-status-card {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 18px;
    border-radius: 22px;
  }

  .sf-order-status-card p {
    font-size: 14.5px;
    line-height: 1.7;
  }

  .sf-order-status-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sf-order-status-item {
    min-height: auto;
    padding: 18px;
  }

  .sf-order-status-item strong {
    font-size: 16px;
  }

  .sf-order-flow-section {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .sf-order-flow-section .sf-truck-status-head {
    margin-bottom: 24px;
  }

  .sf-order-allergy-note {
    display: block;
    padding: 16px;
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.55;
  }

  .sf-order-allergy-note strong,
  .sf-order-allergy-note span,
  .sf-order-allergy-note a {
    display: block;
  }

  .sf-order-allergy-note a {
    margin: 8px 0 0;
  }

  .sf-order-good-to-know,
  .sf-order-support {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

/* Order Now desktop-only layout fix */
@media (min-width: 769px) {
  body.sf-order-now-template .sf-order-quick-status {
    background: #fffaf0 !important;
    padding: 88px 48px 96px !important;
  }

  body.sf-order-now-template .sf-order-status-card {
    max-width: 1180px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr) !important;
    gap: 46px !important;
    align-items: center !important;
    padding: 42px !important;
    border-radius: 32px !important;
    background: #ffffff !important;
    border: 1px solid rgba(59, 26, 8, 0.1) !important;
    box-shadow: 0 28px 80px rgba(59, 26, 8, 0.12) !important;
  }

  body.sf-order-now-template .sf-order-status-card .eyebrow {
    color: #9d3b11 !important;
  }

  body.sf-order-now-template .sf-order-status-card h2 {
    margin: 12px 0 14px !important;
    color: #2b0d04 !important;
    font-size: 48px !important;
    line-height: 1.05 !important;
  }

  body.sf-order-now-template .sf-order-status-card p {
    max-width: 560px !important;
    margin: 0 !important;
    color: #4a2810 !important;
    font-size: 16px !important;
    line-height: 1.75 !important;
  }

  body.sf-order-now-template .sf-order-status-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  body.sf-order-now-template .sf-order-status-item {
    min-height: 132px !important;
    padding: 24px 20px !important;
    border-radius: 20px !important;
    background: #f8efe2 !important;
    border: 1px solid rgba(59, 26, 8, 0.1) !important;
  }

  body.sf-order-now-template .sf-order-status-item span {
    display: block !important;
    margin-bottom: 12px !important;
    color: rgba(59, 26, 8, 0.58) !important;
    font-size: 10px !important;
    font-weight: 800 !important;
    letter-spacing: 0.18em !important;
    text-transform: uppercase !important;
  }

  body.sf-order-now-template .sf-order-status-item strong {
    display: block !important;
    color: #2b0d04 !important;
    font-size: 18px !important;
    line-height: 1.3 !important;
  }

  body.sf-order-now-template .sf-order-flow-section {
    padding-top: 96px !important;
  }

  body.sf-order-now-template .sf-order-allergy-note {
    max-width: 1180px !important;
    margin: 0 auto 28px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 16px 20px !important;
    border-radius: 18px !important;
    background: rgba(255, 244, 223, 0.08) !important;
    border: 1px solid rgba(232, 184, 75, 0.2) !important;
    color: #fff4df !important;
  }

  body.sf-order-now-template .sf-order-allergy-note strong {
    color: #fff4df !important;
  }

  body.sf-order-now-template .sf-order-allergy-note span {
    color: rgba(255, 244, 223, 0.78) !important;
  }

  body.sf-order-now-template .sf-order-allergy-note a {
    margin-left: auto !important;
    color: #e8b84b !important;
    font-weight: 800 !important;
    text-decoration: underline !important;
    text-underline-offset: 4px !important;
  }
}

/* Menu page mobile-first UX tightening */
.sf-menu-display-priority {
  padding-top: 88px;
}

.sf-menu-display-priority .sf-menu-display-head {
  margin-bottom: 28px;
}

.sf-menu-context-card,
.sf-menu-allergy-card {
  max-width: 1120px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-radius: 22px;
  background: rgba(255, 244, 223, 0.08);
  border: 1px solid rgba(232, 184, 75, 0.2);
  color: #fff4df;
}

.sf-menu-context-card div,
.sf-menu-allergy-card {
  line-height: 1.55;
}

.sf-menu-context-card strong,
.sf-menu-allergy-card strong {
  display: block;
  color: #e8b84b;
  font-weight: 800;
}

.sf-menu-context-card span,
.sf-menu-allergy-card span {
  display: block;
  color: rgba(255, 244, 223, 0.82);
}

.sf-menu-context-card a,
.sf-menu-allergy-card a {
  margin-left: auto;
  color: #e8b84b;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
  white-space: nowrap;
}

.sf-menu-support-tight {
  padding-top: 86px;
}

.sf-menu-support-tight .sf-menu-support-head p {
  max-width: 620px;
  margin: 18px auto 0;
  color: rgba(245, 237, 216, 0.72);
  line-height: 1.75;
  text-align: center;
}

@media (max-width: 768px) {
  .sf-menu-display-priority {
    padding-top: 62px;
  }

  .sf-menu-display-priority .sf-menu-display-head {
    margin-bottom: 22px;
  }

  .sf-menu-context-card,
  .sf-menu-allergy-card {
    display: block;
    margin: 0 18px 18px;
    padding: 17px;
    border-radius: 20px;
    font-size: 14.5px;
  }

  .sf-menu-context-card a,
  .sf-menu-allergy-card a {
    display: block;
    margin: 10px 0 0;
    white-space: normal;
  }

  .sf-menu-support-tight {
    padding-top: 64px;
  }

  .sf-menu-support-tight .sf-menu-support-head p {
    font-size: 14.5px;
    line-height: 1.7;
  }
}

/* Menu page context card fix - matches Order Now polish */
body.sf-menu-template .sf-menu-context-card {
  max-width: 1120px !important;
  margin: 0 auto 28px !important;
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  padding: 22px 24px !important;
  border-radius: 24px !important;
  background: #fff4df !important;
  border: 1px solid rgba(232, 184, 75, 0.28) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18) !important;
  color: #2b0d04 !important;
}

body.sf-menu-template .sf-menu-context-card div {
  flex: 1 1 auto !important;
  line-height: 1.6 !important;
}

body.sf-menu-template .sf-menu-context-card strong {
  display: inline !important;
  color: #2b0d04 !important;
  font-weight: 800 !important;
}

body.sf-menu-template .sf-menu-context-card span {
  color: #4a2810 !important;
}

body.sf-menu-template .sf-menu-context-card a {
  flex: 0 0 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 46px !important;
  padding: 0 20px !important;
  border-radius: 999px !important;
  background: #e8b84b !important;
  color: #2b0d04 !important;
  font-weight: 900 !important;
  font-size: 12px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

body.sf-menu-template .sf-menu-context-card a:hover {
  background: #f4cf6a !important;
  color: #2b0d04 !important;
}

body.sf-menu-template .sf-menu-shortcode-shell {
  max-width: 1120px !important;
  margin: 0 auto !important;
}

@media (max-width: 768px) {
  body.sf-menu-template .sf-menu-context-card {
    display: block !important;
    margin: 0 18px 22px !important;
    padding: 20px 18px !important;
    border-radius: 22px !important;
  }

  body.sf-menu-template .sf-menu-context-card strong {
    display: block !important;
    margin-bottom: 4px !important;
    font-size: 16px !important;
  }

  body.sf-menu-template .sf-menu-context-card span {
    display: block !important;
    font-size: 14.5px !important;
    line-height: 1.65 !important;
  }

  body.sf-menu-template .sf-menu-context-card a {
    width: 100% !important;
    margin-top: 16px !important;
    min-height: 48px !important;
    text-align: center !important;
  }

  body.sf-menu-template .sf-menu-shortcode-shell {
    margin: 0 18px !important;
  }
}

/* Menu page context card fix - matches Order Now polish */
body.sf-menu-template .sf-menu-context-card {
  max-width: 1120px !important;
  margin: 0 auto 28px !important;
  display: flex !important;
  align-items: center !important;
  gap: 18px !important;
  padding: 22px 24px !important;
  border-radius: 24px !important;
  background: #fff4df !important;
  border: 1px solid rgba(232, 184, 75, 0.28) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18) !important;
  color: #2b0d04 !important;
}

body.sf-menu-template .sf-menu-context-card div {
  flex: 1 1 auto !important;
  line-height: 1.6 !important;
}

body.sf-menu-template .sf-menu-context-card strong {
  display: inline !important;
  color: #2b0d04 !important;
  font-weight: 800 !important;
}

body.sf-menu-template .sf-menu-context-card span {
  color: #4a2810 !important;
}

body.sf-menu-template .sf-menu-context-card a {
  flex: 0 0 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 46px !important;
  padding: 0 20px !important;
  border-radius: 999px !important;
  background: #e8b84b !important;
  color: #2b0d04 !important;
  font-weight: 900 !important;
  font-size: 12px !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

body.sf-menu-template .sf-menu-context-card a:hover {
  background: #f4cf6a !important;
  color: #2b0d04 !important;
}

body.sf-menu-template .sf-menu-shortcode-shell {
  max-width: 1120px !important;
  margin: 0 auto !important;
}

@media (max-width: 768px) {
  body.sf-menu-template .sf-menu-context-card {
    display: block !important;
    margin: 0 18px 22px !important;
    padding: 20px 18px !important;
    border-radius: 22px !important;
  }

  body.sf-menu-template .sf-menu-context-card strong {
    display: block !important;
    margin-bottom: 4px !important;
    font-size: 16px !important;
  }

  body.sf-menu-template .sf-menu-context-card span {
    display: block !important;
    font-size: 14.5px !important;
    line-height: 1.65 !important;
  }

  body.sf-menu-template .sf-menu-context-card a {
    width: 100% !important;
    margin-top: 16px !important;
    min-height: 48px !important;
    text-align: center !important;
  }

  body.sf-menu-template .sf-menu-shortcode-shell {
    margin: 0 18px !important;
  }
}