:root {
  --charcoal: #0F1411;
  --tomato: #C83E25;
  --semolina: #F4EBD0;
  --basil: #2D5A27;
  --tomato-light: rgba(200, 62, 37, 0.12);
  --semolina-dim: rgba(244, 235, 208, 0.06);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--charcoal);
  color: var(--semolina);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  cursor: none;
}

/* ─── CUSTOM CURSOR ─── */
#cursor-dot {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--tomato);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s, width 0.2s, height 0.2s, opacity 0.2s;
  mix-blend-mode: normal;
}

#cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(200, 62, 37, 0.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.18s cubic-bezier(.17, .67, .44, 1), width 0.25s, height 0.25s, border-color 0.2s;
}

body:has(a:hover) #cursor-dot,
body:has(button:hover) #cursor-dot {
  width: 18px;
  height: 18px;
}

body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring {
  width: 56px;
  height: 56px;
  border-color: var(--tomato);
}

.sauce-drop {
  position: fixed;
  border-radius: 50% 40% 60% 30%;
  background: var(--tomato);
  pointer-events: none;
  z-index: 9997;
  animation: drop-fade 1.4s ease-out forwards;
}

@keyframes drop-fade {
  0% {
    opacity: 0.85;
    transform: scale(1) rotate(0deg);
  }

  60% {
    opacity: 0.4;
    transform: scale(1.3) rotate(15deg);
  }

  100% {
    opacity: 0;
    transform: scale(0.7) rotate(30deg);
  }
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(24px, 3.5vw, 36px) clamp(24px, 5vw, 72px);
  transition: padding 0.4s cubic-bezier(.4, 0, .2, 1), background 0.4s, backdrop-filter 0.4s, transform 0.4s;
  mix-blend-mode: normal;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--semolina);
  text-decoration: none;
}

.nav-logo span {
  color: var(--tomato);
  font-style: italic;
}

.nav-links {
  display: flex;
  gap: clamp(24px, 3vw, 48px);
  list-style: none;
}

nav.nav-scrolled {
  padding: 16px clamp(24px, 5vw, 72px);
  background: rgba(15, 20, 17, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(244, 235, 208, 0.05);
}

nav.nav-hidden {
  transform: translateY(-100%);
}

.nav-links a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 235, 208, 0.45);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-links a.active {
  color: var(--semolina);
}

.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--tomato);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(.4, 0, .2, 1);
}

.nav-links a:hover {
  color: var(--semolina);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(200, 62, 37, 0.5);
  padding: 10px 22px;
  background: transparent;
  color: var(--tomato);
  cursor: none;
  transition: background 0.25s, color 0.25s;
}

.nav-cta:hover {
  background: var(--tomato);
  color: var(--semolina);
}

/* ─── ENTRANCE ANIMATIONS ─── */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.animate-up {
  opacity: 0;
}

.hero-eyebrow.animate-up {
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title.animate-up {
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.hero-desc.animate-up {
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-actions.animate-up {
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

.hero-stats.animate-up {
  animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

/* ─── HERO ─── */
/* ─── HERO ─── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 clamp(24px, 5vw, 72px);
  background: var(--charcoal);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-left {
  padding-top: 80px;
  max-width: 680px;
  position: relative;
  z-index: 15;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tomato);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
}

.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--tomato);
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 8.5vw, 130px);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.03em;
  color: var(--semolina);
  margin-bottom: 44px;
}

.hero-title em {
  font-style: italic;
  color: var(--tomato);
}

.hero-desc {
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.65;
  color: rgba(244, 235, 208, 0.55);
  max-width: 440px;
  margin-bottom: 56px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 80px;
}

.btn-primary {
  background: var(--tomato);
  color: var(--semolina);
  border: none;
  padding: 20px 44px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: none;
  transition: transform 0.3s cubic-bezier(.165, .84, .44, 1), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(200, 62, 37, 0.3);
}

.btn-ghost {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 235, 208, 0.45);
  background: none;
  border: none;
  cursor: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-ghost:hover {
  color: var(--semolina);
}

.btn-ghost svg {
  transition: transform 0.3s;
}

.btn-ghost:hover svg {
  transform: translateX(6px);
}

/* hero stats */
.hero-stats {
  display: flex;
  gap: clamp(32px, 4vw, 64px);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 300;
  color: var(--semolina);
  line-height: 1;
}

.stat-num span {
  color: var(--tomato);
}

.stat-label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(244, 235, 208, 0.35);
  margin-top: 10px;
}

/* hero right — visual */
/* hero right — visual */
.hero-right {
  position: relative;
  height: clamp(400px, 60vh, 100vh);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.hero-image-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  perspective: 1000px;
}

.hero-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 0.15s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

#hero:hover .hero-main-img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--charcoal) 0%, transparent 40%);
  z-index: 2;
}

.ingredient-float {
  position: absolute;
  font-size: clamp(24px, 4vw, 48px);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
  z-index: 15;
  pointer-events: none;
  animation: ing-float var(--dur) ease-in-out infinite alternate;
}

@keyframes ing-float {
  from {
    transform: translate(0, 0) rotate(var(--rot));
  }

  to {
    transform: translate(var(--tx), var(--ty)) rotate(calc(var(--rot) + 15deg));
  }
}

/* Responsive Overrides */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .hero-left {
    padding-top: 120px;
    margin: 0;
    max-width: 100%;
  }

  .hero-eyebrow {
    justify-content: center;
  }

  .hero-eyebrow::before {
    display: none;
  }

  .hero-eyebrow::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--tomato);
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
    flex-direction: column;
    gap: 20px;
  }

  .hero-stats {
    justify-content: center;
    transform: scale(0.9);
  }

  .hero-right {
    height: 50vh;
    width: 100%;
    margin-top: 60px;
  }

  .hero-overlay {
    background: linear-gradient(to bottom, var(--charcoal) 0%, transparent 30%, var(--charcoal) 100%);
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(40px, 12vw, 56px);
  }

  .hero-stats {
    gap: 24px;
  }
}

/* Vertical marquee text right edge */
.hero-marquee-v {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 48px;
  overflow: hidden;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(244, 235, 208, 0.07);
}

.marquee-v-inner {
  display: flex;
  flex-direction: column;
  animation: scrollUp 16s linear infinite;
  gap: 40px;
}

@keyframes scrollUp {
  from {
    transform: translateY(0);
  }

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

.marquee-v-inner span {
  writing-mode: vertical-lr;
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244, 235, 208, 0.2);
  white-space: nowrap;
}

/* ─── DIVIDER ─── */
.section-divider {
  height: 1px;
  background: rgba(244, 235, 208, 0.08);
  margin: 0 clamp(32px, 6vw, 96px);
}

/* ─── PHILOSOPHY SECTION ─── */
#philosophy {
  padding: clamp(80px, 12vw, 160px) clamp(32px, 6vw, 96px);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}

.section-tag {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tomato);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-tag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--tomato);
}

.phil-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 68px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--semolina);
}

.phil-title em {
  font-style: italic;
  color: var(--tomato);
}

.phil-body {
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.75;
  font-weight: 300;
  color: rgba(244, 235, 208, 0.65);
  margin-bottom: 36px;
}

.phil-body strong {
  color: var(--semolina);
  font-weight: 400;
}

.ingredients-row {
  display: flex;
  gap: 24px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.ing-tag {
  padding: 9px 18px;
  border: 1px solid rgba(244, 235, 208, 0.12);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 235, 208, 0.5);
  transition: border-color 0.25s, color 0.25s;
  cursor: none;
}

.ing-tag:hover {
  border-color: var(--tomato);
  color: var(--semolina);
}

/* ─── MENU SECTION ─── */
#menu {
  padding: clamp(80px, 12vw, 160px) clamp(32px, 6vw, 96px);
  position: relative;
  overflow: hidden;
}

.menu-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 24px;
}

.menu-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--semolina);
  letter-spacing: -0.02em;
}

.menu-title em {
  font-style: italic;
  color: var(--tomato);
}

.menu-sub {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 235, 208, 0.4);
  max-width: 220px;
  line-height: 1.7;
}

/* Horizontal scroll gallery */
.menu-scroll-wrap {
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}

.menu-scroll-wrap::-webkit-scrollbar {
  display: none;
}

.menu-cards {
  display: flex;
  gap: 24px;
  width: max-content;
}

.menu-card {
  width: clamp(260px, 28vw, 360px);
  background: rgba(244, 235, 208, 0.035);
  border: 1px solid rgba(244, 235, 208, 0.07);
  padding: 32px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  cursor: none;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--tomato);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(.4, 0, .2, 1);
}

.menu-card:hover {
  background: rgba(244, 235, 208, 0.06);
  border-color: rgba(244, 235, 208, 0.14);
  transform: translateY(-6px);
}

.menu-card:hover::before {
  transform: scaleX(1);
}

.card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: rgba(200, 62, 37, 0.5);
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.card-image-wrap {
  width: 100%;
  height: 200px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--charcoal);
}

.card-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.165, .84, .44, 1);
}

.menu-card:hover .card-image-wrap img {
  transform: scale(1.1);
}

.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--semolina);
  margin-bottom: 10px;
  line-height: 1.15;
}

.card-name em {
  font-style: italic;
  color: var(--tomato);
}

.card-desc {
  font-size: 13px;
  line-height: 1.65;
  font-weight: 300;
  color: rgba(244, 235, 208, 0.5);
  margin-bottom: 28px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(244, 235, 208, 0.08);
}

.card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 300;
  color: var(--semolina);
}

.card-price span {
  font-size: 14px;
  color: rgba(244, 235, 208, 0.4);
}

.card-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(244, 235, 208, 0.15);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244, 235, 208, 0.5);
  cursor: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.card-btn svg {
  width: 16px;
  height: 16px;
}

.card-btn:hover {
  background: var(--tomato);
  color: var(--semolina);
  border-color: var(--tomato);
}

/* scroll progress indicator */
.scroll-indicator {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.scroll-track {
  flex: 1;
  max-width: 200px;
  height: 2px;
  background: rgba(244, 235, 208, 0.1);
  border-radius: 1px;
  overflow: hidden;
}

.scroll-thumb {
  height: 100%;
  width: 40%;
  background: var(--tomato);
  border-radius: 1px;
  transition: width 0.1s;
}

.scroll-hint {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(244, 235, 208, 0.3);
}

/* ─── CRAFT SECTION ─── */
#craft {
  width: 100%;
  padding: clamp(80px, 11vw, 148px) clamp(24px, 7vw, 100px);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(244, 235, 208, 0.06);
  border-bottom: 1px solid rgba(244, 235, 208, 0.06);
  background: rgba(244, 235, 208, 0.025);
}

/* subtle background texture */
#craft::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 40% at 10% 80%, rgba(200, 62, 37, 0.07) 0%, transparent 65%),
    radial-gradient(ellipse 40% 35% at 90% 20%, rgba(45, 90, 39, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* ────── HEADER ────── */
.craft-header {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: clamp(56px, 7vw, 96px);
  position: relative;
}

.craft-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--tomato);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.craft-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--tomato);
  flex-shrink: 0;
}

.craft-eyebrow.in {
  opacity: 1;
  transform: translateX(0);
}

.craft-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6.5vw, 96px);
  font-weight: 300;
  line-height: 0.93;
  letter-spacing: -0.025em;
  color: var(--semolina);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s 0.1s ease, transform 0.8s 0.1s ease;
}

.craft-title em {
  font-style: italic;
  color: var(--tomato);
}

.craft-title.in {
  opacity: 1;
  transform: translateY(0);
}

/* progress line across header bottom */
.craft-header-line {
  position: absolute;
  bottom: -clamp(28px, 4vw, 48px);
  left: 0;
  height: 1px;
  width: 0;
  background: rgba(244, 235, 208, 0.1);
  transition: width 1s 0.4s cubic-bezier(.4, 0, .2, 1);
}

.craft-header-line.in {
  width: 100%;
}


/* ════════════════════════════════════════
   STEPS — LARGE SCREEN (desktop)
════════════════════════════════════════ */
.steps-desktop {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  margin-top: 64px;
}

/* connecting spine */
.steps-desktop::before {
  content: '';
  position: absolute;
  top: 64px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(244, 235, 208, 0.12) 10%,
      rgba(200, 62, 37, 0.35) 50%,
      rgba(244, 235, 208, 0.12) 90%,
      transparent 100%);
  z-index: 0;
}

.step-card {
  padding: 0 clamp(16px, 2.5vw, 36px) clamp(40px, 5vw, 64px);
  position: relative;
  z-index: 1;
  cursor: none;

  /* scroll-in state */
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.75s ease,
    transform 0.75s ease,
    background 0.35s ease;
}

.step-card.in {
  opacity: 1;
  transform: translateY(0);
}

.step-card:nth-child(1) {
  transition-delay: 0s;
}

.step-card:nth-child(2) {
  transition-delay: 0.14s;
}

.step-card:nth-child(3) {
  transition-delay: 0.28s;
}

.step-card:nth-child(4) {
  transition-delay: 0.42s;
}

/* hover lift */
.step-card:hover .step-inner {
  transform: translateY(-8px);
}

.step-inner {
  transition: transform 0.4s cubic-bezier(.25, .46, .45, .94);
}

/* node circle on the spine */
.step-node {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 62, 37, 0.4);
  background: var(--charcoal);
  margin: 0 auto 28px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, transform 0.3s;
}

.step-node::after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tomato);
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.3s;
}

.step-card:hover .step-node {
  border-color: var(--tomato);
  transform: scale(1.3);
}

.step-card:hover .step-node::after {
  opacity: 1;
  transform: scale(1.4);
}

/* pulse ring on hover */
.step-node::before {
  content: '';
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(200, 62, 37, 0);
  transition: border-color 0.3s, transform 0.4s;
}

.step-card:hover .step-node::before {
  border-color: rgba(200, 62, 37, 0.3);
  transform: scale(1.3);
  animation: pulse-ring 1.6s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.step-num-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(200, 62, 37, 0.5);
  text-align: center;
  margin-bottom: clamp(14px, 2vw, 22px);
  font-variant-numeric: tabular-nums;
}

.step-icon-wrap {
  text-align: center;
  margin-bottom: clamp(14px, 2vw, 24px);
}

.step-icon {
  font-size: clamp(28px, 3.5vw, 44px);
  display: inline-block;
  transition: transform 0.4s cubic-bezier(.34, 1.56, .64, 1);
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.45));
}

.step-card:hover .step-icon {
  transform: scale(1.22) rotate(-6deg);
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  text-align: center;
  color: var(--semolina);
  margin-bottom: clamp(10px, 1.5vw, 18px);
  line-height: 1.1;
  transition: color 0.25s;
}

.step-card:hover .step-title {
  color: white;
}

.step-title em {
  font-style: italic;
  color: var(--tomato);
}

.step-desc {
  font-size: clamp(13px, 1.1vw, 15px);
  line-height: 1.72;
  font-weight: 300;
  color: rgba(244, 235, 208, 0.48);
  text-align: center;
  transition: color 0.25s;
}

.step-card:hover .step-desc {
  color: rgba(244, 235, 208, 0.68);
}

/* vertical separator between cards */
.step-card+.step-card::after {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 10%;
  width: 1px;
  background: linear-gradient(to bottom,
      transparent,
      rgba(244, 235, 208, 0.08) 40%,
      rgba(244, 235, 208, 0.08) 60%,
      transparent);
}

/* active card highlight bar */
.step-card.active-step .step-inner::before {
  content: '';
  display: block;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--tomato), transparent);
  margin-bottom: 20px;
  animation: bar-glow 0.5s ease forwards;
}

@keyframes bar-glow {
  from {
    opacity: 0;
    transform: scaleX(0.3);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}


/* ════════════════════════════════════════
   STEPS — MOBILE (accordion / timeline)
════════════════════════════════════════ */
.steps-mobile {
  display: none;
}

.mobile-step {
  position: relative;
  padding-left: 48px;
  padding-bottom: 40px;
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.mobile-step.in {
  opacity: 1;
  transform: translateX(0);
}

.mobile-step:nth-child(1) {
  transition-delay: 0.05s;
}

.mobile-step:nth-child(2) {
  transition-delay: 0.18s;
}

.mobile-step:nth-child(3) {
  transition-delay: 0.31s;
}

.mobile-step:nth-child(4) {
  transition-delay: 0.44s;
}

/* vertical timeline line */
.mobile-step::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 20px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, rgba(200, 62, 37, 0.4), rgba(244, 235, 208, 0.05));
}

.mobile-step:last-child::before {
  display: none;
}

/* dot */
.mobile-step::after {
  content: '';
  position: absolute;
  left: 1px;
  top: 12px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 62, 37, 0.5);
  background: var(--charcoal);
  box-shadow: 0 0 12px rgba(200, 62, 37, 0.2);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.mobile-step.open::after {
  border-color: var(--tomato);
  box-shadow: 0 0 20px rgba(200, 62, 37, 0.45);
}

.mobile-step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  padding: 6px 0 12px;
  user-select: none;
}

.mobile-step-num {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(200, 62, 37, 0.55);
  flex-shrink: 0;
}

.mobile-step-icon {
  font-size: 20px;
  transition: transform 0.35s cubic-bezier(.34, 1.56, .64, 1);
}

.mobile-step.open .mobile-step-icon {
  transform: scale(1.3) rotate(-8deg);
}

.mobile-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 5.5vw, 28px);
  font-weight: 400;
  color: var(--semolina);
  line-height: 1.1;
  flex: 1;
}

.mobile-step-title em {
  font-style: italic;
  color: var(--tomato);
}

.mobile-step-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244, 235, 208, 0.3);
  transition: transform 0.35s ease, color 0.25s;
}

.mobile-step.open .mobile-step-chevron {
  transform: rotate(90deg);
  color: var(--tomato);
}

.mobile-step-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(.4, 0, .2, 1), opacity 0.35s ease;
  opacity: 0;
}

.mobile-step.open .mobile-step-body {
  max-height: 200px;
  opacity: 1;
}

.mobile-step-desc {
  font-size: 14px;
  line-height: 1.72;
  font-weight: 300;
  color: rgba(244, 235, 208, 0.55);
  padding-bottom: 8px;
  border-left: 2px solid rgba(200, 62, 37, 0.2);
  padding-left: 16px;
  margin-left: -2px;
}


/* ════════════════════════════════════════
   BOTTOM BANNER
════════════════════════════════════════ */
.craft-footer {
  margin-top: clamp(56px, 7vw, 88px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: clamp(28px, 3.5vw, 40px);
  border-top: 1px solid rgba(244, 235, 208, 0.08);

  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s 0.5s ease, transform 0.7s 0.5s ease;
}

.craft-footer.in {
  opacity: 1;
  transform: translateY(0);
}

.craft-footer-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.stat-figure {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 300;
  color: var(--semolina);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-figure sup {
  font-size: 0.45em;
  color: var(--tomato);
}

.stat-detail {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 235, 208, 0.35);
}

.craft-footer-divider {
  width: 1px;
  height: 40px;
  background: rgba(244, 235, 208, 0.1);
  flex-shrink: 0;
}

.craft-footer-cta {
  background: transparent;
  border: 1px solid rgba(200, 62, 37, 0.4);
  padding: 13px 28px;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tomato);
  cursor: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.craft-footer-cta:hover {
  background: var(--tomato);
  color: var(--semolina);
  border-color: var(--tomato);
  transform: translateY(-2px);
}

.craft-footer-cta svg {
  transition: transform 0.25s;
}

.craft-footer-cta:hover svg {
  transform: translateX(5px);
}


/* ════════════════════════════════════════
   FLAME PARTICLE CANVAS
════════════════════════════════════════ */
#flame-canvas {
  position: absolute;
  bottom: 0;
  right: clamp(24px, 5vw, 80px);
  width: min(200px, 28vw);
  height: min(320px, 40vw);
  pointer-events: none;
  opacity: 0.22;
}

/* ─── TESTIMONIALS ─── */
#testimonials {
  padding: clamp(80px, 12vw, 160px) clamp(32px, 6vw, 96px);
  text-align: center;
}

.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 50px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.35;
  color: var(--semolina);
  max-width: 820px;
  margin: 40px auto 28px;
  letter-spacing: -0.01em;
}

.testimonial-quote em {
  color: var(--tomato);
  font-style: normal;
}

.testimonial-attr {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 235, 208, 0.35);
}

.testimonial-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 40px;
}

.t-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(244, 235, 208, 0.15);
  cursor: none;
  transition: background 0.25s, transform 0.25s;
}

.t-dot.active {
  background: var(--tomato);
  transform: scale(1.4);
}

/* ─── CTA SECTION ─── */
#reserve {
  padding: clamp(80px, 12vw, 160px) clamp(32px, 6vw, 96px);
  position: relative;
  overflow: hidden;
  text-align: center;
}

#reserve::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(200, 62, 37, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.reserve-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6vw, 96px);
  font-weight: 300;
  line-height: 0.95;
  color: var(--semolina);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.reserve-title em {
  font-style: italic;
  color: var(--tomato);
}

.reserve-sub {
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 300;
  color: rgba(244, 235, 208, 0.5);
  max-width: 440px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.reserve-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.big-btn {
  background: var(--tomato);
  color: var(--semolina);
  border: none;
  padding: 20px 52px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: none;
  transition: transform 0.2s, box-shadow 0.25s;
}

.big-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(200, 62, 37, 0.5);
}

.big-btn-ghost {
  background: transparent;
  color: rgba(244, 235, 208, 0.55);
  border: 1px solid rgba(244, 235, 208, 0.15);
  padding: 20px 44px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: none;
  transition: border-color 0.25s, color 0.25s;
}

.big-btn-ghost:hover {
  border-color: rgba(244, 235, 208, 0.4);
  color: var(--semolina);
}

/* ─── FOOTER ─── */
footer {
  padding: 48px clamp(32px, 6vw, 96px);
  border-top: 1px solid rgba(244, 235, 208, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  color: var(--semolina);
  letter-spacing: 0.1em;
}

.footer-logo span {
  color: var(--tomato);
  font-style: italic;
}

.footer-copy {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(244, 235, 208, 0.25);
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 235, 208, 0.3);
  text-decoration: none;
  transition: color 0.25s;
}

.footer-links a:hover {
  color: var(--semolina);
}

/* ─── NOISE overlay ─── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.022;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: overlay;
}

/* ─── SCROLL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(.25, .46, .45, .94), transform 0.75s cubic-bezier(.25, .46, .45, .94);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.22s;
}

.reveal-delay-3 {
  transition-delay: 0.34s;
}

.reveal-delay-4 {
  transition-delay: 0.46s;
}

/* ─── CONTACT SECTION ─── */
#contact {
  padding: clamp(80px, 12vw, 140px) clamp(32px, 6vw, 96px);
  background: rgba(244, 235, 208, 0.018);
  border-top: 1px solid rgba(244, 235, 208, 0.07);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
  margin-top: 56px;
}

.contact-item {
  margin-bottom: 36px;
}

.contact-label {
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--tomato);
  margin-bottom: 10px;
}

.contact-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 300;
  color: var(--semolina);
  line-height: 1.4;
}

.contact-value a {
  color: var(--semolina);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-value a:hover {
  color: var(--tomato);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  margin-top: 4px;
}

.hours-day {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: rgba(244, 235, 208, 0.4);
  font-weight: 300;
  padding: 4px 0;
}

.hours-time {
  font-size: 12px;
  color: rgba(244, 235, 208, 0.65);
  font-weight: 300;
  padding: 4px 0;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 235, 208, 0.4);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(244, 235, 208, 0.04);
  border: 1px solid rgba(244, 235, 208, 0.1);
  padding: 14px 16px;
  color: var(--semolina);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  outline: none;
  cursor: none;
  transition: border-color 0.25s, background 0.25s;
  width: 100%;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(244, 235, 208, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(200, 62, 37, 0.5);
  background: rgba(244, 235, 208, 0.06);
}

/* Customizing date picker icon */
input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(1) sepia(100%) saturate(0%) hue-rotate(0deg);
  opacity: 0.8;
  cursor: none;
}

/* Customizing appearance for Safari/Chrome */
input[type="date"]::-webkit-datetime-edit {
  color: var(--semolina);
}

.form-group select option {
  background: #1a1f1c;
  color: var(--semolina);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.form-submit {
  width: 100%;
  background: var(--tomato);
  color: var(--semolina);
  border: none;
  padding: 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: none;
  transition: transform 0.2s, box-shadow 0.25s;
  margin-top: 8px;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 50px rgba(200, 62, 37, 0.4);
}

.form-note {
  font-size: 11px;
  color: rgba(244, 235, 208, 0.25);
  margin-top: 14px;
  letter-spacing: 0.05em;
  line-height: 1.6;
}

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

.form-success.show {
  display: block;
}

.form-success-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--semolina);
  margin-bottom: 12px;
}

.form-success p {
  font-size: 14px;
  color: rgba(244, 235, 208, 0.5);
  font-weight: 300;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  #hero {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

  #philosophy {
    grid-template-columns: 1fr;
  }

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

  .process-step {
    border-right: none;
    border-bottom: 1px solid rgba(244, 235, 208, 0.07);
  }

  .nav-links {
    display: none;
  }

  .menu-header {
    flex-direction: column;
    align-items: flex-start;
  }

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

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

@media (max-width: 600px) {
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

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

  footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .reserve-actions {
    flex-direction: column;
  }

  .big-btn,
  .big-btn-ghost {
    width: 100%;
    text-align: center;
  }
}