/* ============================================================
   JUICY BOUQUETS & BIONICOS — Design System
   Premium · Fruity · Flowery · Modern
   ============================================================ */

/* — Google Fonts — */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,600&family=Jost:wght@300;400;500;600;700&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

/* — CSS Variables — */
:root {
  --ink: #0D0D0D;
  --ink-soft: #1A1A1A;
  --coral: #E8524A;
  --coral-dark: #D04540;
  --coral-light: #FDF0EF;
  --mango: #F5A623;
  --mango-light: #FEF5E6;
  --leaf: #4A7C59;
  --leaf-dark: #3A6347;
  --leaf-light: #EAF2E6;
  --berry: #7B2D5F;
  --berry-dark: #5E1F48;
  --berry-light: #F5EAF0;
  --cream: #FFF8F0;
  --cream-dark: #F5EDDF;
  --off-white: #F7F5F1;
  --charcoal: #2D2D2D;
  --text: #3A3A3A;
  --text-light: #6B6B6B;
  --text-lighter: #999;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-coral: 0 4px 16px rgba(232,82,74,0.25);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-heading: 'Jost', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle grain texture for depth */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.028;
  pointer-events: none;
  z-index: 99999;
  mix-blend-mode: multiply;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

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

/* — Typography — */
h1, h2, h3, h4 { line-height: 1.25; }

h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--charcoal);
}

h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--charcoal);
}

h3 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--charcoal);
}

.section-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  flex-shrink: 0;
  opacity: 0.8;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
}

.section-subtitle.centered { margin: 0 auto; text-align: center; }

/* — Buttons — */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 48px;
}

.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: var(--shadow-coral);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
}
.btn-primary:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,82,74,0.35);
}
.btn-primary:hover::before {
  animation: shimmer 0.65s ease forwards;
}
@keyframes shimmer {
  0%   { left: -80%; }
  100% { left: 130%; }
}

.btn-secondary {
  background: transparent;
  color: var(--leaf);
  border: 2px solid var(--leaf);
}
.btn-secondary:hover {
  background: var(--leaf);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.8);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--berry);
}

.btn-ghost {
  color: var(--berry);
  padding: 8px 0;
  font-weight: 600;
  position: relative;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--berry);
  transition: width var(--transition);
}
.btn-ghost:hover::after { width: 100%; }

.btn-sm { padding: 10px 22px; font-size: 0.82rem; min-height: 44px; }
.btn-lg { padding: 18px 40px; font-size: 1rem; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, rgba(212,24,90,0.96) 0%, rgba(123,45,95,0.96) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: all var(--transition);
  box-shadow: 0 2px 32px rgba(180,20,70,0.35);
}

/* Subtle radial glow for depth */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 120% at 50% -20%, rgba(255,255,255,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.site-header.scrolled {
  background: linear-gradient(135deg, rgba(185,18,72,0.99) 0%, rgba(99,26,72,0.99) 100%);
  box-shadow: 0 2px 32px rgba(150,15,60,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1001;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--coral), var(--mango));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.15;
}

.logo-text small {
  display: block;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-light);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.82);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  position: relative;
}

.main-nav a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.15);
}
.main-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,0.22);
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-phone {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-phone svg { color: rgba(255,255,255,0.9); }

/* Order Now button override for pink header */
.site-header .btn-primary {
  background: var(--white);
  color: #B8174D;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.site-header .btn-primary:hover {
  background: var(--cream);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition);
}
.mobile-nav-overlay.open { opacity: 1; }

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 360px;
  height: 100%;
  background: var(--white);
  z-index: 1000;
  padding: 100px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }

.mobile-nav a {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--text);
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: color var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--coral); }

.mobile-nav .btn { margin-top: 24px; width: 100%; text-align: center; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: 72px;
}

.hero-bg {
  position: absolute;
  top: -20%;
  left: 0;
  right: 0;
  bottom: -10%;
  z-index: 0;
  will-change: transform;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(123, 45, 95, 0.75) 0%,
    rgba(123, 45, 95, 0.45) 40%,
    rgba(232, 82, 74, 0.3) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 24px;
}

.hero-content .section-label {
  color: var(--mango);
  margin-bottom: 16px;
  font-size: 0.75rem;
  letter-spacing: 3px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.hero h1 em {
  font-style: italic;
  color: var(--mango);
  text-decoration: underline wavy var(--coral);
  text-underline-offset: 8px;
  text-decoration-thickness: 2px;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 540px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Decorative floating fruit blobs */
.hero-decor {
  position: absolute;
  z-index: 2;
  font-size: 4.5rem;
  pointer-events: none;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,0.2));
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatFruit 6s ease-in-out infinite, morphBlob 12s ease-in-out infinite;
}
.hero-decor:nth-child(1) {
  top: 18%; right: 8%;
  animation-delay: 0s, 0s;
  background: rgba(245,166,35,0.18);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  padding: 18px;
  opacity: 0.85;
}
.hero-decor:nth-child(2) {
  bottom: 22%; right: 15%;
  animation-delay: 2s, 1.5s;
  font-size: 3.6rem;
  background: rgba(232,82,74,0.14);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  padding: 15px;
  opacity: 0.8;
}
.hero-decor:nth-child(3) {
  top: 44%; right: 25%;
  animation-delay: 4s, 3s;
  font-size: 3rem;
  background: rgba(123,45,95,0.14);
  border-radius: 70% 30% 50% 50% / 30% 40% 60% 70%;
  padding: 12px;
  opacity: 0.75;
}

@keyframes floatFruit {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(4deg); }
}

@keyframes morphBlob {
  0%,100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25%      { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  50%      { border-radius: 50% 50% 30% 70% / 40% 60% 50% 60%; }
  75%      { border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%; }
}

/* ============================================================
   TRUST BAR — Marquee
   ============================================================ */
.trust-bar {
  background: var(--ink);
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

.marquee-inner {
  display: flex;
  align-items: center;
  padding: 20px 0;
  white-space: nowrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.82);
  padding: 0 40px;
}

.trust-sep {
  color: var(--coral);
  font-size: 0.55rem;
  opacity: 0.55;
  flex-shrink: 0;
}

.trust-count {
  display: inline;
}

.trust-icon {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================================
   SECTIONS — General
   ============================================================ */
.section {
  padding: 80px 0;
}

.section-alt { background: var(--white); }
.section-cream { background: var(--cream); }
.section-berry {
  background: var(--ink);
  color: var(--white);
  clip-path: polygon(0 48px, 100% 0, 100% calc(100% - 48px), 0 100%);
  margin: -48px 0;
  padding: 128px 0;
  position: relative;
  z-index: 1;
}
.section-berry h2,
.section-berry .section-label { color: var(--coral); }
.section-berry .section-label::before { background: var(--coral); }
.section-berry .section-subtitle { color: rgba(255,255,255,0.75); }

/* Dark ink sections */
.section-ink {
  background: var(--ink);
  color: var(--white);
}

/* Diagonal top-cut variant for ink sections */
.section-ink.diagonal {
  clip-path: polygon(0 48px, 100% 0, 100% 100%, 0 100%);
  padding-top: 128px;
  margin-top: -48px;
  position: relative;
  z-index: 1;
}
.section-ink h2,
.section-ink h3 { color: var(--white); }
.section-ink .section-label { color: var(--coral); }
.section-ink .section-label::before { background: var(--coral); }
.section-ink .section-subtitle { color: rgba(255,255,255,0.7); }
.section-ink .about-content p { color: rgba(255,255,255,0.72); }
.section-ink .about-image { box-shadow: 0 12px 48px rgba(0,0,0,0.6); }
.section-ink .btn-ghost { color: var(--coral); }
.section-ink .btn-ghost::after { background: var(--coral); }
.section-ink .testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: none;
}
.section-ink .testimonial-card::before { color: rgba(255,255,255,0.08); }
.section-ink .testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}
.section-ink .testimonial-text { color: rgba(255,255,255,0.82); }
.section-ink .testimonial-author { color: var(--coral); }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

/* ============================================================
   PRODUCT CARDS / FEATURED
   ============================================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}

.product-card:hover {
  box-shadow: 0 20px 48px rgba(0,0,0,0.13);
}
.product-card:nth-child(odd):hover {
  transform: translateY(-8px) rotate(1.2deg);
}
.product-card:nth-child(even):hover {
  transform: translateY(-8px) rotate(-1.2deg);
}

.product-card-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

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

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--coral);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.7rem;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

.product-card-body h3 {
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.product-card-body p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 12px;
}

.product-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 0.88rem;
  background: var(--coral);
  display: inline-block;
  padding: 5px 16px 5px 18px;
  clip-path: polygon(14px 0%, 100% 0%, 100% 100%, 14px 100%, 0% 50%);
  letter-spacing: 0.3px;
  border-radius: 0 4px 4px 0;
}

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-hero {
  background: linear-gradient(135deg, var(--berry-light), var(--cream));
  padding: 120px 0 60px;
  text-align: center;
}

.menu-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 0 24px 16px;
  margin-bottom: 40px;
  justify-content: center;
  flex-wrap: wrap;
  -webkit-overflow-scrolling: touch;
}

.menu-tab {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 10px 22px;
  min-height: 44px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  color: var(--text);
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.menu-tab:hover,
.menu-tab.active {
  background: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}

.menu-category {
  margin-bottom: 56px;
  scroll-margin-top: 100px;
}

.menu-category-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--coral-light);
}

.menu-category-header h2 {
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.menu-category-header p {
  color: var(--text-light);
  font-size: 0.92rem;
}

.menu-items {
  display: grid;
  gap: 16px;
}

.menu-item {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.menu-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.menu-item-info h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.menu-item-badge {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 600;
  background: var(--mango-light);
  color: var(--mango);
  padding: 2px 8px;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.menu-item-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

.menu-item-price {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--coral);
  font-size: 1rem;
  white-space: nowrap;
}

.menu-order-bar {
  position: sticky;
  bottom: 0;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 16px 0;
  text-align: center;
  z-index: 50;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
}

/* ============================================================
   CATERING PAGE
   ============================================================ */
.catering-hero {
  background: linear-gradient(135deg, var(--berry) 0%, #9B3A75 100%);
  padding: 120px 0 80px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.catering-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.catering-hero h1 { color: var(--white); margin-bottom: 16px; }
.catering-hero p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }

.catering-form-section {
  padding: 80px 0;
  background: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.form-container {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-container h2 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.form-container > p {
  color: var(--text-light);
  margin-bottom: 28px;
  font-size: 0.92rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group label .required { color: var(--coral); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: all var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232,82,74,0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  cursor: pointer;
  padding: 8px 4px;
  min-height: 44px;
}

.checkbox-item input[type="checkbox"] {
  accent-color: var(--coral);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  cursor: pointer;
}

.form-sidebar h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
  color: var(--berry);
}

.trust-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 20px;
}

.trust-card .trust-icon {
  margin-bottom: 12px;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
}

.trust-card h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.trust-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* Success state */
.form-success {
  text-align: center;
  padding: 60px 40px;
  background: var(--leaf-light);
  border-radius: var(--radius-lg);
}

.form-success .success-icon {
  width: 72px;
  height: 72px;
  background: var(--leaf);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 20px;
}

.form-success h2 { color: var(--leaf-dark); margin-bottom: 12px; }
.form-success p { color: var(--text-light); max-width: 480px; margin: 0 auto; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  min-height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  text-align: left;
  transition: color var(--transition);
  cursor: pointer;
  background: none;
  border: none;
}

.faq-question:hover { color: var(--coral); }

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  font-size: 1.1rem;
  color: var(--coral);
}

.faq-item.open .faq-icon {
  background: var(--coral);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--coral-light);
  position: absolute;
  top: 12px;
  left: 24px;
  line-height: 1;
}

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

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: var(--mango);
  font-size: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 16px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--berry);
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.4s ease;
  filter: saturate(0.82);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.2);
}

/* Bento layout for home page preview */
.gallery-grid.bento {
  grid-template-columns: repeat(3, 1fr);
}
.gallery-grid.bento .gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(123,45,95,0.7) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay p {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.88rem;
}

/* Gallery filter */
.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 36px;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.9);
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: var(--radius-md); }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  z-index: 2001;
  background: none;
  border: none;
  font-family: inherit;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--berry-light) 100%);
  padding: 120px 0 80px;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

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

.about-content h2 { margin-bottom: 16px; }
.about-content p {
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.75;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

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

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
}

.value-card h3 { margin-bottom: 8px; font-size: 1.05rem; }
.value-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero {
  background: linear-gradient(135deg, var(--leaf-light), var(--cream));
  padding: 120px 0 60px;
  text-align: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
  transition: all var(--transition);
}

.contact-info-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-card h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info-card p, .contact-info-card a {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
}
.contact-info-card a:hover { color: var(--coral); }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  height: 100%;
  min-height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

@media (max-width: 768px) {
  .map-container,
  .map-container iframe {
    min-height: 260px;
  }
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--coral);
  color: var(--white);
  transform: translateY(-3px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #000000;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo-text { color: var(--white); }
.footer-brand .logo-text small { color: rgba(255,255,255,0.5); }
.footer-brand p {
  margin-top: 16px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--white);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  padding: 4px 0;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--coral); }

.footer-hours {
  font-size: 0.85rem;
  line-height: 1.8;
}
.footer-hours strong { color: var(--white); }

.footer-bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

.powered-by {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(255,255,255,0.35);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  transition: all var(--transition);
}

.powered-by:hover {
  color: rgba(255,255,255,0.7);
}

.powered-by-logo {
  height: 26px;
  width: auto;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.powered-by:hover .powered-by-logo {
  opacity: 1;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-socials a:hover {
  background: var(--coral);
  color: var(--white);
}

/* ============================================================
   MOBILE STICKY ORDER BAR
   ============================================================ */
.mobile-order-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 12px 16px;
  z-index: 900;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
}

.mobile-order-bar-inner {
  display: flex;
  gap: 10px;
}

.mobile-order-bar .btn { flex: 1; text-align: center; }

/* ============================================================
   404 PAGE
   ============================================================ */
.page-404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px;
}

.page-404 h1 { font-size: 6rem; color: var(--coral); margin-bottom: 16px; }
.page-404 p { color: var(--text-light); margin-bottom: 24px; }

/* ============================================================
   PAGE HERO (generic for inner pages)
   ============================================================ */
.page-hero {
  padding: 120px 0 60px;
  text-align: center;
  background: linear-gradient(135deg, var(--cream), var(--berry-light));
}

.page-hero h1 { margin-bottom: 12px; }
.page-hero p { color: var(--text-light); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger > * { transition-delay: calc(var(--i, 0) * 0.08s); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav, .header-phone { display: none; }
  .hamburger { display: flex; }
  .mobile-nav, .mobile-nav-overlay { display: block; }
  .mobile-order-bar { display: block; }
  body { padding-bottom: 72px; }

  .hero { min-height: 85vh; }
  .hero h1 { font-size: clamp(2rem, 7vw, 2.8rem); }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }
  .hero-decor { display: none; }

  .section { padding: 56px 0; }
  .section-header { margin-bottom: 32px; }

  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .testimonials-slider { grid-template-columns: 1fr; }

  .trust-item { font-size: 0.78rem; }
  .trust-icon { width: 30px; height: 30px; }

  /* Testimonials: horizontal scroll carousel */
  .testimonials-slider {
    display: flex;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding-bottom: 20px;
    grid-template-columns: unset;
  }
  .testimonials-slider::-webkit-scrollbar { display: none; }
  .testimonial-card {
    min-width: 82vw;
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  /* Bento: collapse on mobile */
  .gallery-grid.bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-grid.bento .gallery-item:first-child {
    grid-column: span 1;
    aspect-ratio: 1;
  }

  /* Gallery filters: horizontal scroll instead of wrapping */
  .gallery-filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .gallery-filters::-webkit-scrollbar { display: none; }

  .form-container { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-group { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Menu tabs: horizontal scroll */
  .menu-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .menu-tabs::-webkit-scrollbar { display: none; }

  /* Container padding on mobile */
  .container { padding-left: 16px; padding-right: 16px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .hero { min-height: 80vh; }
}

/* 375px — small phones (iPhone SE, older Android) */
@media (max-width: 375px) {
  .header-inner { height: 60px; }
  .logo-img { height: 42px; }
  .hero { margin-top: 60px; }

  .section { padding: 44px 0; }
  .gallery-grid { grid-template-columns: 1fr; gap: 10px; }
  .gallery-grid.bento { grid-template-columns: 1fr; }

  .hero h1 { font-size: clamp(1.8rem, 8vw, 2.4rem); }
  .btn-lg { padding: 15px 28px; font-size: 0.95rem; }
  .testimonial-card { min-width: 92vw; }
}

/* Lazy image fade-in on load */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.5s ease;
}
img[loading="lazy"].loaded {
  opacity: 1;
}

/* — Print styles — */
@media print {
  .site-header, .site-footer, .mobile-order-bar, .hamburger { display: none !important; }
  body { background: white; }
}

/* ============================================================
   CATERING CTA — Call Us Design
   ============================================================ */
.catering-cta-section {
  background: var(--ink);
  padding: 80px 0;
}

.catering-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.catering-cta-left .section-label { color: var(--coral); }
.catering-cta-left .section-label::before { background: var(--coral); }

.catering-cta-left h2 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  line-height: 1.2;
}

.catering-cta-left h2 em {
  font-style: italic;
  color: var(--coral);
}

.catering-cta-left > p {
  color: rgba(255,255,255,0.68);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 420px;
}

.catering-phone-display {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  text-decoration: none;
  transition: all var(--transition);
}

.catering-phone-display:hover { transform: translateX(4px); }

.catering-phone-icon {
  width: 52px;
  height: 52px;
  background: var(--coral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.catering-phone-display:hover .catering-phone-icon {
  background: var(--coral-dark);
  transform: scale(1.05);
}

.catering-phone-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.5px;
}

.catering-cta-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.catering-cta-meta::before {
  content: '';
  width: 16px;
  height: 1px;
  background: rgba(255,255,255,0.25);
}

.catering-services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.catering-service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: all var(--transition);
}

.catering-service-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(232,82,74,0.3);
}

.catering-service-icon {
  width: 40px;
  height: 40px;
  background: rgba(232,82,74,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--coral);
}

.catering-service-card h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 4px;
}

.catering-service-card p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}

.catering-testimonial-pull {
  background: var(--ink-soft);
  padding: 80px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.catering-quote-text {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: rgba(255,255,255,0.88);
  max-width: 680px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.catering-quote-author {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--coral);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.catering-quote-stars {
  color: var(--mango);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .catering-cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .catering-services-list { grid-template-columns: 1fr 1fr; }
  .catering-phone-number { font-size: 2rem; }
}

@media (max-width: 480px) {
  .catering-services-list { grid-template-columns: 1fr; }
}
