/* ============================================
   craving.food — Design System & Styles
   ============================================ */

:root {
  /* Color system */
  --bg: #f5efe7;
  --bg-warm: #efe6db;
  --bg-deep: #1c1410;
  --surface: #ffffff;
  --surface-soft: #faf7f2;
  --text: #1a1512;
  --text-muted: #6a6158;
  --text-soft: #8a8178;
  --accent: #c4352b;
  --accent-hover: #a82c23;
  --accent-soft: rgba(196, 53, 43, 0.1);
  --gold: #c9923a;
  --gold-soft: #e8c48a;
  --border: rgba(26, 21, 18, 0.08);
  --border-strong: rgba(26, 21, 18, 0.14);
  --shadow-sm: 0 2px 8px rgba(26, 21, 18, 0.05);
  --shadow-md: 0 8px 28px rgba(26, 21, 18, 0.08);
  --shadow-lg: 0 20px 50px rgba(26, 21, 18, 0.12);
  --shadow-nav: 0 4px 24px rgba(26, 21, 18, 0.08);

  /* Typography */
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;

  /* Spacing (8px system) */
  --space-1: 0.5rem;   /* 8 */
  --space-2: 1rem;     /* 16 */
  --space-3: 1.5rem;   /* 24 */
  --space-4: 2rem;     /* 32 */
  --space-5: 3rem;     /* 48 */
  --space-6: 4rem;     /* 64 */
  --space-7: 5rem;     /* 80 */
  --space-8: 7rem;     /* 112 */

  /* Radii */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 999px;

  /* Layout */
  --container: 1160px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(201, 146, 58, 0.12), transparent 50%),
    radial-gradient(ellipse 60% 40% at 95% 5%, rgba(196, 53, 43, 0.06), transparent 45%),
    var(--bg);
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul, ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: var(--space-2);
  top: -100px;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

.skip-link:focus {
  top: var(--space-2);
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
}

h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
}

h3 {
  font-size: 1.125rem;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-2);
}

.eyebrow--light {
  color: var(--gold-soft);
}

.section-lead {
  max-width: 36rem;
  margin-inline: auto;
  color: var(--text-muted);
  font-size: 1.0625rem;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-5);
}

.section-header h2 {
  margin-bottom: var(--space-2);
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: -0.01em;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    color 0.25s var(--ease);
  white-space: nowrap;
}

.btn-lg {
  padding: 1rem 1.75rem;
  font-size: 1rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 20px rgba(196, 53, 43, 0.28);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(196, 53, 43, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
}

.btn-secondary:hover {
  border-color: var(--text);
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: var(--space-2) 0;
  transition:
    background 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    padding 0.3s var(--ease),
    backdrop-filter 0.3s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(245, 239, 231, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-nav);
  padding: 0.65rem 0;
}

.nav {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  min-height: 48px;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  color: var(--text);
  flex-shrink: 0;
}

.logo-dot {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 0.85rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--text);
  background: rgba(26, 21, 18, 0.04);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.icon-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  color: var(--text);
  transition: background 0.2s, transform 0.2s;
}

.icon-btn:hover {
  background: rgba(26, 21, 18, 0.06);
}

.cart-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  transform: scale(0);
  transition: transform 0.3s var(--ease-out);
}

.cart-count.has-items {
  transform: scale(1);
}

.cart-count.pop {
  animation: cart-pop 0.35s var(--ease-out);
}

@keyframes cart-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: var(--radius-sm);
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}

.hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  padding: var(--space-5) 0 var(--space-6);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: var(--space-5);
  align-items: center;
}

.hero-title {
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.02;
  margin-bottom: var(--space-3);
}

.hero-accent {
  color: var(--accent);
}

.hero-text {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 28rem;
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: var(--space-5);
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero-meta-item strong {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-meta-item span {
  font-size: 0.8125rem;
  color: var(--text-soft);
}

.hero-meta-divider {
  width: 1px;
  height: 36px;
  background: var(--border-strong);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 420px;
}

.hero-image-wrap {
  position: relative;
  width: min(100%, 480px);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  z-index: 2;
  background: var(--bg-warm);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.hero-image-wrap:hover img {
  transform: scale(1.04);
}

.hero-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
}

.hero-badge--rating {
  top: 1.25rem;
  left: 1.25rem;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
}

.badge-stars {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.hero-badge--delivery {
  bottom: 1.5rem;
  right: 1.25rem;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2f9e62;
  box-shadow: 0 0 0 3px rgba(47, 158, 98, 0.25);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(47, 158, 98, 0.25); }
  50% { box-shadow: 0 0 0 6px rgba(47, 158, 98, 0.1); }
}

.blob {
  position: absolute;
  border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
  z-index: 1;
  pointer-events: none;
}

.blob-1 {
  width: 280px;
  height: 280px;
  background: rgba(196, 53, 43, 0.12);
  top: -8%;
  right: -5%;
  animation: float-blob 8s ease-in-out infinite;
}

.blob-2 {
  width: 200px;
  height: 200px;
  background: rgba(201, 146, 58, 0.18);
  bottom: 5%;
  left: 0;
  animation: float-blob 10s ease-in-out infinite reverse;
}

.float-chip {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  animation: float-chip 5s ease-in-out infinite;
}

.float-chip--leaf {
  top: 18%;
  right: 4%;
  background: #2f7a4a;
  color: #c8f0d4;
}

.float-chip--flame {
  bottom: 22%;
  left: 2%;
  background: var(--accent);
  color: #ffd4cf;
  animation-delay: -2s;
}

@keyframes float-blob {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(12px, -16px) rotate(8deg); }
}

@keyframes float-chip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ---------- Trust bar ---------- */
.trust-bar {
  padding: var(--space-3) 0;
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.45);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2);
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: var(--space-2);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
  flex-shrink: 0;
}

/* ---------- Menu ---------- */
.menu-section {
  background:
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.5) 20%, rgba(255, 255, 255, 0.5) 80%, transparent);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.menu-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.menu-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-warm);
}

.menu-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.menu-card:hover .menu-card-media img {
  transform: scale(1.08);
}

.menu-category {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.35rem 0.7rem;
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius-full);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.menu-card-body {
  padding: 1.15rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.5rem;
}

.menu-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}

.menu-card-top h3 {
  font-size: 1.05rem;
}

.menu-rating {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold);
  background: rgba(201, 146, 58, 0.12);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-full);
}

.menu-card-body > p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.menu-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.menu-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.add-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: #fff;
  transition:
    transform 0.25s var(--ease),
    background 0.2s,
    box-shadow 0.25s;
  box-shadow: 0 4px 14px rgba(196, 53, 43, 0.3);
}

.add-btn:hover {
  background: var(--accent-hover);
  transform: scale(1.08);
}

.add-btn:active {
  transform: scale(0.95);
}

.add-btn.is-added {
  background: #2f9e62;
  box-shadow: 0 4px 14px rgba(47, 158, 98, 0.3);
}

/* ---------- Promo ---------- */
.promo {
  padding: 0 0 var(--space-7);
}

.promo-panel {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-deep);
  color: #fff;
  min-height: 380px;
  box-shadow: var(--shadow-lg);
}

.promo-content {
  padding: clamp(2rem, 5vw, 3.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(196, 53, 43, 0.35), transparent 55%),
    var(--bg-deep);
}

.promo-content h2 {
  color: #fff;
  margin-bottom: var(--space-2);
  max-width: 14ch;
}

.promo-content > p {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: var(--space-4);
  max-width: 28ch;
}

.promo-visual {
  position: relative;
  min-height: 280px;
}

.promo-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

/* ---------- Why ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-3);
}

.why-card {
  padding: var(--space-4) var(--space-3);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.why-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: var(--space-3);
}

.why-card h3 {
  margin-bottom: 0.5rem;
}

.why-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---------- How it works ---------- */
.how-section {
  background: var(--surface-soft);
  border-block: 1px solid var(--border);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
  opacity: 0.35;
  pointer-events: none;
}

.step {
  text-align: center;
  position: relative;
  padding: 0 var(--space-2);
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: var(--space-3);
  border-radius: var(--radius-full);
  background: var(--surface);
  border: 2px solid var(--accent);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: -0.02em;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
}

.step h3 {
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 22ch;
  margin-inline: auto;
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}

.review-card {
  padding: var(--space-4);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s;
  cursor: default;
}

.review-card:hover,
.review-card.is-active {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(196, 53, 43, 0.2);
}

.review-stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  font-size: 0.875rem;
}

.review-card > p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.review-author img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  object-fit: cover;
}

.review-author cite {
  font-style: normal;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  display: block;
}

.review-author span {
  font-size: 0.8125rem;
  color: var(--text-soft);
}

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  padding: var(--space-8) 0;
  overflow: hidden;
  isolation: isolate;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(28, 20, 16, 0.88) 0%, rgba(28, 20, 16, 0.72) 45%, rgba(196, 53, 43, 0.45) 100%);
}

.final-cta-content {
  text-align: center;
  color: #fff;
  max-width: 36rem;
}

.final-cta-content h2 {
  color: #fff;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: var(--space-2);
}

.final-cta-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.125rem;
  margin-bottom: var(--space-4);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-deep);
  color: rgba(255, 255, 255, 0.78);
  padding-top: var(--space-6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-5);
  padding-bottom: var(--space-5);
}

.logo--footer {
  color: #fff;
  display: inline-block;
  margin-bottom: var(--space-2);
}

.footer-brand p {
  max-width: 28ch;
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: var(--space-3);
  color: rgba(255, 255, 255, 0.62);
}

.socials {
  display: flex;
  gap: 0.5rem;
}

.social-link {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}

.social-link:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.footer-col h3 {
  color: #fff;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-2);
  font-weight: 600;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.62);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-contact span {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: var(--space-3) 0;
}

.footer-bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.45);
  text-align: center;
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 150;
  padding: 0.85rem 1.35rem;
  background: var(--bg-deep);
  color: #fff;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  transition: transform 0.4s var(--ease-out);
  pointer-events: none;
  white-space: nowrap;
}

.toast.is-visible {
  transform: translateX(-50%) translateY(0);
}

/* ---------- Scroll reveal (only when JS enables) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}

.js .reveal.reveal-delay {
  transition-delay: 0.12s;
}

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .hero-content {
    text-align: center;
  }

  .hero-text {
    margin-inline: auto;
  }

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

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

  .hero-visual {
    min-height: 360px;
  }

  .hero-image-wrap {
    width: min(100%, 400px);
  }

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

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

  .promo-panel {
    grid-template-columns: 1fr;
  }

  .promo-visual {
    min-height: 240px;
    order: -1;
  }

  .promo-visual img {
    position: relative;
    height: 240px;
  }

  .steps::before {
    display: none;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    inset: 0 0 auto 0;
    top: calc(var(--header-h) + 8px);
    margin: 0 1rem;
    padding: var(--space-2);
    flex-direction: column;
    align-items: stretch;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 0.3s var(--ease),
      transform 0.3s var(--ease),
      visibility 0.3s;
    z-index: 99;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 0.85rem 1rem;
    font-size: 1rem;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  #search-btn {
    display: none;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
  }

  .trust-item {
    justify-content: flex-start;
    font-size: 0.875rem;
    padding: 0.75rem 0.5rem;
  }

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

  .steps {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .step {
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: var(--space-2);
    padding: 0;
  }

  .step-num {
    grid-row: 1 / 3;
    margin-bottom: 0;
    align-self: center;
  }

  .step p {
    margin-inline: 0;
    max-width: none;
  }

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

  .hero {
    padding-top: var(--space-3);
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.75rem, var(--container));
  }

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

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }

  .hero-title {
    font-size: clamp(2.4rem, 11vw, 3rem);
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-badge--rating {
    top: 0.75rem;
    left: 0.75rem;
  }

  .hero-badge--delivery {
    bottom: 0.85rem;
    right: 0.75rem;
    font-size: 0.75rem;
  }

  .float-chip {
    width: 36px;
    height: 36px;
  }

  .blob-1 {
    width: 180px;
    height: 180px;
  }

  .blob-2 {
    width: 140px;
    height: 140px;
  }

  .toast {
    white-space: normal;
    max-width: calc(100% - 2rem);
    text-align: center;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
