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

  :root {
    --navy: #0d2235;
    --deep: #061524;
    --red: #d63028;
    --red-dark: #a8201a;
    --teal: #1a6b7c;
    --teal-light: #2a8fa3;
    --cream: #f5f0e8;
    --sand: #e8dfc8;
    --white: #ffffff;
    --gold: #c9a84c;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Barlow', sans-serif;
    background: var(--deep);
    color: var(--white);
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 10px 3rem;
    background: rgba(6,21,36,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  .nav-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700; font-size: 1.1rem; letter-spacing: 0.15em;
    color: var(--white);
    text-transform: uppercase;
  }
  .nav-logo img
  {
    max-width: 200px;
    height: auto;
}
  .nav-logo span { color: var(--red); }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500; font-size: 0.8rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: rgba(255,255,255,0.65);
    text-decoration: none; transition: color 0.3s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-item-featured a {
    color: var(--white);
    background: rgba(214,48,40,0.16);
    border: 1px solid rgba(214,48,40,0.42);
    padding: 0.55rem 0.9rem;
  }
  .nav-item-featured a:hover {
    color: var(--white);
    background: rgba(214,48,40,0.26);
    border-color: rgba(214,48,40,0.6);
  }
  .nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,0.12);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: column;
    transition: background 0.3s, border-color 0.3s;
  }
  .nav-toggle:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.25);
  }
  .nav-toggle span {
    width: 18px;
    height: 1.5px;
    background: currentColor;
    display: block;
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }
  .nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid; grid-template-columns: 1fr 1fr;
    position: relative; overflow: hidden;
  }
  .hero-left {
    display: flex; flex-direction: column; justify-content: center;
    padding: 8rem 4rem 4rem 5rem; position: relative; z-index: 2;
  }
  .hero-tag {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600; font-size: 0.75rem; letter-spacing: 0.25em;
    text-transform: uppercase; color: var(--red);
    margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.8rem;
  }
  .hero-tag::before { content: ''; display: block; width: 32px; height: 1px; background: var(--red); }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 300; line-height: 1.05;
    color: var(--white); margin-bottom: 0.3rem;
  }
  .hero-title em { font-style: italic; color: var(--teal-light); }
  .hero-subtitle {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(1rem, 2vw, 1.4rem); font-weight: 300;
    letter-spacing: 0.08em; color: rgba(255,255,255,0.5);
    text-transform: uppercase; margin-bottom: 3rem;
  }
  .hero-desc {
    font-size: 1rem; line-height: 1.8; color: rgba(255,255,255,0.65);
    max-width: 42ch; margin-bottom: 3rem;
  }
  .hero-cta {
    display: inline-flex; align-items: center; gap: 1rem;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600; font-size: 0.85rem; letter-spacing: 0.2em;
    text-transform: uppercase; color: var(--white);
    background: var(--red); padding: 1rem 2rem;
    text-decoration: none; transition: background 0.3s;
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  }
  .hero-cta:hover { background: var(--red-dark); }
  .hero-right {
    position: relative; overflow: hidden;
    min-height: 100%;
  }
  .hero-right::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(to right, var(--deep) 0%, transparent 40%),
                linear-gradient(to top, var(--deep) 0%, transparent 30%);
    pointer-events: none;
    z-index: 1;
  }
  .hero-slider,
  .hero-slider .slick-list,
  .hero-slider .slick-track,
  .hero-slider .slick-slide,
  .hero-slider .slick-slide > div {
    height: 100%;
  }
  .hero-slider {
    height: 100%;
  }
  .hero-slide {
    position: relative;
    height: 100%;
  }
  .hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .hero-arrow {
    position: absolute;
    left: 3rem;
    bottom: 3rem;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(6,21,36,0.45);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
    z-index: 3;
    backdrop-filter: blur(8px);
  }
  .hero-arrow:hover {
    background: rgba(214,48,40,0.22);
    border-color: rgba(255,255,255,0.45);
    transform: translateY(-2px);
  }
  .hero-arrow-prev { left: 3rem; }
  .hero-arrow-next { left: calc(3rem + 64px); }
  .hero-arrow span {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 1.4rem;
    line-height: 1;
  }
  .hero-slider .slick-dots {
    position: absolute;
    left: 3rem;
    bottom: 7.2rem;
    display: flex;
    gap: 0.65rem;
    list-style: none;
    z-index: 3;
  }
  .hero-slider .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.35);
    background: transparent;
    font-size: 0;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s, border-color 0.3s;
  }
  .hero-slider .slick-dots li.slick-active button {
    background: var(--red);
    border-color: var(--red);
    transform: scale(1.15);
  }
  .hero-slider .slick-dots li button:hover {
    border-color: var(--white);
  }
  .hero-year-badge {
    position: absolute; bottom: 3rem; right: 3rem; z-index: 3;
    text-align: right;
  }
  .hero-year-badge .year {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(4.5rem, 12vw, 10rem); font-weight: 300;
    color:rgb(151 148 148 / 45%); line-height: 1;
  }
  .hero-year-badge .since {
    font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem;
    letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase;
  }

  /* STATS STRIP */
  .stats-strip {
    background: var(--red);
    display: grid; grid-template-columns: repeat(4, 1fr);
    border-top: 3px solid var(--red-dark);
  }
  .stat-item {
    padding: 2.5rem 2rem;
    border-right: 1px solid rgba(0,0,0,0.2);
    text-align: center;
  }
  .stat-item:last-child { border-right: none; }
  .stat-num {
    font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 300;
    color: var(--white); line-height: 1;
  }
  .stat-label {
    font-family: 'Barlow Condensed', sans-serif; font-size: 0.75rem;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.75); margin-top: 0.4rem;
  }

  /* SECTION BASE */
  section { padding: 6rem 5rem; }
  .section-tag {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
    font-size: 0.72rem; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--teal-light); margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.8rem;
  }
  .section-tag::before { content: ''; display: block; width: 24px; height: 1px; background: var(--teal-light); }
  .section-title {
    font-family: 'Cormorant Garamond', serif; font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300; line-height: 1.1; color: var(--white); margin-bottom: 1.5rem;
  }
  .section-title em { font-style: italic; color: var(--teal-light); }

  /* ABOUT */
  .about { background: var(--navy); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; margin-top: 4rem; }
  .about-text p { font-size: 1rem; line-height: 1.9; color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; }
  .subsection-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 1.5rem;
  }

  .landmarks { list-style: none; }
  .landmarks li {
    display: grid; grid-template-columns: 60px 1fr;
    gap: 1rem; padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    align-items: baseline;
  }
  .landmarks li .yr {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 0.85rem; color: var(--gold); letter-spacing: 0.05em;
  }
  .landmarks li .desc {
    font-size: 0.875rem; line-height: 1.6; color: rgba(255,255,255,0.6);
  }

  /* LOCATIONS */
  .locations-section { background: var(--deep); }
  .factories-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; margin-top: 3rem; }
  .factory-card {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden; transition: transform 0.3s, border-color 0.3s;
    position: relative;
  }
  .factory-card:hover { transform: translateY(-4px); border-color: var(--teal-light); }
  .factory-card.featured { grid-column: span 1; }
  .factory-img {
    height: clamp(260px, 34vw, 390px); overflow: hidden; position: relative;
  }
  .factory-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
  .factory-card:hover .factory-img img { transform: scale(1.05); }
  .factory-info { padding: 1.8rem; }
  .factory-name {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 1.3rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--white); margin-bottom: 0.3rem;
  }
  .factory-year { font-size: 0.75rem; color: var(--gold); margin-bottom: 1rem; font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.15em; }
  .factory-specs { display: flex; flex-wrap: wrap; gap: 0.6rem; }
  .spec-chip {
    font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem;
    font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    background: rgba(26,107,124,0.2); border: 1px solid rgba(42,143,163,0.3);
    color: var(--teal-light); padding: 0.3rem 0.8rem;
  }

  /* CHAIN OF CUSTODY */
  .chain { background: var(--navy); }
  .chain-content { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; margin-top: 4rem; }
  .chain-img {
    position: relative; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    min-height: clamp(260px, 34vw, 380px);
  }
  .chain-img #chainImage { display: block; }
  .chain-img.has-certificates {
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    background: rgba(255,255,255,0.02);
  }
  .chain-img.has-certificates #chainImage,
  .chain-img.has-certificates .chain-badge {
    display: none !important;
  }
  .chain-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .chain-certificates {
    display: none;
    width: 100%;
    padding: 1.5rem;
    overflow: auto;
  }
  .chain-img.has-certificates .chain-certificates { display: block; }
  .chain-certificates .certs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 0;
  }
  .chain-certificates .cert-item {
    padding: 1rem;
    min-height: 110px;
    justify-content: center;
  }
  .chain-certificates .cert-logo {
    width: 100%;
    max-width: 110px;
  }
  .chain-badge {
    position: absolute; bottom: 1.5rem; left: 1.5rem;
    background: var(--red); padding: 1rem 1.5rem;
    font-family: 'Barlow Condensed', sans-serif;
  }
  .chain-badge .number { font-size: 2.5rem; font-weight: 800; color: var(--white); line-height: 1; }
  .chain-badge .label { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.8); }
  .chain-intro { color: rgba(255,255,255,0.6); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }
  .chain-steps { display: flex; flex-direction: column; gap: 2rem; }
  .chain-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1.5rem;
    align-items: start;
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: transform 0.25s ease;
  }
  .chain-step:hover { transform: translateX(4px); }
  .chain-step.is-active .step-num {
    background: rgba(42,143,163,0.18);
    border-color: var(--red);
    color: var(--white);
  }
  .chain-step.is-active .step-title { color: var(--teal-light); }
  .chain-step.is-active .step-copy { color: rgba(255,255,255,0.72); }
  .step-num {
    width: 48px; height: 48px; border: 1px solid var(--teal-light);
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--teal-light);
    flex-shrink: 0;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  }
  .step-content { display: block; }
  .step-title,
  .step-content h4 {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.4rem;
    transition: color 0.25s ease;
  }
  .step-copy,
  .step-content p {
    display: block;
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    transition: color 0.25s ease;
  }

  /* PRODUCTS */
  .products { background: var(--deep); }
  .products-intro { max-width: 60ch; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 3rem; }
  .products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 3rem; }
  .product-card {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.07);
    padding: 2rem 1.5rem; text-align: center;
    transition: background 0.3s, border-color 0.3s;
    position: relative; overflow: hidden;
  }
  .product-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
    background: var(--teal-light); transform: scaleX(0); transition: transform 0.3s;
  }
  .product-card:hover { background: rgba(26,107,124,0.08); border-color: rgba(42,143,163,0.3); }
  .product-card:hover::before { transform: scaleX(1); }
  .product-carousel {
    margin-bottom: 1rem;
  }
  .product-slide {
    position: relative;
    overflow: hidden;
  }
  .product-slide-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
  }
  .product-name {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
    font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--white); margin-bottom: 0.5rem;
  }
  .product-slide .product-name {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    margin-bottom: 0;
    padding: 0.7rem 0.9rem;
    background: linear-gradient(90deg, rgba(6,21,36,0.92), rgba(6,21,36,0.55));
    border-left: 2px solid var(--red);
    font-size: 0.85rem;
    line-height: 1.35;
    z-index: 1;
  }
  .product-sci { font-size: 0.8rem; font-style: italic; color: var(--teal-light); margin-bottom: 1rem; font-family: 'Cormorant Garamond', serif; }
  .product-variants { display: flex; flex-wrap: wrap; gap: 0.4rem; justify-content: center; }
  .variant-tag {
    font-family: 'Barlow Condensed', sans-serif; font-size: 0.68rem;
    font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.55); padding: 0.25rem 0.6rem;
  }
  .product-carousel .slick-dots {
    position: static;
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    list-style: none;
    margin-top: 0.85rem;
  }
  .product-carousel .slick-dots li button {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.28);
    background: transparent;
    font-size: 0;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
  }
  .product-carousel .slick-dots li.slick-active button {
    background: var(--teal-light);
    border-color: var(--teal-light);
    transform: scale(1.15);
  }

  /* FORECAST */
  .forecast-section { background: var(--deep); }
  .forecast-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
  }
  .forecast-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 2rem;
    text-align: center;
  }
  .forecast-card--total {
    background: rgba(214,48,40,0.08);
    border-color: rgba(214,48,40,0.25);
  }
  .forecast-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
  }
  .forecast-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-top: 0.5rem;
  }
  .forecast-label--total { color: var(--red); }
  .forecast-map {
    position: relative;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
  }
  .forecast-map img { width: 100%; display: block; }
  .forecast-source {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }
  .forecast-source-line {
    width: 24px;
    height: 1px;
    background: rgba(255,255,255,0.3);
  }
  .forecast-source-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
  }

  /* CERTIFICATIONS */
  .certs { background: var(--navy); }
  .certs-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; margin-top: 3rem; }
  .cert-item {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
    padding: 2rem; text-align: center;
    transition: background 0.3s, border-color 0.3s;
    display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
  }
  .cert-item:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.18); }
  .cert-logo { width: 180px;  display: flex; align-items: center; justify-content: center; }
  .cert-logo img { max-width: 100%; max-height: 100%; object-fit: contain; display: block; }
  .cert-logo svg { width: 100%; height: 100%; }
  .cert-logo-placeholder {
    width: 100%;
    min-height: 72px;
    padding: 0.75rem;
    border: 1px dashed rgba(255,255,255,0.22);
    color: rgba(255,255,255,0.8);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
  }
  .cert-name {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 0.8rem; letter-spacing: 0.08em; color: rgba(255,255,255,0.5);
    text-transform: uppercase;
  }
  .cert-body { font-size: 0.75rem; color: rgba(255,255,255,0.38); line-height: 1.5; }

  /* MARKETS */
  .markets { background: var(--deep); }
  .markets-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
  .market-card {
    position: relative; padding: 2.5rem 2rem;
    border-left: 2px solid var(--teal-light);
    background: rgba(26,107,124,0.05);
  }
  .market-region {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 700;
    font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--teal-light); margin-bottom: 0.8rem;
  }
  .market-title {
    font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 300;
    color: var(--white); margin-bottom: 1rem;
  }
  .market-desc { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.7; }
  .markets-visual { margin-top: 3rem; position: relative; }
  .markets-map { width: 100%; height: auto; display: block; margin-bottom: -80px; }
  .markets-labels {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 1rem;
    margin-top: 0;
  }
  .markets-label-card {
    text-align: center;
    border-top: 2px solid var(--red);
    padding-top: 1rem;
    min-width: 0;
  }
  .markets-label-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.4;
    overflow-wrap: anywhere;
  }

  /* CONTACT PANEL */
  .contact-panel {
    background: linear-gradient(135deg, #061524 0%, #0d2235 100%);
    padding: 6rem 5rem;
  }
  .contact-panel .section-title {
    color: var(--white);
    margin-bottom: 0.5rem;
  }
  .contact-panel .section-title em { color: rgba(255,255,255,0.7); }
  .contact-panel .divider { background: rgba(255,255,255,0.4); }
  .contact-intro {
    color: rgba(255,255,255,0.65);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 3.5rem;
    max-width: 60ch;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
  }
  .contact-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    padding: 1rem 1rem;
    text-align: center;
    transition: background 0.3s;
    margin-bottom: 15px;
  }
  .contact-card:hover { background: rgba(255,255,255,0.08); }
  .contact-qr {
    width: 100%;
    max-width: 160px;
    height: auto;
    border-radius: 4px;
    display: block;
    margin: 0 auto 1rem;
  }
  .contact-region {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.3rem;
  }
  .contact-card-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: var(--white);
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  /* CONTACT */
  .contact {
    background: var(--navy);
    display: grid; grid-template-columns: 1fr 1fr; gap: 0;
    padding: 0;
  }
  .contact-left {
    padding: 6rem 5rem;
    background: var(--red);
    display: flex; flex-direction: column; justify-content: center;
  }
  .contact-left .section-title { color: var(--white); }
  .contact-left .section-tag { color: rgba(255,255,255,0.7); }
  .contact-left .section-tag::before { background: rgba(255,255,255,0.7); }
  .contact-right { padding: 6rem 5rem; display: flex; flex-direction: column; justify-content: center; }
  .contact-info { margin-top: 3rem; }
  .contact-item { margin-bottom: 2.5rem; }
  .contact-label {
    font-family: 'Barlow Condensed', sans-serif; font-weight: 600;
    font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--teal-light); margin-bottom: 0.4rem;
  }
  .contact-value {
    font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 300;
    color: var(--white);
  }
  .contact-value a { color: var(--white); text-decoration: none; }
  .contact-person {
    font-family: 'Barlow Condensed', sans-serif; font-size: 1rem;
    font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--white); margin-bottom: 0.2rem;
  }
  .contact-role { font-size: 0.875rem; color: rgba(255,255,255,0.6); }

  /* FOOTER */
  footer {
    background: var(--deep); padding: 2rem 5rem;
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.3); font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.1em; }
  .footer-brand { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: 1rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
  .footer-brand span { color: var(--red); }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

  .hero-tag { animation: fadeUp 0.8s ease forwards; }
  .hero-title { animation: fadeUp 0.8s 0.15s ease both; }
  .hero-subtitle { animation: fadeUp 0.8s 0.25s ease both; }
  .hero-desc { animation: fadeUp 0.8s 0.35s ease both; }
  .hero-cta { animation: fadeUp 0.8s 0.45s ease both; }
  .hero-right { animation: fadeIn 1.2s 0.2s ease both; }

  /* DIVIDER */
  .divider { width: 60px; height: 2px; background: var(--red); margin: 1.5rem 0 2rem; }

  @media (max-width: 1024px) {
    section { padding: 4rem 2.5rem; }
    .hero { grid-template-columns: 1fr; }
    .hero-right { position: absolute; inset: 0; z-index: 0; }
    .hero-left { padding: 10rem 2.5rem 4rem; z-index: 2; min-height: 100vh; }
    .hero-right::after { background: linear-gradient(to right, rgba(6,21,36,0.9) 0%, rgba(6,21,36,0.6) 100%); }
    .about-grid, .chain-content, .contact { grid-template-columns: 1fr; }
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
    .factories-grid, .products-grid, .certs-grid, .markets-grid { grid-template-columns: repeat(2, 1fr); }
    .forecast-grid { grid-template-columns: 1fr; }
    .markets-labels { grid-template-columns: repeat(5, 1fr); }
    .contact-panel { padding: 4rem 2.5rem; }
    .contact-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-slider .slick-dots { left: 2.5rem; bottom: 6.5rem; }
    .hero-arrow { left: 2.5rem; bottom: 2.5rem; }
    .hero-arrow-next { left: calc(2.5rem + 64px); }
    .chain-certificates .certs-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    nav { padding: 1rem 2rem; }
    .nav-toggle { display: inline-flex; }
    .nav-links {
      position: absolute;
      top: calc(100% + 1px);
      left: 0;
      right: 0;
      display: flex;
      flex-direction: column;
      gap: 0;
      padding: 0;
      background: rgba(6,21,36,0.98);
      border-bottom: 1px solid rgba(255,255,255,0.07);
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      pointer-events: none;
      max-height: calc(100vh - 88px);
      overflow-y: auto;
      transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
    }
    .nav-open .nav-links {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
      pointer-events: auto;
    }
    .nav-links li {
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .nav-links a {
      display: block;
      padding: 1rem 2rem;
    }
    .nav-item-featured a {
      margin: 0.85rem 1rem;
      padding: 1rem 1.1rem;
      text-align: center;
    }
    .stat-item {
      border-bottom: 1px solid rgba(0,0,0,0.2);
    }
    .stat-item:nth-child(2n) { border-right: none; }
    .stat-item:nth-last-child(-n+2) { border-bottom: none; }
    footer { flex-direction: column; gap: 1rem; text-align: center; }
    .contact-left, .contact-right { padding: 4rem 2.5rem; }
  }

  @media (max-width: 820px) {
    section { padding: 3.75rem 1.5rem; }
    .hero-left { padding: 8rem 1.5rem 3.5rem; }
    .hero-desc,
    .products-intro,
    .contact-intro { max-width: none; }
    .factories-grid,
    .products-grid,
    .markets-grid { grid-template-columns: 1fr; }
    .landmarks li { grid-template-columns: 1fr; gap: 0.35rem; }
    .chain-content { gap: 2.5rem; }
    .markets-map { margin-bottom: -24px; }
    .markets-labels { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .contact-panel,
    .contact-left,
    .contact-right,
    footer { padding-left: 1.5rem; padding-right: 1.5rem; }
  }

  @media (max-width: 640px) {
    nav { padding: 0.85rem 1rem; }
    .nav-logo img { max-width: 160px; }
    .nav-links a { padding: 0.95rem 1rem; }
    .nav-item-featured a { margin: 0.75rem 0.75rem 0.25rem; }
    section { padding: 3.25rem 1.25rem; }
    .hero-left { padding: 7rem 1.25rem 3rem; }
    .hero-title { font-size: clamp(2.8rem, 14vw, 4.1rem); }
    .hero-desc { font-size: 0.95rem; line-height: 1.7; }
    .hero-year-badge { right: 1.5rem; bottom: 1.5rem; }
    .hero-year-badge .year { font-size: 3.8rem; }
    .hero-slider .slick-dots { left: 50%; bottom: 1.75rem; transform: translateX(-50%); }
    .hero-arrow { display: none !important; }
    .stats-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .stat-item { padding: 1.5rem 1rem; }
    .stat-num { font-size: 2.35rem; }
    .stat-label { letter-spacing: 0.12em; }
    .factory-img { height: 260px; }
    .factory-info,
    .product-card,
    .forecast-card,
    .cert-item { padding: 1.25rem; }
    .chain-img { min-height: 240px; }
    .chain-badge {
      left: 1rem;
      bottom: 1rem;
      padding: 0.75rem 1rem;
    }
    .chain-step {
      grid-template-columns: 40px 1fr;
      gap: 1rem;
    }
    .step-num {
      width: 40px;
      height: 40px;
      font-size: 1.2rem;
    }
    .step-title { font-size: 0.88rem; letter-spacing: 0.08em; }
    .step-copy { font-size: 0.82rem; }
    .chain-certificates { padding: 1rem; }
    .chain-certificates .certs-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .forecast-source { align-items: flex-start; }
    .forecast-source-text { line-height: 1.6; }
    .forecast-value { font-size: 2.35rem; }
    .forecast-label { letter-spacing: 0.14em; }
    .certs-grid { grid-template-columns: 1fr; }
    .markets-visual { margin-top: 2rem; }
    .markets-map { margin-bottom: 0.75rem; }
    .markets-labels { grid-template-columns: repeat(2, 1fr); }
    .markets-label-name,
    .contact-card-name {
      font-size: 0.82rem;
      letter-spacing: 0.08em;
    }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-card { padding: 0.85rem; }
    .contact-qr { max-width: 140px; }
    .contact-left, .contact-right, .contact-panel { padding: 3.25rem 1.25rem; }
    footer { padding: 1.5rem 1.25rem; }
  }

  @media (max-width: 420px) {
    .nav-logo img { max-width: 132px; }
    .hero-year-badge .year { font-size: 3rem; }
    .stats-strip { grid-template-columns: 1fr; }
    .stat-item {
      border-right: none;
      border-bottom: 1px solid rgba(0,0,0,0.2);
    }
    .stat-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(0,0,0,0.2); }
    .stat-item:last-child { border-bottom: none; }
    .chain-certificates .certs-grid { grid-template-columns: 1fr; }
    .markets-labels { grid-template-columns: 1fr; }
  }

  .product-card h3{margin-bottom: 15px;}
