/* ============================================================
   HANDI LITTI — Design System & Landing Page Styles
   ============================================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Colour Palette */
  --bg-dark:       hsl(20, 15%, 8%);
  --bg-mid:        hsl(22, 18%, 11%);
  --bg-card:       hsl(24, 20%, 13%);
  --fire-orange:   hsl(28, 96%, 52%);
  --fire-deep:     hsl(18, 92%, 40%);
  --fire-glow:     hsl(40, 100%, 68%);
  --gold:          hsl(42, 90%, 60%);
  --gold-light:    hsl(45, 95%, 75%);
  --cream:         hsl(42, 60%, 94%);
  --text-primary:  hsl(42, 40%, 92%);
  --text-muted:    hsl(30, 20%, 58%);
  --border:        hsl(25, 20%, 20%);
  --green:         hsl(130, 50%, 45%);
  --red-tag:       hsl(5, 80%, 48%);

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --font-hand:  'Kalam', cursive;

  /* Spacing */
  --section-pad: clamp(4rem, 8vw, 8rem);
  --container:   1200px;
  --radius:      1rem;
  --radius-sm:   0.5rem;

  /* Shadows */
  --shadow-fire: 0 0 40px hsla(28, 96%, 52%, 0.25);
  --shadow-card: 0 8px 32px hsla(0, 0%, 0%, 0.4);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

.section { padding: var(--section-pad) 0; }

/* ── Typography Helpers ── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--fire-orange);
  margin-bottom: 0.75rem;
}
.section-eyebrow.center { text-align: center; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.section-title.center { text-align: center; }
.section-title em { font-style: italic; color: var(--gold); }

.highlight {
  background: linear-gradient(135deg, var(--fire-orange), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.body-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  max-width: 55ch;
}
.body-text strong { color: var(--cream); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-fire {
  background: linear-gradient(135deg, var(--fire-deep), var(--fire-orange) 60%, var(--fire-glow));
  color: #fff;
  box-shadow: 0 4px 20px hsla(28, 96%, 52%, 0.45);
}
.btn-fire:hover { box-shadow: 0 8px 35px hsla(28, 96%, 52%, 0.65); }

.btn-primary {
  background: var(--fire-orange);
  color: #fff;
  box-shadow: 0 4px 16px hsla(28, 96%, 52%, 0.35);
}
.btn-primary:hover { background: var(--fire-deep); }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid hsla(42, 60%, 94%, 0.3);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { border-color: var(--fire-orange); color: var(--fire-orange); }

.btn-small { padding: 0.55rem 1.2rem; font-size: 0.85rem; }

.full-width { width: 100%; }

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.3s ease, backdrop-filter 0.3s, box-shadow 0.3s;
}

#navbar.scrolled {
  background: hsla(20, 15%, 8%, 0.9);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px) saturate(1.5);
  box-shadow: 0 1px 24px hsla(0,0%,0%,0.4);
}

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 1.2rem clamp(1rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.brand-logo {
  display: block;
  width: clamp(120px, 16vw, 180px);
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.35));
}

.loader-screen {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at center, rgba(38, 22, 12, 0.96), rgba(12, 8, 6, 1));
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-ring {
  position: absolute;
  width: min(42vw, 260px);
  height: min(42vw, 260px);
  border-radius: 50%;
  border: 3px solid rgba(255, 168, 79, 0.25);
  border-top-color: var(--fire-orange);
  border-right-color: var(--gold);
  animation: spin 1.2s linear infinite;
  box-shadow: 0 0 24px rgba(255, 144, 0, 0.25);
}

.loader-logo {
  position: relative;
  z-index: 1;
  width: clamp(180px, 30vw, 280px);
  height: auto;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.4));
  animation: loaderPulse 1.3s ease-in-out infinite;
}

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

@keyframes loaderPulse {
  0%, 100% { transform: scale(0.96); opacity: 0.9; }
  50% { transform: scale(1.04); opacity: 1; }
}

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--fire-orange);
  transition: width 0.25s ease;
  border-radius: 2px;
}
.nav-link:hover { color: var(--cream); }
.nav-link:hover::after { width: 100%; }

.nav-cta { margin-left: 1rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: hsla(20, 15%, 8%, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid var(--border);
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 1.2rem; }
.mobile-menu.open { display: block; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    hsla(20, 15%, 6%, 0.88) 0%,
    hsla(22, 18%, 10%, 0.72) 50%,
    hsla(18, 20%, 8%, 0.82) 100%
  );
}

/* Floating particles */
.particle {
  position: absolute;
  color: var(--fire-orange);
  opacity: 0.4;
  font-size: 1.2rem;
  animation: float linear infinite;
  pointer-events: none;
}
.p1 { top: 20%; left: 10%; animation-duration: 6s; animation-delay: 0s; }
.p2 { top: 60%; left: 85%; animation-duration: 8s; animation-delay: -2s; }
.p3 { top: 80%; left: 20%; animation-duration: 7s; animation-delay: -4s; }
.p4 { top: 30%; left: 75%; animation-duration: 9s; animation-delay: -1s; font-size: 1rem; }

@keyframes float {
  0%   { transform: translateY(0) rotate(0deg); opacity: 0.4; }
  50%  { transform: translateY(-20px) rotate(180deg); opacity: 0.7; }
  100% { transform: translateY(0) rotate(360deg); opacity: 0.4; }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 8rem clamp(1rem, 4vw, 2.5rem) 5rem;
  width: 100%;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--fire-glow);
  margin-bottom: 1rem;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 900;
  line-height: 1.08;
  color: var(--cream);
  margin-bottom: 1.5rem;
  max-width: 14ch;
}
.hero-headline em {
  display: block;
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: hsla(42, 60%, 94%, 0.75);
  margin-bottom: 2.5rem;
  max-width: 50ch;
  line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.badge {
  background: hsla(255, 255%, 255%, 0.08);
  border: 1px solid hsla(42, 60%, 94%, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--cream);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.scroll-dot {
  width: 6px; height: 6px;
  background: var(--fire-orange);
  border-radius: 50%;
  animation: bounce 2s ease-in-out infinite;
  box-shadow: 0 0 12px var(--fire-orange);
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(10px); }
}

/* ── ABOUT ── */
.about { background: var(--bg-mid); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.stats-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--fire-orange);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.4s ease;
}
.about-image-wrap:hover .about-img { transform: scale(1.03); }

.about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: hsla(20, 15%, 8%, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  line-height: 1.4;
}
.badge-icon { font-size: 1.8rem; }

/* ── MENU ── */
.menu { background: var(--bg-dark); }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.menu-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-fire);
  border-color: hsla(28, 96%, 52%, 0.3);
}

.menu-card-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.menu-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.menu-card:hover .menu-card-img-wrap img { transform: scale(1.06); }

.menu-tag {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--fire-orange);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}
.menu-tag.veg { background: var(--green); }
.menu-tag.premium { background: linear-gradient(135deg, #b8860b, var(--gold)); }

.menu-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.menu-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.menu-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.menu-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fire-orange);
}

/* ── STORY ── */
.story {
  position: relative;
  overflow: hidden;
}
.story-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.story-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.3) saturate(0.6);
}
.story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    hsla(20, 15%, 6%, 0.7) 0%,
    hsla(22, 12%, 8%, 0.85) 100%
  );
}
.story-content {
  position: relative;
  z-index: 1;
}

.story-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}
.story-step {
  background: hsla(255, 255%, 255%, 0.06);
  border: 1px solid hsla(255, 255%, 255%, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background 0.3s, transform 0.3s;
}
.story-step:hover {
  background: hsla(255, 255%, 255%, 0.1);
  transform: translateY(-4px);
}
.step-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}
.story-step h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.story-step p {
  font-size: 0.9rem;
  color: hsla(42, 60%, 90%, 0.7);
  line-height: 1.65;
}

/* ── TESTIMONIALS ── */
.testimonials { background: var(--bg-mid); }

.testimonials-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}
.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}
.testimonial-card > p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--fire-deep), var(--fire-orange));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  color: var(--cream);
  font-size: 0.9rem;
}
.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ── ORDER ── */
.order { background: var(--bg-dark); }

.order-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) * 1.5);
  padding: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.order-left .section-eyebrow { display: block; margin-bottom: 0.75rem; }
.order-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.order-left > p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}
.order-perks {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.order-perks li {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ── FORM ── */
.order-form {
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
}
.order-form h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-dark);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: hsl(30, 15%, 35%); }
.form-group select option { background: var(--bg-dark); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--fire-orange);
  box-shadow: 0 0 0 3px hsla(28, 96%, 52%, 0.15);
}

.form-group input:user-valid,
.form-group select:user-valid,
.form-group textarea:user-valid {
  border-color: var(--green);
}

/* ── FOOTER ── */
.footer { background: hsl(20, 15%, 5%); border-top: 1px solid var(--border); }

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.footer-brand .logo { margin-bottom: 1rem; font-size: 1.3rem; }
.footer-brand > p { font-size: 0.9rem; color: var(--text-muted); max-width: 30ch; margin-bottom: 1.5rem; line-height: 1.6; }

.footer-social { display: flex; gap: 1rem; }
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-link:hover { border-color: var(--fire-orange); color: var(--fire-orange); background: hsla(28, 96%, 52%, 0.1); }

.footer-links h4, .footer-contact h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 1.25rem;
  font-weight: 700;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--fire-orange); }

.footer-contact address { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-contact p, .footer-contact a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--fire-orange); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem clamp(1rem, 4vw, 2.5rem);
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ── TOAST ── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, var(--fire-deep), var(--fire-orange));
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: 0 8px 32px hsla(28, 96%, 52%, 0.5);
  z-index: 999;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── SCROLL REVEAL ANIMATIONS ── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-side {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up.visible, .reveal-side.visible {
  opacity: 1;
  transform: translate(0);
}

.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }

/* Scroll-driven animation for navbar shrink (progressive enhancement) */
@supports ((animation-timeline: scroll()) and (animation-range: 0% 100%)) {
  @keyframes nav-shrink {
    to { padding-block: 0.6rem; }
  }
  .nav-inner {
    animation: nav-shrink auto linear both;
    animation-timeline: scroll(block root);
    animation-range: 0px 100px;
  }
}

/* Fallback handled via JS class */

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { order: -1; }
  .about-img { height: 320px; }
  .order-box { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-headline { font-size: clamp(2.5rem, 10vw, 4rem); }
  .stats-row { gap: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .testimonials-track { grid-template-columns: 1fr; }
  .story-steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 420px) {
  .story-steps { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-up, .reveal-side { opacity: 1; transform: none; }
}
