/* ============================================
   HortiNova — Site vitrine horticulture
   Palette : verts naturels + mangue/orange
   ============================================ */

:root {
  --green-900: #1a3a23;
  --green-700: #2d5d3a;
  --green-500: #5fa052;
  --green-100: #e8f1e3;
  --mango-600: #ea7d1a;
  --mango-500: #f59e0b;
  --mango-400: #fbbf24;
  --mango-100: #fef3c7;
  --cream: #fefaf3;
  --sand: #faf3e3;
  --ink: #1a2e1f;
  --muted: #6b7a6d;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(26, 58, 35, .06);
  --shadow: 0 10px 30px rgba(26, 58, 35, .10);
  --shadow-lg: 0 20px 50px rgba(26, 58, 35, .15);
  --radius: 14px;
  --radius-lg: 24px;
  --container: 1200px;
  --transition: .3s cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--green-900);
  letter-spacing: -.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.7rem); }

p { color: var(--muted); }

a {
  color: var(--green-700);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--mango-600); }

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section--alt {
  background: var(--sand);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-header .eyebrow {
  display: inline-block;
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--mango-600);
  margin-bottom: 1rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
}

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(254, 250, 243, .85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(26, 58, 35, .06);
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(254, 250, 243, .96);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--green-900);
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: white;
  border-radius: 10px;
  font-weight: 700;
}

.brand-mark svg { width: 22px; height: 22px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink);
  position: relative;
  padding: .25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--mango-500);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-links a.active { color: var(--green-700); font-weight: 600; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--green-900);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-mango {
  background: linear-gradient(135deg, var(--mango-500), var(--mango-600));
  color: white;
  box-shadow: 0 6px 20px rgba(234, 125, 26, .35);
}

.btn-mango:hover {
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(234, 125, 26, .45);
}

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

.btn-outline:hover {
  background: var(--green-700);
  color: white;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--green-900);
  margin: 5px 0;
  transition: all var(--transition);
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding: 8rem 0 4rem;
  display: flex;
  align-items: center;
  position: relative;
  background:
    radial-gradient(ellipse at top right, rgba(251, 191, 36, .15), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(95, 160, 82, .12), transparent 60%),
    var(--cream);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251, 191, 36, .08), transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(95, 160, 82, .12);
  color: var(--green-700);
  padding: .5rem 1rem;
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero h1 .accent {
  color: var(--mango-600);
  position: relative;
  display: inline-block;
}

.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 10px;
  background: var(--mango-100);
  z-index: -1;
  border-radius: 4px;
}

.hero-lead {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-700);
  display: block;
}

.stat .label {
  font-size: .85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.05;
}

.hero-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: white;
}

.hero-card-main {
  top: 0;
  left: 0;
  width: 75%;
  height: 75%;
  z-index: 2;
}

.hero-card-mango {
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  z-index: 3;
  border: 6px solid var(--cream);
}

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

.hero-badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: var(--mango-500);
  color: white;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.1;
  z-index: 4;
  box-shadow: 0 10px 25px rgba(234, 125, 26, .4);
  animation: spin 25s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ============ FEATURES ============ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.feature {
  background: white;
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius);
  border: 1px solid rgba(26, 58, 35, .05);
  transition: all var(--transition);
}

.feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--green-500);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--green-100);
  color: var(--green-700);
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
}

.feature-icon svg { width: 28px; height: 28px; }

.feature h3 {
  font-size: 1.25rem;
  margin-bottom: .6rem;
  color: var(--green-900);
}

.feature p {
  font-size: .95rem;
  line-height: 1.6;
}

/* ============ PRODUCTS ============ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.8rem;
}

.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.08);
}

.product-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--cream);
  color: var(--green-700);
  padding: .35rem .8rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.product-body {
  padding: 1.5rem;
}

.product-body h3 {
  font-size: 1.25rem;
  margin-bottom: .5rem;
}

.product-body p {
  font-size: .9rem;
  margin-bottom: 1rem;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(26, 58, 35, .08);
  font-size: .9rem;
}

.product-meta .price {
  font-weight: 700;
  color: var(--mango-600);
  font-size: 1.05rem;
}

/* ============ MANGO CHIPS CTA ============ */
.mango-cta {
  background:
    linear-gradient(135deg, rgba(234, 125, 26, .92), rgba(245, 158, 11, .85)),
    url('https://images.unsplash.com/photo-1601493700631-2b16ec4b4716?fm=jpg&q=70&w=2000&auto=format&fit=crop&ixlib=rb-4.1.0') center/cover;
  color: white;
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  margin: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: var(--container);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.mango-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, .15), transparent 60%);
}

.mango-cta-wrap {
  display: flex;
  justify-content: center;
}

.mango-cta h2 { color: white; margin-bottom: 1rem; }
.mango-cta p { color: rgba(255, 255, 255, .92); font-size: 1.05rem; margin-bottom: 1.5rem; }

.mango-cta .btn-primary {
  background: white;
  color: var(--mango-600);
}

.mango-cta .btn-primary:hover {
  background: var(--ink);
  color: white;
}

.mango-visual {
  position: relative;
  z-index: 1;
  text-align: center;
}

.mango-visual .pack {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 5rem;
  line-height: 1;
  color: white;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .2);
}

.mango-visual .pack-label {
  font-size: 1rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .9;
  margin-top: .5rem;
}

/* ============ TESTIMONIALS ============ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testimonial::before {
  content: '"';
  position: absolute;
  top: -.5rem;
  left: 1.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--mango-400);
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  color: var(--ink);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 600;
}

.author-info strong {
  display: block;
  color: var(--green-900);
  font-size: .95rem;
}

.author-info span {
  font-size: .8rem;
  color: var(--muted);
}

/* ============ FOOTER ============ */
.footer {
  background: var(--green-900);
  color: rgba(255, 255, 255, .8);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer .brand { color: white; margin-bottom: 1rem; }

.footer h4 {
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer ul { list-style: none; }

.footer ul li { margin-bottom: .7rem; }

.footer ul a {
  color: rgba(255, 255, 255, .7);
  font-size: .95rem;
}

.footer ul a:hover { color: var(--mango-400); }

.footer-about p {
  color: rgba(255, 255, 255, .7);
  margin-bottom: 1.5rem;
  max-width: 350px;
}

.socials {
  display: flex;
  gap: .8rem;
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  display: grid;
  place-items: center;
  color: white;
  transition: all var(--transition);
}

.socials a:hover {
  background: var(--mango-500);
  color: white;
  transform: translateY(-3px);
}

.socials svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .9rem;
  color: rgba(255, 255, 255, .6);
}

/* ============ PAGE HEADER ============ */
.page-header {
  padding: 9rem 0 4rem;
  background:
    radial-gradient(ellipse at top right, rgba(251, 191, 36, .12), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(95, 160, 82, .1), transparent 60%),
    var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  margin-bottom: 1rem;
}

.page-header .breadcrumb {
  font-size: .9rem;
  color: var(--muted);
  margin-bottom: .8rem;
}

.page-header p {
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.1rem;
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
}

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

.about-content h2 { margin-bottom: 1.2rem; }

.about-content .lead {
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  color: var(--ink);
}

.about-content p { margin-bottom: 1rem; }

.values-list {
  list-style: none;
  margin-top: 1.5rem;
}

.values-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.values-list .check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--green-100);
  color: var(--green-700);
  display: grid;
  place-items: center;
  font-weight: 700;
  margin-top: 2px;
}

.values-list strong { color: var(--green-900); display: block; margin-bottom: .25rem; }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
}

.contact-info {
  background: var(--green-900);
  color: white;
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
}

.contact-info h3 { color: white; margin-bottom: 1rem; }
.contact-info > p { color: rgba(255, 255, 255, .8); margin-bottom: 2.5rem; }

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .12);
  display: grid;
  place-items: center;
  color: var(--mango-400);
  flex-shrink: 0;
}

.contact-icon svg { width: 22px; height: 22px; }

.contact-item strong {
  display: block;
  color: white;
  font-size: .95rem;
  margin-bottom: .2rem;
}

.contact-item span { color: rgba(255, 255, 255, .8); font-size: .9rem; }

.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}

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

.form-group {
  margin-bottom: 1.3rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: .9rem;
  color: var(--green-900);
  margin-bottom: .5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .9rem 1rem;
  border: 2px solid #eee;
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  background: var(--cream);
  transition: all var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-500);
  background: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  grid-auto-flow: dense;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-item.tall { grid-row: span 2; aspect-ratio: 1/2; }
.gallery-item.wide { grid-column: span 2; aspect-ratio: 2/1; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .5s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, .6));
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover::after { opacity: 1; }

.gallery-caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  color: white;
  font-weight: 600;
  z-index: 1;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition);
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* ============ CHIPS PAGE ============ */
.chips-hero {
  background:
    linear-gradient(135deg, rgba(254, 243, 199, .85), rgba(254, 250, 243, .9)),
    url('https://images.unsplash.com/photo-1591073113125-e46713c829ed?fm=jpg&q=70&w=2000&auto=format&fit=crop&ixlib=rb-4.1.0') center/cover;
  padding: 9rem 0 5rem;
}

.chips-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.chips-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1;
}

.chips-img-wrap img { width: 100%; height: 100%; object-fit: cover; }

.price-tag {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--mango-500);
  color: white;
  border-radius: 999px;
  padding: 1rem 1.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(234, 125, 26, .4);
}

.price-tag small { display: block; font-size: .75rem; font-weight: 400; opacity: .9; }
.price-tag .amount { font-size: 1.5rem; line-height: 1; }

.chips-benefits {
  list-style: none;
  margin: 2rem 0;
}

.chips-benefits li {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px dashed rgba(26, 58, 35, .12);
  font-size: 1rem;
  color: var(--ink);
}

.chips-benefits .icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--mango-100);
  color: var(--mango-600);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.formats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.format-card {
  background: white;
  border: 2px solid #eee;
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}

.format-card:hover, .format-card.featured {
  border-color: var(--mango-500);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.format-card.featured {
  background: linear-gradient(135deg, #fff, var(--mango-100));
  position: relative;
}

.format-card.featured::before {
  content: 'Plus populaire';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--mango-500);
  color: white;
  padding: .3rem .9rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  white-space: nowrap;
}

.format-card .size {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--green-900);
  font-weight: 700;
}

.format-card .size small { font-size: 1rem; color: var(--muted); }
.format-card .desc { font-size: .9rem; color: var(--muted); margin: .5rem 0 1rem; }

.format-card .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--mango-600);
  font-family: 'Playfair Display', serif;
}

/* ============ PROCESS ============ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  position: relative;
}

.process-step {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  position: relative;
  box-shadow: var(--shadow-sm);
}

.process-step .num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--mango-400);
  line-height: 1;
  margin-bottom: 1rem;
}

.process-step h4 {
  font-family: 'Playfair Display', serif;
  color: var(--green-900);
  margin-bottom: .5rem;
  font-size: 1.2rem;
}

.process-step p { font-size: .9rem; }

/* ============ ANIMATIONS ============ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all .8s cubic-bezier(.4, 0, .2, 1);
}

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

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero { padding: 7rem 0 3rem; min-height: auto; }
  .hero-grid,
  .about-grid,
  .chips-hero-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { aspect-ratio: auto; height: 380px; max-width: 480px; margin: 0 auto; width: 100%; }
  .mango-cta { grid-template-columns: 1fr; padding: 3rem 2rem; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 2rem; }
  .section { padding: 4rem 0; }

  .menu-toggle { display: block; }
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: var(--shadow);
    transform: translateY(-150%);
    transition: transform .4s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1.05rem; }
  .nav-cta { display: none; }
}

@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-stats { gap: 1.5rem; }
  .stat .num { font-size: 1.5rem; }
  .mango-cta { margin: 0 1rem; padding: 2.5rem 1.5rem; }
  .gallery-item.wide, .gallery-item.tall { grid-column: span 1; grid-row: span 1; aspect-ratio: 1; }
}
