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

:root {
  --cream:   #f5f0e8;
  --cream2:  #ede8dc;
  --sand:    #d4c5a9;
  --brown:   #8b7355;
  --dark:    #2c2416;
  --text:    #4a3f30;
  --text-lt: #7a6e5f;
  --white:   #ffffff;
  --accent:  #c8a96e;
  --accent2: #a07840;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(44,36,22,.10);
  --shadow-lg: 0 12px 48px rgba(44,36,22,.16);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

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

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

.section { padding: 96px 0; }

/* ── Typography helpers ── */
.section__tag {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 12px;
  display: block;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section__desc {
  max-width: 600px;
  color: var(--text-lt);
  font-size: 1.05rem;
}

.section__header {
  text-align: center;
  margin-bottom: 56px;
}
.section__header .section__desc { margin: 0 auto; }

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

.btn--primary {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
}
.btn--primary:hover { background: var(--accent2); border-color: var(--accent2); }

.btn--outline {
  background: transparent;
  color: var(--dark);
  border-color: var(--dark);
}
.btn--outline:hover { background: var(--dark); color: var(--white); }

.btn--ghost {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: rgba(255,255,255,.5);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,.25); }

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

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(245,240,232,.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--sand);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.nav.scrolled .nav__logo { color: var(--dark); }
.nav__logo span { color: var(--accent); }

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

.nav__links a {
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  transition: color var(--transition);
}
.nav.scrolled .nav__links a { color: var(--text); }
.nav__links a:hover { color: var(--accent); }
.nav__links .btn--outline {
  color: var(--white);
  border-color: rgba(255,255,255,.6);
  padding: 10px 22px;
}
.nav.scrolled .nav__links .btn--outline { color: var(--dark); border-color: var(--dark); }
.nav__links .btn--outline:hover { background: var(--white); color: var(--dark); }
.nav.scrolled .nav__links .btn--outline:hover { background: var(--dark); color: var(--white); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav.scrolled .nav__burger span { background: var(--dark); }

.nav__mobile {
  display: none;
  flex-direction: column;
  background: rgba(245,240,232,.97);
  backdrop-filter: blur(12px);
  padding: 16px 24px 24px;
  border-top: 1px solid var(--sand);
}
.nav__mobile a {
  padding: 14px 0;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--cream2);
  font-size: 1rem;
}
.nav__mobile.open { display: flex; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(44,36,22,.82) 0%, rgba(120,90,50,.65) 60%, rgba(200,169,110,.4) 100%),
    url('images/hero-bg.jpg') center/cover no-repeat;
  background-color: #6b5230;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-top: 80px;
}

.hero__tag {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.82);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.75;
}

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

.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero__scroll span {
  display: block;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 12px;
  position: relative;
}
.hero__scroll span::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,.7);
  border-radius: 2px;
  animation: scroll-dot 1.6s infinite;
}
@keyframes scroll-dot {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ── TRUST BAR ── */
.trust {
  background: var(--dark);
  padding: 40px 0;
}

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

.trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,.85);
}

.trust__item svg { flex-shrink: 0; color: var(--accent); }
.trust__item p { font-size: .88rem; font-weight: 500; line-height: 1.4; }

/* ── ABOUT ── */
.about { background: var(--white); }

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

.about__img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--cream2);
}

.about__img-wrap.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.about__img-wrap.no-img::after { content: '🌾'; }

.about__badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 20px;
  box-shadow: var(--shadow);
  text-align: center;
}
.about__badge strong { display: block; font-size: .95rem; color: var(--dark); }
.about__badge span { font-size: .8rem; color: var(--text-lt); }

.about__text p { color: var(--text-lt); margin-bottom: 16px; }
.about__text p strong { color: var(--dark); }

.about__values { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 20px; }
.about__values li { display: flex; gap: 16px; align-items: flex-start; }
.about__values .icon { color: var(--accent2); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.about__values strong { display: block; color: var(--dark); font-size: .95rem; margin-bottom: 2px; }
.about__values p { margin: 0; font-size: .88rem; }

/* ── PRODUCTS ── */
.products { background: var(--cream); }

.products__grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: row;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.product-card--reverse,
.products__grid .product-card:nth-child(even) {
  flex-direction: row-reverse;
}

.product-card__img {
  position: relative;
  background: var(--cream2);
  flex-shrink: 0;
  width: 38%;
  min-height: 320px;
}

.product-card__img.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}
.product-card__img.no-img::after { content: '🧺'; }

.product-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--dark);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 4px;
}

.product-card__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 4px;
}
.product-card__sub {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 14px;
}
.product-card__body > p { color: var(--text-lt); margin-bottom: 20px; }

.product-card__specs {
  list-style: none;
  margin-bottom: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-card__specs li {
  font-size: .88rem;
  color: var(--text-lt);
  padding-left: 20px;
  position: relative;
}
.product-card__specs li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent2);
  font-weight: 700;
}

/* ── CARD LINK (stretched) ── */
.product-card { position: relative; cursor: pointer; }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--accent2);
  margin-top: 20px;
  transition: color var(--transition);
  text-decoration: none;
}
.card-link span { display: inline-block; transition: transform var(--transition); }
.card-link:hover { color: var(--dark); }
.card-link:hover span { transform: translateX(5px); }
.card-link::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
}
.lightbox.active { display: flex; }

.lightbox__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  cursor: default;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-size: 1.3rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
  z-index: 1;
}
.lightbox__close:hover { background: rgba(255,255,255,.25); }

.lightbox__caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  white-space: nowrap;
}

.gallery-item img { cursor: zoom-in; }

/* ── CUSTOM BANNER ── */
.custom-banner {
  background: linear-gradient(135deg, #3a2a10 0%, var(--accent2) 45%, #3a2a10 100%);
  padding: 64px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.custom-banner::before {
  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='%23ffffff' fill-opacity='0.04'%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");
}
.custom-banner__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 780px;
  margin: 0 auto;
}
.custom-banner__icon {
  width: 72px;
  height: 72px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.custom-banner__text { text-align: center; }
.custom-banner__text strong {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
  letter-spacing: .01em;
}
.custom-banner__text strong::after {
  content: '';
  display: block;
  width: 64px;
  height: 2px;
  background: rgba(255,255,255,.5);
  margin: 14px auto 0;
  border-radius: 2px;
}
.custom-banner__text p {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 0;
  max-width: 640px;
}
.custom-banner__btn {
  background: var(--white);
  color: var(--accent2);
  border-color: var(--white);
  margin-top: 8px;
  font-size: .95rem;
  padding: 14px 36px;
}
.custom-banner__btn:hover { background: var(--dark); color: var(--white); border-color: var(--dark); }

/* ── PRODUCT PAGE ── */
.prod-hero {
  background: var(--dark);
  padding: 120px 0 72px;
}
.prod-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  margin-bottom: 28px;
  transition: color var(--transition);
  text-decoration: none;
}
.prod-hero__back:hover { color: var(--accent); }
.prod-hero .section__tag { color: var(--accent); }
.prod-hero .section__title { color: var(--white); margin-bottom: 16px; }
.prod-hero__desc { color: rgba(255,255,255,.7); font-size: 1.05rem; max-width: 620px; }

.prod-overview { background: var(--white); }
.prod-overview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.prod-overview__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream2);
}
.prod-overview__img.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}
.prod-overview__text h2 {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  color: var(--dark);
  margin-bottom: 16px;
}
.prod-overview__text p { color: var(--text-lt); margin-bottom: 14px; }

.prod-specs { background: var(--cream); }
.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.spec-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border-left: 3px solid var(--accent);
}
.spec-card strong {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent2);
  margin-bottom: 6px;
}
.spec-card p { color: var(--text); font-size: .92rem; margin: 0; }

.prod-gallery { background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.gallery-grid .gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream2);
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-grid .gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.gallery-grid .gallery-item:hover img { transform: scale(1.04); }
.gallery-grid .gallery-item.no-img {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--sand);
}
.gallery-grid .gallery-item--tall { grid-row: span 2; aspect-ratio: unset; }

.prod-cta {
  background: linear-gradient(180deg, #3b2a14 0%, #1a0e06 100%);
  padding: 80px 0;
  text-align: center;
  width: 100%;
  display: block;
}
.prod-cta .section__tag { color: var(--accent); }
.prod-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
}
.prod-cta p { color: rgba(255,255,255,.7); margin-bottom: 32px; font-size: 1rem; }
.prod-cta .btn--primary { background: var(--accent2); border-color: var(--accent2); }
.prod-cta .btn--primary:hover { background: var(--white); color: var(--accent2); border-color: var(--white); }

@media (max-width: 768px) {
  .prod-overview__grid { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-grid .gallery-item--tall { grid-row: span 1; }
}
@media (max-width: 480px) {
  .specs-grid { grid-template-columns: 1fr; }
}

/* ── WHY US ── */
.why-us { background: var(--dark); }
.why-us .section__tag { color: var(--accent); }
.why-us .section__title { color: var(--white); }

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

.why-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: background var(--transition), border-color var(--transition);
}
.why-card:hover { background: rgba(255,255,255,.1); border-color: rgba(200,169,110,.4); }

.why-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(200,169,110,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 10px;
}
.why-card p { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.7; }

/* ── CONTACT ── */
.contact { background: var(--cream); }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}

.contact__info p { color: var(--text-lt); margin-bottom: 32px; }

.contact__details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact__details li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .95rem;
  color: var(--text);
}
.contact__details svg { color: var(--accent2); flex-shrink: 0; }

.contact__form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact__form { display: flex; flex-direction: column; gap: 20px; }

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

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .84rem; font-weight: 600; color: var(--dark); }

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--sand);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: .92rem;
  color: var(--dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-lt); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent2);
  box-shadow: 0 0 0 3px rgba(160,120,64,.12);
  background: var(--white);
}

.form__note { font-size: .8rem; color: var(--text-lt); text-align: center; }

/* ── FOOTER ── */
.footer { background: #1a1208; color: rgba(255,255,255,.7); }

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 24px 48px;
}

.footer__brand .nav__logo { display: inline-block; margin-bottom: 16px; }
.footer__brand p { font-size: .88rem; line-height: 1.7; max-width: 260px; }

.footer__links h4,
.footer__products h4,
.footer__contact h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer__links,
.footer__products { display: flex; flex-direction: column; }
.footer__links a,
.footer__products a {
  font-size: .88rem;
  padding: 5px 0;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.footer__links a:hover,
.footer__products a:hover { color: var(--accent); }

.footer__contact p { font-size: .88rem; margin-bottom: 6px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
  text-align: center;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  max-width: 1160px;
  margin: 0 auto;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .trust__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; }
  .about__image { order: -1; max-width: 480px; }
  .why-us__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .product-card { flex-direction: column; }
  .product-card--reverse { flex-direction: column; }
  .product-card__img { width: 100%; min-height: 260px; }
}

@media (max-width: 680px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .section { padding: 64px 0; }
  .hero__title { font-size: 2.4rem; }
  .hero__cta { flex-direction: column; }

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

  .product-card { flex-direction: column; }
  .product-card--reverse { flex-direction: column; }
  .product-card__img { width: 100%; min-height: 220px; }

  .why-us__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact__form-wrap { padding: 24px; }

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