/* ===========================
   IMPORT AUSTRAL — styles.css
   =========================== */

/* ---- Design Tokens ---- */
:root {
  --green-deep: #2d5016;
  --green-mid: #4a7c28;
  --green-light: #7aad45;
  --green-pale: #e8f0d8;
  --earth: #8b6b47;
  --earth-light: #c4a882;
  --cream: #faf8f4;
  --warm-white: #f7f5f0;
  --off-white: #ede9e0;
  --text-dark: #1a1a1a;
  --text-mid: #4a4a4a;
  --text-light: #8a8a8a;
  --accent: #4a7c28;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scroll-padding-top: 88px;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}
body.menu-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

input,
select,
textarea,
button {
  font-family: inherit;
}

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Section Spacing ---- */
.section {
  padding: 100px 0;
  position: relative;
}

.about.section {
  padding: 80px 0 90px;
}

/* ---- Typography ---- */
.section-tag {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-mid);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--green-mid);
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 620px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

.about .section-sub {
  margin-bottom: 32px;
}

.body-text {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ---- Reveal animations ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn--primary {
  background: var(--green-deep);
  color: #fff;
  box-shadow: 0 4px 20px rgba(45, 80, 22, 0.3);
}

.btn--primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(45, 80, 22, 0.35);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}

.btn--nav {
  background: var(--green-deep);
  color: #fff;
  padding: 10px 22px;
  font-size: 0.85rem;
  box-shadow: 0 2px 12px rgba(45, 80, 22, 0.25);
}

.btn--nav:hover {
  background: var(--green-mid);
}

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

/* ================================
   NAVIGATION
================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1200;
  padding: 0;
  transition: var(--transition);
  background: transparent;
  box-shadow: none;
}

.nav.scrolled {
  background: rgba(250, 248, 244, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.nav.menu-open {
  background: rgba(13, 28, 17, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
  list-style: none;
  align-items: center;
}

.nav__links li {
  list-style: none;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--green-deep);
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.logo-mark--sm {
  width: 36px;
  height: 36px;
  font-size: 0.9rem;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
}

.nav.scrolled .logo-text {
  color: var(--text-dark);
}

.nav:not(.scrolled):not(.menu-open) .logo-text {
  color: #fff;
}

.nav:not(.scrolled):not(.menu-open) .logo-mark {
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.nav.menu-open .logo-text {
  color: #fff;
}
.nav.menu-open .logo-mark {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
}


.nav:not(.scrolled) .nav__links a {
  color: rgba(255, 255, 255, 0.85);
}

.nav.scrolled .nav__links a {
  color: var(--text-mid);
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--green-mid);
  transition: width 0.25s ease;
}

.nav__links a:hover::after,
.nav__links a:hover {
  color: var(--green-mid);
  width: 100%;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
  z-index: 10050;
}

.nav.menu-open .nav__burger {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 10050;
}

.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

.nav.scrolled .nav__burger span {
  background: var(--text-dark);
}
.nav.menu-open .nav__burger span {
  background: #fff;
}

/* ================================
   HERO
================================ */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: 72px;
}

/* ---- Carousel ---- */
.hero__carousel {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__slide--active {
  opacity: 1;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__panel {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

.hero__panel-fade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.45) 35%, rgba(0, 0, 0, 0.65) 70%),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 0%, rgba(5, 8, 5, 0.65) 65%, rgba(5, 8, 5, 0.8) 100%);
  pointer-events: none;
}

.hero__panel-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  width: 100%;
}

.hero__panel-left {
  flex: 1;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3.8vw, 3.2rem);
  font-weight: 300;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero__title em {
  font-style: italic;
  color: #f0e6c8;
  font-weight: 400;
  display: block;
}

.hero__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin: 0;
}

.hero__panel-right {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-end;
  justify-content: flex-end;
  flex-shrink: 0;
  padding-bottom: 2px;
}

/* ---- Carousel dot indicators ---- */
.hero__dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 4;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.hero__dot--active {
  background: #fff;
  transform: scale(1.3);
}

.hero__dot:hover {
  background: rgba(255, 255, 255, 0.75);
}

/* ================================
   ABOUT
================================ */
.about {
  background: #ede8df;
}

.about__header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 64px;
}

.about__header .section-title {
  margin-top: 0;
}

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

.about__card {
  background: #f0ede6;
  border: none;
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  box-shadow: 0 18px 40px rgba(50, 40, 20, 0.08);
}

.about__card-icon {
  box-shadow: none;
  transform: translateY(0);
  border-color: transparent;
}

.about__card:hover,
.about__card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 22px 45px rgba(40, 30, 15, 0.12);
}

.about__card h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.about__card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ---- Divider ---- */


/* ================================
   PRODUCTS
================================ */
.products {
  background: #f5f2ec;
}

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

.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

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

.product-card__img-wrap {
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.product-card__img-wrap img {
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__img-wrap img {
  transform: scale(1.06);
}

.product-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card__body--center {
  align-items: center;
  text-align: center;
}

.product-card__origin {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 8px;
}

.product-card__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.product-card__desc {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.product-card__tags span {
  background: var(--green-pale);
  color: var(--green-deep);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}

.product-card__cta {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--green-mid);
  transition: var(--transition);
  align-self: flex-start;
}

.product-card__cta:hover {
  color: var(--green-deep);
  letter-spacing: 0.02em;
}

.product-card--custom {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 100%);
  color: #fff;
}

.product-card--custom .product-card__origin,
.product-card--custom .product-card__title {
  color: #fff;
}

.product-card--custom .product-card__desc {
  color: rgba(255, 255, 255, 0.75);
}

.product-card--custom .product-card__tags span {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.product-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.btn-custom {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-block;
  transition: var(--transition);
  margin-top: 8px;
  align-self: center;
}

.btn-custom:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ================================
   WHY US
================================ */
.why {
  background: var(--cream);
  overflow: hidden;
}

.why__bg-shape {
  position: absolute;
  top: -150px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--green-pale) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: minmax(0, 1fr);
  align-items: stretch;
  gap: 24px;
  margin-top: 56px;
}

.why__item {
  padding: 24px 32px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  min-height: 140px;
}

.why__item:hover {
  border-color: var(--green-pale);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

#why-direct {
  grid-column: 1;
  grid-row: 1;
}

#why-supply {
  grid-column: 3;
  grid-row: 1;
}

#why-cert {
  grid-column: 1;
  grid-row: 2;
}

#why-partner {
  grid-column: 3;
  grid-row: 2;
}

#why-quality {
  grid-column: 2;
  grid-row: 1 / span 2;
  background: var(--green-deep);
  color: #fff;
  border: none;
  padding: 32px;
  height: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

#why-quality:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(45, 80, 22, 0.4);
}

#why-quality h3 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

#why-quality p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}

#why-quality .why__icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  margin-bottom: 0;
}

.why__icon {
  width: 56px;
  height: 56px;
  background: #e8f0e0;
  color: var(--green-deep);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why__content h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0 0 6px;
}

.why__content p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .hero {
    padding-bottom: 40px;
  }

  .hero__dots {
    bottom: 24px;
  }

  .about.section {
    padding: 60px 0 70px;
    margin-top: 0;
  }

  .about__header {
    margin-bottom: 40px;
  }

  .about__cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero__panel-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero__panel-right {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 14px;
  }

  .hero__panel-right .btn {
    width: auto;
    min-width: 140px;
    padding: 12px 26px;
  }

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

  #why-quality {
    grid-column: auto;
    grid-row: auto;
  }

  .contact__grid {
    flex-direction: column;
    gap: 48px;
    align-items: stretch;
  }

  .contact__form,
  .contact__info {
    flex: unset;
  }
}

/* ================================
   CONTACT
================================ */
.contact {
  background: var(--warm-white);
}

.contact.section {
  padding: 70px 0 70px;
}

.contact__grid {
  display: flex;
  gap: 80px;
  align-items: center;
}

.contact__info {
  flex: 1 1 0;
}

.contact__form {
  flex: 1.1 1 0;
}

.contact__info .section-title {
  margin-top: 0;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  margin-bottom: 24px;
}

.contact__link {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-mid);
  transition: var(--transition);
}

.contact__link:hover {
  color: var(--green-deep);
  transform: translateX(3px);
}

.contact__link-icon {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  color: var(--green-deep);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact__link-icon--green {
  background: #dcf5e7;
  color: #22863a;
}

.contact__link:hover .contact__link-icon {
  background: var(--green-deep);
  color: #fff;
}

.contact__location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ---- Form ---- */
.contact__form {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

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

.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--off-white);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a8a8a' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(74, 124, 40, 0.1);
}

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

.form__success {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 14px 20px;
  background: #dcf5e7;
  color: #22863a;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
}

.form__success.show {
  display: flex;
}

/* ================================
   FOOTER
================================ */
.footer {
  background: var(--green-deep);
  color: rgba(255, 255, 255, 0.7);
  padding: 48px 0 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 40px;
}

.footer__brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: auto;
}

.footer__nav-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__links,
.footer__contact {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__links--stack,
.footer__links--align-end {
  flex-direction: row;
  gap: 24px;
}

.footer__links--align-end {
  justify-content: flex-start;
}

.footer__contact--inline {
  width: auto;
  justify-content: center;
  gap: 16px;
  margin-left: auto;
  margin-right: auto;
  flex-direction: column;
  align-items: center;
}

.footer__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer__contact-link svg {
  width: 16px;
  height: 16px;
}

.footer__links a,
.footer__contact a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition);
}

.footer__links a:hover,
.footer__contact a:hover {
  color: #fff;
}

.footer__bottom {
  padding: 24px 24px;
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 24px;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .about__cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .why__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  #why-quality {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  #why-direct,
  #why-supply,
  #why-cert,
  #why-partner {
    grid-column: auto;
    grid-row: auto;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

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

  .nav__links {
    display: none;
  }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #071407;
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 9999;
    padding: 90px 24px 32px;
    overflow-y: auto;
  }

  .nav__links a {
    font-size: 1.5rem;
    color: #fff !important;
    text-align: center;
  }

  .nav__links li {
    width: 100%;
    text-align: center;
  }

  .nav__links-cta {
    margin-top: 12px;
    display: block;
  }

  .nav__links-cta .btn--mobile {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    max-width: 240px;
    padding: 14px 24px;
    border-radius: 999px;
    background: var(--green-mid);
    color: #fff;
    font-size: 1rem;
  }

  .nav__burger {
    display: flex;
  }

  .btn--nav {
    display: none;
  }

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

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

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

  #why-quality {
    grid-column: 1;
    grid-row: auto;
  }

  .hero__panel-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
    padding-bottom: 40px;
  }

  .hero__panel-right {
    flex-direction: row;
    align-items: center;
  }

  .hero__title {
    font-size: 2.2rem;
  }

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

  .contact__grid {
    gap: 32px;
  }

  .contact__form {
    padding: 28px 20px;
  }

  .footer {
    padding: 28px 0 0;
  }

  .footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
  }

  .footer__brand-block {
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-right: 0;
  }

  .footer__nav-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer__contact--inline {
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-left: 0;
  }

  .footer__bottom {
    margin-top: 6px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.9rem;
  }

  .hero__panel-right {
    flex-wrap: wrap;
  }

  .section-title {
    font-size: 1.8rem;
  }
}