/* ════════════════════════════════════════════════════════
   Foodism — Main Stylesheet
   Extracted from monolithic HTML, enhanced for MVC arch.
   ════════════════════════════════════════════════════════ */

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

:root {
  --orange : #f97316;
  --red    : #ef4444;
  --dark   : #1a1a1a;
  --gray   : #6b7280;
  --light  : #f9fafb;
  --border : #e5e7eb;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
  cursor: none;
}

/* ── Custom Cursor ───────────────────────────────────── */
.cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .1s ease, width .3s ease, height .3s ease, opacity .3s ease;
  mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid var(--orange);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: left .12s ease, top .12s ease, width .3s ease, height .3s ease, opacity .3s;
  opacity: .5;
}
body:has(a:hover) .cursor,
body:has(button:hover) .cursor { width: 24px; height: 24px; background: var(--red); }
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring { width: 56px; height: 56px; opacity: .2; }

.cursor-glow {
  position: fixed;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(249,115,22,.12), transparent 70%);
  pointer-events: none;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  transition: left .08s, top .08s;
}

/* ── Progress Bar ────────────────────────────────────── */
.progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--orange), var(--red));
  z-index: 1001;
  transition: width .1s linear;
}

/* ── Navbar ──────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229,231,235,.6);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
  box-shadow: 0 1px 8px rgba(0,0,0,.04);
  transition: box-shadow .3s, background .3s;
}
nav.scrolled { box-shadow: 0 8px 24px rgba(0,0,0,.08); }

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  color: var(--orange); letter-spacing: -.02em;
}
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
  text-decoration: none; color: var(--dark);
  font-size: .88rem; font-weight: 500;
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px; background: var(--orange);
  transition: .3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--orange); }

.btn-book {
  background: var(--red); color: #fff;
  padding: .55rem 1.4rem; border-radius: 999px;
  font-size: .85rem; font-weight: 600;
  text-decoration: none; border: none; cursor: none;
  position: relative; overflow: hidden; display: inline-block;
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn-book::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform: translateX(-100%); transition: .55s;
}
.btn-book:hover::before { transform: translateX(100%); }
.btn-book:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(239,68,68,.35); }

/* ── Scroll Reveal ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(40px); transition: all .7s cubic-bezier(.16,1,.3,1); }
.reveal.show { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ── Hero ────────────────────────────────────────────── */
.hero {
  padding: 4rem 5% 3rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
  align-items: center; min-height: 88vh;
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #fff9f5 0%, #fff 60%);
}
.hero::after {
  content: ''; position: absolute;
  right: 120px; top: 120px; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(249,115,22,.22), transparent 70%);
  filter: blur(70px); z-index: 0; pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-label {
  font-size: .75rem; letter-spacing: .12em; color: var(--orange);
  text-transform: uppercase; font-weight: 600; margin-bottom: 1rem;
}
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800; line-height: 1.08;
  letter-spacing: -.03em; margin-bottom: 1.2rem;
}
.hero h1 .accent { color: var(--orange); }
.hero p {
  font-size: .95rem; color: var(--gray);
  line-height: 1.75; max-width: 420px; margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 1rem; align-items: center; }

.btn-primary {
  background: var(--red); color: #fff;
  padding: .75rem 1.8rem; border-radius: 999px;
  font-size: .88rem; font-weight: 600;
  text-decoration: none; display: inline-block;
  position: relative; overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease; cursor: none;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.4), transparent);
  transform: translateX(-100%); transition: .55s;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(239,68,68,.4); }

.btn-outline {
  border: 2px solid var(--dark); color: var(--dark);
  padding: .72rem 1.8rem; border-radius: 999px;
  font-size: .88rem; font-weight: 600;
  text-decoration: none; display: inline-block;
  transition: all .25s; cursor: none;
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange); transform: translateY(-2px); }

/* ── Hero Food Circles ───────────────────────────────── */
.hero-visual {
  position: relative; display: flex;
  align-items: center; justify-content: center;
  height: 480px; z-index: 1;
}
.food-circle {
  border-radius: 50%; position: absolute;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  display: flex; align-items: center; justify-content: center;
  transition: box-shadow .3s; will-change: transform;
}
.fc-main {
  width: 220px; height: 220px; top: 30px; right: 50px;
  background: radial-gradient(circle, #2d1a0e, #1a0a00);
  font-size: 5rem; animation: floatA 6s ease-in-out infinite;
}
.fc-2 {
  width: 160px; height: 160px; top: 180px; right: 200px;
  background: radial-gradient(circle, #1a2d0e, #0a1a00);
  font-size: 3.5rem; animation: floatB 7s ease-in-out infinite;
}
.fc-3 {
  width: 140px; height: 140px; top: 250px; right: 30px;
  background: radial-gradient(circle, #2d200e, #1a1000);
  font-size: 3rem; animation: floatC 5s ease-in-out infinite;
}
@keyframes floatA { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }
@keyframes floatB { 0%,100% { transform: translateY(-8px); } 50% { transform: translateY(8px); } }
@keyframes floatC { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.badge-off {
  position: absolute; top: 30px; left: 80px;
  width: 90px; height: 90px;
  background: var(--orange); border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; color: #fff;
  box-shadow: 0 6px 24px rgba(249,115,22,.5);
  animation: float 3s ease-in-out infinite; z-index: 2;
}
.badge-off .pct { font-size: 1.4rem; line-height: 1; }
.badge-off .off { font-size: .75rem; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.deco-leaf { position: absolute; font-size: 2.5rem; opacity: .6; will-change: transform; }
.leaf1 { bottom: 100px; left: 30px; }
.leaf2 { top: 80px; right: 20px; }

/* ── Features Strip ──────────────────────────────────── */
.features {
  padding: 2.5rem 5%;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
.feat-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem; border-radius: 12px; cursor: none;
  transition: background .25s, transform .25s;
}
.feat-item:hover { background: #fff8f3; transform: translateY(-3px); }
.feat-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; transition: transform .3s;
}
.feat-item:hover .feat-icon { transform: rotate(-8deg) scale(1.15); }
.feat-item h4 { font-family: 'Space Grotesk', sans-serif; font-size: .9rem; font-weight: 700; margin-bottom: .1rem; }
.feat-item p { font-size: .75rem; color: var(--gray); }
.feat-item.active h4 { color: var(--orange); }
.feat-item.active { background: #fff8f3; box-shadow: 0 0 0 2px var(--orange) inset; }

/* ── Offers ──────────────────────────────────────────── */
.offers { padding: 4rem 5%; }
.offers-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.offer-card {
  border-radius: 20px; padding: 2rem 1.5rem;
  position: relative; overflow: hidden; min-height: 180px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: transform .35s ease, box-shadow .35s ease; cursor: none;
}
.offer-card:hover { transform: translateY(-10px) scale(1.02); box-shadow: 0 24px 48px rgba(0,0,0,.2); }
.offer-card.orange { background: var(--orange); }
.offer-card.amber  { background: #f59e0b; }
.offer-card.red    { background: var(--red); }
.offer-label { font-size: .68rem; letter-spacing: .1em; color: rgba(255,255,255,.8); text-transform: uppercase; margin-bottom: .4rem; }
.offer-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem; font-weight: 800; color: #fff;
  line-height: 1.2; margin-bottom: 1rem; max-width: 140px;
}
.offer-btn {
  background: #fff; color: var(--dark);
  padding: .45rem 1.1rem; border-radius: 999px;
  font-size: .75rem; font-weight: 600; text-decoration: none;
  display: inline-block; transition: opacity .2s, transform .2s; width: fit-content;
}
.offer-btn:hover { opacity: .88; transform: translateY(-1px); }
.offer-emoji {
  position: absolute; right: 1rem; bottom: 1rem;
  font-size: 4rem; opacity: .9; transition: transform .4s ease;
}
.offer-card:hover .offer-emoji { transform: rotate(-12deg) scale(1.15); }

/* ── Menu Section ────────────────────────────────────── */
.menu-section { padding: 4rem 5%; position: relative; }
.menu-section::after {
  content: ''; position: absolute; right: 5%; top: 0;
  width: 80px; height: 100%;
  background: linear-gradient(to left, #fff, transparent);
  pointer-events: none; z-index: 1;
}
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 2rem; }
.section-header h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.8rem; font-weight: 700; line-height: 1.2; }
.section-header h2 .accent { color: var(--orange); }
.see-all {
  display: flex; align-items: center; gap: .5rem;
  background: var(--red); color: #fff;
  padding: .45rem 1rem; border-radius: 999px;
  font-size: .78rem; font-weight: 600;
  text-decoration: none; white-space: nowrap;
  transition: transform .2s, box-shadow .2s; cursor: none;
}
.see-all:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(239,68,68,.35); }

.menu-scroll {
  display: flex; gap: 14px; overflow-x: auto;
  padding-bottom: 1rem; scrollbar-width: none;
}
.menu-scroll::-webkit-scrollbar { display: none; }

.menu-item {
  flex: 0 0 140px; text-align: center;
  background: var(--light); border-radius: 14px;
  padding: 1rem .75rem; border: 2px solid transparent;
  transition: all .25s cubic-bezier(.16,1,.3,1); cursor: none;
}
.menu-item:hover, .menu-item.active {
  border-color: var(--orange); background: #fff8f3;
  transform: translateY(-6px); box-shadow: 0 12px 28px rgba(249,115,22,.15);
}
.menu-item.active { animation: pop .35s cubic-bezier(.16,1,.3,1); }
@keyframes pop {
  0%  { transform: scale(.92) translateY(-6px); }
  100%{ transform: scale(1) translateY(-6px); }
}
.menu-emoji { font-size: 2.5rem; margin-bottom: .6rem; display: block; }
.menu-item h4 { font-size: .82rem; font-weight: 600; margin-bottom: .2rem; }
.menu-item .price { font-size: .78rem; color: var(--orange); font-weight: 700; }

/* ── Favourites ──────────────────────────────────────── */
.favourites { padding: 4rem 5%; background: var(--light); }
.fav-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.fav-card {
  background: #fff; border-radius: 20px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s ease;
  cursor: none; position: relative;
}
.fav-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(249,115,22,.12), transparent 50%);
  opacity: 0; transition: .3s; z-index: 1; pointer-events: none; border-radius: 20px;
}
.fav-card:hover::before { opacity: 1; }
.fav-card:hover { transform: translateY(-10px) scale(1.01); box-shadow: 0 24px 60px rgba(0,0,0,.14); }
.fav-img {
  height: 180px; display: flex; align-items: center; justify-content: center;
  font-size: 5rem; position: relative; overflow: hidden;
  transition: transform .5s ease;
}
.fav-card:hover .fav-img { transform: scale(1.08); }
.fav-img.bg1 { background: linear-gradient(135deg, #fef3c7, #fde68a); }
.fav-img.bg2 { background: linear-gradient(135deg, #dcfce7, #bbf7d0); }
.fav-img.bg3 { background: linear-gradient(135deg, #fce7f3, #fbcfe8); }
.fav-price-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--orange); color: #fff;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: .88rem;
  padding: .3rem .7rem; border-radius: 999px; z-index: 2;
}
.fav-body { padding: 1.2rem; position: relative; z-index: 2; }
.fav-body h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; margin-bottom: .4rem; }
.fav-body p { font-size: .78rem; color: var(--gray); line-height: 1.6; margin-bottom: .8rem; }
.fav-meta { display: flex; align-items: center; justify-content: space-between; gap: .5rem; flex-wrap: wrap; }
.stars { display: flex; gap: 2px; }
.star { color: #f59e0b; font-size: .78rem; }
.star.empty { color: #d1d5db; }

/* ── Buy Now Button ──────────────────────────────────── */
.btn-buy-now {
  background: var(--dark); color: #fff;
  padding: .4rem 1rem; border-radius: 999px;
  font-size: .75rem; font-weight: 600; border: none; cursor: none;
  transition: background .2s, transform .2s;
  font-family: 'Inter', sans-serif; white-space: nowrap;
}
.btn-buy-now:hover { background: var(--orange); transform: translateY(-2px); }

/* ── Book CTA / Video ────────────────────────────────── */
.book-cta { position: relative; width: 100%; height: 420px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.book-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #1a0a00, #2d1500, #1a0500);
  display: flex; align-items: center; justify-content: center;
  font-size: 12rem; opacity: .3;
}
.play-btn {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -70%);
  width: 68px; height: 68px; background: rgba(255,255,255,.15);
  border: 2px solid rgba(255,255,255,.5); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: none; transition: all .25s; backdrop-filter: blur(6px);
}
.play-btn:hover {
  background: rgba(255,255,255,.28);
  transform: translate(-50%, -70%) scale(1.1);
  box-shadow: 0 0 0 16px rgba(255,255,255,.08);
}
.play-btn svg { margin-left: 4px; }
.book-card {
  position: absolute; bottom: 40px; left: 0; right: 0;
  margin: 0 auto;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: 20px; padding: 2rem 3rem; text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,.28);
  width: min(480px, 90%); border: 1px solid rgba(255,255,255,.5);
}
.book-card h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 700; margin-bottom: .5rem; }
.book-card p { font-size: .82rem; color: var(--gray); margin-bottom: 1.2rem; line-height: 1.6; }

/* ── Video Modal ─────────────────────────────────────── */
.video-modal {
  position: fixed; inset: 0; background: rgba(0,0,0,.88);
  display: flex; align-items: center; justify-content: center;
  z-index: 2000; opacity: 0; pointer-events: none;
  transition: opacity .3s; backdrop-filter: blur(8px);
}
.video-modal.open { opacity: 1; pointer-events: all; }
.video-modal iframe { border: none; border-radius: 12px; max-width: 90vw; max-height: 80vh; }
.modal-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3);
  color: #fff; width: 44px; height: 44px; border-radius: 50%;
  font-size: 1.2rem; display: flex; align-items: center; justify-content: center;
  cursor: none; transition: background .2s;
}
.modal-close:hover { background: rgba(255,255,255,.25); }

/* ── Testimonials ────────────────────────────────────── */
.testimonials { padding: 4rem 5%; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi-card {
  background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 1.5rem;
  transition: transform .3s, box-shadow .3s, border-color .3s; cursor: none;
}
.testi-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,.09); border-color: var(--orange); }
.testi-quote { font-size: 2.5rem; color: var(--orange); line-height: 1; margin-bottom: .5rem; font-family: 'Space Grotesk', sans-serif; }
.testi-text { font-size: .82rem; color: var(--gray); line-height: 1.7; margin-bottom: 1rem; }
.testi-author { display: flex; align-items: center; gap: .75rem; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; background: var(--light); }
.testi-name { font-family: 'Space Grotesk', sans-serif; font-size: .85rem; font-weight: 700; }
.testi-loc { font-size: .72rem; color: var(--gray); }

/* ── Booking Modal ───────────────────────────────────── */
.booking-modal {
  position: fixed; inset: 0; background: rgba(0,0,0,.6);
  display: flex; align-items: center; justify-content: center;
  z-index: 2000; opacity: 0; pointer-events: none;
  transition: opacity .3s; backdrop-filter: blur(6px);
}
.booking-modal.open { opacity: 1; pointer-events: all; }
.booking-form {
  background: #fff; border-radius: 24px; padding: 2.5rem;
  width: min(480px, 92vw); box-shadow: 0 24px 80px rgba(0,0,0,.3);
  position: relative; animation: slideUp .4s cubic-bezier(.16,1,.3,1);
  max-height: 92vh; overflow-y: auto;
}
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.booking-form h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 800; margin-bottom: .4rem; }
.booking-form > p { font-size: .82rem; color: var(--gray); margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 0; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label { font-size: .78rem; font-weight: 600; color: var(--dark); }
.form-group input, .form-group select {
  padding: .65rem .9rem; border: 1.5px solid var(--border);
  border-radius: 10px; font-size: .85rem; font-family: 'Inter', sans-serif;
  outline: none; transition: border-color .2s, box-shadow .2s; cursor: text;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--orange); box-shadow: 0 0 0 3px rgba(249,115,22,.1);
}
.btn-submit {
  width: 100%; background: var(--red); color: #fff;
  padding: .8rem; border-radius: 999px;
  font-size: .9rem; font-weight: 700; border: none; cursor: none;
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  font-family: 'Inter', sans-serif;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(239,68,68,.4); }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; }
.form-close {
  position: absolute; top: 1.2rem; right: 1.2rem;
  background: var(--light); border: none;
  width: 34px; height: 34px; border-radius: 50%; font-size: 1rem;
  cursor: none; display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.form-close:hover { background: var(--border); }

/* ── Toast ───────────────────────────────────────────── */
.toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--dark); color: #fff;
  padding: .8rem 1.6rem; border-radius: 999px;
  font-size: .85rem; font-weight: 500; z-index: 3000;
  transition: transform .4s cubic-bezier(.16,1,.3,1), opacity .4s;
  opacity: 0; white-space: nowrap; border-left: 4px solid var(--orange);
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast.error { border-left-color: var(--red); }

/* ── Footer ──────────────────────────────────────────── */
footer { background: var(--dark); color: #fff; padding: 3rem 5% 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-col h4 { font-family: 'Space Grotesk', sans-serif; font-size: .9rem; font-weight: 700; margin-bottom: 1rem; color: #fff; }
.footer-col p, .footer-col a {
  font-size: .8rem; color: #9ca3af; line-height: 1.9;
  text-decoration: none; display: block; transition: color .2s; position: relative;
}
.footer-col a::after {
  content: ''; position: absolute; left: 0; bottom: -1px;
  width: 0; height: 1.5px; background: var(--orange); transition: .3s;
}
.footer-col a:hover { color: var(--orange); }
.footer-col a:hover::after { width: 100%; }
.footer-contact { font-size: .8rem; color: #9ca3af; line-height: 2; }
.footer-bottom {
  border-top: 1px solid #374151; padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .75rem; color: #6b7280;
}
.footer-logo { font-family: 'Space Grotesk', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--orange); margin-bottom: .75rem; display: block; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
  body { cursor: auto; }
  .cursor, .cursor-ring, .cursor-glow { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { height: 300px; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .offers-grid, .fav-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .fav-meta { flex-direction: column; align-items: flex-start; }
}
