/* ============================================================
   CHEF MONA — Luxury Persian Culinary Portfolio
   style.css  |  Premium White · Teal · Saffron
   ============================================================ */

/* ─── Variables ────────────────────────────────────────────── */
:root {
  --bg:          #FFFFFF;
  --bg-soft:     #F8F8F6;
  --bg-warm:     #FAF7F2;
  --teal:        #0F3B3B;
  --teal-mid:    #1A4A4A;
  --ink:         #1A1A1A;
  --gold:        #D98B17;
  --gold-light:  #F0C87A;
  --gold-pale:   #FFF9F0;
  --muted:       #6B7280;
  --border:      rgba(15,59,59,.08);
  --radius:      16px;
  --radius-lg:   24px;
  --shadow-sm:   0 2px 12px rgba(0,0,0,.06);
  --shadow-md:   0 8px 32px rgba(0,0,0,.08);
  --shadow-lg:   0 24px 64px rgba(0,0,0,.10);
  --ease:        cubic-bezier(.25,.46,.45,.94);
  --ease-out:    cubic-bezier(0,0,.2,1);
}

/* ─── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── Custom Cursor ─────────────────────────────────────────── */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  transition: opacity .3s;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  transition: width .25s var(--ease), height .25s var(--ease), border-color .25s;
}
.cursor-ring.hovering {
  width: 60px; height: 60px;
  border-color: var(--teal);
  background: rgba(15,59,59,.05);
}
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ─── Scroll Progress ───────────────────────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform-origin: left;
  transform: scaleX(0);
  z-index: 1000;
}

/* ─── Preloader ─────────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0;
  background: var(--teal);
  z-index: 9998;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column;
  gap: 24px;
}
.preloader-logo {
  opacity: 0;
  transform: scale(.85);
}
.preloader-logo img {
  width: 100px; height: 100px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.preloader-line {
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .8s var(--ease);
}
.preloader-text {
  font-family: 'Playfair Display', serif;
  color: rgba(255,255,255,.5);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0;
}

/* ─── Container ─────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 600px) { .container { padding: 0 20px; } }

/* ─── Navbar ─────────────────────────────────────────────────── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 500;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .3s;
  padding: 4px 0;
}
.site-header.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 14px 0;
}
.nav-left { display: flex; align-items: center; gap: 14px; }
.nav-logo img {
  width: 56px; height: 56px;
  object-fit: contain;
  transition: filter .3s;
}
.site-header:not(.scrolled) .nav-logo img {
  filter: brightness(0) invert(1);
}
.nav-wordmark {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: .3px;
  transition: color .3s;
  display: none;
}
.site-header:not(.scrolled) .nav-wordmark { color: #fff; }
@media (min-width: 900px) { .nav-wordmark { display: block; } }

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  padding: 8px 12px;
  border-radius: 8px;
  letter-spacing: .4px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.site-header:not(.scrolled) .nav-links a { color: rgba(255,255,255,.85); }
.nav-links a:hover { color: var(--gold); background: rgba(217,139,23,.08); }
.site-header:not(.scrolled) .nav-links a:hover { color: #fff; background: rgba(255,255,255,.12); }

.btn-cv {
  font-size: 12px; font-weight: 600;
  color: var(--teal);
  padding: 9px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--teal);
  letter-spacing: .6px;
  transition: background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.site-header:not(.scrolled) .btn-cv {
  color: #fff; border-color: rgba(255,255,255,.5);
}
.btn-cv:hover { background: var(--teal); color: #fff; border-color: var(--teal); }

/* Hamburger */
.nav-toggle {
  display: none;
  padding: 8px;
  color: var(--teal);
  transition: color .2s;
}
.site-header:not(.scrolled) .nav-toggle { color: #fff; }
.hamburger-icon {
  display: flex; flex-direction: column; gap: 5px; width: 24px;
}
.hamburger-icon span {
  display: block; width: 100%; height: 1.5px;
  background: currentColor;
  transition: transform .3s var(--ease), opacity .3s, width .3s;
  transform-origin: left;
}
.nav-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(1) { transform: rotate(40deg); }
.nav-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle[aria-expanded="true"] .hamburger-icon span:nth-child(3) { transform: rotate(-40deg); }

/* Mobile menu */
.mobile-menu {
  display: none; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 8px 0 16px;
  z-index: 490;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block; padding: 14px 32px;
  font-size: 15px; font-weight: 500; color: var(--teal);
  border-bottom: 1px solid rgba(0,0,0,.04);
  transition: background .2s, color .2s;
}
.mobile-menu a:hover { background: var(--bg-warm); color: var(--gold); }
.mobile-menu .btn-cv {
  margin: 12px 32px 0;
  display: block; text-align: center;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 13px;
  letter-spacing: .8px; text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 999px;
  cursor: pointer; transition: all .3s var(--ease);
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,.15);
  transform: translateX(-100%);
  transition: transform .4s var(--ease);
}
.btn:hover::before { transform: translateX(0); }

.btn-primary {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 20px rgba(217,139,23,.35);
}
.btn-primary:hover {
  background: #C07810;
  box-shadow: 0 8px 32px rgba(217,139,23,.45);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal);
}
.btn-secondary:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid rgba(15,59,59,.3);
}
.btn-outline:hover {
  border-color: var(--teal);
  background: rgba(15,59,59,.05);
}

.btn-ghost-white {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}

/* ─── Section Base ───────────────────────────────────────────── */
section { padding: 120px 0; }
@media (max-width: 768px) { section { padding: 80px 0; } }

.section-label {
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px; display: block;
}
.section-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700; line-height: 1.1;
  color: var(--teal); margin-bottom: 24px;
}
.section-sub {
  font-size: 17px; line-height: 1.7; color: var(--muted);
  max-width: 520px;
}

/* ─── Hero ──────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: var(--teal);
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; overflow: hidden;
  padding: 0;
}

/* Grain texture */
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.04'/%3E%3C/svg%3E");
  opacity: .6; pointer-events: none;
}

/* Saffron glow orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none; z-index: 0;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(217,139,23,.25) 0%, transparent 70%);
  top: -150px; right: -100px;
  animation: floatOrb1 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(217,139,23,.12) 0%, transparent 70%);
  bottom: 20%; left: -80px;
  animation: floatOrb2 15s ease-in-out infinite;
}

@keyframes floatOrb1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 30px) scale(1.05); }
}
@keyframes floatOrb2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.08); }
}

/* Particles */
.particles-canvas {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
}

/* Portrait */
.hero-portrait-wrap {
  position: absolute; right: 0; bottom: 0;
  width: min(50%, 680px); height: 100%;
  z-index: 2; overflow: hidden;
}
.hero-portrait-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
}
.hero-portrait-fade {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    var(--teal) 0%,
    rgba(15,59,59,.6) 40%,
    transparent 70%
  );
}
@media (max-width: 768px) {
  .hero-portrait-wrap {
    width: 100%; opacity: .25;
  }
}

/* Hero content */
.hero-content {
  position: relative; z-index: 3;
  padding: 0 0 80px;
  max-width: 700px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px;
}
.hero-eyebrow-line {
  width: 48px; height: 1px; background: var(--gold);
}
.hero-eyebrow-text {
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(255,255,255,.6);
}
.hero-monogram {
  margin-bottom: 32px;
}
.hero-monogram img {
  width: 90px; height: 90px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .9;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 700; line-height: 1.0;
  color: #fff !important;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.hero-title .gold { color: var(--gold) !important; }

.hero-subtitle-wrap {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 40px; min-height: 32px;
}
.hero-subtitle {
  font-size: 18px; font-weight: 300;
  color: rgba(255,255,255,.7);
  letter-spacing: .5px;
}
.cursor-blink {
  display: inline-block; width: 1px; height: 20px;
  background: var(--gold);
  animation: blink .9s step-end infinite;
  vertical-align: middle; margin-left: 3px;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

.hero-buttons {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 40px;
}
.hero-microcopy {
  font-size: 13px; color: rgba(255,255,255,.4);
  letter-spacing: .5px;
}
.hero-scroll-hint {
  position: absolute; bottom: 32px; right: 50%;
  transform: translateX(50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,.4);
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  animation: scrollHint 2s ease-in-out infinite;
}
.hero-scroll-hint svg {
  width: 18px; height: 18px;
}
@keyframes scrollHint {
  0%,100% { transform: translateX(50%) translateY(0); }
  50% { transform: translateX(50%) translateY(6px); }
}

/* ─── About ──────────────────────────────────────────────────── */
.about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
}

.about-kicker {
  display: flex; align-items: center; gap: 16px; margin-bottom: 24px;
}
.kicker-line { width: 40px; height: 1px; background: var(--gold); }
.kicker-text {
  font-size: 11px; font-weight: 600; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold);
}

.about-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; color: var(--teal); line-height: 1.1;
  margin-bottom: 28px;
}

.bio-text p {
  font-size: 16px; line-height: 1.85; color: #444;
  margin-bottom: 20px;
}
.bio-text p:last-child { margin-bottom: 0; }

.signature-wrap {
  margin-top: 36px;
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.signature svg { opacity: .7; }

/* Philosophy cards */
.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px; margin-bottom: 28px;
}
@media (max-width: 600px) {
  .philosophy-grid { grid-template-columns: 1fr; }
}

.philosophy-card {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-warm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.philosophy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(217,139,23,.2);
}
.card-emoji {
  font-size: 28px; margin-bottom: 12px; display: block;
}
.philosophy-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 600; color: var(--teal);
  margin-bottom: 6px;
}
.philosophy-card p {
  font-size: 14px; line-height: 1.6; color: var(--muted);
}

.chef-quote {
  padding: 28px 28px 28px 32px;
  border-left: 3px solid var(--gold);
  background: var(--gold-pale);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.chef-quote p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6; color: var(--teal);
  font-style: italic; margin-bottom: 12px;
}
.chef-quote cite {
  font-size: 12px; color: var(--muted);
  font-style: normal; letter-spacing: 1px;
}

/* ─── Dishes ─────────────────────────────────────────────────── */
.dishes { background: var(--bg-soft); }
.dishes-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 56px;
  flex-wrap: wrap; gap: 20px;
}
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .dishes-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .dishes-grid { grid-template-columns: 1fr; } }

.dish-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  will-change: transform;
}
.dish-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.dish-image {
  height: 220px; overflow: hidden;
  position: relative;
}
.dish-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.dish-card:hover .dish-image img { transform: scale(1.07); }

.dish-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,59,59,.6) 0%, transparent 50%);
  opacity: 0; transition: opacity .3s;
}
.dish-card:hover .dish-image-overlay { opacity: 1; }
.dish-zoom-icon {
  position: absolute; bottom: 14px; right: 14px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: scale(.7);
  transition: opacity .3s, transform .3s var(--ease);
  font-size: 14px;
}
.dish-card:hover .dish-zoom-icon { opacity: 1; transform: scale(1); }

.dish-info { padding: 20px 22px 22px; }
.dish-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 600; color: var(--teal);
  margin-bottom: 8px;
}
.dish-info p { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 12px; }
.dish-badges { display: flex; gap: 6px; flex-wrap: wrap; }
.badge {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: .5px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(217,139,23,.12); color: var(--gold);
  border: 1px solid rgba(217,139,23,.2);
}

/* ─── Experience ─────────────────────────────────────────────── */
.workshops { background: var(--bg); }
.experience-layout {
  display: grid; grid-template-columns: 260px 1fr;
  gap: 64px; align-items: start;
}
@media (max-width: 900px) {
  .experience-layout { grid-template-columns: 1fr; gap: 32px; }
}

.filter-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.filter-btn {
  padding: 10px 20px; border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: .6px;
  text-transform: uppercase; cursor: pointer;
  border: 1.5px solid var(--border);
  color: var(--muted); background: var(--bg);
  transition: all .25s var(--ease);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--teal); color: #fff; border-color: var(--teal);
}

.timeline { position: relative; padding-left: 28px; }
.timeline::before {
  content: '';
  position: absolute; left: 7px; top: 8px; bottom: 0;
  width: 1px; background: var(--border);
}
.timeline-progress {
  position: absolute; left: 7px; top: 8px;
  width: 1px; background: var(--gold);
  height: 0; transition: height .1s linear;
}

.timeline-item {
  position: relative; margin-bottom: 40px;
  opacity: 1; /* always visible — GSAP animates from 0 on reveal */
  transition: opacity .3s, transform .3s var(--ease);
}
.timeline-item.hidden { display: none; }
.timeline-node {
  position: absolute; left: -28px; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%; background: var(--bg);
  border: 2px solid var(--border);
  transition: background .3s, border-color .3s, transform .3s;
}
.timeline-item:hover .timeline-node {
  background: var(--gold); border-color: var(--gold);
  transform: scale(1.3);
}

.timeline-content {
  background: var(--bg-warm);
  border-radius: var(--radius);
  padding: 24px 28px;
  border: 1px solid var(--border);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.timeline-item:hover .timeline-content {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.event-date {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 8px;
}
.timeline-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 20px; color: var(--teal); font-weight: 600;
  margin-bottom: 6px;
}
.event-location {
  font-size: 13px; color: var(--muted); font-style: italic; margin-bottom: 8px;
}
.timeline-content p {
  font-size: 15px; line-height: 1.7; color: #555;
}

/* ─── Gallery ────────────────────────────────────────────────── */
.gallery { background: var(--bg-soft); }
.gallery-header { margin-bottom: 48px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden; cursor: pointer;
  aspect-ratio: 1/1; position: relative;
  background: var(--bg-warm);
}
.gallery-item:nth-child(3n+1) { aspect-ratio: 4/5; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,59,59,.7) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-overlay-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  transform: scale(.5);
  transition: transform .3s var(--ease);
}
.gallery-item:hover .gallery-overlay-icon { transform: scale(1); }

/* ─── Shop ───────────────────────────────────────────────────── */
.shop { background: var(--bg); }
.shop-header { margin-bottom: 56px; }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .products-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  display: flex; flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-media {
  height: 240px; overflow: hidden;
  background: var(--bg-warm);
}
.product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.product-card:hover .product-media img { transform: scale(1.06); }
.product-body { padding: 20px 22px 22px; flex: 1; display: flex; flex-direction: column; }
.product-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px; font-weight: 600; color: var(--teal);
  margin-bottom: 16px;
}
.btn-row {
  display: flex; gap: 10px; margin-top: auto; flex-wrap: wrap;
}
.btn-whatsapp {
  background: #25D366; color: #fff;
  padding: 10px 18px; border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: .5px;
  text-transform: uppercase;
  transition: background .25s, transform .25s;
  display: inline-flex; align-items: center; gap: 6px;
}
.btn-whatsapp:hover { background: #1ab855; transform: translateY(-2px); }
.btn-cart {
  padding: 10px 18px; border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: .5px;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  color: var(--teal);
  transition: all .25s;
}
.btn-cart:hover { border-color: var(--teal); background: var(--teal); color: #fff; }

.shop-note {
  margin-top: 32px;
  font-size: 14px; color: var(--muted);
  text-align: center;
}
.shop-note a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }

/* ─── Books ──────────────────────────────────────────────────── */
.books { background: var(--bg-warm); }
.books-header { margin-bottom: 56px; }
.books-grid-equal {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 768px) { .books-grid-equal { grid-template-columns: 1fr; } }

.book-card-equal {
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.book-card-equal:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.book-media-equal {
  height: 280px;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; overflow: hidden;
}
.book-media-equal img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  border-radius: 8px;
  transition: transform .5s var(--ease);
  box-shadow: var(--shadow-md);
}
.book-card-equal:hover .book-media-equal img { transform: scale(1.04) rotate(1deg); }

.book-content-equal {
  padding: 24px 26px 26px;
  display: flex; flex-direction: column; gap: 14px; flex: 1;
}
.book-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px; font-weight: 700; color: var(--teal);
}
.book-desc { font-size: 15px; line-height: 1.7; color: #555; }
.book-meta { display: flex; gap: 8px; flex-wrap: wrap; }
.quote-card {
  padding: 14px 16px 14px 20px;
  border-left: 3px solid var(--gold);
  background: var(--gold-pale);
  border-radius: 0 8px 8px 0;
  font-style: italic; font-size: 14px; color: #555;
  line-height: 1.6;
}
.btn-wa-buy {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  padding: 12px 22px; border-radius: 999px;
  font-size: 12px; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; cursor: pointer;
  border: none; transition: background .25s, transform .25s;
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn-wa-buy:hover { background: #1ab855; transform: translateY(-2px); }

.books-contact-note {
  margin-top: 28px; font-size: 14px; color: var(--muted); text-align: center;
}
.books-contact-note a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }

/* ─── Contact ────────────────────────────────────────────────── */
.contact { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px; align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.booking-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px; color: var(--teal); margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px; position: relative;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 16px 20px;
  background: var(--bg-soft);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 15px; color: var(--ink);
  outline: none;
  transition: border-color .25s, box-shadow .25s, background .25s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  background: var(--bg);
  box-shadow: 0 0 0 4px rgba(15,59,59,.06);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.btn-full { width: 100%; justify-content: center; }

/* Contact card */
.contact-card {
  background: var(--bg-warm);
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  margin-bottom: 16px;
}
.contact-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--teal); margin-bottom: 20px;
}
.contact-info { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.contact-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: #444;
}
.contact-icon { font-size: 18px; }
.contact-item span:last-child { cursor: pointer; transition: color .2s; }
.contact-item span:last-child:hover { color: var(--gold); }

.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  transition: all .25s;
}
.social-links a:hover {
  background: var(--teal); color: #fff; border-color: var(--teal);
}
.contact-card .btn-row { gap: 10px; flex-wrap: wrap; }
.btn-secondary {
  padding: 10px 18px; border-radius: 999px;
  font-size: 12px; font-weight: 600; letter-spacing: .5px;
  text-transform: uppercase;
  background: var(--teal); color: #fff;
  transition: background .25s, transform .25s;
}
.btn-secondary:hover { background: var(--teal-mid); transform: translateY(-2px); }

/* ─── Footer ─────────────────────────────────────────────────── */
.chef-footer {
  background: var(--teal);
  color: rgba(255,255,255,.7);
  padding: 64px 0 28px;
  font-family: 'Inter', sans-serif;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
}

.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand .logo-img {
  width: 64px; height: 64px;
  filter: brightness(0) invert(1); opacity: .8;
}
.footer-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px; font-weight: 600;
  color: #fff;
}

.footer-links h4 { color: #fff; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px; }
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-links p { font-size: 14px; color: rgba(255,255,255,.6); margin-bottom: 8px; }
.footer-links a[href^="tel"], .footer-links a[href^="mailto"] {
  color: rgba(255,255,255,.6);
}
.footer-links img { display: inline-block; vertical-align: middle; margin-right: 8px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px; text-align: center;
  font-size: 12px; color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.55); text-decoration: underline; text-underline-offset: 3px; }

/* ─── Modals ─────────────────────────────────────────────────── */
.modal {
  position: fixed; inset: 0; z-index: 800;
  background: rgba(0,0,0,.6);
  backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; }
.modal-content {
  background: var(--bg);
  border-radius: var(--radius-lg);
  max-width: 560px; width: 100%;
  max-height: 88vh; overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,.2);
}
.modal-img {
  width: 100%; height: 280px;
  object-fit: cover; border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.modal-body { padding: 28px; }
.modal-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; color: var(--teal); margin-bottom: 12px;
}
.modal-body p { font-size: 15px; line-height: 1.75; color: #555; margin-bottom: 12px; }
.close {
  position: absolute; top: 16px; right: 20px;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.9);
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--ink);
  border: none; transition: background .2s, transform .2s;
  z-index: 1;
}
.close:hover { background: var(--teal); color: #fff; transform: rotate(90deg); }

/* ─── Lightbox ───────────────────────────────────────────────── */
.lightbox {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(0,0,0,.92);
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
#lightboxImage {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain; border-radius: 8px;
}
.lightbox-close {
  position: fixed; top: 20px; right: 28px;
  font-size: 32px; color: rgba(255,255,255,.7);
  cursor: pointer; transition: color .2s;
  background: none; border: none;
  line-height: 1;
}
.lightbox-close:hover { color: #fff; }
.lightbox-caption {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  font-size: 13px; color: rgba(255,255,255,.5);
  letter-spacing: 1px;
}
.lightbox-prev, .lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: none; color: #fff; cursor: pointer;
  width: 48px; height: 48px; border-radius: 50%;
  font-size: 22px; transition: background .2s;
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,.25); }

/* ─── Chef Tip & Toast ───────────────────────────────────────── */
.chef-tip {
  position: fixed; bottom: 90px; right: 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
  box-shadow: var(--shadow-lg);
  max-width: 280px;
  display: flex; align-items: flex-start; gap: 10px;
  z-index: 600; opacity: 0; transform: translateY(20px);
  transition: opacity .4s, transform .4s var(--ease);
  pointer-events: none;
}
.chef-tip.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.tip-icon { font-size: 20px; }
.tip-content { font-size: 13px; line-height: 1.6; color: #444; }
.tip-content strong { color: var(--teal); }
.tip-close {
  background: none; border: none; cursor: pointer;
  font-size: 16px; color: var(--muted); padding: 0;
  line-height: 1; transition: color .2s;
  flex-shrink: 0;
}
.tip-close:hover { color: var(--ink); }

.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--teal); color: #fff;
  padding: 14px 24px; border-radius: 999px;
  font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 700; opacity: 0; transition: opacity .3s;
  pointer-events: none;
}
.toast.visible { opacity: 1; }

/* ─── WhatsApp float ─────────────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 28px rgba(37,211,102,.5);
}

/* ─── GSAP Reveal defaults ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(40px); }
.reveal-left { opacity: 0; transform: translateX(-40px); }
.reveal-right { opacity: 0; transform: translateX(40px); }
.reveal-scale { opacity: 0; transform: scale(.92); }