/* FryDine — Premium Street Food landing page styles */

:root {
  --accent: #F2B233;
  --bg: #111111;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #111111;
  color: #FFFFFF;
  font-family: 'Manrope', sans-serif;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  max-width: 100%;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

@keyframes fdFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes fdPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ============ NAV ============ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(17, 17, 17, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(242, 178, 51, 0.14);
}

.nav-logo-link {
  display: flex;
  align-items: center;
}

.nav-logo {
  height: 34px;
  width: auto;
  display: block;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.nav-link:hover {
  color: var(--accent);
}

.lang-group {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.lang-pill {
  padding: 6px 13px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.2s;
}

.lang-pill:hover {
  color: var(--accent);
}

.lang-pill.active {
  background: var(--accent);
  color: #111111;
}

.footer-lang-pill {
  padding: 9px 16px;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s;
}

.footer-lang-pill:hover {
  border-color: rgba(242, 178, 51, 0.7);
}

.footer-lang-pill.active {
  background: var(--accent);
  color: #111111;
  border-color: var(--accent);
}

.nav-cta {
  padding: 10px 22px;
  background: var(--accent);
  color: #111111;
  border-radius: 999px;
  font-weight: 700;
  white-space: nowrap;
  line-height: 1;
  flex: none;
  transition: all 0.2s;
}

.nav-cta:hover {
  background: #FFFFFF;
  color: #111111;
}

.nav-toggle {
  display: flex;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 18px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.nav-mobile-panel {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  z-index: 49;
  flex-direction: column;
  gap: 22px;
  padding: 24px 28px 30px;
  background: #111111;
  border-bottom: 1px solid rgba(242, 178, 51, 0.14);
}

.nav-mobile-panel.open {
  display: flex;
}

.nav-mobile-panel .nav-link {
  font-size: 15px;
}

/* ============ HERO ============ */

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 0;
  background: #111111;
}

.hero-image-wrap {
  position: relative;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
  mask-image: linear-gradient(to bottom, black 0%, black 92%, rgba(0, 0, 0, 0.7) 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 92%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 34px 48px 72px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.hero-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-badge-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 17px;
}

.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--accent);
}

.hero-lede {
  margin: 0;
  max-width: 680px;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 4px;
}

.btn-solid {
  padding: 17px 36px;
  background: var(--accent);
  color: #111111;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 0 36px rgba(242, 178, 51, 0.35);
  transition: transform 0.2s, background 0.2s;
  display: inline-block;
}

.btn-solid:hover {
  transform: translateY(-2px);
  background: #FFFFFF;
  color: #111111;
}

.btn-outline {
  padding: 17px 36px;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  color: #FFFFFF;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.2s, border 0.2s, color 0.2s;
  display: inline-block;
}

.btn-outline:hover {
  transform: translateY(-2px);
  border: 1.5px solid var(--accent);
  color: var(--accent);
}

/* ============ MENU / HOLY TRINITY ============ */

.menu-section {
  padding: 110px 48px;
  background: #141414;
  border-top: 1px solid rgba(242, 178, 51, 0.1);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  align-items: center;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--accent);
}

.section-title {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4.5vw, 52px);
  letter-spacing: -0.02em;
}

.section-subtitle {
  margin: 0;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
  line-height: 1.6;
}

.dish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.dish-card {
  display: flex;
  flex-direction: column;
  background: #191919;
  border: 1px solid rgba(242, 178, 51, 0.16);
  border-radius: 20px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}

.dish-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 0 1px rgba(242, 178, 51, 0.55), 0 24px 56px rgba(0, 0, 0, 0.55), 0 0 42px rgba(242, 178, 51, 0.14);
  border-color: rgba(242, 178, 51, 0.55);
}

.dish-image-frame {
  position: relative;
  height: 230px;
  background: #1E1C18;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.dish-image-zoom {
  width: 100%;
  height: 230px;
}

.dish-image {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.dish-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  background: rgba(17, 17, 17, 0.85);
  border: 1px solid rgba(242, 178, 51, 0.5);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.dish-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 26px 26px 28px;
  flex: 1;
}

.dish-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.dish-name {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 23px;
}

.dish-price {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--accent);
  white-space: nowrap;
}

.dish-subtitle-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.45);
}

.dish-flag {
  width: 19px;
  height: 13px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15);
}

.dish-description {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.65;
  flex: 1;
}

.dish-order-btn {
  margin-top: 8px;
  padding: 13px 0;
  background: transparent;
  border: 1.5px solid rgba(242, 178, 51, 0.6);
  color: var(--accent);
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
}

.dish-order-btn:hover {
  background: var(--accent);
  color: #111111;
  border-color: var(--accent);
}


/* ============ ORDER CHANNEL MODAL ============ */
.order-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.order-modal.open {
  display: flex;
}

.order-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.66);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.order-modal-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(242, 178, 51, 0.22);
  background:
    radial-gradient(520px 240px at 86% 8%, rgba(242, 178, 51, 0.16), transparent 72%),
    linear-gradient(135deg, rgba(24, 20, 14, 0.98), rgba(12, 12, 12, 0.98));
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
  color: #FFFFFF;
}

.order-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.order-modal-eyebrow {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.order-modal-title {
  margin: 0;
  max-width: 390px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.order-modal-subtitle {
  margin: 12px 0 22px;
  max-width: 420px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.55;
}

.order-channel-list {
  display: grid;
  gap: 10px;
}

.order-channel {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-family: 'Manrope', sans-serif;
  text-align: left;
  cursor: not-allowed;
}

.order-channel-main {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.order-channel-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: none;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.order-channel-logo.yemeksepeti { background: #ED174D; }
.order-channel-logo.trendyol { background: #F27A1A; }
.order-channel-logo.getir { background: #5D2DE1; color: #FFD300; }
.order-channel-logo.migros { background: #F58220; }
.order-channel-logo.whatsapp { background: #25D366; color: #0B2E18; }

.order-channel-name {
  display: block;
  font-weight: 800;
  font-size: 15px;
}

.order-channel-note {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 12px;
}

.order-channel-status {
  flex: none;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(242, 178, 51, 0.13);
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.order-modal-footnote {
  margin: 16px 2px 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
  line-height: 1.5;
}

html:not([data-theme="dark"]) .order-modal-card {
  border-color: rgba(126, 79, 16, 0.16);
  background:
    radial-gradient(520px 240px at 86% 8%, rgba(242, 178, 51, 0.18), transparent 72%),
    linear-gradient(135deg, #FFFFFF, #FFF7E8);
  box-shadow: 0 34px 100px rgba(70, 42, 8, 0.24);
  color: #15110B;
}

html:not([data-theme="dark"]) .order-modal-close {
  border-color: rgba(21, 17, 11, 0.14);
  background: rgba(21, 17, 11, 0.04);
  color: #15110B;
}

html:not([data-theme="dark"]) .order-modal-subtitle,
html:not([data-theme="dark"]) .order-modal-footnote {
  color: rgba(42, 31, 17, 0.62);
}

html:not([data-theme="dark"]) .order-channel {
  border-color: rgba(126, 79, 16, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: #15110B;
  box-shadow: 0 14px 34px rgba(70, 42, 8, 0.07);
}

html:not([data-theme="dark"]) .order-channel-note {
  color: rgba(42, 31, 17, 0.52);
}

@media (max-width: 560px) {
  .order-modal {
    align-items: flex-end;
    padding: 14px;
  }

  .order-modal-card {
    padding: 24px 20px 20px;
    border-radius: 26px;
  }

  .order-channel {
    padding: 12px;
  }
}

/* ============ PHILOSOPHY (scrollytelling) ============ */

.philosophy-section {
  position: relative;
  background: #0D0D0D;
}

.philo-scroll {
  position: relative;
  height: 340vh;
}

.philo-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  background: #0D0D0D;
}

.mood-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity 0.9s ease;
  opacity: 0;
}

.mood-bg.active {
  opacity: 1;
}

.mood-bg-1 {
  background: radial-gradient(1000px 620px at 28% 62%, rgba(242, 178, 51, 0.20), transparent 62%), radial-gradient(700px 460px at 78% 24%, rgba(201, 143, 30, 0.12), transparent 65%);
}

.mood-bg-2 {
  background: radial-gradient(1000px 620px at 30% 55%, rgba(196, 84, 48, 0.18), transparent 62%), radial-gradient(700px 460px at 76% 30%, rgba(120, 52, 30, 0.14), transparent 65%);
}

.mood-bg-3 {
  background: radial-gradient(1000px 620px at 30% 55%, rgba(110, 168, 92, 0.15), transparent 62%), radial-gradient(700px 460px at 76% 28%, rgba(60, 110, 55, 0.12), transparent 65%);
}

.philo-inner {
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(20px, 6vh, 80px) 48px clamp(10px, 2vh, 32px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-height: 0;
}

.philo-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.philo-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--accent);
}

.philo-title {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(18px, min(3vw, 4.2vh), 38px);
  letter-spacing: -0.02em;
}

.philo-title span {
  color: var(--accent);
}

.philo-hint {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.4);
}

.philo-stage-wrap {
  flex: 1;
  position: relative;
  min-height: 0;
  overflow: hidden;
}

.philo-stage {
  position: relative;
  width: min(1200px, 100%);
  height: 100%;
  margin: 0 auto;
}

.tray-glow {
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 460px;
  height: 74px;
  max-width: 100%;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(242, 178, 51, 0.14), transparent 70%);
  filter: blur(12px);
  transform: translateX(-50%);
}

.philo-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  mask-image: radial-gradient(ellipse 56% 52% at 50% 50%, black 46%, transparent 84%);
  -webkit-mask-image: radial-gradient(ellipse 56% 52% at 50% 50%, black 46%, transparent 84%);
  will-change: transform;
  pointer-events: none;
}

/* This video has no <controls> attribute, but Safari/WebKit still shows a
   large centered "tap to play" overlay on a paused video with a poster -
   it's driven by these vendor pseudo-elements, not the controls attribute,
   so it has to be switched off explicitly. */
.philo-video::-webkit-media-controls,
.philo-video::-webkit-media-controls-enclosure,
.philo-video::-webkit-media-controls-panel,
.philo-video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.philo-footer {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  padding-top: 6px;
}

.progress-track {
  position: relative;
  width: min(880px, 94%);
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 999px;
}

.progress-fill-wrap {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 999px;
  overflow: hidden;
  width: 100%;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(242, 178, 51, 0.8);
  border-radius: 999px;
  transition: width 0.05s linear;
}

.progress-tick {
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: background 0.3s, box-shadow 0.3s;
  background: rgba(255, 255, 255, 0.25);
}

.progress-tick.passed {
  background: var(--accent);
  box-shadow: 0 0 10px rgba(242, 178, 51, 0.7);
}

.progress-tick[data-tick="1"] { left: 0%; }
.progress-tick[data-tick="2"] { left: 33.333%; }
.progress-tick[data-tick="3"] { left: 66.666%; }

.philo-steps {
  display: grid;
  width: min(640px, 100%);
  text-align: center;
}

.philo-step {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}

.philo-step.active {
  opacity: 1;
  transform: translateY(0);
}

.philo-step-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--accent);
}

.philo-step-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 3.2vh, 28px);
  letter-spacing: -0.02em;
  color: #FFFFFF;
  margin-top: 4px;
}

.philo-step-text {
  font-size: clamp(12px, 2vh, 15px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  margin: 8px auto 0;
}

/* ============ FRANCHISE ============ */

.franchise-section {
  padding: 120px 48px;
  border-top: 1px solid rgba(242, 178, 51, 0.12);
  background-color: #0B0B0D;
  background-image:
    radial-gradient(140px 140px at 12% 18%, rgba(242, 178, 51, 0.14), transparent 70%),
    radial-gradient(90px 90px at 28% 72%, rgba(242, 178, 51, 0.09), transparent 70%),
    radial-gradient(120px 120px at 55% 30%, rgba(255, 214, 140, 0.08), transparent 70%),
    radial-gradient(70px 70px at 70% 80%, rgba(242, 178, 51, 0.11), transparent 70%),
    radial-gradient(160px 160px at 88% 22%, rgba(255, 230, 170, 0.07), transparent 70%),
    radial-gradient(50px 50px at 42% 55%, rgba(255, 255, 255, 0.05), transparent 70%),
    radial-gradient(100px 100px at 92% 65%, rgba(242, 178, 51, 0.08), transparent 70%),
    linear-gradient(180deg, #0B0B0D 0%, #101012 50%, #0B0B0D 100%);
  background-attachment: fixed, fixed, fixed, fixed, fixed, fixed, fixed, scroll;
}

.franchise-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 64px;
  align-items: start;
}

.franchise-left {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.franchise-title {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(34px, 4.5vw, 52px);
  letter-spacing: -0.02em;
}

.storefront-image {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(242, 178, 51, 0.25);
  display: block;
}

.roadmap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.roadmap-row {
  display: flex;
  gap: 18px;
  align-items: stretch;
}

.roadmap-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.roadmap-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-top: 4px;
  flex: none;
  background: rgba(242, 178, 51, 0.12);
  border: 2px solid rgba(242, 178, 51, 0.55);
  box-shadow: 0 0 10px rgba(242, 178, 51, 0.25);
}

.roadmap-dot.on {
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent), 0 0 30px rgba(242, 178, 51, 0.55);
  animation: fdPulse 3s ease-in-out infinite;
  border: none;
}

.roadmap-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, rgba(242, 178, 51, 0.55), rgba(242, 178, 51, 0.12));
  margin-top: 4px;
}

.roadmap-line.hidden {
  display: none;
}

.roadmap-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 22px;
}

.roadmap-place {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.roadmap-badge {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.roadmap-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.franchise-card {
  background: rgba(22, 22, 24, 0.55);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(242, 178, 51, 0.45);
  border-radius: 22px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 0 46px rgba(242, 178, 51, 0.14), 0 24px 60px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.franchise-card-title {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 24px;
}

.franchise-card-text {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.franchise-success {
  display: none;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
}

.franchise-success.visible {
  display: flex;
}

.success-check {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--accent);
  display: grid;
  place-items: center;
  color: #111111;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 26px;
}

.success-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
}

.success-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.reset-btn {
  margin-top: 8px;
  padding: 10px 24px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s;
}

.reset-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.franchise-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  color: #FFFFFF;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  outline: none;
  width: 100%;
}

.form-field select {
  appearance: none;
}

.form-field textarea {
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
}

.form-error {
  font-size: 13px;
  font-weight: 600;
  color: #E86A4C;
  display: none;
}

.form-error.visible {
  display: block;
}

.submit-btn {
  margin-top: 4px;
  padding: 16px 0;
  background: var(--accent);
  border: none;
  color: #111111;
  border-radius: 999px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.06em;
  cursor: pointer;
  box-shadow: 0 0 28px rgba(242, 178, 51, 0.3);
  transition: transform 0.2s, background 0.2s;
  width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  background: #FFFFFF;
}

/* ============ FRANCHISE SUBPAGE / HOMEPAGE TEASER ============ */

.franchise-teaser {
  padding: 56px 48px 88px;
  background:
    linear-gradient(180deg, #0D0D0D 0%, #111111 100%);
}

.franchise-teaser-card {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 30px 34px;
  border: 1px solid rgba(242, 178, 51, 0.16);
  border-radius: 24px;
  background:
    radial-gradient(420px 180px at 88% 50%, rgba(242, 178, 51, 0.12), transparent 72%),
    rgba(22, 22, 24, 0.56);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.franchise-teaser-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.franchise-teaser-title {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 34px);
  letter-spacing: -0.02em;
}

.franchise-teaser-text {
  margin: 0;
  max-width: 650px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.65;
}

.franchise-teaser-btn {
  white-space: nowrap;
}

.process-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-top: 0;
  flex: none;
  background: rgba(242, 178, 51, 0.12);
  border: 2px solid var(--accent);
  color: var(--accent);
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 14px;
  display: grid;
  place-items: center;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.support-card {
  background: #191919;
  border: 1px solid rgba(242, 178, 51, 0.16);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.support-card-title {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 17px;
}

.support-card-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.6);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
}

.faq-item {
  background: #191919;
  border: 1px solid rgba(242, 178, 51, 0.16);
  border-radius: 14px;
  padding: 4px 22px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #FFFFFF;
}

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

.faq-item summary::after {
  content: '+';
  flex: none;
  font-size: 20px;
  color: var(--accent);
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
}

.whatsapp-card {
  align-items: center;
  text-align: center;
}

.whatsapp-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  color: var(--accent);
}

.whatsapp-icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* ============ FOOTER ============ */

.footer {
  padding: 64px 48px 40px;
  background: #0C0C0C;
  border-top: 1px solid rgba(242, 178, 51, 0.14);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo {
  height: 32px;
  width: auto;
  display: block;
  align-self: flex-start;
}

.footer-tagline {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.45);
}

.footer-socials {
  display: flex;
  gap: 14px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: all 0.2s;
}

.social-icon:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.footer-langs {
  display: flex;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ============ RESPONSIVE ============ */

@media (max-width: 960px) {
  .franchise-card {
    padding: 28px;
  }
}

@media (max-width: 720px) {
  .nav {
    padding: 14px 16px;
    gap: 10px;
  }

  .nav-logo {
    height: 30px;
  }

  .nav-right {
    gap: 8px;
    flex: none;
  }

  .nav-cta {
    padding: 9px 13px;
    font-size: 12px;
    letter-spacing: 0.01em;
  }

  .theme-toggle,
  .nav-toggle {
    width: 38px;
    height: 38px;
    flex: none;
  }

  /* Softer, shorter cinematic fade for the hero photo: the desktop
     mask-image (92%-100%, max 0.7 alpha) reads as too heavy on narrow
     viewports, so mobile gets its own overlay instead of the mask —
     transparent through the product, then a short fade near the bottom. */
  .hero-image {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .hero-image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
      to bottom,
      rgba(8, 8, 8, 0) 0%,
      rgba(8, 8, 8, 0) 62%,
      rgba(8, 8, 8, 0.28) 82%,
      rgba(8, 8, 8, 0.8) 100%
    );
  }

  .hero-content {
    padding: 28px 24px 56px;
  }

  .menu-section,
  .franchise-section {
    padding: 72px 24px;
  }

  .franchise-teaser {
    padding: 44px 20px 68px;
  }

  .franchise-teaser-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 24px;
    text-align: left;
  }

  .franchise-teaser-btn {
    width: 100%;
    text-align: center;
  }

  .philo-inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  /* Mobile middle ground for the scroll video: the stage box (100vh pane
     minus heading/footer) is far narrower than the video's native 16:9,
     so plain cover crops the product hard and plain contain leaves a hard
     letterboxed rectangle. Instead: pull the stage out to the viewport
     edges (cancelling .philo-inner's 24px padding), give the video a
     vertically centered 8/5 box — cover then trims only ~5% per side, the
     FryDine tray stays fully in frame — and dissolve the edges with
     intersecting linear masks (outer 7% left/right, bottom 20%, a slim 4%
     feather on top) so it melts into the dark background like on desktop. */
  /* Shrink the stage to the video's own 3/2 box (instead of flex:1 filling
     the whole pane) and center the heading/video/footer block — this
     removes the ~113px dead bands above and below the floating video. */
  .philo-inner {
    justify-content: center;
  }

  .philo-stage-wrap {
    width: calc(100% + 48px);
    margin-left: -24px;
    margin-right: -24px;
    flex: 0 0 auto;
    aspect-ratio: 3 / 2;
    max-height: 52vh;
    margin-top: 40px;
    margin-bottom: 52px;
  }

  .philo-video {
    top: 50%;
    bottom: auto;
    height: auto;
    /* 3/2 statt 8/5: die etwas höhere Box lässt object-fit:cover ~6,6 %
       näher heranzoomen (Seitenbeschnitt ~7,8 % je Seite, Box bleibt
       vollständig im Bild) — bewusst kein transform:scale, das würde die
       Maske über die overflow:hidden-Kante des Wrappers schieben und den
       weichen Fade hart abschneiden. */
    aspect-ratio: 3 / 2;
    max-height: 100%;
    transform: translateY(-50%);
    object-fit: cover;
    object-position: center center;
    /* Desktop-derived oval vignette (widened so the near-fullscreen product
       stays bright), intersected with the linear side/bottom fades: the
       linears guarantee the fade completes exactly at the physical edges,
       the ellipse rounds the corners and melts the whole frame like on
       desktop — no rectangular boundary survives the intersection. */
    -webkit-mask-image:
      radial-gradient(ellipse 85% 80% at 50% 50%, black 0%, black 56%, rgba(0, 0, 0, 0.88) 72%, rgba(0, 0, 0, 0.45) 88%, transparent 100%),
      linear-gradient(to right, transparent 0%, black 11%, black 89%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, black 5%, black 68%, transparent 100%);
    -webkit-mask-composite: source-in;
    mask-image:
      radial-gradient(ellipse 85% 80% at 50% 50%, black 0%, black 56%, rgba(0, 0, 0, 0.88) 72%, rgba(0, 0, 0, 0.45) 88%, transparent 100%),
      linear-gradient(to right, transparent 0%, black 11%, black 89%, transparent 100%),
      linear-gradient(to bottom, transparent 0%, black 5%, black 68%, transparent 100%);
    mask-composite: intersect;
  }

  .footer {
    padding: 48px 24px 28px;
  }

  .hero-lede {
    font-size: 16px;
  }

  .btn-solid,
  .btn-outline {
    padding: 15px 28px;
    font-size: 15px;
  }

  .franchise-card {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  .nav {
    padding-left: 12px;
    padding-right: 12px;
  }

  .nav-cta {
    padding: 8px 11px;
    font-size: 11px;
  }

  .theme-toggle,
  .nav-toggle {
    width: 36px;
    height: 36px;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-solid,
  .btn-outline {
    text-align: center;
  }

  .footer-top {
    flex-direction: column;
  }
}


/* ============ BLACK / WHITE THEME SWITCH ============ */

.theme-toggle {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.22);
  background: #FFFFFF;
  color: #111111;
  display: inline-grid;
  place-items: center;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.theme-toggle:hover {
  transform: translateY(-1px) rotate(16deg);
  border-color: rgba(242, 178, 51, 0.75);
  box-shadow: 0 10px 28px rgba(242, 178, 51, 0.20);
}

.theme-toggle:focus-visible {
  outline: 3px solid rgba(242, 178, 51, 0.45);
  outline-offset: 3px;
}

/* Light is the default: warmer, clearer fast-casual background while keeping FryDine black/gold accents. */
html:not([data-theme="dark"]) body {
  background: #FFFFFF;
  color: #15110B;
}

html:not([data-theme="dark"]) .nav {
  background: rgba(255, 255, 255, 0.86);
  border-bottom-color: rgba(17, 17, 17, 0.08);
}

html:not([data-theme="dark"]) .nav-link,
html:not([data-theme="dark"]) .lang-pill,
html:not([data-theme="dark"]) .footer-lang-pill {
  color: rgba(17, 17, 17, 0.68);
}

html:not([data-theme="dark"]) .nav-toggle {
  color: #111111;
  border-color: rgba(17, 17, 17, 0.22);
}

html:not([data-theme="dark"]) .nav-mobile-panel {
  background: #FFFFFF;
  border-bottom-color: rgba(17, 17, 17, 0.08);
}

html:not([data-theme="dark"]) .hero,
html:not([data-theme="dark"]) .menu-section,
html:not([data-theme="dark"]) .franchise-section {
  background-color: #FFFFFF;
  color: #15110B;
}

html:not([data-theme="dark"]) .menu-section {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF8EA 100%);
  border-top-color: rgba(17, 17, 17, 0.08);
}

html:not([data-theme="dark"]) .franchise-section {
  background-color: #FFFFFF;
  background-image:
    radial-gradient(220px 160px at 12% 18%, rgba(242, 178, 51, 0.16), transparent 70%),
    radial-gradient(170px 120px at 88% 22%, rgba(17, 17, 17, 0.045), transparent 70%),
    linear-gradient(180deg, #FFFFFF 0%, #FFF8EA 100%);
  border-top-color: rgba(17, 17, 17, 0.08);
}

html:not([data-theme="dark"]) .hero-lede,
html:not([data-theme="dark"]) .section-subtitle,
html:not([data-theme="dark"]) .dish-description,
html:not([data-theme="dark"]) .franchise-card-text,
html:not([data-theme="dark"]) .roadmap-note,
html:not([data-theme="dark"]) .support-card-text,
html:not([data-theme="dark"]) .faq-item p,
html:not([data-theme="dark"]) .success-text,
html:not([data-theme="dark"]) .philo-step-text,
html:not([data-theme="dark"]) .footer-bottom {
  color: rgba(21, 17, 11, 0.66);
}

html:not([data-theme="dark"]) .dish-card,
html:not([data-theme="dark"]) .franchise-card,
html:not([data-theme="dark"]) .support-card,
html:not([data-theme="dark"]) .faq-item,
html:not([data-theme="dark"]) .franchise-teaser-card {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(17, 17, 17, 0.10);
  box-shadow: 0 20px 48px rgba(17, 17, 17, 0.08);
}

html:not([data-theme="dark"]) .dish-image-frame {
  background: #FFF0CC;
}

html:not([data-theme="dark"]) .dish-subtitle-row,
html:not([data-theme="dark"]) .form-field label,
html:not([data-theme="dark"]) .philo-hint {
  color: rgba(21, 17, 11, 0.50);
}

html:not([data-theme="dark"]) .btn-outline,
html:not([data-theme="dark"]) .reset-btn {
  color: #15110B;
  border-color: rgba(21, 17, 11, 0.42);
}

html:not([data-theme="dark"]) .btn-outline:hover,
html:not([data-theme="dark"]) .reset-btn:hover {
  color: #B87A00;
  border-color: rgba(242, 178, 51, 0.80);
}

html:not([data-theme="dark"]) .philo-title,
html:not([data-theme="dark"]) .philo-step-title,
html:not([data-theme="dark"]) .franchise-title,
html:not([data-theme="dark"]) .section-title,
html:not([data-theme="dark"]) .dish-name,
html:not([data-theme="dark"]) .franchise-card-title,
html:not([data-theme="dark"]) .support-card-title,
html:not([data-theme="dark"]) .roadmap-place,
html:not([data-theme="dark"]) .footer-tagline {
  color: #15110B;
}

html:not([data-theme="dark"]) .philo-video {
  filter: drop-shadow(0 24px 46px rgba(17, 17, 17, 0.14));
}

html:not([data-theme="dark"]) .footer {
  background: #15110B;
  color: #FFFFFF;
}

html[data-theme="dark"] .theme-toggle {
  background: #111111;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.22);
}


/* The sticky video/scrollytelling block stays dark in light mode so the cinematic food video can dissolve into the background like the original black design. */
html:not([data-theme="dark"]) .philosophy-section,
html:not([data-theme="dark"]) .philo-sticky {
  background: #0D0D0D;
  color: #FFFFFF;
}

html:not([data-theme="dark"]) .philosophy-section .philo-title,
html:not([data-theme="dark"]) .philosophy-section .philo-step-title {
  color: #FFFFFF;
}

html:not([data-theme="dark"]) .philosophy-section .philo-hint,
html:not([data-theme="dark"]) .philosophy-section .philo-step-text {
  color: rgba(255, 255, 255, 0.55);
}

html:not([data-theme="dark"]) .philosophy-section .progress-track {
  background: rgba(255, 255, 255, 0.1);
}


/* Light-mode contrast fixes for components that intentionally stay dark or have hard-coded dark form styles. */
html:not([data-theme="dark"]) .form-field input,
html:not([data-theme="dark"]) .form-field select,
html:not([data-theme="dark"]) .form-field textarea {
  background: #FFFFFF;
  border-color: rgba(21, 17, 11, 0.16);
  color: #15110B;
}

html:not([data-theme="dark"]) input::placeholder,
html:not([data-theme="dark"]) textarea::placeholder {
  color: rgba(21, 17, 11, 0.38);
}

html:not([data-theme="dark"]) .faq-item summary,
html:not([data-theme="dark"]) .franchise-teaser-title {
  color: #15110B;
}

html:not([data-theme="dark"]) .franchise-teaser-text {
  color: rgba(21, 17, 11, 0.66);
}

html:not([data-theme="dark"]) .footer .footer-tagline,
html:not([data-theme="dark"]) .footer .footer-bottom {
  color: rgba(255, 255, 255, 0.48);
}

html:not([data-theme="dark"]) .footer .footer-lang-pill,
html:not([data-theme="dark"]) .footer .social-icon {
  color: rgba(255, 255, 255, 0.70);
  border-color: rgba(255, 255, 255, 0.20);
}

html:not([data-theme="dark"]) .footer .footer-lang-pill.active {
  color: #111111;
}

/* ============ WARM PREMIUM LIGHT SECTION RHYTHM ============ */
/* Reversible visual pass: light mode uses warm food-studio surfaces instead of flat cold white. */
html:not([data-theme="dark"]) body {
  background:
    radial-gradient(900px 520px at 14% 12%, rgba(242, 178, 51, 0.10), transparent 60%),
    radial-gradient(760px 480px at 88% 44%, rgba(120, 72, 14, 0.055), transparent 62%),
    linear-gradient(180deg, #FFF8EC 0%, #F8F0E3 45%, #FFF8EC 100%);
  color: #15110B;
}

html:not([data-theme="dark"]) .nav,
html:not([data-theme="dark"]) .nav-mobile-panel {
  background: rgba(255, 250, 240, 0.90);
  border-bottom-color: rgba(105, 68, 18, 0.12);
}

html:not([data-theme="dark"]) .hero {
  background:
    linear-gradient(180deg, #111111 0%, #111111 54%, #FFF8EC 54%, #FFF8EC 100%);
}

html:not([data-theme="dark"]) .hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  pointer-events: none;
  background:
    radial-gradient(680px 240px at 18% 64%, rgba(242, 178, 51, 0.13), transparent 70%),
    radial-gradient(540px 220px at 84% 72%, rgba(65, 38, 10, 0.055), transparent 72%),
    linear-gradient(180deg, rgba(255, 248, 236, 0) 0%, #FFF8EC 42%, #FFF8EC 100%);
  z-index: 0;
}

html:not([data-theme="dark"]) .hero-image-wrap,
html:not([data-theme="dark"]) .hero-content {
  position: relative;
  z-index: 1;
}

html:not([data-theme="dark"]) .hero-content {
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.92) 0%, rgba(255, 248, 236, 0.98) 58%, rgba(255, 248, 236, 0) 100%);
}

html:not([data-theme="dark"]) .hero-content::before,
html:not([data-theme="dark"]) .menu-section::before,
html:not([data-theme="dark"]) .franchise-section::before,
html:not([data-theme="dark"]) .franchise-teaser::before {
  content: '';
  display: block;
  height: 1px;
  width: min(1040px, calc(100vw - 48px));
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, rgba(242, 178, 51, 0.42), rgba(105, 68, 18, 0.12), transparent);
}

html:not([data-theme="dark"]) .hero-content::before {
  margin-bottom: 30px;
}

html:not([data-theme="dark"]) .menu-section {
  position: relative;
  background:
    radial-gradient(780px 320px at 50% 4%, rgba(242, 178, 51, 0.16), transparent 62%),
    radial-gradient(520px 260px at 6% 30%, rgba(145, 88, 20, 0.075), transparent 70%),
    radial-gradient(520px 260px at 94% 72%, rgba(40, 25, 8, 0.055), transparent 72%),
    linear-gradient(180deg, #F6EFE3 0%, #EFE5D6 100%);
  border-top-color: rgba(105, 68, 18, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

html:not([data-theme="dark"]) .menu-section::before,
html:not([data-theme="dark"]) .franchise-section::before,
html:not([data-theme="dark"]) .franchise-teaser::before {
  margin-top: -56px;
  margin-bottom: 56px;
}

html:not([data-theme="dark"]) .dish-card {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(126, 79, 16, 0.13);
  box-shadow:
    0 24px 70px rgba(70, 42, 8, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.85) inset;
}

html:not([data-theme="dark"]) .dish-card:hover {
  box-shadow:
    0 0 0 1px rgba(242, 178, 51, 0.36),
    0 30px 80px rgba(70, 42, 8, 0.16),
    0 0 46px rgba(242, 178, 51, 0.16);
  border-color: rgba(242, 178, 51, 0.42);
}

html:not([data-theme="dark"]) .dish-image-frame {
  background:
    radial-gradient(circle at 50% 28%, rgba(242, 178, 51, 0.16), transparent 55%),
    #FFF1D2;
}

html:not([data-theme="dark"]) .franchise-section {
  background:
    radial-gradient(760px 320px at 16% 10%, rgba(242, 178, 51, 0.13), transparent 66%),
    radial-gradient(520px 260px at 90% 28%, rgba(21, 17, 11, 0.055), transparent 70%),
    linear-gradient(180deg, #FFF8EC 0%, #F7EFE2 100%);
  border-top-color: rgba(105, 68, 18, 0.10);
}

html:not([data-theme="dark"]) .franchise-card,
html:not([data-theme="dark"]) .support-card,
html:not([data-theme="dark"]) .faq-item {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(126, 79, 16, 0.12);
  box-shadow: 0 20px 58px rgba(70, 42, 8, 0.10);
}

html:not([data-theme="dark"]) .franchise-teaser {
  position: relative;
  background:
    radial-gradient(760px 280px at 22% 0%, rgba(242, 178, 51, 0.12), transparent 66%),
    radial-gradient(520px 240px at 86% 54%, rgba(70, 42, 8, 0.060), transparent 70%),
    linear-gradient(180deg, #F7EFE2 0%, #FFF8EC 100%);
}

html:not([data-theme="dark"]) .franchise-teaser-card {
  background:
    radial-gradient(520px 220px at 86% 45%, rgba(242, 178, 51, 0.18), transparent 72%),
    linear-gradient(135deg, rgba(25, 21, 14, 0.94), rgba(14, 13, 12, 0.90));
  border-color: rgba(242, 178, 51, 0.24);
  box-shadow: 0 28px 86px rgba(70, 42, 8, 0.20), 0 1px 0 rgba(255, 255, 255, 0.06) inset;
}

html:not([data-theme="dark"]) .franchise-teaser-title {
  color: #FFFFFF;
}

html:not([data-theme="dark"]) .franchise-teaser-text {
  color: rgba(255, 255, 255, 0.66);
}

html:not([data-theme="dark"]) .franchise-teaser-btn {
  background: var(--accent);
  border-color: var(--accent);
  color: #15110B;
  box-shadow: 0 14px 34px rgba(242, 178, 51, 0.30);
}

html:not([data-theme="dark"]) .franchise-teaser-btn:hover {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #15110B;
  box-shadow: 0 16px 40px rgba(255, 255, 255, 0.18), 0 0 34px rgba(242, 178, 51, 0.18);
}

html:not([data-theme="dark"]) .section-subtitle,
html:not([data-theme="dark"]) .hero-lede,
html:not([data-theme="dark"]) .dish-description,
html:not([data-theme="dark"]) .franchise-card-text,
html:not([data-theme="dark"]) .support-card-text,
html:not([data-theme="dark"]) .faq-item p,
html:not([data-theme="dark"]) .roadmap-note {
  color: rgba(42, 31, 17, 0.68);
}

html:not([data-theme="dark"]) .dish-subtitle-row,
html:not([data-theme="dark"]) .form-field label {
  color: rgba(42, 31, 17, 0.52);
}

html:not([data-theme="dark"]) .footer {
  background:
    radial-gradient(620px 260px at 14% 0%, rgba(242, 178, 51, 0.12), transparent 70%),
    #15110B;
}

/* Barely visible paper/packaging grain for warm light sections. */
html:not([data-theme="dark"]) .hero-content,
html:not([data-theme="dark"]) .menu-section,
html:not([data-theme="dark"]) .franchise-section {
  position: relative;
}

html:not([data-theme="dark"]) .hero-content > *,
html:not([data-theme="dark"]) .menu-section > *,
html:not([data-theme="dark"]) .franchise-section > * {
  position: relative;
  z-index: 1;
}

html:not([data-theme="dark"]) .hero-content::after,
html:not([data-theme="dark"]) .menu-section::after,
html:not([data-theme="dark"]) .franchise-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.42;
  background-image:
    radial-gradient(circle, rgba(104, 67, 18, 0.050) 0.7px, transparent 0.9px),
    radial-gradient(circle, rgba(242, 178, 51, 0.042) 0.6px, transparent 0.85px);
  background-position: 0 0, 9px 11px;
  background-size: 19px 19px, 23px 23px;
}

@media (max-width: 720px) {
  html:not([data-theme="dark"]) .hero-content::before,
  html:not([data-theme="dark"]) .menu-section::before,
  html:not([data-theme="dark"]) .franchise-section::before,
  html:not([data-theme="dark"]) .franchise-teaser::before {
    width: calc(100vw - 40px);
  }

  html:not([data-theme="dark"]) .menu-section::before,
  html:not([data-theme="dark"]) .franchise-section::before,
  html:not([data-theme="dark"]) .franchise-teaser::before {
    margin-top: -36px;
    margin-bottom: 40px;
  }
}
