:root {
  color-scheme: light;
  --bg: #fdf7f0;
  --bg-strong: #f5ece0;
  --surface: #ffffff;
  --ink: #1a1512;
  --muted: #6b5f55;
  --accent: #ff6b35;
  --accent-hover: #e85520;
  --accent-2: #0db37a;
  --accent-3: #f5b44e;
  --border: #e8ddd4;
  --shadow-lg: 0 20px 52px rgba(26, 21, 18, 0.13);
  --shadow-md: 0 12px 36px rgba(26, 21, 18, 0.10);
  --shadow-sm: 0 6px 20px rgba(26, 21, 18, 0.08);
  --shadow-accent: 0 12px 30px rgba(255, 107, 53, 0.28);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 11px;
}

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

body {
  margin: 0;
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(ellipse at top left, rgba(255, 107, 53, 0.1) 0%, transparent 40%),
              radial-gradient(ellipse at top right, rgba(13, 179, 122, 0.08) 0%, transparent 36%),
              linear-gradient(180deg, #fffefb 0%, var(--bg) 50%, #fef0e2 100%);
}

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

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

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* ── Navigation ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 247, 240, 0.82);
  backdrop-filter: blur(22px) saturate(1.4);
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: "Fraunces", "Times New Roman", serif;
  font-weight: 700;
}

.brand-text {
  font-size: 1.3rem;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.28);
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.45rem;
  border-radius: 12px;
  border: 1.5px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.nav-toggle-bar {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1;
  justify-content: flex-end;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
}

.nav-auth-list {
  margin-left: auto;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  color: inherit;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
  background: rgba(26, 21, 18, 0.92);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), #ff914d);
  color: #fff !important;
  box-shadow: var(--shadow-accent);
}

.nav-cta:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--accent));
  box-shadow: 0 14px 28px rgba(255, 107, 53, 0.38);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #ff914d);
  color: #fff;
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover), var(--accent));
  box-shadow: 0 16px 36px rgba(255, 107, 53, 0.38);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(26, 21, 18, 0.2);
  color: var(--ink);
}

.btn-secondary:hover {
  background: #fff;
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: var(--shadow-sm);
}

.btn-large {
  padding: 0.95rem 2.1rem;
  font-size: 1rem;
}

.btn-shimmer {
  position: relative;
  overflow: hidden;
}

.btn-shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transform: translateX(-120%);
  animation: shimmer 2.8s infinite;
}

.pulse {
  animation: pulse 2.6s infinite;
}

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 4.2rem 0 3.5rem;
}

.hero-animated {
  animation: floatIn 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(1px);
  opacity: 0.55;
}

.shape-1 {
  width: 480px;
  height: 480px;
  background: rgba(255, 107, 53, 0.16);
  top: -150px;
  left: -120px;
}

.shape-2 {
  width: 340px;
  height: 340px;
  background: rgba(13, 179, 122, 0.16);
  bottom: -80px;
  right: 40px;
}

.shape-3 {
  width: 280px;
  height: 280px;
  background: rgba(245, 180, 78, 0.18);
  top: 20%;
  right: 28%;
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.8rem;
  align-items: center;
}

.hero-tagline .tagline-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--surface);
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  font-weight: 700;
  color: var(--accent);
  border: 1px solid rgba(255, 107, 53, 0.12);
  font-size: 0.9rem;
}

.hero-title {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(2.6rem, 3.2vw, 3.7rem);
  margin: 1rem 0;
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 50ch;
}

.highlight {
  color: var(--accent);
  font-weight: 700;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.6rem 0 1.2rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.2rem;
}

.stat-item {
  background: var(--surface);
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1.5px solid rgba(255, 107, 53, 0.07);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.stat-number {
  font-size: 1.55rem;
  font-weight: 800;
  display: block;
  color: var(--ink);
  font-family: "Fraunces", serif;
}

.stat-label {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.trust-item i {
  color: var(--accent-2);
}

/* ── Hero Visual ── */
.hero-visual {
  display: grid;
  place-items: center;
  position: relative;
  padding: 1rem 0;
}

.phone-mockup {
  width: min(360px, 85vw);
  background: linear-gradient(180deg, #1c1814, #0e0b09);
  border-radius: 40px;
  padding: 1.2rem;
  color: #fff;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
}

.phone-notch {
  width: 120px;
  height: 22px;
  background: #0f0d0b;
  border-radius: 999px;
  margin: 0 auto 1rem;
}

.phone-screen {
  background: #fff;
  color: var(--ink);
  border-radius: 28px;
  padding: 1rem;
}

.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.app-avatar {
  font-size: 1.2rem;
}

.app-featured {
  background: var(--bg-strong);
  border-radius: 20px;
  overflow: hidden;
  margin: 0.9rem 0;
  position: relative;
}

.app-featured img {
  height: 160px;
  width: 100%;
  object-fit: cover;
}

.app-featured-info {
  padding: 0.7rem;
}

.featured-badge {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
}

.app-featured-info h4 {
  margin: 0.2rem 0;
  font-size: 0.95rem;
}

.featured-rating {
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.featured-rating i {
  color: #f5b44e;
}

.app-list {
  display: grid;
  gap: 0.75rem;
}

.app-item {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.app-item-img img {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  object-fit: cover;
}

.app-item-info strong {
  display: block;
  font-size: 0.88rem;
}

.app-item-meta {
  font-size: 0.75rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.app-item-meta i {
  color: #f5b44e;
  font-size: 0.7rem;
}

.app-item-price {
  font-weight: 800;
  color: var(--accent);
  font-size: 0.9rem;
}

.floating-badge {
  position: absolute;
  background: var(--surface);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow-md);
  border: 1.5px solid rgba(255, 107, 53, 0.1);
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.floating-badge i {
  color: var(--accent);
}

.badge-1 {
  top: 10%;
  left: -8%;
}

.badge-2 {
  bottom: 15%;
  right: -8%;
}

.floating-phone {
  animation: float 6s ease-in-out infinite;
}

.scroll-indicator {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--muted);
  animation: bounce 2s infinite;
}

/* ── Section headers ── */
.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title {
  font-family: "Fraunces", "Times New Roman", serif;
  font-size: clamp(1.9rem, 2.5vw, 2.5rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.04em;
}

.section-subtitle {
  color: var(--muted);
  margin: 0;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ── Service Strip ── */
.service-strip {
  padding: 1.5rem 0 2.5rem;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.strip-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  background: var(--surface);
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(255, 107, 53, 0.08);
  box-shadow: var(--shadow-sm);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.strip-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 107, 53, 0.18);
}

.strip-card i {
  font-size: 1.5rem;
  color: var(--accent-2);
  margin-top: 0.2rem;
}

.strip-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  font-weight: 700;
}

.strip-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ── How it works ── */
.how-it-works,
.features,
.popular-dishes,
.app-download,
.testimonials {
  padding: 3.2rem 0;
}

.steps-container {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top: 2.5rem;
}

.step-card {
  background: var(--surface);
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1.5px solid rgba(255, 107, 53, 0.07);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 107, 53, 0.18);
}

.step-number {
  font-weight: 800;
  color: var(--accent);
  font-size: 1.1rem;
  font-family: "Fraunces", serif;
  margin-bottom: 0.6rem;
}

.step-icon {
  font-size: 1.8rem;
  color: var(--accent-2);
  margin-bottom: 0.8rem;
  display: block;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.6rem;
}

.step-description {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.93rem;
  margin: 0 0 1rem;
}

.step-link {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease;
}

.step-link:hover {
  gap: 0.7rem;
}

/* ── Features ── */
.features {
  background: linear-gradient(180deg, rgba(255, 250, 245, 0) 0%, rgba(253, 247, 240, 0.6) 100%);
}

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

.feature-card {
  background: var(--surface);
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1.5px solid rgba(255, 107, 53, 0.07);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 107, 53, 0.18);
}

.feature-icon {
  font-size: 1.8rem;
  color: var(--accent-2);
  margin-bottom: 0.8rem;
  display: block;
}

.feature-card h3 {
  font-weight: 700;
  margin: 0 0 0.6rem;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.93rem;
  margin: 0;
}

.feature-tag {
  display: inline-block;
  margin-top: 1.1rem;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 107, 53, 0.08);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid rgba(255, 107, 53, 0.15);
}

/* ── CTA ── */
.cta-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
  align-items: center;
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,244,235,0.94));
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid rgba(255, 107, 53, 0.1);
  position: relative;
  overflow: hidden;
}

.cta-title {
  font-family: "Fraunces", serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  margin: 0 0 0.8rem;
  letter-spacing: -0.04em;
}

.cta-description {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 1.5rem;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-image {
  position: relative;
}

.cta-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.cta-badge {
  background: linear-gradient(135deg, var(--accent-3), #f0a436);
  color: #2d1a0d;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-weight: 700;
  font-size: 0.88rem;
  box-shadow: var(--shadow-sm);
}

/* ── Popular dishes ── */
.popular-dishes {
  background: linear-gradient(180deg, rgba(245, 180, 78, 0.08) 0%, rgba(245, 180, 78, 0) 100%);
}

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

.dish-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1.5px solid rgba(255, 107, 53, 0.07);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.dish-skeleton {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 0.6rem;
  border: 1.5px solid var(--border);
}

.dish-skeleton-img,
.dish-skeleton-title,
.dish-skeleton-text,
.dish-skeleton-rating,
.dish-skeleton-button {
  background: linear-gradient(90deg, #f0e6da, #faf0e8, #f0e6da);
  background-size: 200% 100%;
  animation: shimmer 1.6s infinite;
  border-radius: 10px;
  height: 14px;
}

.dish-skeleton-img {
  height: 145px;
}

.dish-image-container {
  position: relative;
  height: 185px;
}

.dish-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.dish-card:hover .dish-image {
  transform: scale(1.05);
}

.dish-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--accent-3), #f0a436);
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  color: #2d1a0d;
}

.dish-content {
  padding: 1.15rem;
}

.dish-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dish-title {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
}

.dish-price {
  font-weight: 800;
  color: var(--accent);
  font-size: 1.05rem;
}

.dish-meta {
  display: grid;
  gap: 0.3rem;
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.dish-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}

.btn-icon {
  border: 1.5px solid var(--border);
  background: var(--surface);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all 0.22s ease;
}

.btn-icon:hover {
  background: var(--bg-strong);
  border-color: rgba(255, 107, 53, 0.25);
}

.view-all-container {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ── App download ── */
.app-download {
  margin-top: 4rem;
}

.app-download .container {
  background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(255,244,235,0.92));
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
  border: 1.5px solid rgba(255, 107, 53, 0.1);
}

.app-title {
  font-family: "Fraunces", serif;
  font-size: clamp(1.6rem, 2vw, 2.1rem);
  margin: 0 0 0.6rem;
  letter-spacing: -0.03em;
}

.app-description {
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 1.2rem;
}

.app-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
}

.app-feature {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.app-feature i {
  color: var(--accent-2);
}

.app-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.app-store-btn,
.google-play-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 1.2rem;
  border-radius: 14px;
  border: 1.5px solid var(--border);
  background: #fff;
  font-weight: 700;
  transition: all 0.22s ease;
  box-shadow: var(--shadow-sm);
}

.app-store-btn:hover,
.google-play-btn:hover {
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.small-text {
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--muted);
}

.large-text {
  font-size: 1rem;
  font-weight: 700;
}

.app-image {
  position: relative;
}

.app-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.app-qr {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--surface);
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.qr-code {
  font-size: 1.6rem;
}

.app-qr p {
  margin: 0.3rem 0 0;
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--surface);
  padding: 1.8rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1.5px solid rgba(255, 107, 53, 0.07);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.testimonial-header {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1rem;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid rgba(255, 107, 53, 0.2);
}

.testimonial-info h4 {
  margin: 0;
  font-weight: 700;
}

.testimonial-rating {
  display: flex;
  gap: 0.2rem;
  color: var(--accent-3);
  font-size: 0.85rem;
  margin-top: 0.3rem;
}

.testimonial-text {
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.94rem;
  margin: 0 0 1rem;
  font-style: italic;
}

.testimonial-dish {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* ── Footer ── */
.footer {
  margin-top: 4rem;
  padding: 3.5rem 0 1.5rem;
  background: linear-gradient(180deg, #1c1916 0%, #131110 100%);
  color: #f5eee8;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand .brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}

.footer-brand h3 {
  margin: 0;
  font-size: 1.25rem;
  font-family: "Fraunces", serif;
}

.footer-description {
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,0.75);
  transition: all 0.22s ease;
}

.social-link:hover {
  background: rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.35);
  color: #fff;
  transform: translateY(-2px);
}

.footer-title {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.5);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.footer-links a i {
  font-size: 0.7rem;
  color: var(--accent);
}

.footer-links a:hover {
  color: #fff;
  gap: 0.7rem;
}

.contact-info {
  display: grid;
  gap: 0.7rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
}

.contact-item i {
  color: var(--accent);
  margin-top: 0.15rem;
  width: 16px;
}

.contact-item span {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.newsletter {
  margin-top: 1.4rem;
}

.newsletter h5 {
  margin: 0 0 0.3rem;
  font-weight: 700;
  font-size: 0.92rem;
}

.newsletter-subtitle {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 0.75rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  color: #fff;
  font-family: inherit;
  font-size: 0.88rem;
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.35);
}

.newsletter-form input:focus {
  outline: none;
  border-color: rgba(255, 107, 53, 0.5);
  background: rgba(255,255,255,0.1);
}

.newsletter-form button {
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--accent), #ff914d);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.86rem;
  transition: all 0.22s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.newsletter-form button:hover {
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35);
  transform: translateY(-1px);
}

.footer-bottom {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.5);
}

.heart-icon {
  color: #e74c3c;
}

.payment-methods {
  display: flex;
  gap: 0.65rem;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.45);
}

.payment-methods i:hover {
  color: rgba(255, 255, 255, 0.85);
}

/* ── Animations ── */
.reveal,
.animate-fade-in,
.animate-scale {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

@keyframes floatIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

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

  .hero-visual {
    order: -1;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    background: rgba(255, 252, 248, 0.96);
    border-radius: 20px;
    padding: 1.2rem;
    box-shadow: var(--shadow-lg);
    border: 1.5px solid var(--border);
    margin-top: 0.5rem;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-list,
  .nav-auth-list {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-subtitle {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }
}
