/* =============================================
   ROYAL KITCHEN BLUE - Complete Stylesheet
   ============================================= */

:root {
  --gold: #C9A84C;
  --gold-light: #e8c96d;
  --gold-dark: #9e7f2e;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --text: #e8e0d0;
  --text-muted: #a09070;
  --accent: #8B1A1A;
  --white: #ffffff;
  --border: rgba(201,168,76,0.2);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--black);
  color: var(--text);
  overflow-x: hidden;
}

/* Lightbox Overlay */
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  cursor: zoom-out;
}
.lightbox-overlay.active {
  display: flex;
}
.lightbox-overlay img {
  max-width: 90%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 0 40px rgba(255,255,255,0.1);
}
.lightbox-close {
  position: fixed;
  top: 20px; right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  line-height: 1;
  user-select: none;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }

.section-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 24px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

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

/* ---- BUTTONS ---- */
.btn-gold {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Raleway', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Raleway', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
}
.btn-outline:hover { background: var(--gold); color: var(--black); }

.btn-outline-sm {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  border-radius: 2px;
  transition: all 0.3s;
  margin-top: 10px;
}
.btn-outline-sm:hover { border-color: var(--gold); color: var(--gold); }

/* =============================================
   PRELOADER
   ============================================= */
#preloader {
  position: fixed; inset: 0;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s, visibility 0.6s;
}
#preloader.done { opacity: 0; visibility: hidden; }

.preloader-inner { text-align: center; }
.preloader-logo {
  width: 90px; height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 24px;
  border: 2px solid var(--gold);
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }

.preloader-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-top: 16px;
}
.preloader-bar {
  width: 200px; height: 2px;
  background: var(--dark3);
  margin: 0 auto;
  border-radius: 2px;
  overflow: hidden;
}
.preloader-fill {
  height: 100%;
  background: var(--gold);
  width: 0;
  animation: load 2s ease forwards;
}
@keyframes load { to { width: 100%; } }

/* =============================================
   NAVBAR
   ============================================= */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s;
}
#navbar.scrolled {
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.nav-container {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
}
.nav-logo img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--gold);
}
.nav-logo span {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex; list-style: none; gap: 36px;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 26px; height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative; height: 100vh; min-height: 650px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,0.9) 100%);
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 0 24px;
}

.hero-sub {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 16px;
}
.hero-title em { color: var(--gold); font-style: italic; }

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--text-muted);
  letter-spacing: 0.2em;
  margin-bottom: 40px;
}

.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-dots {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; gap: 10px; z-index: 2;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer; transition: all 0.3s;
}
.dot.active { background: var(--gold); transform: scale(1.3); }

.hero-scroll-hint {
  position: absolute; right: 32px; bottom: 50%;
  transform: translateY(50%);
  display: flex; flex-direction: column;
  align-items: center; gap: 12px; z-index: 2;
}
.hero-scroll-hint span {
  font-size: 0.65rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--text-muted);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim { 0%{transform:scaleY(0);transform-origin:top} 100%{transform:scaleY(1);transform-origin:top} }

/* Fade-up animation */
.fade-up { opacity: 0; transform: translateY(30px); animation: fadeUp 0.8s forwards; }
.fade-up:nth-child(1){animation-delay:0.3s}
.fade-up:nth-child(2){animation-delay:0.5s}
.fade-up:nth-child(3){animation-delay:0.7s}
.fade-up:nth-child(4){animation-delay:0.9s}
.fade-up:nth-child(5){animation-delay:1.1s}
@keyframes fadeUp { to{opacity:1;transform:translateY(0)} }

/* Reveal on scroll */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =============================================
   MARQUEE
   ============================================= */
.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 32px; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
}
.sep { color: rgba(0,0,0,0.4) !important; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* =============================================
   ABOUT
   ============================================= */
.about { background: var(--dark); }

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

.about-images { position: relative; }
.about-img-main img {
  width: 100%; height: 480px;
  object-fit: cover;
  border-radius: 2px;
}
.about-img-secondary {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 220px;
}
.about-img-secondary img {
  width: 100%; height: 180px;
  object-fit: cover;
  border-radius: 2px;
  border: 4px solid var(--dark);
}
.about-est-badge {
  position: absolute;
  top: 24px; left: -20px;
  background: var(--gold);
  color: var(--black);
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  padding: 10px 20px;
  border-radius: 2px;
  transform: rotate(-90deg);
  transform-origin: center;
}

.about-content p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 20px; margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
}
.stat span:last-child {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

/* =============================================
   SPECIALITIES
   ============================================= */
.specialities { background: var(--black); }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.spec-card {
  background: var(--dark);
  padding: 40px 32px;
  transition: background 0.3s;
  border: 1px solid transparent;
}
.spec-card:hover {
  background: var(--dark2);
  border-color: var(--border);
}
.spec-icon {
  font-size: 2rem;
  margin-bottom: 20px;
}
.spec-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 12px;
}
.spec-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* =============================================
   MENU
   ============================================= */
.menu-section { background: var(--dark); }

.menu-filters {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 10px 24px;
  border: 1px solid var(--border);
  background: none;
  color: var(--text-muted);
  font-family: 'Raleway', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.3s;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}
.menu-card {
  background: var(--dark2);
  overflow: hidden;
  transition: transform 0.3s;
  border: 1px solid transparent;
}
.menu-card:hover {
  transform: translateY(-4px);
  border-color: var(--border);
}
.menu-card.hidden { display: none; }

.menu-img {
  height: 220px; overflow: hidden;
}
.menu-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.menu-card:hover .menu-img img { transform: scale(1.05); }

.menu-info { padding: 20px; }
.menu-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
}
.menu-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.menu-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 3px 10px;
  border-radius: 2px;
}

/* =============================================
   EXPERIENCE / TRUST
   ============================================= */
.experience { background: var(--black); }

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 3px;
  margin-bottom: 40px;
}
.occasion-card { position: relative; overflow: hidden; }
.occasion-card.tall { grid-row: span 2; }
.occ-img { position: absolute; inset: 0; }
.occ-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.occasion-card:hover .occ-img img { transform: scale(1.08); }
.occ-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--white);
  font-style: italic;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  margin-bottom: 60px;
}
.trust-item { height: 180px; overflow: hidden; }
.trust-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  filter: grayscale(20%);
}
.trust-item:hover img { transform: scale(1.05); filter: grayscale(0); }

.trust-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding-top: 60px;
  border-top: 1px solid var(--border);
}
.tp { text-align: center; }
.tp-icon { font-size: 2rem; margin-bottom: 16px; }
.tp h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.tp p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* =============================================
   CHEF SECTION
   ============================================= */
.chef-section { background: var(--dark); }

.chef-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 60px;
}

.chef-photos {}
.chef-main-photo { margin-bottom: 8px; }
.chef-main-photo img {
  width: 100%; height: 420px;
  object-fit: cover;
  object-position: top;
  border-radius: 2px;
  border: 2px solid var(--border);
}
.chef-sub-photos {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
}
.chef-sub-photos img {
  width: 100%; height: 120px;
  object-fit: cover;
  border-radius: 2px;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.chef-sub-photos img:hover { opacity: 1; }

.chef-info {}
.chef-bio h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 6px;
}
.chef-title-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px !important;
}
.chef-bio p {
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.chef-credentials {
  margin-top: 32px;
  padding: 28px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 2px;
}
.chef-credentials h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.cred-list { list-style: none; }
.cred-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.cred-list li:last-child { border-bottom: none; }
.cred-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

.chef-action-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-bottom: 40px;
}
.chef-action-item { text-align: center; }
.chef-action-item img {
  width: 100%; height: 150px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 8px;
  transition: transform 0.3s;
}
.chef-action-item:hover img { transform: scale(1.04); }
.chef-action-item p {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.award-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.award-badge {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 16px;
  transition: border-color 0.3s;
}
.award-badge:hover { border-color: var(--gold); }
.award-badge img {
  width: 100%; height: 200px;
  object-fit: cover;
  margin-bottom: 12px;
}
.award-badge span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =============================================
   GALLERY
   ============================================= */
.gallery-section { background: var(--black); }

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 3px;
}
.gallery-item {
  position: relative; overflow: hidden; cursor: pointer;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex; align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: var(--white);
  font-style: italic;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.95);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.3s;
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain;
  border-radius: 2px;
}
.lb-close, .lb-nav {
  position: absolute;
  background: rgba(201,168,76,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  cursor: pointer;
  padding: 12px 18px;
  font-size: 1.3rem;
  transition: background 0.3s;
  border-radius: 2px;
}
.lb-close:hover, .lb-nav:hover { background: var(--gold); color: var(--black); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); }
.lb-caption {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 0.9rem;
}

/* =============================================
   ORDER
   ============================================= */
.order-section { background: var(--dark); }

.order-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.order-card {
  background: var(--dark2);
  padding: 48px 32px;
  text-align: center;
  transition: background 0.3s;
  border: 1px solid transparent;
}
.order-card.featured { background: var(--dark3); border-color: var(--border); }
.order-card:hover { background: var(--dark3); border-color: var(--border); }
.order-icon { font-size: 2.5rem; margin-bottom: 20px; }
.order-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}
.order-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* =============================================
   REVIEWS
   ============================================= */
.reviews-section { background: var(--black); }

.rating-banner {
  text-align: center;
  margin-bottom: 48px;
  padding: 32px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 2px;
}
.rating-stars { font-size: 2rem; color: var(--gold); margin-bottom: 8px; }
.rating-num { font-size: 2.5rem; font-weight: 700; color: var(--gold); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.review-card {
  background: var(--dark);
  padding: 36px;
  border: 1px solid transparent;
  transition: border-color 0.3s;
}
.review-card:hover { border-color: var(--border); }
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; }
.review-card p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 20px;
}
.reviewer {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =============================================
   CONTACT
   ============================================= */
.contact-section { background: var(--dark); }

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

.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-item h4 {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-item p, .contact-item a {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  transition: color 0.3s;
}
.contact-item a:hover { color: var(--gold); }

.contact-map {
  height: 450px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.contact-map iframe { width: 100%; height: 100%; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 70px 0 0;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 50px;
}
.footer-logo {
  width: 60px; height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  margin-bottom: 16px;
}
.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 6px;
}
.footer-tagline { color: var(--gold) !important; font-style: italic; }

.footer-links h4, .footer-contact h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

.footer-contact p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.footer-fb-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 20px;
  background: #1877f2;
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: opacity 0.3s;
}
.footer-fb-btn:hover { opacity: 0.85; }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* =============================================
   FLOATING BUTTON
   ============================================= */
.float-fb {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 500;
  display: flex; align-items: center; gap: 10px;
  background: #1877f2;
  color: white;
  padding: 14px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 20px rgba(24,119,242,0.4);
  transition: all 0.3s;
}
.float-fb:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(24,119,242,0.6);
  color: white;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-img-secondary { display: none; }
  .spec-grid { grid-template-columns: repeat(2, 1fr); }
  .chef-grid { grid-template-columns: 1fr; }
  .chef-action-row { grid-template-columns: repeat(3, 1fr); }
  .award-badges { grid-template-columns: repeat(3, 1fr); }
  .gallery-masonry { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .trust-strip { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .section-pad { padding: 70px 0; }

  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--dark);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right 0.4s;
    border-left: 1px solid var(--border);
    z-index: 999;
  }
  .nav-links.open { right: 0; }
  .hamburger { display: flex; z-index: 1000; }

  .hero-title { font-size: 3rem; }
  .hero-scroll-hint { display: none; }

  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .spec-grid { grid-template-columns: 1fr; }
  .occasion-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .trust-points { grid-template-columns: 1fr; gap: 24px; }
  .chef-action-row { grid-template-columns: repeat(2, 1fr); }
  .award-badges { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .order-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { grid-template-columns: 1fr; }
  .occasion-grid { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .chef-action-row { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; align-items: center; }
}

/* =============================================
   FOUNDERS SECTION ADDITIONS
   ============================================= */

.founder-block {
  margin-bottom: 70px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--border);
}

.founder-tag-label {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 2px;
  margin-bottom: 32px;
}

.cofounder-label {
  background: var(--dark3);
  color: var(--gold);
  border: 1px solid var(--gold);
}

/* CO-FOUNDER CARD */
.cofounder-block {
  padding-top: 10px;
}

.cofounder-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.cofounder-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}

.cofounder-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.cofounder-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
  border: 3px solid var(--gold);
  box-shadow: 0 0 30px rgba(201,168,76,0.25);
  flex-shrink: 0;
}

.cofounder-name-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 6px;
}

.cofounder-right {}

.cofounder-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--gold);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.cofounder-right p {
  font-size: 0.93rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.cofounder-credentials {
  margin-top: 28px;
  padding: 24px;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: 2px;
}

.cofounder-credentials h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
}

.cofounder-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.cofounder-tags span {
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  background: var(--dark);
  transition: border-color 0.3s;
}

.cofounder-tags span:hover {
  border-color: var(--gold);
}

@media (max-width: 768px) {
  .cofounder-card {
    grid-template-columns: 1fr;
    padding: 28px;
    gap: 32px;
  }
  .cofounder-left {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }
  .cofounder-avatar {
    width: 90px;
    height: 90px;
    font-size: 1.6rem;
    flex-shrink: 0;
  }
}
