/* ============================================
   TOP & TASTY CATERING — STYLESHEET
   ============================================ */

/* ---- CSS VARIABLES ---- */
:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #a07830;
  --dark: #1a1a1a;
  --dark2: #2c2c2c;
  --dark3: #3d3d3d;
  --light: #f8f5f0;
  --white: #ffffff;
  --grey: #6b7280;
  --grey-light: #f3f0eb;
  --text: #333333;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --shadow: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-hover: 0 16px 48px rgba(0,0,0,0.2);
  --radius: 12px;
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

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

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 600; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; }
.section-desc { color: var(--grey); max-width: 600px; margin: 0 auto; font-size: 1.05rem; }
.section-header.light h2 { color: var(--white); }
.section-header.light .section-desc { color: rgba(255,255,255,0.75); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ============================================
   NAVIGATION
   ============================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}

#navbar.scrolled {
  padding: 12px 0;
  background: rgba(26,26,26,0.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

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

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-top {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  margin-top: 2px;
}

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

.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  transition: color 0.25s;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:not(.nav-cta):hover { color: var(--gold); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  padding: 10px 24px;
  background: var(--gold);
  color: var(--dark) !important;
  border-radius: 50px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--gold-dark); transform: translateY(-1px); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=1600&q=85');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,26,26,0.82) 0%,
    rgba(26,26,26,0.65) 50%,
    rgba(160,120,48,0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 0 24px;
  animation: fadeUp 1s ease both;
}

.hero-tag {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--gold);
  border-radius: 50px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-sub {
  color: rgba(255,255,255,0.82);
  font-size: 1.15rem;
  max-width: 580px;
  margin: 0 auto 36px;
}

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

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: color 0.3s;
  animation: bounce 2s infinite;
}
.hero-scroll:hover { color: var(--gold); }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--dark);
  padding: 40px 24px;
}
.stats-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
}
.stat-item {
  text-align: center;
  color: var(--white);
}
.stat-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-plus {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}
.stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.12);
}

/* ============================================
   ABOUT
   ============================================ */
.about { padding: 100px 0; background: var(--white); }

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

.about-images {
  position: relative;
}

.img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.img-main:hover img { transform: scale(1.04); }

.img-accent {
  position: absolute;
  bottom: -48px;
  right: -48px;
  width: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 4px solid var(--white);
}
.img-accent img { width: 100%; height: 180px; object-fit: cover; }

.about-badge {
  position: absolute;
  top: 32px;
  left: -32px;
  background: var(--gold);
  color: var(--dark);
  padding: 20px 24px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1.3;
  box-shadow: var(--shadow);
}
.about-badge i { font-size: 1.5rem; }

.about-text h2 { margin-bottom: 20px; }
.about-text p { color: var(--grey); margin-bottom: 16px; }

.about-features {
  margin: 28px 0 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
}
.about-features i {
  color: var(--gold);
  font-size: 0.8rem;
  background: rgba(201,168,76,0.12);
  padding: 5px;
  border-radius: 50%;
  width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
}

/* ============================================
   SERVICES
   ============================================ */
.services { padding: 100px 0; background: var(--grey-light); }

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

.service-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.service-card:hover::before { width: 100%; }

.service-icon {
  width: 60px; height: 60px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--gold); }
.service-icon i { font-size: 1.4rem; color: var(--gold); transition: color 0.3s; }
.service-card:hover .service-icon i { color: var(--dark); }

.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--grey); font-size: 0.92rem; margin-bottom: 24px; }

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap 0.3s;
}
.service-link:hover { gap: 12px; }

/* ============================================
   MENU
   ============================================ */
.menu {
  padding: 100px 0;
  background-image: url('https://images.unsplash.com/photo-1600565193348-f74bd3c7ccdf?w=1600&q=70');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}
.menu-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.9);
}
.menu .container { position: relative; z-index: 1; }

.menu-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.tab-btn {
  padding: 12px 28px;
  border: 2px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.7);
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn:hover { border-color: var(--gold); color: var(--gold); }
.tab-btn.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeUp 0.4s ease; }

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.menu-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.menu-item:nth-child(odd) { padding-right: 32px; }
.menu-item:nth-child(even) { padding-left: 32px; border-left: 1px solid rgba(255,255,255,0.08); }

.menu-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
  white-space: nowrap;
}
.menu-dot {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.15);
  min-width: 20px;
  margin-bottom: 3px;
}
.menu-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}

.menu-cta {
  text-align: center;
  margin-top: 56px;
}
.menu-cta p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* ============================================
   WHY US
   ============================================ */
.why-us { padding: 100px 0; background: var(--white); }

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

.why-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.why-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201,168,76,0.15);
  transform: translateY(-4px);
}

.why-icon {
  width: 70px; height: 70px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--gold); }
.why-icon i { font-size: 1.6rem; color: var(--gold); transition: color 0.3s; }
.why-card:hover .why-icon i { color: var(--dark); }

.why-card h4 { margin-bottom: 12px; }
.why-card p { color: var(--grey); font-size: 0.9rem; }

/* ============================================
   GALLERY
   ============================================ */
.gallery { padding: 100px 0 60px; background: var(--grey-light); }
.gallery .container { margin-bottom: 48px; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 8px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,26,0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.35s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { padding: 100px 0; background: var(--white); }

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

.testimonial-card {
  padding: 36px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.08);
  background: var(--white);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.testimonial-card.featured {
  background: var(--dark);
  border-color: var(--dark);
  transform: scale(1.03);
}
.testimonial-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.testimonial-card.featured p { color: rgba(255,255,255,0.85); }

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

.testimonial-card p {
  color: var(--grey);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.testimonial-card.featured .author-avatar { background: rgba(201,168,76,0.2); color: var(--gold); }
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.78rem; color: var(--grey); }
.testimonial-card.featured .testimonial-author strong { color: var(--white); }

/* ============================================
   CONTACT
   ============================================ */
.contact { padding: 100px 0; background: var(--grey-light); }

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

.contact-info h2 { margin: 12px 0 16px; }
.contact-info > p { color: var(--grey); margin-bottom: 36px; }

.contact-details { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.cd-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cd-icon i { color: var(--gold); font-size: 1rem; }
.contact-detail strong { display: block; font-size: 0.85rem; margin-bottom: 2px; }
.contact-detail span, .contact-detail a { color: var(--grey); font-size: 0.9rem; }
.contact-detail a:hover { color: var(--gold); }

.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); transform: translateY(-2px); }

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  padding: 48px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid #e0dbd4;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; }

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 20px;
  background: rgba(34,197,94,0.1);
  border-radius: 8px;
  color: #16a34a;
  font-size: 0.9rem;
  font-weight: 600;
}
.form-success.show { display: flex; animation: fadeUp 0.4s ease; }

/* ============================================
   MAP
   ============================================ */
.map-section { line-height: 0; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--dark); color: rgba(255,255,255,0.75); }

.footer-top { padding: 72px 0 56px; }

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

.footer-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 20px;
}

.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; max-width: 280px; }

.footer-nav h4, .footer-contact h4 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 20px;
}
.footer-nav ul li { margin-bottom: 10px; }
.footer-nav ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: color 0.25s;
}
.footer-nav ul li a:hover { color: var(--gold); }

.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 12px;
}
.footer-contact i { color: var(--gold); margin-top: 3px; width: 14px; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,0.65); transition: color 0.25s; }
.footer-contact a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-legal a { color: rgba(255,255,255,0.45); transition: color 0.25s; }
.footer-legal a:hover { color: var(--gold); }

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(201,168,76,0.4);
  opacity: 0; pointer-events: none;
  transition: var(--transition);
  z-index: 999;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger children */
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.4s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 80px; }
  .about-images { order: -1; }
  .img-accent { right: -16px; }
  .about-badge { left: -8px; }
  .about-features { grid-template-columns: 1fr 1fr; }

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

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

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    padding: 80px 32px;
    transition: right 0.4s ease;
    box-shadow: -8px 0 32px rgba(0,0,0,0.3);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }
  .nav-cta { padding: 14px 28px; }
  .hamburger { display: flex; }

  .hero-btns { flex-direction: column; align-items: center; }

  .stats-container { flex-direction: column; gap: 24px; }
  .stat-divider { width: 80px; height: 1px; }

  .about-grid { gap: 60px; }
  .img-main img { height: 320px; }
  .img-accent { width: 160px; right: 0; bottom: -32px; }
  .img-accent img { height: 130px; }
  .about-badge { left: 0; top: 20px; }
  .about-features { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }

  .menu-grid { grid-template-columns: 1fr; }
  .menu-item:nth-child(even) { padding-left: 0; border-left: none; }
  .menu-item:nth-child(odd) { padding-right: 0; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.wide { grid-column: span 2; }

  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card.featured { transform: none; }
  .testimonial-card.featured:hover { transform: translateY(-4px); }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }

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

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item.wide { grid-column: span 1; }
  .gallery-item { height: 240px; }
  .gallery-item img { height: 100%; }
}
