/* ─────────────────────────────────────────
   ONLY FRESH PRODUCTS — style.css
   ───────────────────────────────────────── */

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

/* === TOKENS === */
:root {
  --primary:      #fbd799;
  --primary-dark: #f5a623;
  --dark:         #1a1a1a;
  --dark-mid:     #2e2e2e;
  --light:        #fdfaf5;
  --white:        #ffffff;
  --border:       #e8e0d5;

  --font-serif: 'Fraunces', serif;
  --font-sans:  'Inter', sans-serif;

  --container:   1200px;
  --section-pad: 100px;
}

/* === BASE === */
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark-mid);
  background: var(--light);
}

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

/* === LAYOUT === */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* === TYPOGRAPHY === */
.label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  display: block;
}

.label--primary { color: var(--primary); }
.label--accent  { color: var(--primary-dark); }
.label--muted   { color: rgba(26,26,26,0.55); }

.section-headline {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.section-headline--light { color: #ffffff; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header .label { margin-bottom: 12px; }

.body-text { font-size: 16px; line-height: 1.7; color: var(--dark-mid); margin-bottom: 24px; }
.body-text--light { color: rgba(255,255,255,0.7); }

/* === BUTTONS === */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  padding: 16px 32px;
  cursor: pointer;
  border: none;
  text-align: center;
  transition: opacity 0.2s ease;
}

.btn:hover { opacity: 0.88; }

.btn--primary         { background: var(--primary); color: var(--dark); }
.btn--outline         { background: transparent; border: 1px solid rgba(255,255,255,0.4); color: #ffffff; }
.btn--outline-primary { background: transparent; border: 1px solid var(--primary); color: var(--primary); }
.btn--dark            { background: var(--dark); color: var(--primary); width: 100%; padding: 16px; }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 88px;
  background: var(--dark);
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.45); }

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  line-height: 1;
}

.navbar__logo-img { display: none; }

.navbar__logo-name {
  display: block;
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.footer__logo-img {
  height: 90px;
  width: auto;
  display: block;
  mix-blend-mode: screen;
  margin: 0 auto 12px;
}

.footer__col--brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-text { font-family: var(--font-sans); font-size: 17px; font-weight: 600; color: var(--primary); letter-spacing: -0.2px; white-space: nowrap; }
.logo-accent { color: #ffffff; }

.navbar__links { display: flex; gap: 36px; }

.navbar__links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color 0.2s ease;
  position: relative;
  padding-bottom: 4px;
}

.navbar__links a:hover  { color: var(--primary); }
.navbar__links a.active { color: var(--primary); }

.navbar__links a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--primary);
}

.navbar__cta { padding: 10px 20px; font-size: 14px; }

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

.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.navbar__cta-mobile { display: none; }

/* === HERO — full-width background === */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background-image: url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1800&q=85');
  background-size: cover;
  background-position: center;
  background-color: var(--dark);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.72);
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  padding-top: 140px;
  padding-bottom: 64px;
}

.hero__copy { max-width: 680px; }
.hero__copy .label { color: var(--primary); margin-bottom: 20px; }

.hero__headline {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; }

.hero__bar {
  position: relative;
  z-index: 1;
  background: var(--primary);
  height: 60px;
  flex-shrink: 0;
}

.hero__bar-inner {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  height: 100%;
  align-items: center;
}

.hero__stat {
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  text-align: center;
  position: relative;
}

.hero__stat:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 22px;
  background: rgba(26,26,26,0.2);
}

/* === SPLIT === */
.split { background: var(--light); padding: var(--section-pad) 0; }

.split__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.split__card {
  border-radius: 12px;
  padding: 48px;
  display: flex;
  flex-direction: column;
}

.split__card--light {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.split__card--dark { background: var(--dark); }

.split__headline {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 24px;
}

.split__headline--light { color: #ffffff; }

.split__img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.split__img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.split__img-wrap .split__img { margin-bottom: 0; border-radius: 0; }

.split__img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.45);
}

/* === CATEGORIES HOME === */
.categories-home {
  background: var(--light);
  padding: var(--section-pad) 0;
  border-top: 1px solid var(--border);
}

.cat-home-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.cat-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

.cat-card:hover .cat-card__arrow { opacity: 1; }
.cat-card:hover .cat-card__img-wrap img { transform: scale(1.05); }

.cat-card__img-wrap { height: 200px; overflow: hidden; }

.cat-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.cat-card__body {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--white);
}

.cat-card__name { font-size: 14px; font-weight: 600; color: var(--dark); }
.cat-card__arrow { color: var(--primary-dark); font-size: 16px; opacity: 0; transition: opacity 0.2s ease; }

/* === HOW IT WORKS === */
.how { background: var(--dark); padding: var(--section-pad) 0; }

.how__steps { display: flex; align-items: flex-start; margin-top: 8px; }

.how__step { flex: 1; text-align: center; padding: 0 24px; }

.how__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--dark);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
}

.how__title { font-size: 18px; font-weight: 600; color: #ffffff; margin-bottom: 12px; line-height: 1.3; }
.how__body  { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.7; }

.how__connector {
  flex: 0 0 40px;
  border-top: 1px dashed rgba(251,215,153,0.3);
  margin-top: 28px;
}

/* === TESTIMONIALS === */
.testimonials { background: var(--light); padding: var(--section-pad) 0; }

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

.testimonial {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  border-left: 4px solid var(--primary);
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.testimonial__quote {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--dark-mid);
  line-height: 1.6;
  margin-bottom: 20px;
}

.testimonial__author {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-dark);
}

/* === WHOLESALE FORM === */
.wholesale { background: var(--primary); padding: var(--section-pad) 0; }

.wholesale__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

.wholesale__headline {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 24px;
}

.wholesale__list { margin-top: 8px; }

.wholesale__list li {
  font-size: 15px;
  color: var(--dark);
  padding: 6px 0 6px 26px;
  position: relative;
}

.wholesale__list li::before { content: '✓'; position: absolute; left: 0; font-weight: 700; color: var(--dark); }

.wholesale__form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.form-group { margin-bottom: 20px; }

.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--dark-mid);
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232e2e2e' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--primary-dark); }

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

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* === FOOTER === */
.footer { background: var(--dark); padding: 60px 0 0; }

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.6fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.logo-text--footer { font-family: var(--font-sans); font-size: 17px; font-weight: 600; color: var(--primary); letter-spacing: -0.2px; display: block; margin-bottom: 12px; }
.logo-accent--footer { color: rgba(255,255,255,0.7); }
.footer__tagline { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; }
.footer__label  { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--primary); margin-bottom: 16px; }

.footer__links li { margin-bottom: 10px; }
.footer__links a  { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s ease; }
.footer__links a:hover { color: var(--primary); }

.footer__address p   { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.footer__address a   { color: rgba(255,255,255,0.6); transition: color 0.2s ease; }
.footer__address a:hover { color: var(--primary); }

.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; }
.footer__bottom p { font-size: 12px; color: rgba(255,255,255,0.3); text-align: center; }

/* === SCROLL ANIMATIONS === */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ─────────────────────────────────────────
   INNER PAGES
   ───────────────────────────────────────── */

.navbar__logo { text-decoration: none; }

/* === PAGE HERO === */
.page-hero {
  background: var(--dark);
  padding: 178px 0 80px;
  text-align: center;
}

.page-hero .label { margin-bottom: 8px; }

.page-hero .label::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--primary);
  margin: 8px auto 0;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin-top: 20px;
}

.page-hero__sub {
  font-size: 18px;
  color: rgba(255,255,255,0.65);
  margin-top: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* === ABOUT === */
.about-section { padding: var(--section-pad) 0; }

.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-grid--reverse { direction: rtl; }
.about-grid--reverse > * { direction: ltr; }

.about-grid__img {
  border-radius: 12px;
  overflow: hidden;
  height: 400px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.about-grid__img img { width: 100%; height: 100%; object-fit: cover; }
.about-grid__copy .label { margin-bottom: 12px; }

.about-grid__copy h2 {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-grid__copy p { font-size: 16px; color: var(--dark-mid); line-height: 1.7; margin-bottom: 16px; }

.haccp-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: var(--dark);
  border-radius: 6px;
  padding: 12px 20px;
  margin-top: 24px;
  font-weight: 600;
}

.haccp-badge__icon { font-size: 18px; font-weight: 700; }
.haccp-badge__text { font-size: 13px; font-weight: 600; }

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

.range-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.2s ease;
}

.range-item:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.range-item:hover .range-item__name { color: var(--dark); }

.range-item__initial {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--dark);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  margin: 0 auto 12px;
}

.range-item__name { font-size: 14px; font-weight: 600; color: var(--dark); }

/* === PRODUCTS === */
.products-section { background: var(--light); padding: var(--section-pad) 0; }

.filter-bar { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 48px; }

.filter-btn {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--dark-mid);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-btn:hover,
.filter-btn.active { background: var(--dark); color: var(--primary); border-color: var(--dark); }

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

.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }

.product-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  border-radius: 8px 8px 0 0;
}

.product-card__content { padding: 16px; }
.product-card__body    { padding: 16px; }

.product-card__tag {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.product-card__name {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  margin: 6px 0 12px;
}

.product-card__link { font-size: 13px; font-weight: 600; color: var(--primary-dark); transition: color 0.2s ease; }
.product-card__link:hover { color: var(--dark); }

.products-cta { text-align: center; margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--border); }
.products-cta p { font-size: 16px; color: var(--dark-mid); margin-bottom: 20px; }

/* === WHOLESALE — WHAT HAPPENS NEXT === */
.what-next { background: var(--light); padding: var(--section-pad) 0; border-top: 1px solid var(--border); }

.what-next__steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 16px; }

.what-next__step {
  text-align: center;
  padding: 40px 32px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.what-next__num {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.what-next__title { font-size: 16px; font-weight: 600; color: var(--dark); margin-bottom: 10px; }
.what-next__body  { font-size: 15px; color: var(--dark-mid); line-height: 1.6; }

/* === CONTACT === */
.contact-section { padding: var(--section-pad) 0; background: var(--light); }

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

.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }

.contact-card { background: var(--white); border-radius: 12px; padding: 24px; border: 1px solid var(--border); }

.contact-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(251,215,153,0.12);
  margin: 0 auto 10px;
}

.contact-card__label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-dark);
  margin-bottom: 6px;
}

.contact-card__value { font-size: 14px; color: var(--dark); line-height: 1.5; }
.contact-card__value a { color: var(--dark); transition: color 0.2s ease; }
.contact-card__value a:hover { color: var(--primary-dark); }

.map-wrap { border-radius: 12px; overflow: hidden; height: 320px; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }

.contact-form-wrap { background: var(--white); border-radius: 12px; padding: 40px; border: 1px solid var(--border); }

.contact-form__title { font-family: var(--font-serif); font-size: 28px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }

.contact-form__sub { font-size: 14px; color: var(--dark-mid); margin-bottom: 28px; line-height: 1.6; }
.contact-form__sub a { color: var(--primary-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ─────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────── */

/* === TABLET (768px – 1024px) === */
@media (max-width: 1024px) {
  :root { --section-pad: 80px; }

  .hero__headline { font-size: 52px; }
  .section-headline { font-size: 36px; }

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

  .split__inner { grid-template-columns: 1fr; }
  .split__img   { height: 260px; }

  .testimonials__grid { grid-template-columns: 1fr; gap: 16px; }

  .product-grid { grid-template-columns: repeat(3,1fr); }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid--reverse { direction: ltr; }
  .range-grid { grid-template-columns: repeat(4,1fr); }

  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .what-next__steps { grid-template-columns: 1fr; gap: 16px; }
  .what-next__step  { padding: 32px 24px; }

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

/* === MOBILE (<768px) === */
@media (max-width: 768px) {
  :root { --section-pad: 64px; }

  /* Navbar */
  .navbar__links,
  .navbar__cta { display: none; }
  .navbar__toggle { display: flex; }

  .navbar__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 88px;
    left: 0; right: 0;
    background: var(--dark);
    padding: 20px 24px 24px;
    gap: 16px;
    z-index: 99;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }

  .navbar__cta-mobile {
    display: block;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 4px;
  }
  .navbar__cta-mobile a {
    display: block;
    width: 100%;
    text-align: center;
  }

  /* iOS — prevent auto-zoom on form focus */
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; }

  /* Hero */
  .hero__inner    { padding-top: 120px; }
  .hero__headline { font-size: 38px; }
  .hero__copy     { max-width: 100%; }

  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; text-align: center; }

  .hero__bar-inner { gap: 0; }
  .hero__stat { font-size: 11px; padding: 0 6px; }

  /* Split */
  .split__inner { grid-template-columns: 1fr; }
  .split__card  { padding: 32px 24px; }
  .split__img   { height: 220px; }

  /* Categories */
  .cat-home-grid { grid-template-columns: repeat(2,1fr); }

  /* How */
  .how__steps { flex-direction: column; gap: 40px; align-items: center; }
  .how__connector { display: none; }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: 1fr; }

  /* Products */
  .product-grid { grid-template-columns: repeat(2,1fr); }

  /* About */
  .about-grid { grid-template-columns: 1fr; }
  .about-grid--reverse { direction: ltr; }
  .about-grid__img { height: 240px; }
  .about-grid__copy h2 { font-size: 28px; }
  .range-grid { grid-template-columns: repeat(2,1fr); }

  /* Page hero */
  .page-hero { padding: 130px 0 60px; }
  .page-hero__title { font-size: 34px; }
  .page-hero__sub { font-size: 16px; }

  /* Wholesale */
  .wholesale__inner { grid-template-columns: 1fr; gap: 40px; }
  .wholesale__headline { font-size: 34px; }

  /* What next */
  .what-next__steps { grid-template-columns: 1fr; }
  .what-next__num { font-size: 48px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .map-wrap { height: 220px; }
  .contact-form-wrap { padding: 24px; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }

  /* Typography */
  .section-headline  { font-size: 32px; }
  .split__headline   { font-size: 26px; }
}

/* === EXTRA SMALL (<390px) — iPhone SE, Galaxy A series === */
@media (max-width: 390px) {
  .container { padding: 0 16px; }

  .hero__headline    { font-size: 30px; }
  .hero__stat        { font-size: 9px; padding: 0 3px; letter-spacing: 0; }

  .section-headline  { font-size: 26px; }
  .page-hero__title  { font-size: 26px; }

  .split__card       { padding: 24px 16px; }
  .split__headline   { font-size: 22px; }

  .contact-cards     { grid-template-columns: 1fr; }

  .what-next__step   { padding: 24px 16px; }
  .what-next__num    { font-size: 40px; }

  .wholesale__headline { font-size: 28px; }

  .btn               { padding: 14px 20px; font-size: 14px; }
}
