  :root {
    --kraft: #C4863A;
    --kraft-light: #E8B97A;
    --kraft-dark: #8B5E28;
    --brown-deep: #2C1810;
    --cream: #F5EDD8;
    --cream-light: #FDF8F0;
    --olive: #5C6B3A;
    --olive-light: #8A9E5A;
    --white: #FFFFFF;
    --charcoal: #1A1A1A;
    --text-muted: #6B5B45;

    /* Fonts — also update the Google Fonts link in index.html */
    --font-body: 'Source Sans 3', sans-serif;
    --font-heading: 'Libre Baskerville', serif;
    --font-display: 'Oswald', sans-serif;
  }

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

  .icon {
    width: 22px;
    height: 22px;
    color: #fff;
    flex-shrink: 0;
    display: block;
  }

  .icon-sm {
    width: 18px;
    height: 18px;
  }

  html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
  }

  body {
    font-family: var(--font-body);
    background: var(--cream-light);
    color: var(--charcoal);
    overflow-x: hidden;
    max-width: 100%;
  }

  /* ---- TEXTURE OVERLAY ---- */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
  }

  /* ---- NAV ---- */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 60px;
    background: rgba(245, 237, 216, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(196,134,58,0.2);
  }

  nav.nav-scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
  }

  body.page-gallery::before {
    display: none;
  }

  body.page-gallery nav {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(245, 237, 216, 0.98);
  }

  .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    min-width: 0;
    flex-shrink: 1;
  }

  .site-logo {
    display: block;
    width: auto;
    object-fit: contain;
  }

  .site-logo--nav {
    height: 44px;
    max-width: min(220px, 52vw);
  }

  .site-logo--footer {
    height: 56px;
    max-width: min(300px, 78vw);
  }

  .nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
  }

  .nav-panel {
    display: flex;
    align-items: center;
  }

  .nav-contact {
    display: none;
  }

  .nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1px;
    background: var(--kraft);
    transform: scaleX(0);
    transition: transform 0.3s;
  }

  .nav-links a:hover { color: var(--kraft); }
  .nav-links a:hover::after { transform: scaleX(1); }

  .nav-cta {
    background: var(--kraft);
    color: white !important;
    padding: 10px 24px;
    border-radius: 2px;
    font-weight: 500 !important;
  }

  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--kraft-dark); color: white !important; }

  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 102;
    flex-shrink: 0;
    margin-left: auto;
    -webkit-tap-highlight-color: transparent;
  }

  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brown-deep);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
  }

  nav.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  nav.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  nav.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .nav-overlay {
    display: none;
  }

  section[id] {
    scroll-margin-top: 80px;
  }

  .products-header-lead {
    color: rgba(255, 255, 255, 0.4);
    font-size: 14px;
    max-width: 300px;
    text-align: right;
    line-height: 1.7;
  }

  /* ---- HERO ---- */
  .hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: var(--brown-deep);
    z-index: 1;
  }

  .hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
  }

  .hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
  }

  .hero-video-tint {
    position: absolute;
    inset: 0;
    background: rgba(44, 24, 16, 0.55);
    pointer-events: none;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 820px;
    padding: 118px 60px clamp(96px, 12vw, 120px);
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    animation: fadeUp 0.8s ease forwards;
  }

  .hero-eyebrow-line {
    width: 40px; height: 1px;
    background: var(--kraft-light);
  }

  .hero-eyebrow span,
  .hero-eyebrow-text {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--kraft-light);
    font-weight: 500;
  }

  .hero-eyebrow-text--short {
    display: none;
  }

  .hero-subtitle--short {
    display: none;
  }

  .stat-label--short {
    display: none;
  }

  .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(44px, 5.5vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    color: var(--cream);
    margin-bottom: 18px;
    animation: fadeUp 0.8s 0.15s ease both;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title-line {
    white-space: nowrap;
  }

  .hero-title em {
    font-style: normal;
    color: var(--kraft-light);
    position: relative;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.58);
    max-width: 560px;
    margin-bottom: 32px;
    animation: fadeUp 0.8s 0.3s ease both;
  }

  .hero-subtitle .brand-mark {
    color: var(--kraft-light);
  }

  .hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 0.8s 0.45s ease both;
  }

  .hero .btn-primary {
    background: var(--kraft);
    border-color: var(--kraft);
    color: white;
  }

  .hero .btn-primary:hover {
    background: var(--kraft-light);
    border-color: var(--kraft-light);
    color: var(--brown-deep);
  }

  .hero .btn-secondary {
    color: var(--cream);
  }

  .hero .btn-secondary:hover {
    color: var(--kraft-light);
  }

  .brand-mark {
    color: var(--kraft);
    font-style: normal;
  }

  .section-title .brand-mark {
    color: var(--kraft-dark);
  }

  .products .section-title .brand-mark,
  .why-us .section-title .brand-mark,
  .about-mv .section-title .brand-mark {
    color: var(--kraft-light);
  }

  .page-hero-title .brand-mark {
    color: var(--kraft-dark);
  }

  .contact-info-title .brand-mark {
    color: var(--kraft);
  }

  .btn-primary {
    display: inline-block;
    background: var(--brown-deep);
    color: white;
    padding: 16px 36px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    border: 2px solid var(--brown-deep);
  }

  .btn-primary:hover {
    background: var(--kraft);
    border-color: var(--kraft);
    transform: translateY(-2px);
  }

  .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--kraft-dark);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: gap 0.3s;
  }

  .btn-secondary:hover { gap: 14px; }

  .hero-stats {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
    padding-top: 0;
    animation: fadeUp 0.8s 0.6s ease both;
    width: 100%;
  }

  .hero-stats::before {
    content: '';
    flex-basis: 100%;
    width: min(280px, 65vw);
    height: 1px;
    margin: 0 auto 28px;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(232, 185, 122, 0.55) 50%,
      transparent
    );
  }

  .stat-item {
    text-align: center;
  }

  .stat-num {
    font-family: var(--font-display);
    font-size: 42px;
    color: var(--kraft);
    line-height: 1;
  }

  .hero .stat-num {
    color: var(--kraft-light);
  }

  .stat-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
  }

  .hero .stat-label {
    color: rgba(255, 255, 255, 0.48);
  }

  .hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    line-height: 0;
    pointer-events: none;
  }

  .hero-wave-svg {
    display: block;
    width: 100%;
    height: clamp(52px, 7vw, 88px);
  }

  .hero-wave-fill {
    fill: var(--cream);
  }

  .hero-wave-line {
    fill: none;
    stroke: rgba(232, 185, 122, 0.55);
    stroke-width: 1.75;
    vector-effect: non-scaling-stroke;
  }

  /* ---- SECTION WAVE ---- */
  .section-wave {
    line-height: 0;
    background: var(--cream-light);
    margin-top: -1px;
    position: relative;
    overflow: hidden;
  }

  .section-wave-svg {
    display: block;
    width: 100%;
    height: clamp(52px, 7vw, 88px);
    position: relative;
    z-index: 1;
  }

  .section-wave-fill {
    fill: var(--cream);
  }

  .section-wave-line {
    fill: none;
    stroke: rgba(196, 134, 58, 0.28);
    stroke-width: 1.5;
    vector-effect: non-scaling-stroke;
  }

  .section-wave-shimmer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 58%;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: soft-light;
    background: linear-gradient(
      100deg,
      transparent 15%,
      rgba(232, 185, 122, 0.55) 42%,
      rgba(255, 252, 245, 0.95) 50%,
      rgba(232, 185, 122, 0.55) 58%,
      transparent 85%
    );
    background-size: 180% 100%;
    animation: section-wave-shimmer 5s ease-in-out infinite;
  }

  @keyframes section-wave-shimmer {
    0% { background-position: 150% 0; opacity: 0.85; }
    50% { opacity: 1; }
    100% { background-position: -150% 0; opacity: 0.85; }
  }

  @media (prefers-reduced-motion: reduce) {
    .section-wave-shimmer {
      animation: none;
    }

    .hero-video {
      display: none;
    }

    .hero-video-tint {
      background: var(--brown-deep);
    }
  }

  /* ---- SECTION COMMON ---- */
  section { position: relative; z-index: 1; max-width: 100%; min-width: 0; }

  .section-inner {
    max-width: 1320px;
    margin-inline: auto;
    width: 100%;
    min-width: 0;
    padding-inline: 60px;
  }

  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
  }

  .section-tag span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--kraft);
    font-weight: 500;
  }

  .section-tag::before, .section-tag::after {
    content: '';
    width: 24px; height: 1px;
    background: var(--kraft);
  }

  .section-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 700;
    color: var(--brown-deep);
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .section-lead {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 560px;
  }

  /* ---- ABOUT ---- */
  .about {
    padding: 48px 0 110px;
    background: var(--cream);
    position: relative;
    z-index: 2;
  }

  .about .section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

 

  .about-description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 24px;
  }

  .about-certifications {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 36px;
  }

  .cert-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid rgba(196, 134, 58, 0.2);
    padding: 22px 24px;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    min-height: 120px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  }

  .cert-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--kraft);
  }

  .cert-badge--recycled::before {
    background: var(--olive);
  }

  .cert-badge:hover {
    border-color: rgba(196, 134, 58, 0.4);
    box-shadow: 0 10px 28px rgba(196, 134, 58, 0.12);
    transform: translateY(-2px);
  }

  .cert-logo {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
  }

  .cert-logo--india {
    max-width: 250px;
  }

  .cert-logo--recycled {
    max-width: 240px;
  }

  .about-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .spec-card {
    background: white;
    border: 1px solid rgba(196,134,58,0.15);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .spec-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(196,134,58,0.12);
  }

  .spec-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--kraft);
  }

  .spec-card:nth-child(2)::before { background: var(--olive); }
  .spec-card:nth-child(3)::before { background: var(--kraft-dark); }
  .spec-card:nth-child(4)::before { background: var(--olive-light); }

  .spec-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 8px;
  }

  .spec-value {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--brown-deep);
  }

  .spec-unit {
    font-size: 12px;
    color: var(--kraft);
    font-weight: 500;
    margin-top: 4px;
    font-family: var(--font-body);
  }

  /* ---- PRODUCTS ---- */
  .products {
    padding: 110px 0;
    background: var(--brown-deep);
    position: relative;
    overflow: hidden;
  }

  .products::before {
    content: 'KRAFT';
    position: absolute;
    right: -40px; top: -30px;
    font-family: var(--font-display);
    font-size: 240px;
    color: rgba(255,255,255,0.03);
    pointer-events: none;
    line-height: 1;
  }

  .products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
  }

  .products .section-title { color: var(--cream); }
  .products .section-tag span { color: var(--kraft-light); }
  .products .section-tag::before,
  .products .section-tag::after { background: var(--kraft-light); }

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

  .product-card:nth-child(1) { grid-column: 1 / span 2; }
  .product-card:nth-child(2) { grid-column: 3 / span 2; }
  .product-card:nth-child(3) { grid-column: 5 / span 2; }
  .product-card:nth-child(4) { grid-column: 2 / span 2; }
  .product-card:nth-child(5) { grid-column: 4 / span 2; }

  .product-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 14px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  }

  .product-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(196, 134, 58, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
  }

  .product-media {
    position: relative;
    aspect-ratio: 5 / 4;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 18px;
    background: rgba(0, 0, 0, 0.25);
  }

  .product-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
  }

  .product-card:hover .product-media img {
    transform: scale(1.04);
  }

  .product-media-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(44, 24, 16, 0.55) 0%,
      rgba(44, 24, 16, 0.08) 50%,
      transparent 100%
    );
    pointer-events: none;
  }

  .product-index {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--cream);
    background: var(--kraft);
    padding: 6px 10px;
  }

  .product-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 0 6px 6px;
  }

  .product-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 10px;
    line-height: 1.25;
  }

  .product-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.52);
    line-height: 1.7;
    margin: 0;
  }

  .products-more {
    text-align: center;
    margin-top: 32px;
  }

  .products-more .btn-secondary {
    color: var(--kraft-light);
  }

  /* ---- DEDICATED PRODUCTS PAGE ---- */
  .products-intro {
    padding: 48px 0 40px;
    background: var(--cream);
  }

  .products-intro-content {
    max-width: 720px;
  }

  .products-intro-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-top: 16px;
  }

  .products-detail {
    padding: 40px 0 80px;
    background: var(--cream);
  }

  .product-detail {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 72px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(196, 134, 58, 0.12);
  }

  .product-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .product-detail-media {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: #f4f0e6;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  }

  .product-detail-media img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .product-detail-content {
    padding-top: 8px;
  }

  .product-detail-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
  }

  .product-badge {
    background: var(--kraft);
    color: white;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding: 6px 11px;
    border-radius: 2px;
  }

  .product-detail-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--brown-deep);
    margin: 0;
  }

  .product-detail-desc {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 24px;
  }

  .product-specs h4,
  .product-uses h4,
  .product-shades h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--kraft);
    margin-bottom: 10px;
  }

  .product-specs ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 24px;
  }

  .product-specs li {
    font-size: 14.5px;
    color: var(--charcoal);
  }

  .product-uses p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.65;
  }

  .product-shades {
    margin-bottom: 4px;
  }

  .product-shade-previews {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .product-shade-item {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
  }

  .product-shade-chip {
    position: relative;
    flex-shrink: 0;
    width: 40px;
    height: 28px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(44, 24, 16, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25);
  }

  .product-shade-chip--natural {
    background: #e2caaa;
  }

  .product-shade-chip--golden {
    background: #c69e5e;
  }

  .product-shade-chip::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(90deg,
        rgba(255, 255, 255, 0.1) 0px,
        rgba(255, 255, 255, 0.1) 1px,
        transparent 2px,
        transparent 7px
      ),
      repeating-linear-gradient(0deg,
        rgba(0, 0, 0, 0.04) 0px,
        rgba(0, 0, 0, 0.04) 1px,
        transparent 2px,
        transparent 8px
      );
    opacity: 0.5;
    pointer-events: none;
  }

  .product-shade-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--brown-deep);
    line-height: 1.3;
  }

  .shade-row {
    display: flex;
    gap: 16px;
  }

  .products-shades {
    background: var(--cream);
    padding: 64px 0 80px;
  }

  .shades-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
  }

  .shades-header .section-title {
    margin-bottom: 12px;
  }

  .shades-lead {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
  }

  .shades-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
    max-width: 960px;
    margin: 0 auto;
  }

  .shade-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    background: #fff;
    border: 1px solid rgba(196, 134, 58, 0.14);
    border-radius: 9px;
    overflow: hidden;
    box-shadow: 0 8px 26px rgba(44, 24, 16, 0.06);
  }

  .shade-card-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 22px 18px;
  }

  .shade-card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .shade-card-icon .icon {
    width: 22px;
    height: 22px;
  }

  .shade-card-icon--natural {
    background: #e8d9b8;
    color: #6b4f2e;
  }

  .shade-card-icon--golden {
    background: #d4a04d;
    color: #fff;
  }

  .shade-card-copy {
    flex: 1;
    min-width: 0;
  }

  .shade-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--brown-deep);
    margin: 0 0 9px;
    line-height: 1.2;
  }

  .shade-card-rule {
    width: 100%;
    height: 1px;
    background: rgba(196, 134, 58, 0.22);
    margin-bottom: 10px;
  }

  .shade-card-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
  }

  .shade-card-visual {
    position: relative;
    margin-top: auto;
    aspect-ratio: 1.9 / 1;
    min-height: 160px;
    max-height: 190px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
  }

  .shade-card-visual--natural {
    background: #e2caaa;
  }

  .shade-card-visual--golden {
    background: #c69e5e;
  }

  .shade-card-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(120% 90% at 20% 15%, rgba(255, 255, 255, 0.28), transparent 55%),
      radial-gradient(110% 90% at 80% 25%, rgba(0, 0, 0, 0.08), transparent 60%),
      repeating-linear-gradient(90deg,
        rgba(255, 255, 255, 0.08) 0px,
        rgba(255, 255, 255, 0.08) 1px,
        transparent 2px,
        transparent 9px
      ),
      repeating-linear-gradient(0deg,
        rgba(0, 0, 0, 0.03) 0px,
        rgba(0, 0, 0, 0.03) 1px,
        transparent 3px,
        transparent 11px
      );
    mix-blend-mode: multiply;
    opacity: 0.6;
    pointer-events: none;
  }

  .shade-card-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.12), transparent 30%, rgba(0, 0, 0, 0.08));
    opacity: 0.4;
    pointer-events: none;
  }

  .shade-block-label {
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-size: clamp(14px, 1.9vw, 20px);
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    text-align: center;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 2px rgba(44, 24, 16, 0.25);
    line-height: 1.32;
  }

  .process-steps {
    margin: 12px 0 0;
    padding-left: 20px;
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 14.5px;
  }

  .process-steps li {
    margin-bottom: 6px;
  }

  /* ---- PROCESS INFOGRAPHIC ---- */
  .products-process {
    padding: 72px 0 56px;
    background: var(--cream);
  }

  .process-visual-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 28px;
  }

  .process-visual-header .section-title {
    margin-bottom: 12px;
  }

  .process-visual-header p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.65;
  }

  .process-image-wrap {
    background: #fff;
    border: 1px solid rgba(196, 134, 58, 0.15);
    border-radius: 6px;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    max-width: 1200px;
    margin: 0 auto;
  }

  .process-image-wrap img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 4px;
  }

  .products-inquiry {
    background: var(--cream-light);
    padding: 80px 0;
    border-top: 1px solid rgba(196, 134, 58, 0.12);
  }

  .inquiry-header {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 48px;
  }

  .inquiry-header p {
    color: var(--text-muted);
    margin-top: 12px;
  }

  /* ---- SPECIFICATIONS ---- */
  .specifications {
    padding: 110px 0;
    background: var(--cream);
  }

  .spec-header { text-align: center; margin-bottom: 70px; }
  .spec-header .section-lead { margin: 0 auto; }

  .specs-table-wrap {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border: 1px solid rgba(196,134,58,0.2);
    overflow: hidden;
  }

  .specs-table {
    width: 100%;
    border-collapse: collapse;
  }

  .specs-table thead tr {
    background: var(--brown-deep);
  }

  .specs-table thead th {
    padding: 18px 28px;
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--cream);
    font-weight: 500;
  }

  .specs-table tbody tr {
    border-bottom: 1px solid rgba(196,134,58,0.12);
    transition: background 0.2s;
  }

  .specs-table tbody tr:last-child { border-bottom: none; }

  .specs-table tbody tr:hover { background: rgba(196,134,58,0.05); }

  .specs-table tbody td {
    padding: 20px 28px;
    font-size: 15px;
    color: var(--charcoal);
  }

  .specs-table tbody td:first-child {
    font-weight: 500;
    color: var(--text-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 200px;
  }

  .specs-table tbody td:last-child {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--kraft);
  }

  .spec-cert-logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    font-family: var(--font-body);
    font-weight: 400;
  }

  .spec-cert-logo {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 2px;
  }

  .spec-cert-logo--india {
    width: 130px;
    max-width: 100%;
  }

  .spec-cert-logo--recycled {
    width: 125px;
    max-width: 100%;
  }

  .range-bar {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .range-track {
    flex: 1;
    height: 4px;
    background: rgba(196,134,58,0.15);
    border-radius: 2px;
    position: relative;
  }

  .range-fill {
    position: absolute;
    top: 0; left: 0;
    height: 100%;
    background: var(--kraft);
    border-radius: 2px;
  }

  /* ---- EXPORTS ---- */
  .exports {
    padding: 110px 0;
    background: var(--cream-light);
  }

  .exports .section-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .export-countries {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 40px;
  }

  .country-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: white;
    border: 1px solid rgba(196,134,58,0.18);
    padding: 16px 20px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
  }

  .country-card:hover {
    border-color: var(--kraft);
    transform: translateX(4px);
  }

  .country-card::after {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--kraft);
    transform: scaleY(0);
    transition: transform 0.3s;
  }

  .country-card:hover::after { transform: scaleY(1); }

  .country-flag {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 24px;
  }

  .country-flag img {
    display: block;
    width: 32px;
    height: 24px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  }

  .country-flag-icon {
    width: 40px;
    height: 40px;
    background: var(--cream);
    border-radius: 50%;
  }

  .country-flag-icon .icon {
    width: 20px;
    height: 20px;
    color: var(--kraft);
  }

  .country-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--brown-deep);
  }

  .country-type {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
  }
 

  .world-visual {
    background: var(--brown-deep);
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .world-title {
    font-family: var(--font-display);
    font-size: 72px;
    color: white;
    opacity: 0.08;
    letter-spacing: 6px;
    margin-bottom: 24px;
    position: relative;
    z-index: 0;
  }

  .world-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.08);
    position: relative;
    overflow: hidden;
  }

  .world-stats-globe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(82%, 300px);
    height: auto;
    opacity: 0.22;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: screen;
  }

  .world-stat {
    background: transparent;
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
  }

  .world-stat-num {
    font-family: var(--font-display);
    font-size: 52px;
    color: var(--kraft);
    line-height: 1;
  }

  .world-stat-label {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 6px;
  }

  /* ---- WHY US ---- */
  .why-us {
    padding: 110px 0;
    background: var(--brown-deep);
    position: relative;
    overflow: hidden;
  }

  .why-us::before {
    content: 'QUALITY';
    position: absolute;
    right: -40px; top: -30px;
    font-family: var(--font-display);
    font-size: 240px;
    color: rgba(255,255,255,0.03);
    pointer-events: none;
    line-height: 1;
  }

  .why-us .section-title { color: var(--cream); }
  .why-us .section-tag span { color: var(--kraft-light); }
  .why-us .section-tag::before,
  .why-us .section-tag::after { background: var(--kraft-light); }
  .why-us .section-lead { color: rgba(255,255,255,0.4); }

  .why-header { margin-bottom: 60px; }

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

  .why-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 36px 24px 28px;
    transition: all 0.4s;
    position: relative;
  }

  .why-card:hover {
    background: rgba(196,134,58,0.15);
    border-color: rgba(196,134,58,0.4);
    transform: translateY(-6px);
  }

  .why-card-icon {
    width: 48px;
    height: 48px;
    background: var(--kraft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .why-card-icon .icon {
    width: 22px;
    height: 22px;
  }

  .why-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .why-card-text {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.65;
  }

  /* ---- TESTIMONIALS ---- */
  .testimonials {
    padding: 96px 0;
    background: var(--cream-light);
  }

  .testimonials-header {
    text-align: center;
    max-width: 620px;
    margin-inline: auto;
    margin-bottom: 48px;
  }

  .testimonials-header .section-lead {
    margin-top: 16px;
  }

  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    min-width: 0;
    width: 100%;
  }

  .testimonial-card {
    margin: 0;
    min-width: 0;
    background: white;
    border: 1px solid rgba(196, 134, 58, 0.15);
    padding: 36px 32px 32px;
    position: relative;
    transition: border-color 0.3s, box-shadow 0.3s;
  }

  .testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 18px;
    left: 28px;
    font-family: var(--font-heading);
    font-size: 56px;
    line-height: 1;
    color: var(--kraft);
    opacity: 0.35;
    pointer-events: none;
  }

  .testimonial-card:hover {
    border-color: rgba(196, 134, 58, 0.35);
    box-shadow: 0 12px 36px rgba(196, 134, 58, 0.1);
  }

  .testimonial-quote {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-muted);
    margin: 0 0 28px;
    padding-top: 8px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 20px;
    margin: 0;
    border-top: 1px solid rgba(196, 134, 58, 0.12);
    background: none;
  }

  .testimonial-name {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    font-style: normal;
    color: var(--brown-deep);
  }

  .testimonial-company {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--kraft);
    text-transform: uppercase;
  }

  /* ---- CONTACT ---- */
  .contact {
    padding: 110px 0;
    background: var(--cream-light);
  }

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

  .contact-form {
    background: white;
    padding: 50px;
    border: 1px solid rgba(196,134,58,0.15);
  }

  .form-title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--brown-deep);
    margin-bottom: 32px;
  }

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

  .form-group label {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-weight: 500;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(196,134,58,0.25);
    background: var(--cream-light);
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--charcoal);
    outline: none;
    transition: border-color 0.3s;
    border-radius: 0;
  }

  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus {
    border-color: var(--kraft);
    background: white;
  }

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

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

  .form-submit {
    width: 100%;
    background: var(--brown-deep);
    color: white;
    border: none;
    padding: 18px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 8px;
  }

  .form-submit:hover { background: var(--kraft); }

  .form-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
  }

  .netlify-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
  }

  .contact-form,
  .contact-page-form-wrap {
    position: relative;
  }

 

  .contact-info-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--brown-deep);
    margin-bottom: 20px;
  }

  .contact-info-lead {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 40px;
  }

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

  .info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
  }

  .info-icon-wrap {
    width: 44px; height: 44px;
    background: var(--brown-deep);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }

  .info-icon-wrap .icon {
    width: 20px;
    height: 20px;
  }

  .info-content strong {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--kraft);
    margin-bottom: 4px;
  }

  .info-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.5;
  }

  .info-content p + p {
    margin-top: 6px;
  }

  .info-content a {
    color: var(--brown-deep);
    text-decoration: none;
    transition: color 0.3s;
  }

  .info-content a:hover {
    color: var(--kraft);
  }

  /* ---- CONTACT PAGE ---- */
  .page-hero {
    padding: 130px 0 64px;
    background: var(--cream-light);
    text-align: center;
  }

  .page-hero--video {
    position: relative;
    overflow: hidden;
    background: var(--brown-deep);
    padding: 150px 0 clamp(96px, 13vw, 128px);
    z-index: 1;
  }

  .page-hero--video .page-hero-inner {
    position: relative;
    z-index: 2;
  }

  .page-hero--video .section-tag span {
    color: var(--kraft-light);
  }

  .page-hero--video .section-tag::before,
  .page-hero--video .section-tag::after {
    background: var(--kraft-light);
  }

  .page-hero--video .page-hero-title {
    color: var(--cream);
  }

  .page-hero--video .page-hero-title .brand-mark {
    color: var(--kraft-light);
  }

  .page-hero--video .page-hero-lead {
    color: rgba(255, 255, 255, 0.58);
  }

  .page-hero-inner {
    max-width: 640px;
    margin-inline: auto;
  }

  .page-hero .section-tag {
    justify-content: center;
  }

  .page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    color: var(--brown-deep);
    line-height: 1.15;
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .page-hero-title-line {
    white-space: nowrap;
  }

  .page-hero-lead {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
  }

  .contact-page {
    padding: 0 0 110px;
    background: var(--cream);
  }

  .contact-page .section-inner {
    display: flex;
    flex-direction: column;
    gap: 56px;
  }

  .contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .contact-card {
    background: white;
    border: 1px solid rgba(196, 134, 58, 0.18);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--kraft);
  }

  .contact-card:nth-child(2)::before { background: var(--olive); }
  .contact-card:nth-child(3)::before { background: var(--kraft-dark); }

  .contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(196, 134, 58, 0.12);
    border-color: rgba(196, 134, 58, 0.35);
  }

  .contact-card-icon {
    width: 44px;
    height: 44px;
    background: var(--brown-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
  }

  .contact-card-icon .icon {
    width: 20px;
    height: 20px;
  }

  .contact-card-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 8px;
  }

  .contact-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--brown-deep);
    margin-bottom: 12px;
    line-height: 1.3;
  }

  .contact-card-link {
    display: block;
    font-size: 14px;
    color: var(--kraft-dark);
    text-decoration: none;
    line-height: 1.5;
    word-break: break-word;
    transition: color 0.3s;
  }

  .contact-card-link + .contact-card-link {
    margin-top: 6px;
  }

  .contact-card-link:hover {
    color: var(--kraft);
  }

  .contact-page-form-wrap {
    background: white;
    border: 1px solid rgba(196, 134, 58, 0.15);
    padding: 50px;
  }

  .contact-page-form-header {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 36px;
  }

  .contact-page-form-header .form-title {
    margin-bottom: 12px;
  }

  .contact-page-form-header p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
  }

  /* ---- GALLERY ---- */
  .gallery-page {
    padding: 0 0 96px;
    background: var(--cream);
    margin-top: -1px;
  }

  .gallery-intro {
    text-align: center;
    margin-bottom: 36px;
  }

  .gallery-intro-text {
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 0.3px;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    min-width: 0;
    width: 100%;
  }

  .gallery-item {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 1px solid rgba(196, 134, 58, 0.18);
    background: white;
    cursor: zoom-in;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    min-width: 0;
    text-align: left;
    contain: layout style paint;
  }

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

  .gallery-item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(44, 24, 16, 0.35);
    opacity: 0;
    pointer-events: none;
  }

  .gallery-item-icon {
    width: 28px;
    height: 28px;
    color: white;
  }

  @media (hover: hover) {
    .gallery-item-overlay {
      transition: opacity 0.3s ease;
    }
    .gallery-item {
      transition: border-color 0.3s, box-shadow 0.3s;
    }

    .gallery-item img {
      transition: transform 0.45s ease;
    }

    .gallery-item:hover,
    .gallery-item:focus-visible {
      border-color: rgba(196, 134, 58, 0.45);
      box-shadow: 0 12px 32px rgba(196, 134, 58, 0.15);
      outline: none;
    }

    .gallery-item:hover img,
    .gallery-item:focus-visible img {
      transform: scale(1.06);
    }

    .gallery-item:hover .gallery-item-overlay,
    .gallery-item:focus-visible .gallery-item-overlay {
      opacity: 1;
    }
  }

  body.gallery-lightbox-open {
    overflow: hidden;
  }

  .gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px 72px;
  }

  .gallery-lightbox[hidden] {
    display: none !important;
  }

  .gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(44, 24, 16, 0.94);
    cursor: zoom-out;
  }

  .gallery-lightbox-stage {
    position: relative;
    z-index: 1;
    max-width: min(1200px, 92vw);
    max-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .gallery-lightbox-img {
    display: block;
    max-width: 100%;
    max-height: 82vh;
    width: auto;
    height: auto;
    object-fit: contain;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
    animation: galleryZoomIn 0.3s ease;
  }

  @keyframes galleryZoomIn {
    from {
      opacity: 0;
      transform: scale(0.92);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  .gallery-lightbox-close,
  .gallery-lightbox-prev,
  .gallery-lightbox-next {
    position: absolute;
    z-index: 2;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    font-family: var(--font-body);
    line-height: 1;
  }

  .gallery-lightbox-close:hover,
  .gallery-lightbox-prev:hover,
  .gallery-lightbox-next:hover,
  .gallery-lightbox-close:focus-visible,
  .gallery-lightbox-prev:focus-visible,
  .gallery-lightbox-next:focus-visible {
    background: var(--kraft);
    outline: none;
  }

  .gallery-lightbox-close {
    top: max(16px, env(safe-area-inset-top));
    right: max(16px, env(safe-area-inset-right));
    width: 44px;
    height: 44px;
    font-size: 28px;
    border-radius: 2px;
  }

  .gallery-lightbox-prev,
  .gallery-lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    font-size: 32px;
    border-radius: 2px;
  }

  .gallery-lightbox-prev {
    left: max(12px, env(safe-area-inset-left));
  }

  .gallery-lightbox-next {
    right: max(12px, env(safe-area-inset-right));
  }

  .gallery-lightbox-prev:disabled,
  .gallery-lightbox-next:disabled {
    opacity: 0.35;
    cursor: not-allowed;
  }

  .gallery-lightbox-counter {
    position: absolute;
    bottom: max(20px, env(safe-area-inset-bottom));
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
  }

  .footer-contact {
    font-size: 13px;
    line-height: 1.8;
    margin-top: 16px;
  }

  .footer-contact a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s;
  }

  .footer-contact a:hover {
    color: var(--kraft-light);
  }

  .nav-links a.is-active {
    color: var(--kraft);
  }

  /* ---- ABOUT PAGE ---- */
  .about-page-section {
    padding: 96px 0;
  }

  .about-story {
    background: var(--cream);
    padding-top: 72px;
  }

  .about-story-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: start;
  }

  .about-story-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.85;
    margin-top: 20px;
  }

  .about-story-text:first-of-type {
    margin-top: 24px;
  }

  .about-story-aside {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .about-highlight-card {
    background: white;
    border: 1px solid rgba(196, 134, 58, 0.18);
    padding: 28px 26px;
    position: relative;
  }

  .about-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--kraft);
  }

  .about-highlight-card--accent {
    background: var(--brown-deep);
    border-color: rgba(196, 134, 58, 0.35);
    text-align: center;
    padding: 36px 26px;
  }

  .about-highlight-card--accent::before {
    background: var(--kraft-light);
  }

  .about-highlight-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 16px;
  }

  .about-highlight-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .about-highlight-list li {
    font-size: 14px;
    color: var(--brown-deep);
    padding-left: 16px;
    position: relative;
    line-height: 1.5;
  }

  .about-highlight-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background: var(--kraft);
    border-radius: 50%;
  }

  .about-highlight-num {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--kraft-light);
    line-height: 1;
    margin-bottom: 8px;
  }

  .about-highlight-caption {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.55);
  }

  .about-mv {
    background: var(--brown-deep);
    position: relative;
    overflow: hidden;
  }

  .about-mv::before {
    content: 'UMASON';
    position: absolute;
    right: -20px;
    top: -20px;
    font-family: var(--font-display);
    font-size: clamp(120px, 18vw, 220px);
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    line-height: 1;
  }

  .about-mv .section-title { color: var(--cream); }
  .about-mv .section-tag span { color: var(--kraft-light); }
  .about-mv .section-tag::before,
  .about-mv .section-tag::after { background: var(--kraft-light); }
  .about-mv .section-lead { color: rgba(255, 255, 255, 0.45); }

  .about-mv-header {
    max-width: 640px;
    margin-bottom: 48px;
  }

  .about-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .about-mv-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 36px 32px 32px;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  }

  .about-mv-card:hover {
    background: rgba(196, 134, 58, 0.1);
    border-color: rgba(196, 134, 58, 0.35);
    transform: translateY(-4px);
  }

  .about-mv-card--vision {
    background: rgba(196, 134, 58, 0.08);
    border-color: rgba(196, 134, 58, 0.25);
  }

  .about-mv-icon {
    width: 48px;
    height: 48px;
    background: var(--kraft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }

  .about-mv-icon .icon {
    width: 22px;
    height: 22px;
  }

  .about-mv-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--kraft-light);
    margin-bottom: 10px;
  }

  .about-mv-title {
    font-family: var(--font-heading);
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 700;
    color: var(--cream);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .about-mv-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin-bottom: 20px;
  }

  .about-mv-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .about-mv-points li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    padding-left: 18px;
    position: relative;
    line-height: 1.5;
  }

  .about-mv-points li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--kraft-light);
    font-size: 12px;
  }

  .about-values {
    background: var(--cream-light);
  }

  .about-values-header {
    max-width: 620px;
    margin-bottom: 48px;
  }

  .about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .about-value-card {
    background: white;
    border: 1px solid rgba(196, 134, 58, 0.15);
    padding: 32px 26px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }

  .about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(196, 134, 58, 0.1);
    border-color: rgba(196, 134, 58, 0.3);
  }

  .about-value-icon {
    width: 44px;
    height: 44px;
    background: var(--brown-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
  }

  .about-value-icon .icon {
    width: 20px;
    height: 20px;
  }

  .about-value-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--brown-deep);
    margin-bottom: 10px;
    line-height: 1.25;
  }

  .about-value-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
  }

  .about-glance {
    background: var(--cream);
  }

  .about-glance-header {
    margin-bottom: 40px;
  }

  .about-glance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .about-manufacturing {
    background: var(--cream-light);
  }

  .about-manufacturing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .about-manufacturing-lead {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 20px;
    margin-bottom: 28px;
  }

  .about-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .about-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--brown-deep);
    line-height: 1.55;
  }

  .about-checklist .icon {
    flex-shrink: 0;
    color: var(--kraft);
    margin-top: 2px;
  }

  .about-manufacturing-panel {
    background: var(--brown-deep);
    padding: 40px 36px;
    border: 1px solid rgba(196, 134, 58, 0.25);
  }

  .about-manufacturing-panel-icon {
    width: 52px;
    height: 52px;
    background: var(--kraft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
  }

  .about-manufacturing-panel-icon .icon {
    width: 24px;
    height: 24px;
  }

  .about-manufacturing-panel-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--cream);
    margin-bottom: 24px;
  }

  .about-product-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
  }

  .about-product-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .about-product-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .about-product-list span {
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 1px;
    color: var(--kraft-light);
    min-width: 24px;
  }

  .about-manufacturing-link {
    color: var(--cream) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
  }

  .about-manufacturing-link:hover {
    border-color: var(--kraft-light) !important;
    color: var(--kraft-light) !important;
  }

  .about-certs {
    background: var(--cream);
  }

  .about-certs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .about-certs-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 20px;
  }

  .about-certs-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .about-cta {
    background: var(--cream);
    padding: 96px 0;
    border-top: 1px solid rgba(196, 134, 58, 0.12);
  }

  .about-cta-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
    background: white;
    border: 1px solid rgba(196, 134, 58, 0.18);
    padding: 56px 48px;
    box-shadow: 0 16px 48px rgba(196, 134, 58, 0.08);
  }

  .about-cta-content {
    max-width: 620px;
  }

  .about-cta .section-tag {
    justify-content: center;
  }

  .about-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    color: var(--brown-deep);
    line-height: 1.15;
    margin: 12px 0 14px;
  }

  .about-cta-title .brand-mark {
    color: var(--kraft-dark);
  }

  .about-cta-lead {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 560px;
    margin-inline: auto;
  }

  .about-cta-actions {
    display: flex;
    flex-shrink: 0;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  /* ---- FOOTER ---- */
  body > footer {
    background: var(--charcoal);
    padding: 60px 0 32px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 32px;
  }

  
  .footer-logo {
    display: inline-block;
    margin-bottom: 20px;
    text-decoration: none;
  }

  .footer-tagline {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    margin-bottom: 28px;
  }

  .footer-heading {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--kraft);
    margin-bottom: 20px;
    font-weight: 600;
  }

  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .footer-links a {
    text-decoration: none;
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    transition: color 0.3s;
  }

  .footer-links a:hover { color: var(--kraft-light); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.25);
  }

  .footer-est {
    font-family: var(--font-display);
    font-size: 13px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.2);
  }

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

  .reveal {
    opacity: 0;
    transform: translateY(32px);
    transition:
      opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }

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

  .product-detail.reveal,
  .shade-card.reveal {
    transform: translateY(40px);
  }

  .product-detail.reveal.visible,
  .shade-card.reveal.visible {
    transform: translateY(0);
  }

  @media (prefers-reduced-motion: reduce) {
    .reveal {
      opacity: 1;
      transform: none;
      transition: none;
      will-change: auto;
    }
  }

  /* ---- TOAST ---- */
  .toast {
    position: fixed;
    bottom: 30px; right: 30px;
    background: var(--olive);
    color: white;
    padding: 14px 24px;
    font-size: 14px;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s;
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .toast .icon {
    width: 18px;
    height: 18px;
    color: white;
  }

  .toast.show {
    opacity: 1;
    transform: translateY(0);
  }

  /* ---- SCROLLBAR ---- */
  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--cream); }
  ::-webkit-scrollbar-thumb { background: var(--kraft); }

  /* ---- RESPONSIVE ---- */

  @media (max-width: 1200px) {
    nav { padding: 18px 40px; }

    .hero-content { padding: 108px 40px clamp(88px, 11vw, 108px); }

    .about,
    .products,
    .specifications,
    .exports,
    .why-us,
    .contact {
      padding-block: 90px;
    }

    .section-inner { padding-inline: 40px; }

    body > footer { padding: 50px 0 28px; }

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

    .product-card:nth-child(n) { grid-column: auto; }

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

    .footer-top {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }

    .footer-brand {
      grid-column: 1 / -1;
    }

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

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

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

  @media (max-width: 992px) {
    nav {
      padding: 14px 24px;
      padding-top: max(14px, env(safe-area-inset-top));
    }

    .nav-toggle { display: flex; }

    .nav-overlay {
      display: block;
      position: fixed;
      inset: 0;
      background: rgba(44, 24, 16, 0.55);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.35s ease, visibility 0.35s ease;
      z-index: 99;
    }

    nav.nav-open .nav-overlay {
      opacity: 1;
      visibility: visible;
    }

    body.nav-open { overflow: hidden; }

    .nav-panel {
      position: fixed;
      top: 0;
      right: 0;
      width: min(320px, 88vw);
      height: 100vh;
      height: 100dvh;
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      padding: max(90px, calc(70px + env(safe-area-inset-top))) 28px 40px;
      padding-bottom: max(40px, env(safe-area-inset-bottom));
      background: var(--cream-light);
      border-left: 1px solid rgba(196, 134, 58, 0.2);
      box-shadow: -12px 0 40px rgba(0, 0, 0, 0.12);
      transform: translateX(100%);
      transition: transform 0.35s ease;
      z-index: 101;
      overflow-y: auto;
    }

    nav.nav-open .nav-panel {
      transform: translateX(0);
    }

    .nav-links {
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      flex: 1;
    }

    .nav-links li {
      border-bottom: 1px solid rgba(196, 134, 58, 0.15);
    }

    .nav-links li:last-child {
      border-bottom: none;
    }

    .nav-links a {
      display: block;
      padding: 16px 0;
      font-size: 16px;
    }

    .nav-links a::after { display: none; }

    .nav-cta {
      margin-top: 20px;
      text-align: center;
      padding: 14px 24px !important;
    }

    .nav-contact {
      display: flex;
      flex-direction: column;
      gap: 18px;
      margin-top: auto;
      padding-top: 28px;
      border-top: 1px solid rgba(196, 134, 58, 0.2);
    }

    .nav-contact-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;
    }

    .nav-contact-icon {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      color: var(--kraft);
      margin-top: 2px;
    }

    .nav-contact-text strong {
      display: block;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--kraft);
      margin-bottom: 4px;
    }

    .nav-contact-text p {
      font-size: 13px;
      line-height: 1.55;
      color: var(--text-muted);
      margin: 0;
    }

    .nav-contact-text a {
      color: var(--text-muted);
      text-decoration: none;
    }

    .nav-contact-text a:hover {
      color: var(--kraft);
    }

    .hero {
      min-height: auto;
    }

    .hero-content {
      padding: 88px 20px 64px;
    }

    .hero-subtitle { max-width: none; }

    .hero-eyebrow {
      margin-bottom: 12px;
    }

    .hero-eyebrow-line {
      display: none;
    }

    .hero-eyebrow-text--full {
      display: none;
    }

    .hero-eyebrow-text--short {
      display: inline;
      font-size: 10px;
      letter-spacing: 2.5px;
    }

    .hero-title {
      font-size: clamp(32px, 8vw, 44px);
      margin-bottom: 12px;
    }

    .hero-title-line {
      white-space: normal;
    }

    .hero-subtitle--full {
      display: none;
    }

    .hero-subtitle--short {
      display: block;
      font-size: 14px;
      line-height: 1.55;
      margin-bottom: 20px;
      max-width: 300px;
    }

    .hero-actions {
      flex-direction: column;
      align-items: stretch;
      gap: 10px;
      width: 100%;
      max-width: 280px;
    }

    .btn-primary {
      text-align: center;
      padding: 14px 24px;
      font-size: 13px;
    }

    .btn-secondary {
      justify-content: center;
      padding: 2px 0;
      font-size: 13px;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-top: 24px;
      padding-top: 0;
      max-width: 320px;
    }

    .hero-stats::before {
      grid-column: 1 / -1;
      width: min(160px, 45vw);
      margin-bottom: 16px;
    }

    .stat-item {
      flex: unset;
      min-width: 0;
    }

    .stat-label--full {
      display: none;
    }

    .stat-label--short {
      display: inline;
    }

    .hero .stat-num {
      font-size: 26px;
    }

    .hero .stat-label {
      font-size: 9px;
      letter-spacing: 0.6px;
      line-height: 1.3;
      margin-top: 2px;
    }

    .about .section-inner {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .exports .section-inner {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .contact .section-inner {
      grid-template-columns: 1fr;
      gap: 48px;
    }

    .about,
    .products,
    .specifications,
    .exports,
    .why-us,
    .contact,
    .about-page-section {
      padding-block: 72px;
    }

    .about-story-grid,
    .about-mv-grid,
    .about-manufacturing-grid,
    .about-certs-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }

    .about-cta-inner {
      padding: 40px 28px;
    }

    .about-cta-actions {
      width: 100%;
      flex-direction: column;
    }

    .about-cta-actions .btn-primary {
      width: 100%;
      text-align: center;
    }

    .about-cta-actions .btn-secondary {
      justify-content: center;
      width: 100%;
    }

    .section-inner { padding-inline: 24px; }

    .testimonials {
      padding: 64px 0;
    }

    .testimonials-header {
      margin-bottom: 28px;
    }

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

    .testimonial-card {
      padding: 28px 22px 24px;
    }

    .testimonial-card::before {
      font-size: 44px;
      top: 14px;
      left: 18px;
    }

    .testimonial-quote {
      font-size: 14px;
      line-height: 1.65;
      margin-bottom: 20px;
    }

    .testimonial-name {
      font-size: 16px;
    }

    .testimonial-company {
      font-size: 12px;
    }

    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .gallery-page {
      padding-bottom: 72px;
    }

    .products-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
      margin-bottom: 40px;
    }

    .products-header-lead {
      max-width: none;
      text-align: left;
    }

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

    .product-card:nth-child(n) { grid-column: auto; }

    .specifications { padding-block: 72px; }

    .spec-header { margin-bottom: 48px; }

    .why-us::before {
      font-size: 120px;
      right: -10px;
      bottom: auto;
      top: -10px;
    }

    body > footer { padding: 48px 0 24px; }

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

    .world-visual { padding: 40px 28px; }

    .world-title { font-size: 56px; }

    .page-hero { padding: 110px 0 48px; }

    .page-hero--video {
      padding: 124px 0 clamp(88px, 12vw, 112px);
    }

    .contact-page-form-wrap { padding: 32px 24px; }

    .about-mv::before { font-size: 100px; }
  }

  @media (max-width: 768px) {
    section[id] { scroll-margin-top: 72px; }

    .section-title {
      font-size: clamp(28px, 7vw, 40px);
    }

    .about-right {
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .spec-card { padding: 22px 18px; }

    .spec-value { font-size: 24px; }

    .products::before {
      font-size: 140px;
      right: -20px;
      top: -10px;
    }

    .products-grid {
      grid-template-columns: 1fr;
      max-width: 420px;
      margin-inline: auto;
    }

    .product-card:nth-child(n) { grid-column: auto; }

    .product-detail {
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .product-detail-media {
      order: -1;
    }

    .shades-grid {
      grid-template-columns: 1fr;
      gap: 20px;
      max-width: 520px;
    }

    .shade-card-head {
      padding: 20px 20px 16px;
      gap: 14px;
    }

    .shade-card-title {
      font-size: 19px;
    }

    .shade-card-visual {
      min-height: 140px;
      max-height: 168px;
    }

    .process-visual-header .section-title {
      font-size: clamp(24px, 6vw, 32px);
    }

    .process-image-wrap {
      padding: 10px;
    }

    .specs-table-wrap {
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
    }

    .specs-table {
      min-width: 560px;
    }

    .export-countries {
      grid-template-columns: 1fr;
    }

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

    .why-card { padding: 28px 22px 24px; }

    .contact-form { padding: 32px 24px; }

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

    .about-values-grid,
    .about-glance-grid {
      grid-template-columns: 1fr;
    }

    .about-certs-badges {
      grid-template-columns: 1fr;
    }

    .about-cta-actions {
      flex-direction: column;
    }

    .contact-page { padding-bottom: 72px; }

    .contact-page-form-wrap { padding: 28px 20px; }

    .page-hero { padding: 100px 0 40px; }

    .page-hero--video {
      padding: 112px 0 clamp(80px, 14vw, 100px);
    }

    .page-hero-title {
      font-size: clamp(28px, 6.5vw, 40px);
    }

    .form-title { font-size: 24px; margin-bottom: 24px; }

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

    .contact-info-title { font-size: 28px; }

    .footer-top {
      grid-template-columns: 1fr;
      gap: 28px;
    }

    .footer-bottom {
      flex-direction: column;
      gap: 12px;
      text-align: center;
    }

    .toast {
      left: 16px;
      right: 16px;
      bottom: max(20px, env(safe-area-inset-bottom));
      text-align: center;
    }
  }

  @media (max-width: 480px) {
    nav { padding: 12px 16px; }

    .site-logo--nav {
      height: 36px;
      max-width: min(180px, 48vw);
    }

    .site-logo--footer {
      height: 48px;
      max-width: min(260px, 74vw);
    }

    .hero-content { padding: 80px 16px 56px; }

    .hero-title {
      font-size: clamp(26px, 7vw, 32px);
    }

    .hero-subtitle--short {
      font-size: 13px;
      max-width: 280px;
    }

    .hero-stats {
      max-width: 100%;
    }

    .hero .stat-num {
      font-size: 22px;
    }

    .testimonials {
      padding: 56px 0;
    }

    .testimonial-card {
      padding: 24px 18px 20px;
    }

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

    .gallery-lightbox-prev,
    .gallery-lightbox-next {
      width: 40px;
      height: 40px;
      font-size: 26px;
    }

    .about,
    .products,
    .specifications,
    .exports,
    .why-us,
    .contact {
      padding-block: 56px;
    }

    .section-inner { padding-inline: 16px; }

    .about-right {
      grid-template-columns: 1fr;
    }

    .about-certifications {
      grid-template-columns: 1fr;
    }

    .cert-badge { width: 100%; }

    .spec-header { margin-bottom: 36px; }

    .specs-table thead { display: none; }

    .specs-table,
    .specs-table tbody,
    .specs-table tr,
    .specs-table td {
      display: block;
      width: 100%;
      min-width: 0;
    }

    .specs-table tbody tr {
      padding: 18px 20px;
      border-bottom: 1px solid rgba(196, 134, 58, 0.12);
    }

    .specs-table tbody tr:last-child { border-bottom: none; }

    .specs-table tbody td {
      padding: 6px 0;
      border: none;
    }

    .specs-table tbody td:first-child {
      width: auto;
      font-size: 11px;
      padding-bottom: 2px;
      color: var(--kraft);
    }

    .specs-table tbody td:nth-child(2) {
      font-size: 20px;
      padding-bottom: 10px;
    }

    .specs-table tbody td:last-child {
      font-size: inherit;
      padding-top: 4px;
    }

    .specs-table-wrap { overflow-x: visible; }

    .world-visual { padding: 32px 20px; }

    .world-stat { padding: 22px 16px; }

    .world-stat-num { font-size: 42px; }

    .why-us::before { font-size: 80px; }

    .why-card { padding: 28px 22px 24px; }

    .contact-form { padding: 24px 18px; }

    body > footer { padding: 40px 0 20px; }

    .footer-tagline { margin-bottom: 0; }
  }
