:root {
  --olive: #889E7E;
  --olive-dark: #6B7F63;
  --olive-light: #A8B8A0;
  --olive-pale: #E8EDE5;
  --olive-wash: #F4F7F2;
  --cream: #FDFBF7;
  --warm-brown: #5C4A3A;
  --warm-brown-light: #8B7355;
  --gold: #C4A35A;
  --gold-light: #E8D5A0;
  --text: #2D2A26;
  --text-light: #6B6560;
  --white: #FFFFFF;
  --red-accent: #C75B5B;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(253,251,247,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(136,158,126,0.15);
  transition: box-shadow 0.3s ease;
}
.navbar.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--olive-dark);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--red-accent); }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0;
  height: 2px;
  background: var(--olive);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--olive-dark); }
.nav-links a:hover::after { width: 100%; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--olive-wash) 0%, var(--cream) 50%, #f5f0e8 100%);
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(136,158,126,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(196,163,90,0.06) 0%, transparent 50%);
}
.hero-decoration {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(136,158,126,0.1) 0%, transparent 70%);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(136,158,126,0.12);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--olive-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease both;
}
.hero-badge::before {
  content: '🍜';
  font-size: 1rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--warm-brown);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.hero-title em {
  color: var(--olive);
  font-style: italic;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 460px;
  margin-bottom: 36px;
  font-weight: 300;
  animation: fadeInUp 0.8s ease 0.2s both;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--olive);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--olive-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(136,158,126,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--olive-dark);
  border: 1.5px solid var(--olive-light);
}
.btn-outline:hover {
  background: var(--olive-pale);
  border-color: var(--olive);
}

/* Hero visual */
.hero-visual {
  position: relative;
  animation: fadeInUp 0.8s ease 0.4s both;
}
.hero-card {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--olive), var(--gold));
}
.hero-card-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}
.hero-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--warm-brown);
  margin-bottom: 12px;
}
.hero-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--olive-pale);
}
.hero-stat {
  text-align: center;
}
.hero-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--olive-dark);
}
.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.hero-float-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--gold);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 8px 24px rgba(196,163,90,0.3);
}

/* ========== SECTIONS COMMON ========== */
section {
  padding: 100px 24px;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--olive);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--olive);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--warm-brown);
  margin-bottom: 16px;
  line-height: 1.15;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  font-weight: 300;
}
.section-header {
  margin-bottom: 60px;
}
.section-header.centered {
  text-align: center;
}
.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* ========== À PROPOS ========== */
#about {
  background: var(--white);
}
.about-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-image-box {
  background: linear-gradient(135deg, var(--olive-pale), var(--olive-wash));
  border-radius: 20px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  position: relative;
  overflow: hidden;
}
.about-image-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23889E7E' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.about-emoji-display {
  font-size: 6rem;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.1));
}
.about-accent-card {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--warm-brown);
  color: var(--white);
  padding: 20px 28px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(92,74,58,0.25);
  z-index: 2;
}
.about-accent-card span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
}
.about-accent-card small {
  font-size: 0.8rem;
  opacity: 0.8;
}

.about-text p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 20px;
}
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--olive-wash);
  border-radius: 12px;
}
.about-highlight-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-highlight h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--warm-brown);
  margin-bottom: 2px;
}
.about-highlight p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
}

/* ========== SPÉCIALITÉS ========== */
#specialties {
  background: var(--cream);
}
.specialties-container {
  max-width: 1200px;
  margin: 0 auto;
}
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.specialty-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.35s ease;
  border: 1px solid rgba(136,158,126,0.1);
  position: relative;
  overflow: hidden;
}
.specialty-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--olive);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.specialty-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}
.specialty-card:hover::before { transform: scaleX(1); }
.specialty-emoji {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.specialty-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--warm-brown);
  margin-bottom: 8px;
}
.specialty-card p {
  font-size: 0.9rem;
  color: var(--text-light);
}
.specialty-price {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  color: var(--olive-dark);
  font-size: 1rem;
}

/* ========== CARTE ========== */
#menu {
  background: var(--olive);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
#menu::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04' fill-rule='evenodd'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E") repeat;
}
.menu-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
#menu .section-label { color: var(--gold-light); }
#menu .section-label::before { background: var(--gold-light); }
#menu .section-title { color: var(--white); }
#menu .section-subtitle { color: rgba(255,255,255,0.75); margin: 0 auto; }
.menu-cta {
  margin-top: 40px;
}
.btn-menu {
  background: var(--white);
  color: var(--olive-dark);
  font-weight: 600;
  padding: 16px 36px;
  font-size: 1rem;
  border-radius: 10px;
}
.btn-menu:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}
.menu-note {
  margin-top: 20px;
  font-size: 0.85rem;
  opacity: 0.65;
}

/* ========== FORMULES ========== */
#formulas {
  background: var(--white);
}
.formulas-container {
  max-width: 1200px;
  margin: 0 auto;
}
.formulas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.formula-card {
  border: 2px solid var(--olive-pale);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.35s ease;
  position: relative;
}
.formula-card.featured {
  border-color: var(--olive);
  background: var(--olive-wash);
}
.formula-card.featured::after {
  content: 'Populaire';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--olive);
  color: var(--white);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.formula-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
}
.formula-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.formula-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--warm-brown);
  margin-bottom: 8px;
}
.formula-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--olive-dark);
  margin: 12px 0;
}
.formula-price small {
  font-size: 0.9rem;
  font-weight: 400;
}
.formula-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ========== AVIS ========== */
#reviews {
  background: var(--cream);
}
.reviews-container {
  max-width: 1200px;
  margin: 0 auto;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  border: 1px solid rgba(136,158,126,0.08);
}
.review-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--olive-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--olive-dark);
  font-size: 0.85rem;
}
.review-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--warm-brown);
}
.review-source {
  font-size: 0.75rem;
  color: var(--text-light);
}

/* ========== INFOS PRATIQUES ========== */
#info {
  background: var(--white);
}
.info-container {
  max-width: 1200px;
  margin: 0 auto;
}
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.info-details {}
.info-block {
  margin-bottom: 32px;
}
.info-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--warm-brown);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.info-block p, .info-block address {
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: normal;
  line-height: 1.8;
}
.info-block a {
  color: var(--olive-dark);
  text-decoration: none;
  font-weight: 500;
}
.info-block a:hover {
  text-decoration: underline;
}
.info-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--olive-wash);
  color: var(--olive-dark);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.25s;
}
.social-link:hover {
  background: var(--olive-pale);
  transform: translateY(-2px);
}

.info-map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  min-height: 400px;
}
.info-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
}

/* ========== CONTACT ========== */
#contact {
  background: var(--olive-wash);
}
.contact-container {
  max-width: 680px;
  margin: 0 auto;
}
.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.04);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--warm-brown);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--olive-pale);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(136,158,126,0.15);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--olive);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}
.form-submit:hover {
  background: var(--olive-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(136,158,126,0.3);
}
.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.form-message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
}
.form-message.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}
.form-message.error {
  display: block;
  background: #fce4ec;
  color: #c62828;
  border: 1px solid #ef9a9a;
}

/* ========== FOOTER ========== */
footer {
  background: var(--warm-brown);
  color: rgba(255,255,255,0.8);
  padding: 60px 24px 30px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 8px;
}
.footer-col a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.25s;
}
.footer-col a:hover {
  color: var(--white);
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== MOBILE NAV OVERLAY ========== */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(253,251,247,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--warm-brown);
  text-decoration: none;
  transition: color 0.25s;
}
.mobile-nav a:hover { color: var(--olive); }

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 480px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .specialties-grid { grid-template-columns: repeat(2, 1fr); }
  .formulas-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .info-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  section { padding: 72px 20px; }
  .hero { min-height: auto; padding-top: 72px; }
  .hero-inner { padding: 100px 20px 60px; }
  .specialties-grid { grid-template-columns: 1fr; }
  .formulas-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .about-highlights { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-card { padding: 28px; }
}
