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

:root {
  --red:       #8B1A1A;
  --red-dark:  #5e1010;
  --red-mid:   #a52020;
  --red-light: #c0392b;
  --red-pale:  #fdf2f2;
  --white:     #ffffff;
  --gray-100:  #f8f8f8;
  --gray-200:  #eeeeee;
  --gray-400:  #9e9e9e;
  --gray-600:  #555555;
  --dark:      #1a1a1a;

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

  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.14);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--gray-600);
  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: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red-light);
  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: 620px;
  color: var(--gray-600);
  font-size: 1.05rem;
}

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

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  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(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn--primary:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(139,26,26,.35); }

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

.btn--nav {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  padding: 10px 22px;
  font-size: .85rem;
}
.btn--nav:hover { background: var(--red-dark); border-color: var(--red-dark); }

.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(255,255,255,.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--gray-200);
}

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

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo-img {
  height: 54px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity var(--transition);
}
.nav__logo-img:hover { opacity: .88; }

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links > a {
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  transition: color var(--transition);
}
.nav.scrolled .nav__links > a { color: var(--gray-600); }
.nav__links > a:hover { color: var(--white); }
.nav.scrolled .nav__links > a:hover { color: var(--red); }

/* Dropdown */
.nav__dropdown { position: relative; }
.nav__dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.9);
  cursor: pointer;
  transition: color var(--transition);
}
.nav.scrolled .nav__dropdown-trigger { color: var(--gray-600); }
.nav__dropdown-trigger:hover { color: var(--white); }
.nav.scrolled .nav__dropdown-trigger:hover { color: var(--red); }

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: .86rem;
  font-weight: 500;
  color: var(--gray-600) !important;
  transition: background var(--transition), color var(--transition);
}
.nav__dropdown-menu a:hover { background: var(--red-pale); color: var(--red) !important; }

/* Burger */
.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: var(--white);
  padding: 12px 24px 24px;
  border-top: 1px solid var(--gray-200);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.nav__mobile a {
  padding: 14px 0;
  font-weight: 500;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  font-size: .98rem;
  transition: color var(--transition);
}
.nav__mobile a:hover { color: var(--red); }
.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: url('../images/beach-towels.jpg') center/cover no-repeat;
  background-color: var(--red-dark);
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero__bg.loaded { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(90,10,10,.88) 0%,
    rgba(139,26,26,.78) 50%,
    rgba(165,32,32,.65) 100%
  );
}

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

.hero__eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  font-weight: 700;
}

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

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

.hero__clients {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero__clients > span {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.hero__client-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero__client-list span {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.75);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  padding: 5px 14px;
  border-radius: 20px;
}

.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,.4);
  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,.6);
  border-radius: 2px;
  animation: scroll-dot 1.8s infinite;
}
@keyframes scroll-dot {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(14px); }
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--red);
  padding: 44px 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.stat-item {
  text-align: center;
  color: var(--white);
  padding: 12px 8px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  display: inline;
}
.stat-suffix {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  opacity: .8;
  display: inline;
  margin-left: 2px;
}
.stat-item > span {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .75;
  margin-top: 6px;
}

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

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

.about__media {
  position: relative;
}

.about__img-primary {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--gray-200);
}
.about__img-primary.no-img {
  display: flex; align-items: center; justify-content: center; font-size: 5rem;
}
.about__img-primary.no-img::after { content: '🧵'; }

.about__img-secondary {
  position: absolute;
  bottom: -32px;
  right: -32px;
  width: 42%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--gray-200);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about__img-secondary.no-img {
  display: flex; align-items: center; justify-content: center; font-size: 2.5rem;
}
.about__img-secondary.no-img::after { content: '🛁'; }

.about__badge {
  position: absolute;
  top: 28px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  min-width: 120px;
}
.about__badge strong {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--red);
  display: block;
}
.about__badge span { font-size: .75rem; color: var(--gray-400); font-weight: 500; }

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

.about__pillars {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.pillar {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--gray-100);
  border-radius: var(--radius);
  border-left: 3px solid var(--red);
}
.pillar__icon {
  width: 42px;
  height: 42px;
  background: var(--red-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.pillar strong { display: block; font-size: .94rem; color: var(--dark); margin-bottom: 3px; }
.pillar p { font-size: .86rem; margin: 0; }

/* ── PRODUCTION ── */
.production { background: var(--dark); }

.production .section__tag { color: rgba(255,255,255,.55); }
.production .section__title { color: var(--white); }
.production .section__desc { color: rgba(255,255,255,.6); }
.production .section__header .section__desc { margin: 0 auto; }

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

.production__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);
}
.production__card:hover {
  background: rgba(139,26,26,.2);
  border-color: rgba(192,57,43,.4);
}

.production__icon {
  width: 56px;
  height: 56px;
  background: rgba(139,26,26,.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f5a5a5;
  margin-bottom: 20px;
}

.production__card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 6px;
}

.production__stat {
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: #f5a5a5;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.production__card p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.65; margin: 0; }

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

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

.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: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.product-card__img {
  position: relative;
  background: var(--gray-200);
  height: 220px;
  flex-shrink: 0;
}
.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__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

.product-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 10px;
}
.product-card__body > p {
  color: var(--gray-600);
  font-size: .9rem;
  margin-bottom: 16px;
  flex: 1;
}
.product-card__body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-card__body ul li {
  font-size: .84rem;
  color: var(--gray-600);
  padding-left: 18px;
  position: relative;
}
.product-card__body ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
  font-size: .8rem;
}

.products__cta {
  margin-top: 56px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 2px dashed var(--gray-200);
}
.products__cta p {
  color: var(--gray-600);
  margin-bottom: 20px;
  font-size: 1rem;
}

/* ── GLOBAL REACH ── */
.global { background: var(--red); }

.global .section__tag { color: rgba(255,255,255,.6); }
.global .section__title { color: var(--white); }

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

.global__text > p {
  color: rgba(255,255,255,.8);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.global__regions h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 14px;
}

.global__flags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.global__flags span {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  font-size: .88rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
}

.global__partners h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
}

.partners__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.partner-chip {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 10px 18px;
  border-radius: 8px;
  transition: background var(--transition);
}
.partner-chip:hover { background: rgba(255,255,255,.22); }

/* ── CERTIFICATIONS ── */
.certifications { background: var(--white); }

.certs__logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  align-items: center;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.cert-logo-wrap {
  width: 100%;
  max-width: 200px;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,.12));
  transition: transform var(--transition), filter var(--transition);
}
.cert-logo-wrap:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.18));
}
.cert-logo-wrap svg,
.cert-logo-wrap img { width: 100%; height: auto; border-radius: 10px; object-fit: contain; display: block; }

@media (max-width: 700px) {
  .certs__logos { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 400px) {
  .certs__logos { grid-template-columns: 1fr 1fr; gap: 16px; }
}

/* ── SUSTAINABILITY & WHY US ── */
.sustainability { background: var(--gray-100); }

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

.sustain__text > p { color: var(--gray-600); margin-bottom: 28px; }

.sustain__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sustain__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .92rem;
  color: var(--gray-600);
}
.sustain__list svg {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 3px;
}
.sustain__list strong { color: var(--dark); }

.why__cards { }
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--gray-200);
  transition: border-color var(--transition);
}
.why-item:hover { border-color: var(--red); }
.why-item > svg { color: var(--red); flex-shrink: 0; margin-top: 2px; }
.why-item strong { display: block; font-size: .9rem; color: var(--dark); margin-bottom: 3px; }
.why-item p { font-size: .82rem; color: var(--gray-600); margin: 0; line-height: 1.5; }

/* ── FUTURE VISION ── */
.vision {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 50%, var(--red-mid) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.vision::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/svg%3E");
}

.vision__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.vision .section__tag { color: rgba(255,255,255,.55); }
.vision .section__title { color: var(--white); }
.vision__text > p { color: rgba(255,255,255,.75); font-size: 1rem; }

.vision__items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.vision-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 24px;
}

.vision-item__num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(255,255,255,.25);
  line-height: 1;
  flex-shrink: 0;
  min-width: 44px;
}

.vision-item strong {
  display: block;
  color: var(--white);
  font-size: .95rem;
  margin-bottom: 6px;
}
.vision-item p { font-size: .88rem; color: rgba(255,255,255,.7); margin: 0; line-height: 1.6; }

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

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

.contact__info > p { color: var(--gray-600); margin-bottom: 36px; }

.contact__details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__details li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__icon {
  width: 42px;
  height: 42px;
  background: var(--red-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}

.contact__details strong {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 3px;
}
.contact__details span,
.contact__details a {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.5;
}
.contact__details a:hover { color: var(--red); }

.contact__form-wrap {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--gray-200);
}

.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: .82rem; font-weight: 600; color: var(--dark); }

.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-sans);
  font-size: .92rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-400); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(139,26,26,.1);
}

.form__note { font-size: .8rem; color: var(--gray-400); text-align: center; }
.form__note.success { color: #2e7d32; font-weight: 600; }
.form__note.error { color: var(--red); font-weight: 600; }

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

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 72px 24px 56px;
  max-width: 1160px;
  margin: 0 auto;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--white);
}
.footer__logo-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}
.footer__logo-sub {
  display: block;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .06em;
  opacity: .5;
  text-transform: uppercase;
}

.footer__brand > p {
  font-size: .88rem;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 12px;
}

.footer__cert-line {
  font-size: .72rem;
  letter-spacing: .08em;
  color: rgba(255,255,255,.35) !important;
  text-transform: uppercase;
  font-weight: 600;
}

.footer__col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 18px;
}
.footer__col { display: flex; flex-direction: column; gap: 0; }
.footer__col a,
.footer__col p {
  font-size: .87rem;
  padding: 4px 0;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
  line-height: 1.7;
}
.footer__col a:hover { color: var(--white); }

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

/* ── AOS animations ── */
[data-aos] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-aos].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .stats-bar__grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(3) { border-right: none; }
  .stat-item:nth-child(4) { border-right: 1px solid rgba(255,255,255,.15); }
  .global__grid { gap: 48px; }
  .certs__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 500px; margin: 0 auto; padding-bottom: 48px; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .sustain__grid { grid-template-columns: 1fr; gap: 48px; }
  .vision__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .production__grid { grid-template-columns: 1fr; gap: 16px; }
}

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

  .section { padding: 64px 0; }

  .hero__title { font-size: 2.6rem; }
  .hero__cta { flex-direction: column; }

  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .stat-item:last-child { border-bottom: none; }

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

  .global__grid { grid-template-columns: 1fr; gap: 36px; }

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

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

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

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

  .about__img-secondary { right: 0; bottom: -24px; }
  .about__badge { left: 0; }
}

@media (max-width: 480px) {
  .stats-bar__grid { grid-template-columns: 1fr; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,.1); border-right: none; }
}
