/* ============================================
   AL NOOR BAKERY — Shared Stylesheet v2
   Premium editorial design system
   Responsive: 375 / 600 / 768 / 1024 / 1440+
   ============================================ */

/* ---------- Design Tokens ---------- */
:root {
  --cream: #FDF8F0;
  --cream-deep: #F7EFE2;
  --brown: #2A1810;
  --brown-soft: #5A4A3A;
  --brown-mute: #8A7868;
  --terracotta: #C65D3C;
  --terracotta-dark: #A84A2D;
  --terracotta-light: #E07B5A;
  --gold: #D4A574;
  --gold-dark: #B8884F;
  --gold-light: #E8C9A0;
  --white: #FFFFFF;
  --gray-50: #FAFAF8;
  --gray-100: #F4F1EB;
  --gray-200: #E8E2D6;
  --gray-300: #D6CEC0;
  --green: #5B8C5A;
  --green-light: #7BA87A;

  --shadow-xs: 0 1px 3px rgba(42, 24, 16, 0.05);
  --shadow-sm: 0 2px 10px rgba(42, 24, 16, 0.07);
  --shadow-md: 0 6px 24px rgba(42, 24, 16, 0.09);
  --shadow-lg: 0 16px 48px rgba(42, 24, 16, 0.14);

  --radius-sm: 6px;
  --radius-card: 12px;
  --radius-lg: 20px;
  --radius-btn: 8px;
  --radius-pill: 999px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1280px;
  --container-narrow: 960px;
  --container-wide: 1440px;

  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--brown);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease-soft);
}

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

ul, ol { list-style: none; }

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--brown);
  color: var(--cream);
  padding: 12px 24px;
  border-radius: var(--radius-btn);
  z-index: 9999;
  font-weight: 600;
  font-size: 0.9rem;
  transition: top 0.3s var(--ease);
}

.skip-link:focus {
  top: 16px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--brown);
  letter-spacing: -0.015em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { color: var(--brown-soft); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1rem;
}

.eyebrow.terracotta { color: var(--terracotta); }
.eyebrow.cream { color: var(--gold); }

.lead {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--brown-soft);
}

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

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

.container-wide {
  width: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 96px 0;
}

.section-tight { padding: 64px 0; }
.section-loose { padding: 120px 0; }

.bg-cream { background: var(--cream); }
.bg-cream-deep { background: var(--cream-deep); }
.bg-white { background: var(--white); }
.bg-brown { background: var(--brown); }
.bg-terracotta { background: var(--terracotta); }

/* Subtle paper texture overlay for cream sections */
.texture {
  position: relative;
}

.texture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' /%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.texture > * { position: relative; z-index: 1; }

/* ---------- Top Bar (Open Now indicator) ---------- */
.top-bar {
  background: var(--brown);
  color: var(--cream);
  font-size: 0.8rem;
  padding: 8px 0;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease);
}

.top-bar.visible {
  transform: translateY(0);
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.open-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.open-dot::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 0 0 rgba(123, 168, 122, 0.6);
  animation: dotPulse 2s infinite;
}

.open-dot.closed::before {
  background: var(--terracotta-light);
  animation: none;
}

.top-bar-divider {
  color: rgba(253, 248, 240, 0.3);
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(123, 168, 122, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(123, 168, 122, 0); }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: transparent;
  transition: all 0.4s var(--ease);
}

.site-header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 12px 0;
}

.top-bar.visible ~ .site-header {
  top: 36px;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* ---------- Logo ---------- */
.logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.4s var(--ease);
  letter-spacing: -0.02em;
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}

.logo .dot {
  color: var(--gold);
  transition: color 0.4s var(--ease);
}

.site-header.scrolled .logo {
  color: var(--brown);
}

.site-header.scrolled .logo .dot {
  color: var(--terracotta);
}

/* ---------- Navigation ---------- */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-list {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s var(--ease-soft);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--terracotta);
  transition: width 0.3s var(--ease);
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  width: 100%;
}

.nav-link[aria-current="page"] {
  color: var(--gold);
}

.site-header.scrolled .nav-link {
  color: var(--brown);
}

.site-header.scrolled .nav-link[aria-current="page"] {
  color: var(--terracotta);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Phone quick-call (icon button) */
.nav-phone {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s var(--ease);
  flex-shrink: 0;
}

.nav-phone:hover {
  background: var(--terracotta);
  transform: scale(1.08);
}

.nav-phone svg { width: 18px; height: 18px; }

.site-header.scrolled .nav-phone {
  background: var(--cream);
  color: var(--terracotta);
}

.nav-cta {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 11px 22px;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--terracotta-dark);
  transform: scale(1.04);
  box-shadow: var(--shadow-sm);
}

.nav-cta svg { width: 16px; height: 16px; }

/* ---------- Hamburger ---------- */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  position: relative;
  z-index: 1100;
  cursor: pointer;
  border-radius: 8px;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 24px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.4s var(--ease);
  left: 10px;
}

.hamburger span:nth-child(1) { top: 14px; }
.hamburger span:nth-child(2) { top: 21px; }
.hamburger span:nth-child(3) { top: 28px; }

.site-header.scrolled .hamburger span {
  background: var(--brown);
}

.hamburger[aria-expanded="true"] span {
  background: var(--brown) !important;
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
  top: 21px;
}

.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
  top: 21px;
}

/* ---------- Mobile Menu ---------- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 380px;
  height: 100vh;
  background: var(--white);
  z-index: 1050;
  padding: 90px 32px 40px;
  transition: right 0.5s var(--ease);
  box-shadow: var(--shadow-lg);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brown);
  transition: all 0.3s var(--ease);
}

.mobile-menu-close:hover {
  background: var(--terracotta);
  color: var(--white);
  transform: rotate(90deg);
}

.mobile-menu-close svg { width: 18px; height: 18px; }

.mobile-menu .nav-link {
  display: block;
  color: var(--brown);
  font-size: 1.3rem;
  font-family: var(--font-head);
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-200);
  font-weight: 700;
}

.mobile-menu .nav-link[aria-current="page"] {
  color: var(--terracotta);
}

.mobile-menu .nav-link::after { display: none; }

.mobile-menu .nav-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  padding: 16px;
  font-size: 1rem;
}

.mobile-menu .mobile-contact {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
  font-size: 0.85rem;
  color: var(--brown-soft);
}

.mobile-menu .mobile-contact a {
  color: var(--terracotta);
  font-weight: 600;
  display: block;
  margin-top: 4px;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 24, 16, 0.55);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
  backdrop-filter: blur(2px);
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: var(--radius-btn);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  text-align: center;
  border: 2px solid transparent;
  min-height: 48px;
}

.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
}

.btn-primary:hover {
  background: var(--terracotta-dark);
  border-color: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--brown);
  transform: translateY(-2px);
}

.btn-outline-terracotta {
  background: transparent;
  color: var(--terracotta);
  border-color: var(--terracotta);
}

.btn-outline-terracotta:hover {
  background: var(--terracotta);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: var(--brown);
  border-color: var(--gold);
  font-weight: 700;
}

.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost {
  background: var(--cream);
  color: var(--brown);
  border-color: transparent;
}

.btn-ghost:hover {
  background: var(--cream-deep);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 12px 22px;
  font-size: 0.875rem;
  min-height: 44px;
}

.btn-lg {
  padding: 20px 44px;
  font-size: 1.05rem;
  min-height: 56px;
}

/* ---------- HERO (full viewport) ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 100px;
  overflow: hidden;
}

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

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

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(42, 24, 16, 0.75) 0%, rgba(42, 24, 16, 0.4) 50%, rgba(42, 24, 16, 0.25) 100%);
}

.hero-content {
  max-width: 880px;
  animation: fadeUp 1.2s var(--ease) both;
}

.hero .eyebrow {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 7vw, 5rem);
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  line-height: 1.08;
}

.hero-tagline {
  color: var(--cream);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

/* Social proof badge */
.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 2rem;
  color: var(--cream);
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-proof .stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 0.9rem;
}

.hero-proof .proof-sep {
  color: rgba(253, 248, 240, 0.4);
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--white);
  animation: bounce 2s infinite;
  opacity: 0.8;
  cursor: pointer;
  transition: opacity 0.3s var(--ease-soft);
}

.scroll-indicator:hover { opacity: 1; }

.scroll-indicator svg {
  width: 28px;
  height: 28px;
}

/* ---------- HERO small (subpages) ---------- */
.hero-small {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  overflow: hidden;
}

.hero-small .hero-bg img {
  filter: brightness(0.55);
}

.hero-small .hero-content {
  position: relative;
  z-index: 2;
}

.hero-small .eyebrow {
  color: var(--gold);
  animation: fadeUp 1s var(--ease) both;
}

.hero-small h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  animation: fadeUp 1s var(--ease) 0.15s both;
}

.hero-small .breadcrumb {
  animation: fadeUp 1s var(--ease) 0.3s both;
}

/* ---------- About Preview ---------- */
.about-preview-grid {
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 64px;
  align-items: center;
}

.about-preview-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
  position: relative;
  /* This creates the "window" effect — the image is a window
     and the badge slides behind the wall (page) when hovered */
}

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

.about-preview-img:hover img {
  transform: scale(1.05);
}

.about-preview-img .badge-est {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--terracotta);
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  z-index: 5;
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.6s var(--ease), opacity 0.5s var(--ease-soft);
}

/* Badge slides left and disappears behind the image edge (window effect).
   overflow: hidden on the image container clips it so the badge
   never appears on the page background. */
.about-preview-img:hover .badge-est {
  transform: translateX(-130%);
  opacity: 0;
}

.about-preview-text h2 {
  margin-bottom: 1.5rem;
}

.about-preview-text p {
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.8;
}

.text-link {
  color: var(--terracotta);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s var(--ease);
}

.text-link:hover {
  gap: 12px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ---------- Section Header ---------- */
.section-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.section-header h2 {
  margin-bottom: 0.75rem;
}

.section-header p {
  font-size: 1.0625rem;
  color: var(--brown-soft);
}

/* ---------- Products Grid ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
}

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

.product-card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

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

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

/* Bestseller badge */
.badge-bestseller {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--gold);
  color: var(--brown);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
}

.badge-chefs-pick {
  background: var(--terracotta);
  color: var(--white);
}

/* Dietary badges — stacked vertically, expand left on card hover/tap */
.dietary {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 4;
}

.dietary span {
  height: 32px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  align-items: center;
  gap: 0;
  box-shadow: var(--shadow-xs);
  position: relative;
  width: 32px;
  overflow: hidden;
  transition: width 0.4s var(--ease), gap 0.4s var(--ease);
  cursor: default;
}

.dietary span svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin: 0 8px;
}

.dietary span .label-text {
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity 0.3s var(--ease) 0.1s, max-width 0.4s var(--ease);
  padding-right: 0;
  letter-spacing: 0.02em;
}

/* Expand badges when card is hovered (desktop) or tapped (mobile) */
.product-card:hover .dietary span,
.product-card.dietary-expanded .dietary span {
  width: auto;
  min-width: 32px;
  padding-right: 12px;
  gap: 0;
}

.product-card:hover .dietary span .label-text,
.product-card.dietary-expanded .dietary span .label-text {
  opacity: 1;
  max-width: 100px;
  padding-right: 4px;
}

.dietary .v svg { color: var(--green); }
.dietary .n svg { color: var(--gold-dark); }
.dietary .d svg { color: var(--terracotta); }

.product-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.product-card-body .desc {
  font-size: 0.925rem;
  color: var(--brown-soft);
  margin-bottom: 1.25rem;
  flex: 1;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.product-price {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--terracotta);
}

.product-price span {
  font-size: 0.875rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--brown-soft);
}

/* ---------- Stats Row ---------- */
.stats {
  background: var(--terracotta);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
  position: relative;
}

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.stat-number .suffix {
  color: var(--gold-light);
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}

/* ---------- USP Section (Why Al Noor) ---------- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.usp-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-card);
  background: var(--white);
  border: 1px solid var(--gray-200);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.usp-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.usp-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  transition: all 0.4s var(--ease);
}

.usp-card:hover .usp-icon {
  background: var(--terracotta);
  color: var(--white);
  transform: scale(1.1);
}

.usp-icon svg { width: 28px; height: 28px; }

.usp-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.usp-card p {
  font-size: 0.925rem;
  color: var(--brown-soft);
  line-height: 1.6;
}

/* ---------- Process Strip ---------- */
.process {
  background: var(--brown);
  color: var(--cream);
}

.process .section-header h2 { color: var(--cream); }
.process .section-header .eyebrow { color: var(--gold); }
.process .section-header p { color: rgba(253, 248, 240, 0.7); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  padding: 0 16px;
}

.process-step::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -18px;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--gold);
  border-top: 2px solid var(--gold);
  transform: rotate(45deg);
  opacity: 0.5;
}

.process-step:last-child::after { display: none; }

.process-num {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  background: rgba(212, 165, 116, 0.15);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.4s var(--ease);
}

.process-num svg {
  width: 32px;
  height: 32px;
}

.process-step:hover .process-num {
  background: var(--gold);
  color: var(--brown);
  transform: scale(1.1);
}

.process-step h3 {
  color: var(--cream);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  color: rgba(253, 248, 240, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ---------- Testimonials Carousel ---------- */
.testimonials-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 60px;
}

.testimonials-track {
  display: flex;
  gap: 28px;
  transition: transform 0.7s var(--ease);
  will-change: transform;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* When carousel is active (JS adds class), override grid */
.testimonials-carousel .testimonials-track {
  display: flex;
}

.testimonials-carousel .testimonial-card {
  flex: 0 0 calc((100% - 56px) / 3);
  min-width: 0;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: var(--terracotta);
  transition: all 0.4s var(--ease);
  border: 2px solid var(--gray-200);
}

.testimonial-arrow:hover {
  background: var(--terracotta);
  color: var(--white);
  border-color: var(--terracotta);
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-lg);
}

.testimonial-arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.testimonial-arrow svg {
  width: 22px;
  height: 22px;
}

.testimonial-arrow.prev {
  left: 6px;
}

.testimonial-arrow.next {
  right: 6px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  position: relative;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  flex: 0 0 100%;
  min-width: 0;
}

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

.testimonial-card .quote-mark {
  font-family: var(--font-head);
  font-size: 4rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 0.5rem;
}

.testimonial-card .stars {
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.testimonial-card blockquote {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--brown);
  margin-bottom: 1.5rem;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.testimonial-author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--terracotta);
  flex-shrink: 0;
}

.testimonial-author .name {
  font-weight: 600;
  color: var(--brown);
  font-size: 0.95rem;
}

.testimonial-author .location {
  font-size: 0.85rem;
  color: var(--brown-soft);
}

/* ---------- Catering CTA ---------- */
.catering-cta {
  background: linear-gradient(135deg, var(--cream-deep) 0%, var(--cream) 100%);
  border-radius: var(--radius-lg);
  padding: 64px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.catering-cta::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 70%);
}

.catering-cta-content { position: relative; }

.catering-cta h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  margin-bottom: 1rem;
}

.catering-cta p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.catering-cta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2rem;
  justify-content: center;
  max-width: 520px;
}

.catering-cta-list li {
  background: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--brown);
  border: 1px solid var(--gray-200);
}

.catering-cta-img {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-lg);
}

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

/* ---------- Instagram Strip ---------- */
.instagram-strip {
  background: var(--white);
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}

.insta-tile {
  aspect-ratio: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
}

.insta-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.insta-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(198, 93, 60, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease);
}

.insta-tile:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
  z-index: 2;
}

.insta-tile:hover::after {
  background: rgba(198, 93, 60, 0.55);
}

.insta-tile:hover img {
  transform: scale(1.1);
}

.insta-tile .insta-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  z-index: 2;
}

.insta-tile:hover .insta-icon {
  opacity: 1;
}

.insta-tile .insta-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

.insta-cta {
  text-align: center;
}

.insta-cta .handle {
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--brown);
  margin-bottom: 0.5rem;
  display: block;
}

.insta-cta .handle:hover { color: var(--terracotta); }

.insta-cta .followers {
  font-size: 0.9rem;
  color: var(--brown-soft);
  margin-bottom: 1.25rem;
}

/* ---------- Find Us / Hours & Location ---------- */
.find-us-grid,
.hours-location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.hours-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
}

.hours-card h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.hours-list {
  margin-bottom: 1.5rem;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 1rem;
}

.hours-list li:last-child { border-bottom: none; }

.hours-list .day {
  font-weight: 600;
  color: var(--brown);
}

.hours-list .time {
  color: var(--brown-soft);
}

.hours-list .today {
  color: var(--terracotta);
  font-weight: 600;
}

.hours-address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--brown-soft);
  font-size: 0.95rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gray-200);
  margin-top: 1rem;
}

.hours-address svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  stroke: var(--terracotta);
}

.map-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 400px;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  display: block;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--brown);
  text-align: center;
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 165, 116, 0.08) 0%, transparent 60%);
}

.final-cta .container { position: relative; }

.final-cta h2 {
  color: var(--cream);
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.final-cta p {
  color: rgba(253, 248, 240, 0.7);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--brown);
  color: var(--cream);
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo {
  color: var(--cream);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  display: block;
}

.footer-brand .logo .dot { color: var(--gold); }

.footer-brand p {
  color: rgba(253, 248, 240, 0.7);
  font-size: 0.95rem;
  max-width: 320px;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.footer-col ul li {
  margin-bottom: 0.75rem;
}

.footer-col a {
  color: rgba(253, 248, 240, 0.75);
  font-size: 0.95rem;
  transition: color 0.3s var(--ease-soft);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-col .static-text {
  color: rgba(253, 248, 240, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(253, 248, 240, 0.12);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  color: rgba(253, 248, 240, 0.55);
  font-size: 0.85rem;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(253, 248, 240, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.footer-social a:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
  fill: var(--cream);
  transition: fill 0.3s var(--ease);
}

.footer-social a:hover svg {
  fill: var(--white);
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
}

.breadcrumb a:hover { color: var(--gold); }

/* ---------- About Page: Founder Quote ---------- */
.founder-quote {
  background: var(--brown);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.founder-quote::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-size: 14rem;
  color: var(--gold);
  opacity: 0.15;
  line-height: 1;
}

.founder-quote blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  line-height: 1.4;
  color: var(--cream);
  max-width: 800px;
  margin: 0 auto 2rem;
  font-style: italic;
  position: relative;
}

.founder-quote cite {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
}

.founder-quote cite::before {
  content: '— ';
}

/* ---------- About Story ---------- */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: center;
}

.about-story-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3 / 4;
}

.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-text h2 {
  margin-bottom: 1.5rem;
}

.about-story-text p {
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.85;
}

.about-story-text .signature {
  margin-top: 2rem;
  font-family: var(--font-head);
  font-size: 1.5rem;
  color: var(--terracotta);
  font-style: italic;
}

/* ---------- Values Section ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  text-align: center;
  padding: 40px 32px;
  border-radius: var(--radius-card);
  background: var(--cream);
  border: 2px solid var(--gray-200);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.value-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 36px rgba(212, 165, 116, 0.2);
  border-color: var(--gold);
}

.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon svg { width: 40px; height: 40px; }

.value-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--brown-soft);
  line-height: 1.7;
}

/* ---------- Timeline ---------- */
.timeline-section { background: var(--white); }

.timeline-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline-wrap::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gray-200);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 0 48px 56px 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  margin-left: 50%;
  padding: 0 0 56px 48px;
  text-align: left;
}

.timeline-item::after {
  content: '';
  position: absolute;
  right: -9px;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--terracotta);
  border: 4px solid var(--white);
  box-shadow: 0 0 0 2px var(--terracotta);
}

.timeline-item:nth-child(even)::after {
  right: auto;
  left: -9px;
}

.timeline-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--terracotta);
  margin-bottom: 0.75rem;
}

.timeline-icon svg { width: 20px; height: 20px; }

.timeline-year {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--terracotta);
  margin-bottom: 0.5rem;
}

.timeline-item h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.timeline-item p {
  font-size: 0.95rem;
  color: var(--brown-soft);
}

/* ---------- Team Section ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  border: 1px solid var(--gray-200);
}

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

.team-card-img {
  aspect-ratio: 1;
  overflow: hidden;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
  filter: grayscale(0.1);
}

.team-card:hover .team-card-img img {
  transform: scale(1.05);
  filter: grayscale(0);
}

.team-card-body {
  padding: 28px 24px;
}

.team-card-body h3 {
  font-size: 1.35rem;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.team-bio {
  font-size: 0.9rem;
  color: var(--brown-soft);
  line-height: 1.6;
  font-style: italic;
}

/* ---------- Menu Page ---------- */
.fresh-banner {
  background: var(--cream-deep);
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 18px 0;
  text-align: center;
  font-size: 0.95rem;
  color: var(--brown-soft);
}

.fresh-banner strong {
  color: var(--terracotta);
  font-weight: 600;
}

.fresh-banner svg {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 6px;
  stroke: var(--terracotta);
}

/* Category nav (normal flow, scrolls away with page) */
.menu-nav {
  background: var(--white);
  z-index: 100;
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--gray-200);
  padding: 14px 0;
}

.menu-nav-list {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.menu-nav-list a {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brown-soft);
  background: var(--cream);
  transition: all 0.3s var(--ease);
  border: 1px solid transparent;
}

.menu-nav-list a:hover {
  color: var(--terracotta);
  border-color: var(--terracotta);
}

.menu-nav-list a.active {
  background: var(--terracotta);
  color: var(--white);
}

.menu-category {
  margin-bottom: 80px;
  scroll-margin-top: calc(var(--header-h) + 70px);
}

.menu-category:last-child { margin-bottom: 0; }

.category-header {
  text-align: center;
  margin-bottom: 40px;
}

.category-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  position: relative;
  display: inline-block;
  padding: 0 32px;
}

.category-header h2::before,
.category-header h2::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.category-header h2::before { left: -8px; }
.category-header h2::after { right: -8px; }

.category-header p {
  margin-top: 0.5rem;
  font-size: 0.95rem;
  color: var(--brown-soft);
}

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

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-200);
}

.contact-info-list li:last-child { border-bottom: none; }

.contact-info-list .icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--terracotta);
}

.contact-info-list .icon svg {
  width: 18px;
  height: 18px;
}

.contact-info-list .label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-soft);
  margin-bottom: 2px;
}

.contact-info-list .value {
  font-size: 1rem;
  color: var(--brown);
  font-weight: 500;
  word-break: break-word;
}

.contact-info-list .value a:hover {
  color: var(--terracotta);
}

/* ---------- Card Social Section (contact + hours cards) ---------- */
.card-social {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.card-social h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.card-social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 1rem;
}

.card-social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
  color: var(--terracotta);
}

.card-social-icons a:hover {
  background: var(--terracotta);
  color: var(--white);
  transform: translateY(-2px);
}

.card-social-icons a svg {
  width: 20px;
  height: 20px;
}

.card-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  background: var(--terracotta);
  color: var(--white) !important;
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s var(--ease);
}

.card-social-btn:hover {
  background: var(--terracotta-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

/* ---------- Hours Card flex ---------- */
/* (merged into .hours-card above) */

/* Inline contact form (Tally placeholder) */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 36px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
}

.contact-form-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.contact-form-card .form-sub {
  font-size: 0.875rem;
  color: var(--brown-soft);
  margin-bottom: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--brown-soft);
  text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--brown);
  transition: all 0.3s var(--ease-soft);
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--terracotta);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(198, 93, 60, 0.1);
}

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

.contact-form .btn {
  margin-top: auto;
}

.form-note {
  font-size: 0.8rem;
  color: var(--brown-mute);
  margin-top: 1rem;
  text-align: center;
}

/* Payment info card */
.payment-info {
  background: var(--cream);
  border-radius: var(--radius-card);
  padding: 40px;
  border: 1px solid var(--gray-200);
}

.payment-info h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.payment-item {
  text-align: center;
}

.payment-item .pay-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  box-shadow: var(--shadow-xs);
}

.payment-item .pay-icon svg { width: 24px; height: 24px; }

.payment-item h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.25rem;
}

.payment-item p {
  font-size: 0.85rem;
  color: var(--brown-soft);
  line-height: 1.5;
}

/* ---------- Floating WhatsApp ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: var(--terracotta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 900;
  box-shadow: 0 8px 24px rgba(198, 93, 60, 0.4);
  transition: all 0.4s var(--ease);
  animation: pulse 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(8deg);
  background: var(--terracotta-dark);
}

.whatsapp-float.hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
}

/* ---------- Scroll to Top ---------- */
.scroll-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 48px;
  height: 48px;
  background: var(--brown);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 890;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s var(--ease);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
}

.scroll-top svg { width: 22px; height: 22px; }

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(198, 93, 60, 0.4), 0 0 0 0 rgba(198, 93, 60, 0.5); }
  50% { box-shadow: 0 8px 24px rgba(198, 93, 60, 0.4), 0 0 0 16px rgba(198, 93, 60, 0); }
}

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

/* Reveal on scroll */
.reveal {
  opacity: 0;
  translate: 0 50px;
  transition: opacity 1s var(--ease), translate 1s var(--ease);
}

.reveal.visible {
  opacity: 1;
  translate: 0 0;
}

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

/* ---------- Responsive: Large Desktop (≥ 1440px) ---------- */
@media (min-width: 1440px) {
  body { font-size: 18px; }
  section { padding: 112px 0; }
  .hero h1 { font-size: clamp(3.5rem, 6vw, 5.5rem); }
  .products-grid, .menu-grid { gap: 32px; }
  .usp-grid, .testimonials-grid { gap: 32px; }
}

/* ---------- Responsive: Desktop (1025px - 1439px) ---------- */
@media (max-width: 1439px) {
  .insta-grid { grid-template-columns: repeat(6, 1fr); }
}

/* ---------- Responsive: Tablet Landscape (≤ 1024px) ---------- */
@media (max-width: 1024px) {
  section { padding: 72px 0; }

  .about-preview-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-preview-img { aspect-ratio: 16 / 10; }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
  }

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

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

  .process-step::after { display: none; }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }

  /* Carousel: show 2 cards on tablet */
  .testimonials-carousel .testimonial-card {
    flex: 0 0 calc((100% - 28px) / 2);
  }

  .catering-cta {
    grid-template-columns: 1fr;
    padding: 48px;
    gap: 32px;
  }

  .catering-cta-img {
    max-width: 400px;
    margin: 0 auto;
  }

  .insta-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

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

  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-story-img {
    aspect-ratio: 16 / 10;
    max-width: 500px;
    margin: 0 auto;
  }

  .values-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .contact-form-card {
    grid-column: span 2;
  }

  .payment-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .hours-location-grid,
  .find-us-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ---------- Responsive: Tablet Portrait (≤ 820px) ---------- */
@media (max-width: 820px) {
  .nav-list { display: none; }
  .nav-cta-desktop { display: none; }
  .nav-phone { display: flex; }
  .hamburger { display: block; }

  .hero {
    min-height: 90vh;
    padding: 100px 20px 80px;
  }

  .catering-cta {
    padding: 36px 24px;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Responsive: Mobile (≤ 600px) ---------- */
@media (max-width: 600px) {
  body { font-size: 16px; }
  section { padding: 56px 0; }

  .container, .container-narrow, .container-wide {
    padding: 0 18px;
  }

  .hero {
    min-height: 88vh;
    padding: 100px 18px 70px;
  }

  .hero h1 { font-size: clamp(2rem, 9vw, 2.75rem); }

  .hero-proof {
    font-size: 0.78rem;
    padding: 6px 14px;
    gap: 6px;
  }

  .hero-proof .proof-sep { display: none; }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

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

  .about-preview-text h2,
  .section-header h2,
  .about-story-text h2 { font-size: 1.65rem; }

  .products-grid,
  .menu-grid,
  .team-grid,
  .usp-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
    padding: 0 12px;
  }

  .stat-number { font-size: 2.25rem; }
  .stat-label { font-size: 0.7rem; letter-spacing: 0.12em; }

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

  .testimonials-grid { gap: 20px; }

  .testimonials-carousel { padding: 0 50px; }

  .testimonials-carousel .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonial-arrow {
    width: 42px;
    height: 42px;
  }

  .testimonial-card {
    padding: 28px 24px;
  }

  .catering-cta {
    padding: 32px 20px;
  }

  .catering-cta h2 { font-size: 1.5rem; }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand p { margin: 0 auto; }

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

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

  .contact-form-card {
    grid-column: span 1;
  }

  .contact-card, .contact-form-card, .payment-info {
    padding: 28px 24px;
  }

  .payment-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  /* Timeline becomes single column */
  .timeline-wrap::before { left: 20px; }

  .timeline-item,
  .timeline-item:nth-child(even) {
    width: 100%;
    margin-left: 0;
    padding: 0 0 40px 56px;
    text-align: left;
  }

  .timeline-item::after,
  .timeline-item:nth-child(even)::after {
    left: 11px;
    right: auto;
  }

  .hours-card { padding: 28px; }

  .founder-quote { padding: 56px 0; }
  .founder-quote blockquote { font-size: 1.4rem; }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg { width: 28px; height: 28px; }

  .scroll-top {
    bottom: 84px;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  .section-header { margin-bottom: 40px; }

  .product-card-body { padding: 20px; }

  .menu-nav-list a {
    padding: 8px 16px;
    font-size: 0.85rem;
  }

  .badge-bestseller {
    font-size: 0.65rem;
    padding: 5px 10px;
  }

  .final-cta { padding: 64px 0; }

  .fresh-banner { font-size: 0.85rem; padding: 14px 18px; }
}

/* ---------- Responsive: Small Mobile (≤ 380px) ---------- */
@media (max-width: 380px) {
  .container, .container-narrow, .container-wide { padding: 0 14px; }

  .hero h1 { font-size: 1.9rem; }
  .hero-tagline { font-size: 0.95rem; }

  .btn {
    padding: 14px 22px;
    font-size: 0.875rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .stat-number { font-size: 2rem; }

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

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

  .logo { font-size: 1.3rem; }

  .catering-cta-list li { font-size: 0.8rem; padding: 6px 12px; }
}

/* ---------- Print Stylesheet (Menu) ---------- */
@media print {
  .site-header, .top-bar, .mobile-menu, .menu-overlay,
  .whatsapp-float, .scroll-top, .menu-nav, .fresh-banner,
  .hero-small, .final-cta, .site-footer, .scroll-indicator,
  .btn, .hamburger { display: none !important; }

  body {
    background: white;
    color: black;
    font-size: 12pt;
  }

  section { padding: 20px 0; }

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

  .product-card {
    box-shadow: none;
    border: 1px solid #ccc;
    break-inside: avoid;
  }

  .product-card-img { display: none; }

  .menu-category { margin-bottom: 30px; page-break-after: auto; }

  .category-header h2::before,
  .category-header h2::after { display: none; }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
