/* ============================================================
   L'Atelier Traiteur - Stylesheet
   Fonts: Libre Baskerville (titles), Commissioner (body)
   Colors: #170024 (primary), #f76a0c (accent orange)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Commissioner:wght@300;400;500;600&display=swap');

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

:root {
  --primary:   #170024;
  --accent:    #f76a0c;
  --accent-hover: #d95a06;
  --white:     #ffffff;
  --light:     #f8f4f0;
  --muted:     #c4b8c9;
  --text-dark: #1a0d20;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Commissioner', sans-serif;
  font-weight: 400;
  color: var(--white);
  background: var(--primary);
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

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

.section-pad { padding: 100px 0; }

/* ---------- Typography ---------- */
h1, h2, h3 {
  font-family: 'Libre Baskerville', serif;
  line-height: 1.2;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 400; font-style: italic; }

.label-tag {
  font-family: 'Commissioner', sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
}

.divider {
  display: block;
  width: 60px;
  height: 2px;
  background: var(--accent);
  margin: 20px 0 28px;
}

.divider.center { margin: 20px auto 28px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 2px;
  font-family: 'Commissioner', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
}

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

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247, 106, 12, 0.35);
}

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

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

.btn-outline-accent {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

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

.btn svg { width: 18px; height: 18px; transition: transform var(--transition); }
.btn:hover svg { transform: translateX(4px); }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
  background: rgba(23, 0, 36, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
}

.site-header .logo img {
  height: 38px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-menu a {
  font-family: 'Commissioner', sans-serif;
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.nav-menu a:hover { color: var(--accent); }
.nav-menu a:hover::after { width: 100%; }

.nav-cta {
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 2px;
}

.nav-cta:hover { background: var(--accent-hover); color: var(--white) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity 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 Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0.35;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(23,0,36,0.92) 0%,
    rgba(23,0,36,0.7) 50%,
    rgba(23,0,36,0.85) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 120px 24px 60px;
  margin: 0 auto;
  text-align: center;
}

.hero-tagline {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 24px;
  font-family: 'Commissioner', sans-serif;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.hero h1 em {
  font-style: italic;
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 16px 0 42px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
  line-height: 1.8;
}

.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;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 2;
  animation: bounce 2s infinite;
}

.hero-scroll svg { width: 20px; color: var(--accent); }

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

/* ---------- Info Bar ---------- */
.info-bar {
  background: var(--accent);
  padding: 14px 24px;
}

.info-bar .container {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
}

.info-item svg { width: 18px; opacity: 0.9; }

/* ---------- Section: Services ---------- */
.services { background: var(--primary); }

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

.section-header .label-tag { display: block; }
.section-header h2 { color: var(--white); margin-top: 12px; }
.section-header p {
  color: var(--muted);
  max-width: 560px;
  margin: 20px auto 0;
  font-weight: 300;
  font-size: 1.05rem;
}

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

.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(247,106,12,0.15);
}

.service-card-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}

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

.service-card:hover .service-card-img img { transform: scale(1.05); }

.service-card-body {
  padding: 28px 28px 32px;
}

.service-card-body .label-tag { display: block; margin-bottom: 10px; }
.service-card-body h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 12px; }
.service-card-body p { color: var(--muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 24px; }

/* ---------- Section: Evenement ---------- */
.section-split {
  overflow: hidden;
}

.split-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.split-wrap.reverse { direction: rtl; }
.split-wrap.reverse > * { direction: ltr; }

.split-image {
  position: relative;
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.split-image:hover img { transform: scale(1.04); }

.split-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, rgba(23,0,36,0.5));
}

.split-wrap.reverse .split-image-overlay {
  background: linear-gradient(270deg, transparent 60%, rgba(23,0,36,0.5));
}

.split-content {
  background: var(--primary);
  display: flex;
  align-items: center;
  padding: 80px 64px;
}

.split-content-inner { max-width: 440px; }
.split-content-inner .label-tag { display: block; }
.split-content-inner h2 { color: var(--white); margin-top: 12px; }
.split-content-inner p { color: var(--muted); margin: 20px 0 36px; line-height: 1.9; font-weight: 300; }

.feature-list { margin-bottom: 36px; }

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.feature-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
  flex-shrink: 0;
}

/* ---------- Section: Chef ---------- */
.chef-section {
  background: linear-gradient(160deg, rgba(23,0,36,1) 0%, rgba(40,5,55,1) 100%);
  position: relative;
  overflow: hidden;
}

.chef-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,106,12,0.06) 0%, transparent 70%);
}

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

.chef-images {
  position: relative;
  height: 560px;
}

.chef-img-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 68%;
  height: 80%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.chef-img-secondary {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  height: 65%;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  border: 4px solid var(--primary);
}

.chef-img-main img,
.chef-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.chef-img-main:hover img,
.chef-img-secondary:hover img { transform: scale(1.04); }

.chef-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  background: var(--accent);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 24px rgba(247,106,12,0.4);
}

.chef-badge span {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.chef-content .label-tag { display: block; }
.chef-content h2 { color: var(--white); margin-top: 12px; margin-bottom: 6px; }
.chef-content h3 { color: var(--muted); margin-bottom: 24px; }
.chef-content p { color: var(--muted); line-height: 1.9; font-weight: 300; margin-bottom: 20px; }

.chef-quote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px;
  margin: 32px 0;
  background: rgba(247,106,12,0.06);
  border-radius: 0 4px 4px 0;
}

.chef-quote p {
  font-family: 'Libre Baskerville', serif;
  font-style: italic;
  color: var(--white) !important;
  font-size: 1.05rem;
  margin: 0;
}

/* ---------- Section: A emporter ---------- */
.emporter-section { background: var(--primary); }

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

.emporter-content .label-tag { display: block; }
.emporter-content h2 { color: var(--white); margin-top: 12px; }
.emporter-content p { color: var(--muted); margin: 20px 0 32px; line-height: 1.9; font-weight: 300; }

.emporter-formulas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.formula-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 20px;
  transition: border-color var(--transition), background var(--transition);
}

.formula-card:hover {
  border-color: var(--accent);
  background: rgba(247,106,12,0.06);
}

.formula-icon {
  width: 36px;
  height: 36px;
  background: rgba(247,106,12,0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.formula-icon svg { width: 18px; color: var(--accent); }
.formula-card h4 { color: var(--white); font-family: 'Commissioner', sans-serif; font-weight: 600; font-size: 0.9rem; }
.formula-card p { color: var(--muted); font-size: 0.85rem; margin: 6px 0 0; }

.emporter-image {
  position: relative;
  height: 520px;
  border-radius: 4px;
  overflow: hidden;
}

.emporter-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.emporter-image:hover img { transform: scale(1.04); }

.emporter-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(23,0,36,0.6));
}

/* ---------- Section: L'Apogée ---------- */
.apogee-section {
  background: linear-gradient(160deg, rgba(28,3,40,1) 0%, rgba(23,0,36,1) 100%);
  position: relative;
}

.apogee-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}

.apogee-image {
  position: relative;
  min-height: 500px;
}

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

.apogee-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 50%, rgba(23,0,36,0.8));
}

.apogee-content {
  background: rgba(255,255,255,0.03);
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid rgba(255,255,255,0.06);
}

.apogee-logo {
  width: 160px;
  margin-bottom: 32px;
}

.apogee-content .label-tag { display: block; margin-bottom: 12px; }
.apogee-content h2 { color: var(--white); margin-bottom: 8px; font-size: 1.8rem; }
.apogee-content h3 { color: var(--muted); font-style: italic; margin-bottom: 24px; }
.apogee-content p { color: var(--muted); line-height: 1.9; font-weight: 300; margin-bottom: 16px; }

.apogee-hours {
  background: rgba(247,106,12,0.08);
  border: 1px solid rgba(247,106,12,0.2);
  border-radius: 4px;
  padding: 20px 24px;
  margin: 24px 0 32px;
}

.apogee-hours-title {
  font-weight: 600;
  color: var(--accent);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.apogee-hours p { color: var(--white); font-size: 0.95rem; margin: 0; line-height: 1.6; }
.apogee-address { color: var(--muted); font-size: 0.9rem; }

/* ---------- Section: Newsletter ---------- */
.newsletter-section {
  background: var(--accent);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}

.newsletter-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}

.newsletter-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.newsletter-inner .label-tag { color: rgba(255,255,255,0.7); margin-bottom: 12px; }
.newsletter-inner h2 { color: var(--white); margin-bottom: 16px; }
.newsletter-inner p { color: rgba(255,255,255,0.85); font-size: 1.05rem; line-height: 1.8; font-weight: 300; margin-bottom: 36px; }

.newsletter-events {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.event-pill {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

.newsletter-form input {
  flex: 1;
  padding: 16px 24px;
  border: none;
  background: var(--white);
  font-family: 'Commissioner', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
}

.newsletter-form input::placeholder { color: #888; }

.newsletter-form button {
  padding: 16px 28px;
  background: var(--primary);
  color: var(--white);
  border: none;
  font-family: 'Commissioner', sans-serif;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition);
  white-space: nowrap;
}

.newsletter-form button:hover { background: #2a0040; }

.newsletter-form-msg {
  margin-top: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  display: none;
}

/* ---------- Contact Bar ---------- */
.contact-bar {
  background: rgba(0,0,0,0.25);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.contact-bar .container {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.contact-item:hover { color: var(--accent); }

.contact-item svg { width: 18px; color: var(--accent); }

/* ---------- Footer ---------- */
.site-footer {
  background: rgba(0,0,0,0.3);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.footer-brand img {
  height: 34px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.8;
  max-width: 280px;
  font-weight: 300;
}

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

.social-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.social-btn svg { width: 17px; }
.social-btn:hover { border-color: var(--accent); color: var(--accent); background: rgba(247,106,12,0.08); }

.footer-col h4 {
  font-family: 'Commissioner', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-col ul li a:hover { color: var(--white); }

.footer-contact-info p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.6;
}

.footer-contact-info svg { width: 15px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
}

.footer-bottom p { color: var(--muted); font-size: 0.82rem; }
.footer-bottom a { color: var(--accent); }

/* ---------- Scroll to top ---------- */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 900;
  border: none;
}

.scroll-top.visible { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-3px); }
.scroll-top svg { width: 20px; color: var(--white); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .chef-grid { grid-template-columns: 1fr; gap: 48px; }
  .chef-images { height: 420px; }
  .emporter-grid { grid-template-columns: 1fr; gap: 48px; }
  .emporter-image { height: 380px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .apogee-inner { grid-template-columns: 1fr; }
  .apogee-image { min-height: 300px; }
}

@media (max-width: 900px) {
  .split-wrap { grid-template-columns: 1fr; }
  .split-wrap.reverse { direction: ltr; }
  .split-image { height: 380px; }
  .split-content { padding: 60px 40px; }
  .split-content-inner { max-width: 100%; }
}

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

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(23,0,36,0.98);
    flex-direction: column;
    gap: 0;
    padding: 24px 0 32px;
    transform: translateY(-110%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }

  .nav-menu.open { transform: translateY(0); opacity: 1; }

  .nav-menu a {
    padding: 14px 32px;
    font-size: 0.9rem;
    display: block;
  }

  .nav-menu a::after { display: none; }

  .nav-cta {
    margin: 12px 32px 0;
    text-align: center;
    border-radius: 2px;
  }

  .hamburger { display: flex; }

  .hero-content { padding: 100px 20px 60px; }

  .info-bar .container { gap: 24px; flex-direction: column; }

  .emporter-formulas { grid-template-columns: 1fr; }

  .apogee-content { padding: 40px 32px; }

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

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

  .contact-bar .container { flex-direction: column; gap: 16px; }
}

@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-radius: 2px 2px 0 0; }
  .newsletter-form button { border-radius: 0 0 2px 2px; width: 100%; }
  .chef-badge { width: 70px; height: 70px; }
  .chef-badge span { font-size: 0.6rem; }
}

/* ---------- Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

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