/* ============================================================
   Dipndoener — Premium Doener Experience
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #0a0a0a;
  color: #efe7dd;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

:root {
  --bg: #0a0a0a;
  --bg-2: #131211;
  --bg-3: #1c1a18;
  --ink: #efe7dd;
  --ink-dim: #a89e92;
  --ink-faint: #6e655c;
  --accent: #ff4d1a;
  --accent-2: #ff8a3d;
  --accent-warm: #ffb87a;
  --cream: #f5e6d3;
  --gold: #d9a45b;
  --border: rgba(245,230,211,0.08);
  --border-2: rgba(245,230,211,0.16);
  --radius: 18px;
  --radius-lg: 32px;
  --shadow-glow: 0 30px 80px -20px rgba(255,77,26,0.45);
  --container: 1240px;
}

img { max-width: 100%; display: block; height: auto; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
::selection { background: var(--accent); color: #fff; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.italic { font-family: 'Caveat', cursive; font-weight: 700; color: var(--accent-warm); padding: 0 .1em; letter-spacing: 0; }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), background .2s, box-shadow .25s, color .2s;
  position: relative;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  box-shadow: 0 12px 30px -8px rgba(255,77,26,0.6);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -8px rgba(255,77,26,0.7); }
.btn-primary:active { transform: translateY(0); }
.btn-primary svg { transition: transform .25s; }
.btn-primary:hover svg { transform: translateX(4px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border-2);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(255,255,255,0.04); }

.btn-block { width: 100%; justify-content: center; }
.btn-xl { padding: 22px 38px; font-size: 18px; }

.btn:disabled { opacity: .4; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ============================================================
   Nav
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: background .25s, border-color .25s, padding .25s;
}
.nav.scrolled {
  background: rgba(10,10,10,0.88);
  border-bottom-color: var(--border);
  padding: 12px 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.brand-mark {
  display: block;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px -6px rgba(255,77,26,0.45), 0 0 0 1px rgba(255,255,255,0.06);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
}
.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.05); box-shadow: 0 12px 28px -6px rgba(255,77,26,0.6); }
.brand-mark-lg {
  width: 80px;
  height: 80px;
  border-radius: 18px;
  margin-bottom: 4px;
}
.brand-name { font-family: 'Anton', 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 0.04em; text-transform: uppercase; }

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  color: var(--ink-dim);
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 11px 22px;
  border-radius: 999px;
  background: var(--cream);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 14px;
  transition: transform .2s, background .2s;
}
.nav-cta:hover { transform: translateY(-1px); background: #fff; }

.nav-burger {
  display: none;
  background: transparent;
  border: 0;
  width: 36px;
  height: 36px;
  position: relative;
}
.nav-burger span {
  position: absolute;
  left: 6px; right: 6px;
  height: 2px;
  background: var(--ink);
  transition: transform .3s, top .3s, opacity .2s;
  border-radius: 2px;
}
.nav-burger span:nth-child(1) { top: 11px; }
.nav-burger span:nth-child(2) { top: 17px; }
.nav-burger span:nth-child(3) { top: 23px; }
.nav-burger.open span:nth-child(1) { top: 17px; transform: rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { top: 17px; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    inset: 70px 16px auto 16px;
    flex-direction: column;
    gap: 0;
    padding: 24px;
    background: rgba(15,15,15,0.96);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid var(--border-2);
    transform: translateY(-120%) scale(.95);
    transition: transform .35s cubic-bezier(.2,.8,.2,1), opacity .25s;
    opacity: 0;
    pointer-events: none;
  }
  .nav-links.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 14px 0; font-size: 18px; border-bottom: 1px solid var(--border); color: var(--ink); }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-links a::after { display: none; }
  .nav-burger { display: block; }
  .nav-cta { display: none; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero-grain {
  position: absolute; inset: 0;
  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 baseFrequency='0.85'/%3E%3CfeColorMatrix values='0 0 0 0 0.2 0 0 0 0 0.1 0 0 0 0 0.05 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.4;
  mix-blend-mode: overlay;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
}
.hero-glow-1 { width: 600px; height: 600px; top: -200px; right: -100px; background: radial-gradient(circle, var(--accent) 0%, transparent 70%); }
.hero-glow-2 { width: 500px; height: 500px; bottom: -150px; left: -100px; background: radial-gradient(circle, var(--accent-2) 0%, transparent 70%); opacity: 0.35; }

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,230,211,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,230,211,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(245,230,211,0.06);
  border: 1px solid var(--border-2);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
  margin-bottom: 28px;
}
.hero-eyebrow .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 12px #4ade80;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-title {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-size: clamp(58px, 8.5vw, 128px);
  line-height: 0.94;
  letter-spacing: 0.01em;
  margin: 0 0 28px;
  font-weight: 400;
  color: var(--ink);
  text-transform: uppercase;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: word-up 1s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-title .word.accent {
  background: linear-gradient(120deg, var(--accent), var(--accent-2) 50%, var(--accent-warm));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@keyframes word-up { to { transform: translateY(0); opacity: 1; } }
.hero-title .line:nth-child(1) .word:nth-child(1) { animation-delay: .05s; }
.hero-title .line:nth-child(1) .word:nth-child(2) { animation-delay: .15s; }
.hero-title .line:nth-child(2) .word:nth-child(1) { animation-delay: .25s; }
.hero-title .line:nth-child(2) .word:nth-child(2) { animation-delay: .35s; }
.hero-title .line:nth-child(3) .word:nth-child(1) { animation-delay: .45s; }

.hero-sub {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-dim);
  margin: 0 0 36px;
  opacity: 0;
  animation: fade-up .8s .65s forwards;
}
@keyframes fade-up { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

.hero-actions {
  display: flex;
  gap: 14px;
  margin-bottom: 56px;
  opacity: 0;
  animation: fade-up .8s .8s forwards;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 48px;
  padding: 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  animation: fade-up .8s 1s forwards;
}
.hero-stats li { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.02em;
  color: var(--cream);
  font-weight: 400;
  line-height: 1;
}
.hero-stats span { font-size: 12px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.08em; }

.hero-visual {
  position: relative;
  height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fade-up 1s .4s forwards;
}
.hero-doner-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
}
.hero-doner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid rgba(245,230,211,0.06);
  box-shadow: var(--shadow-glow), 0 0 0 1px rgba(255,255,255,0.04) inset;
  animation: doner-spin 60s linear infinite, doner-float 6s ease-in-out infinite;
}
@keyframes doner-spin { to { transform: rotate(360deg); } }
@keyframes doner-float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.hero-doner-wrap { animation: doner-float 6s ease-in-out infinite; }
.hero-doner-ring {
  position: absolute; inset: -30px;
  border-radius: 50%;
  border: 1px dashed rgba(255,138,61,0.25);
  animation: doner-spin 80s linear infinite reverse;
}
.hero-doner-ring::before {
  content: '';
  position: absolute; inset: -30px;
  border-radius: 50%;
  border: 1px dashed rgba(255,138,61,0.15);
}

.floating-badge {
  position: absolute;
  background: linear-gradient(135deg, rgba(28,26,24,0.92), rgba(20,18,16,0.92));
  border: 1px solid var(--border-2);
  border-radius: 18px;
  padding: 14px 18px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  text-align: center;
  min-width: 96px;
  box-shadow: 0 10px 30px -8px rgba(0,0,0,0.5);
  animation: badge-float 5s ease-in-out infinite;
}
.floating-badge span {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-size: 30px;
  color: var(--accent-warm);
  line-height: 1;
}
.floating-badge small { font-size: 11px; color: var(--ink-dim); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; }
.floating-badge-1 { top: 8%; right: -10%; animation-delay: 0s; }
.floating-badge-2 { bottom: 18%; left: -8%; animation-delay: 1.5s; }
.floating-badge-3 { top: 50%; right: -16%; animation-delay: 3s; }
@keyframes badge-float {
  0%,100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--ink-dim);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  z-index: 3;
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: -50%;
  left: 0; right: 0;
  height: 50%;
  background: var(--cream);
  animation: scroll-line 2.5s infinite;
}
@keyframes scroll-line { 0% { top: -50%; } 100% { top: 100%; } }

@media (max-width: 900px) {
  .hero { padding: 110px 0 60px; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { height: 360px; order: -1; }
  .hero-doner-wrap { max-width: 320px; }
  .floating-badge { min-width: 76px; padding: 10px 12px; }
  .floating-badge span { font-size: 22px; }
  .floating-badge-1 { right: 0; }
  .floating-badge-2 { left: 0; bottom: 8%; }
  .floating-badge-3 { right: 4%; top: 60%; }
  .hero-stats { gap: 28px; flex-wrap: wrap; }
  .hero-stats strong { font-size: 28px; }
  .hero-scroll { display: none; }
}

/* ============================================================
   Marquee
   ============================================================ */
.marquee {
  background: var(--cream);
  color: #1a1a1a;
  padding: 22px 0;
  overflow: hidden;
  border-top: 1px solid #00000010;
  border-bottom: 1px solid #00000010;
  position: relative;
  z-index: 2;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 45s linear infinite;
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-size: 26px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.marquee-track span:nth-child(even) { color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   Sections (shared)
   ============================================================ */
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 20px;
  position: relative;
  padding-left: 28px;
}
.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 20px;
  height: 1px;
  background: var(--accent);
}
.section-eyebrow-light { color: var(--accent-warm); }
.section-eyebrow-light::before { background: var(--accent-warm); }

.section-title {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0.005em;
  margin: 0 0 24px;
  color: var(--ink);
  text-transform: uppercase;
}
.section-title-light { color: #fff; }

.section-text { font-size: 17px; color: var(--ink-dim); line-height: 1.65; max-width: 640px; }
.section-text-center { margin: 0 auto; text-align: center; }
.section-text-light { color: rgba(255,255,255,0.85); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-warm);
  font-weight: 600;
  margin-top: 28px;
  transition: gap .2s, color .2s;
}
.link-arrow:hover { gap: 14px; color: var(--accent); }

/* ============================================================
   Story
   ============================================================ */
.story { padding: 140px 0; background: var(--bg-2); position: relative; }
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 200px 200px;
  gap: 18px;
  position: relative;
}
.story-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
  cursor: pointer;
}
.story-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.story-card:hover img { transform: scale(1.08); }
.story-card-label {
  position: absolute;
  bottom: 14px; left: 14px;
  padding: 6px 12px;
  background: rgba(10,10,10,0.7);
  backdrop-filter: blur(8px);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cream);
}
.story-card-1 { grid-row: span 2; }
.story-card-1 img { aspect-ratio: 4 / 5; }

@media (max-width: 900px) {
  .story { padding: 80px 0; }
  .story-inner { grid-template-columns: 1fr; gap: 48px; }
  .story-right { grid-template-rows: 180px 180px; }
}

/* ============================================================
   Menu
   ============================================================ */
.menu { padding: 140px 0; background: var(--bg); position: relative; }
.menu-header { text-align: center; margin-bottom: 64px; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.menu-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .25s, box-shadow .35s;
  position: relative;
}
.menu-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-2);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,138,61,0.1);
}
.menu-card-feature {
  background: linear-gradient(180deg, rgba(255,77,26,0.08), var(--bg-2) 60%);
  border-color: rgba(255,138,61,0.25);
}
.menu-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-3);
  position: relative;
}
.menu-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.8,.2,1), filter .35s;
  filter: saturate(1.05);
}
.menu-card:hover .menu-card-img img { transform: scale(1.08); filter: saturate(1.15); }
.menu-card-body { padding: 28px 28px 30px; }
.menu-card h3 {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-size: 32px;
  margin: 14px 0 10px;
  letter-spacing: 0.01em;
  font-weight: 400;
}
.menu-card p { color: var(--ink-dim); font-size: 14.5px; margin: 0 0 22px; line-height: 1.55; }
.menu-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(245,230,211,0.08);
  color: var(--ink-dim);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.menu-tag-hot { background: rgba(255,77,26,0.15); color: var(--accent-2); }
.menu-tag-veggie { background: rgba(74,222,128,0.12); color: #4ade80; }
.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.menu-price {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-size: 32px;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.menu-meta { font-size: 12px; color: var(--ink-faint); }

@media (max-width: 1000px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  .menu { padding: 80px 0; }
  .menu-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ============================================================
   Configurator
   ============================================================ */
.configurator {
  padding: 140px 0;
  background: var(--bg-2);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,77,26,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255,138,61,0.05) 0%, transparent 50%);
}
.config-wrap {
  max-width: 980px;
  margin: 56px auto 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.7);
  position: relative;
  overflow: hidden;
}
.config-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent) 50%, transparent);
  opacity: 0.5;
}

.config-progress { margin-bottom: 36px; }
.config-progress-bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 99px;
  overflow: hidden;
}
.config-progress-fill {
  height: 100%;
  width: 16.6%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 99px;
  transition: width .5s cubic-bezier(.2,.8,.2,1);
}
.config-steps {
  display: flex;
  justify-content: space-between;
  margin-top: 14px;
  font-size: 12px;
  color: var(--ink-faint);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.config-steps span.active { color: var(--accent-warm); }
.config-steps span.done { color: var(--cream); }

.config-stage { min-height: 360px; position: relative; }
.config-step {
  animation: step-in .5s cubic-bezier(.2,.8,.2,1);
}
@keyframes step-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.config-step-title {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-size: 36px;
  margin: 0 0 6px;
  letter-spacing: 0.01em;
  font-weight: 400;
}
.config-step-sub { color: var(--ink-dim); margin: 0 0 26px; }
.config-multi {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  margin-left: 8px;
  padding: 3px 10px;
  background: rgba(255,138,61,0.12);
  color: var(--accent-2);
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  vertical-align: middle;
}

.config-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.opt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 22px 14px;
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: 18px;
  color: var(--ink);
  transition: all .25s cubic-bezier(.2,.8,.2,1);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.opt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,77,26,0.12), rgba(255,138,61,0.04));
  opacity: 0;
  transition: opacity .25s;
}
.opt:hover { border-color: var(--border-2); transform: translateY(-3px); }
.opt:hover::before { opacity: 1; }
.opt.selected {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(255,77,26,0.18), rgba(255,138,61,0.08));
  box-shadow: 0 0 0 1px var(--accent) inset, 0 10px 24px -10px rgba(255,77,26,0.5);
}
.opt.selected::after {
  content: '✓';
  position: absolute;
  top: 10px; right: 10px;
  width: 22px; height: 22px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}
.opt-emoji { font-size: 36px; line-height: 1; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4)); }
.opt strong { font-size: 14px; font-weight: 700; position: relative; z-index: 1; }
.opt small { font-size: 12px; color: var(--ink-dim); position: relative; z-index: 1; }

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

.time-wrap { display: flex; flex-direction: column; gap: 22px; }
.time-quick { display: flex; flex-wrap: wrap; gap: 10px; }
.time-quick-btn {
  padding: 14px 22px;
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  transition: all .2s;
}
.time-quick-btn:hover { border-color: var(--accent); transform: translateY(-2px); }
.time-quick-btn.selected { background: var(--accent); border-color: var(--accent); color: #fff; }

.time-custom { display: flex; flex-direction: column; gap: 8px; max-width: 280px; }
.time-custom label { font-size: 13px; color: var(--ink-dim); font-weight: 600; }
.time-custom input,
.contact-grid input,
.contact-grid textarea {
  padding: 14px 18px;
  background: var(--bg-2);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  color: var(--ink);
  font-size: 15px;
  font-family: inherit;
  transition: border-color .2s, background .2s;
}
.time-custom input:focus, .contact-grid input:focus { outline: 0; border-color: var(--accent); background: var(--bg-3); }
.time-custom input::-webkit-calendar-picker-indicator { filter: invert(0.7); cursor: pointer; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 8px;
}
.contact-grid label { display: flex; flex-direction: column; gap: 6px; }
.contact-grid span { font-size: 13px; color: var(--ink-dim); font-weight: 600; }
@media (max-width: 600px) { .contact-grid { grid-template-columns: 1fr; } }

.config-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.config-total {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.config-total span { font-size: 11px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.1em; }
.config-total strong {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--cream);
  letter-spacing: 0.01em;
  font-weight: 400;
}

/* Final step */
.config-final .config-step-title, .config-success .config-step-title { text-align: center; }
.config-final .config-step-sub, .config-success .config-step-sub { text-align: center; }
.final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 28px;
}
.final-img-frame {
  position: relative;
  aspect-ratio: 1;
  border-radius: 24px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.final-img-frame img { width: 100%; height: 100%; object-fit: cover; }
.final-img-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  color: var(--ink-dim);
  font-size: 14px;
}
.loader-ring {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255,138,61,0.2);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.final-info h4 {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-size: 28px;
  margin: 0 0 14px;
  letter-spacing: 0.02em;
  font-weight: 400;
}
.final-list { list-style: none; padding: 0; margin: 0 0 18px; }
.final-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--ink-dim);
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.final-list li strong { color: var(--ink); font-weight: 600; }
.final-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-size: 14px;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.final-total strong {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--accent-warm);
  letter-spacing: 0.02em;
  font-weight: 400;
}
.final-pickup {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-dim);
  font-size: 14px;
  margin-bottom: 22px;
}
.final-pickup strong { color: var(--ink); }
.final-note { font-size: 12px; color: var(--ink-faint); margin: 14px 0 0; text-align: center; }

@media (max-width: 800px) {
  .config-wrap { padding: 28px 20px; }
  .final-grid { grid-template-columns: 1fr; }
  .config-nav { flex-wrap: wrap; }
  .config-nav .btn { padding: 14px 20px; font-size: 14px; }
}

.config-success { text-align: center; padding: 40px 0; }
.success-mark {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 800;
  animation: pop .6s cubic-bezier(.2,.8,.2,1);
}
@keyframes pop {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.success-text { color: var(--ink-dim); max-width: 460px; margin: 14px auto 28px; }

/* ============================================================
   Franchise
   ============================================================ */
.franchise {
  padding: 140px 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.7), rgba(10,10,10,0.85)),
    linear-gradient(135deg, #1a0a04 0%, #2b1408 60%, #100704 100%);
  position: relative;
  overflow: hidden;
}
.franchise::before {
  content: '';
  position: absolute;
  inset: 0;
  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 baseFrequency='0.9'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 0.6 0 0 0 0 0.2 0 0 0 0.3 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.2;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.franchise-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
.franchise-list {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.franchise-list li {
  padding: 22px 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.franchise-list strong {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--accent-warm);
  letter-spacing: 0.02em;
  font-weight: 400;
}
.franchise-list span { font-size: 13px; color: rgba(255,255,255,0.75); }

.franchise-form {
  background: rgba(20,15,12,0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.franchise-form h3 {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-size: 30px;
  margin: 0 0 10px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.franchise-form label { display: flex; flex-direction: column; gap: 6px; }
.franchise-form span { font-size: 12px; color: rgba(255,255,255,0.7); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
.franchise-form input,
.franchise-form textarea {
  padding: 14px 18px;
  background: rgba(0,0,0,0.3);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  resize: vertical;
}
.franchise-form input:focus,
.franchise-form textarea:focus { outline: 0; border-color: var(--accent-warm); }
.franchise-note { font-size: 12px; color: rgba(255,255,255,0.55); text-align: center; margin: 8px 0 0; }

@media (max-width: 900px) {
  .franchise { padding: 80px 0; }
  .franchise-inner { grid-template-columns: 1fr; gap: 56px; }
  .franchise-list { grid-template-columns: 1fr 1fr; }
  .franchise-form { padding: 26px; }
}
@media (max-width: 500px) { .franchise-list { grid-template-columns: 1fr; } }

/* ============================================================
   Final CTA
   ============================================================ */
.cta-final {
  padding: 120px 0;
  background: var(--bg);
  text-align: center;
}
.cta-final h2 {
  font-family: 'Anton', 'Bebas Neue', sans-serif;
  font-size: clamp(80px, 14vw, 220px);
  line-height: 0.9;
  margin: 0 0 16px;
  background: linear-gradient(120deg, var(--accent), var(--accent-2) 50%, var(--accent-warm));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 400;
  letter-spacing: -0.02em;
}
.cta-final p { font-size: 19px; color: var(--ink-dim); margin: 0 0 36px; }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: #050505; border-top: 1px solid var(--border); padding: 70px 0 30px; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand p { color: var(--ink-dim); font-size: 14px; line-height: 1.6; margin: 16px 0 20px; max-width: 340px; }
.footer-instagram {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-2);
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.footer-instagram::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  opacity: 0;
  transition: opacity .3s;
  z-index: 0;
}
.footer-instagram span, .footer-instagram svg { position: relative; z-index: 1; }
.footer-instagram:hover { border-color: transparent; transform: translateY(-2px); color: #fff; }
.footer-instagram:hover::before { opacity: 1; }

.footer-col h5 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-faint);
  margin: 0 0 18px;
  font-weight: 600;
}
.footer-col a, .footer-col p {
  display: block;
  color: var(--ink-dim);
  font-size: 14.5px;
  margin: 0 0 12px;
  line-height: 1.6;
  transition: color .2s;
}
.footer-col a:hover { color: var(--ink); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
@media (max-width: 500px) {
  .footer-inner { grid-template-columns: 1fr; }
}

/* ============================================================
   Reveal animations on scroll
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-doner { animation: none !important; }
}
