/* ============================================================
   Sahni Packers — Kraft & Press theme
   Premium-craft packaging site. Kraft palette + serif+mono mix,
   rubber-stamps, marquees, corrugation details, scroll reveals.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
    /* Kraft palette */
    --kraft-dark:   #3a2518;
    --kraft-mid:    #6b4423;
    --kraft-light:  #a67c52;
    --kraft-tan:    #d4a574;
    --cream:        #f5ecd9;
    --cream-deep:   #ebdcb8;
    --cream-soft:   #fbf5e6;

    --ink-red:      #b33a1f;
    --ink-red-deep: #8c2912;
    --ink-dark:     #1a1410;

    --text:         #2a1f15;
    --text-muted:   #6b5a4a;
    --text-faint:   #9c8770;
    --text-on-dark: #ebdcb8;
    --text-on-dark-muted: #a67c52;

    --line:         rgba(58, 37, 24, 0.15);
    --line-strong:  rgba(58, 37, 24, 0.3);
    --line-light:   rgba(58, 37, 24, 0.08);

    --bg:           var(--cream);
    --bg-alt:       var(--cream-deep);
    --bg-paper:     #fffef8;
    --bg-dark:      var(--ink-dark);

    --shadow-sm:    0 1px 2px rgba(58, 37, 24, 0.06);
    --shadow:       0 2px 8px rgba(58, 37, 24, 0.08), 0 1px 2px rgba(58, 37, 24, 0.04);
    --shadow-md:    0 8px 24px rgba(58, 37, 24, 0.12), 0 2px 6px rgba(58, 37, 24, 0.04);

    --radius-sm:    2px;
    --radius:       4px;
    --radius-lg:    6px;

    --serif:  'Instrument Serif', 'Fraunces', Georgia, 'Times New Roman', serif;
    --mono:   'JetBrains Mono', 'Courier New', Courier, monospace;
    --sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

    --transition: 250ms ease;

    --container: 1200px;
    --nav-h: 72px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;

    /* Subtle paper grain. Three layered effects:
       1. soft warm radial bloom top-left
       2. faint red bloom bottom-right
       3. ultra-subtle horizontal paper fiber */
    background-image:
        radial-gradient(ellipse at top left, rgba(107, 68, 35, 0.06), transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(179, 58, 31, 0.04), transparent 55%),
        repeating-linear-gradient(0deg, rgba(58, 37, 24, 0.018) 0px, transparent 1px, transparent 3px, rgba(58, 37, 24, 0.018) 4px);
    background-attachment: fixed;
}
body.no-scroll { overflow: hidden; }
img, iframe, svg { max-width: 100%; display: block; }
a { color: var(--ink-red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--ink-red-deep); }
button { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
strong { font-weight: 600; color: var(--text); }

h1, h2, h3, h4, h5 {
    margin: 0 0 1rem 0;
    font-family: var(--serif);
    font-weight: 400;
    line-height: 1.05;
    color: var(--text);
    letter-spacing: -0.02em;
}
h1 em, h2 em, h3 em {
    font-style: italic;
    color: var(--ink-red);
    font-weight: 400;
}
h1 { font-size: clamp(2.5rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.75rem); line-height: 1.02; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
p  { margin: 0 0 1rem 0; color: var(--text-muted); }

.mono { font-family: var(--mono); letter-spacing: 0.02em; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1.5rem; }

/* ---------- Shared bits ---------- */
.lede {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}
.meta-row .dash {
    width: 30px; height: 1px;
    background: var(--text-muted);
    display: inline-block;
}

.section-num {
    display: inline-block;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink-red);
    padding: 0.35rem 0.75rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
}
.section-num--light {
    color: var(--kraft-tan);
    border-color: rgba(235, 220, 184, 0.25);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-family: var(--mono);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
    line-height: 1;
    min-height: 42px;
}
.btn--primary {
    background: var(--ink-dark);
    color: var(--cream);
    border-color: var(--ink-dark);
}
.btn--primary:hover {
    background: var(--ink-red);
    border-color: var(--ink-red);
    color: var(--cream);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(179, 58, 31, 0.25);
}
.btn--primary:active { transform: translateY(0); }
.btn--ghost {
    background: transparent;
    color: var(--ink-dark);
    border-color: var(--ink-dark);
}
.btn--ghost:hover {
    background: var(--ink-dark);
    color: var(--cream);
}
.btn--sm { padding: 0.5rem 1rem; font-size: 0.75rem; min-height: 34px; }
.btn--lg { padding: 0.95rem 1.75rem; font-size: 0.875rem; min-height: 52px; }
.btn--block { width: 100%; }

/* ---------- Reveal animations ---------- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 700ms ease-out, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
    }
    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Tape strip ---------- */
.tape {
    position: absolute;
    width: 140px; height: 28px;
    background: rgba(212, 165, 116, 0.55);
    background-image:
        repeating-linear-gradient(90deg, transparent 0 6px, rgba(58,37,24,0.08) 6px 7px, transparent 7px 14px);
    border-left: 1px dashed rgba(58, 37, 24, 0.25);
    border-right: 1px dashed rgba(58, 37, 24, 0.25);
    z-index: 5;
    pointer-events: none;
    box-shadow: 0 2px 4px rgba(58, 37, 24, 0.1);
}
.tape--topleft {
    top: -8px; left: 60px;
    transform: rotate(-3deg);
}

/* ---------- Top ticker ---------- */
.ticker {
    background: var(--ink-dark);
    color: var(--cream);
    overflow: hidden;
    border-bottom: 1px solid var(--ink-dark);
    padding: 0.45rem 0;
}
.ticker__track {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: ticker-scroll 40s linear infinite;
    font-family: var(--mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.ticker__item {
    flex-shrink: 0;
    color: var(--cream);
    opacity: 0.9;
}
@keyframes ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ---------- Header ---------- */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(245, 236, 217, 0.9);
    backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid transparent;
    transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.header.is-scrolled {
    background: rgba(245, 236, 217, 0.96);
    border-bottom-color: var(--line);
    box-shadow: var(--shadow-sm);
}
.header__row {
    display: flex;
    align-items: center;
    gap: 1rem;
    height: var(--nav-h);
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text);
    flex-shrink: 0;
}
.brand:hover { color: var(--text); }
.brand__mark {
    width: 40px; height: 40px;
    background: var(--ink-dark);
    color: var(--cream);
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.brand__mark--light {
    background: var(--cream);
    color: var(--ink-dark);
}
.brand__text { display: inline-flex; flex-direction: column; line-height: 1.05; gap: 1px; }
.brand__name {
    font-family: var(--serif);
    font-weight: 400;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    color: var(--text);
}
.brand__tag {
    font-size: 0.625rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    gap: 0.125rem;
    margin-left: auto;
}
.nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.75rem;
    color: var(--text);
    font-family: var(--sans);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}
.nav a:hover { color: var(--ink-red); background: rgba(58, 37, 24, 0.05); }
.nav__num {
    font-size: 0.625rem;
    color: var(--text-faint);
    letter-spacing: 0.05em;
    font-weight: 500;
}
.nav a:hover .nav__num { color: var(--ink-red); }
.nav__cta { flex-shrink: 0; margin-left: 0.5rem; }

/* Mobile hamburger */
.nav-toggle {
    display: none;
    width: 42px; height: 42px;
    background: transparent;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-sm);
    cursor: pointer;
    padding: 0;
    margin-left: auto;
    position: relative;
}
.nav-toggle span {
    display: block;
    position: absolute;
    left: 10px; right: 10px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform var(--transition), opacity var(--transition), top var(--transition);
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 20px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    padding: 1rem 1.5rem 1.5rem;
    background: var(--bg);
    border-top: 1px solid var(--line);
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 0.875rem;
    color: var(--text);
    font-weight: 500;
    border-radius: var(--radius-sm);
}
.mobile-menu a:hover { background: rgba(58, 37, 24, 0.05); }
.mobile-menu .btn { margin-top: 0.5rem; justify-content: center; }
.mobile-menu span.mono { font-size: 0.7rem; color: var(--text-faint); }

@media (max-width: 960px) {
    .nav, .nav__cta { display: none; }
    .nav-toggle { display: block; }
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    padding: 4rem 0 5rem;
    overflow: hidden;
}
.hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: start;
    position: relative;
}
.hero__main { position: relative; z-index: 2; }
.hero__title {
    font-family: var(--serif);
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 400;
    letter-spacing: -0.025em;
    line-height: 0.98;
    margin: 0 0 1.5rem 0;
    color: var(--ink-dark);
}
.hero__sub {
    font-size: 0.875rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 0 2rem 0;
    line-height: 1.7;
}
.hero__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}
.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem 1.5rem;
    padding-top: 2rem;
    border-top: 1px dashed var(--line-strong);
    max-width: 540px;
}
.stat-num {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 2.75rem);
    line-height: 1;
    color: var(--text);
    letter-spacing: -0.02em;
}
.stat-num em {
    font-style: italic;
    color: var(--ink-red);
}
.stat-label {
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 0.4rem;
}

/* Hero illustrated box */
.hero__box {
    position: relative;
    z-index: 1;
    margin-top: 1rem;
}
.hero__box svg {
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    filter: drop-shadow(0 20px 40px rgba(58, 37, 24, 0.15));
}
/* Subtle one-time animation: each face fades/scales in sequence */
@media (prefers-reduced-motion: no-preference) {
    .box-face {
        opacity: 0;
        transform-origin: center;
        animation: face-in 600ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .box-face--back  { animation-delay: 100ms; }
    .box-face--left  { animation-delay: 220ms; }
    .box-face--top   { animation-delay: 340ms; }
    .box-face--front { animation-delay: 460ms; }
    .box-face--right { animation-delay: 580ms; }
    @keyframes face-in {
        from { opacity: 0; transform: scale(0.92) translateY(6px); }
        to   { opacity: 1; transform: scale(1) translateY(0); }
    }
}

/* Rubber stamp */
.stamp {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 140px;
    height: 140px;
    border: 3px solid var(--ink-red);
    border-radius: 50%;
    color: var(--ink-red);
    font-family: var(--mono);
    font-weight: 700;
    position: relative;
    background:
        radial-gradient(circle, transparent 60%, rgba(255, 252, 240, 0.7) 65%);
    letter-spacing: 0.05em;
    line-height: 1;
    text-align: center;
    opacity: 0.85;
}
.stamp::before {
    content: "";
    position: absolute;
    inset: 7px;
    border: 1px solid var(--ink-red);
    border-radius: 50%;
    opacity: 0.55;
}
.stamp__top, .stamp__bot { font-size: 0.625rem; letter-spacing: 0.2em; }
.stamp__big { font-size: 1.5rem; margin: 0.35rem 0; letter-spacing: 0.02em; }
.stamp--hero {
    position: absolute;
    top: 40px;
    right: 20px;
    transform: rotate(-8deg);
    z-index: 3;
}
/* Small inline stamp (used inside spec card) */
.stamp--inline {
    display: inline-block;
    width: auto; height: auto;
    border: 2px solid var(--ink-red);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    background: transparent;
    transform: rotate(-2deg);
    line-height: 1;
}
.stamp--inline::before { display: none; }

/* Stamp subtle wobble animation */
@media (prefers-reduced-motion: no-preference) {
    .stamp--hero {
        animation: stamp-in 800ms cubic-bezier(0.175, 0.885, 0.32, 1.275) 700ms both;
    }
    @keyframes stamp-in {
        from { opacity: 0; transform: rotate(-20deg) scale(1.2); }
        to   { opacity: 0.85; transform: rotate(-8deg) scale(1); }
    }
}

/* Scroll indicator */
.hero__scroll {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.625rem;
    letter-spacing: 0.2em;
    color: var(--text-faint);
    pointer-events: none;
}
.hero__scroll .scroll-line {
    width: 1px; height: 28px;
    background: linear-gradient(to bottom, transparent, var(--text-faint));
    position: relative;
    overflow: hidden;
}
.hero__scroll .scroll-line::after {
    content: "";
    position: absolute;
    top: -14px; left: 0; right: 0;
    height: 14px;
    background: var(--ink-red);
    animation: scroll-indicator 2s ease-in-out infinite;
}
@keyframes scroll-indicator {
    0%   { top: -14px; opacity: 0; }
    30%  { opacity: 1; }
    100% { top: 28px; opacity: 0; }
}

@media (max-width: 900px) {
    .hero__inner { grid-template-columns: 1fr; }
    .hero__box { display: none; }
    .stamp--hero { right: 0; top: 0; width: 110px; height: 110px; }
    .stamp--hero .stamp__big { font-size: 1.1rem; }
}
@media (max-width: 640px) {
    .hero { padding: 2.5rem 0 4rem; }
    .stamp--hero { position: static; transform: rotate(-6deg); margin: 1rem 0 2rem; }
}

/* ---------- MARQUEE ---------- */
.marquee {
    background: var(--ink-dark);
    color: var(--cream);
    overflow: hidden;
    padding: 1.5rem 0;
    border-top: 1px solid var(--ink-dark);
    border-bottom: 1px solid var(--ink-dark);
}
.marquee__track {
    display: flex;
    gap: 2.5rem;
    white-space: nowrap;
    animation: ticker-scroll 35s linear infinite;
    align-items: center;
    font-family: var(--serif);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    line-height: 1;
    letter-spacing: -0.01em;
}
.marquee__item {
    flex-shrink: 0;
    color: var(--cream);
}
.marquee__item em {
    font-style: italic;
    color: var(--kraft-tan);
}
.marquee__dot {
    flex-shrink: 0;
    width: 8px; height: 8px;
    background: var(--ink-red);
    border-radius: 50%;
}

/* ---------- Sections ---------- */
.section { padding: 6rem 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section--dark {
    background: var(--bg-dark);
    color: var(--text-on-dark);
    background-image:
        radial-gradient(ellipse at top right, rgba(179, 58, 31, 0.15), transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(107, 68, 35, 0.15), transparent 50%);
}
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--cream); }
.section--dark p { color: var(--text-on-dark); }
.section--dark strong { color: var(--cream); }
.on-dark { color: var(--text-on-dark); }
.section--contact {
    background:
        linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.section-head { margin-bottom: 3.5rem; }
.section-head--center { text-align: center; }
.section-head--center .section-num { margin-left: auto; margin-right: auto; display: inline-block; }

@media (max-width: 640px) {
    .section { padding: 4rem 0; }
    .section-head { margin-bottom: 2.5rem; }
}

/* ---------- ABOUT ---------- */
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: start;
}
.about__copy p { margin-bottom: 1.25rem; line-height: 1.75; }
.about__copy .lede.mono {
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.7;
    padding: 1rem 1.25rem;
    border-left: 2px solid var(--ink-red);
    background: var(--bg-paper);
    margin-bottom: 1.75rem;
}

.about__pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.pillar {
    background: var(--bg-paper);
    border: 1px solid var(--line);
    padding: 1.5rem 1.25rem;
    position: relative;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.pillar:hover {
    transform: translateY(-3px);
    border-color: var(--line-strong);
    box-shadow: var(--shadow);
}
.pillar__num {
    display: inline-block;
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    color: var(--ink-red);
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 1px dashed var(--line-strong);
}
.pillar h4 {
    font-family: var(--serif);
    font-size: 1.15rem;
    margin: 0 0 0.35rem;
    color: var(--text);
}
.pillar p {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin: 0;
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 480px) {
    .about__pillars { grid-template-columns: 1fr; }
}

/* ---------- SPLIT layout (Quality, Sustainability) ---------- */
.split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: center;
}
.split--reverse .split__copy { order: 2; }
.split--reverse .split__visual { order: 1; }

.spec-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 1.75rem;
    display: grid;
    gap: 0.65rem;
}
.spec-list li {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding-left: 0;
    font-weight: 500;
    color: var(--text);
}
.spec-list li span {
    flex-shrink: 0;
    color: var(--ink-red);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    width: 24px;
}
.spec-list--light li { color: var(--text-on-dark); }
.spec-list--light li span { color: var(--kraft-tan); }

/* Spec card — the quality section stacks this */
.spec-card {
    background: var(--bg-paper);
    border: 1px solid var(--line-strong);
    position: relative;
    box-shadow: var(--shadow);
}
.spec-card--stack {
    transform: rotate(-1deg);
    transition: transform var(--transition);
}
.spec-card--stack:hover { transform: rotate(0); }
.spec-card__head,
.spec-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.spec-card__head {
    border-bottom: 1px dashed var(--line-strong);
}
.spec-card__head span:first-child { color: var(--ink-red); }
.spec-card__body { padding: 1.5rem 1.25rem; }
.spec-card__foot {
    border-top: 1px dashed var(--line-strong);
    background:
        repeating-linear-gradient(45deg, var(--line-light) 0 4px, transparent 4px 8px);
}
.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px dashed var(--line);
}
.spec-row:last-child { border-bottom: 0; }
.spec-row__label {
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    flex-shrink: 0;
}
.spec-row__value {
    font-family: var(--serif);
    font-size: 1.125rem;
    color: var(--text);
    text-align: right;
}

@media (max-width: 900px) {
    .split { grid-template-columns: 1fr; gap: 2.5rem; }
    .split--reverse .split__copy { order: 1; }
    .split--reverse .split__visual { order: 2; }
}

/* ---------- PRODUCTS ---------- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.product-card {
    background: var(--bg-paper);
    border: 1px solid var(--line-strong);
    overflow: hidden;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
/* Corrugation edge strip on top of card */
.product-card__corrugation {
    height: 10px;
    background-image:
        repeating-linear-gradient(
            90deg,
            var(--kraft-mid) 0 3px,
            var(--kraft-tan) 3px 6px,
            var(--kraft-mid) 6px 9px
        );
    opacity: 0.55;
}
.product-card__img {
    aspect-ratio: 4 / 3;
    background-size: cover;
    background-position: center;
    background-color: var(--bg-alt);
    position: relative;
}
.product-card__img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(26, 20, 16, 0.15) 100%);
}
.product-card__body { padding: 1.5rem 1.5rem 1.75rem; flex: 1; display: flex; flex-direction: column; }
.product-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}
.product-card__tag {
    background: var(--kraft-dark);
    color: var(--cream);
    padding: 0.25rem 0.625rem;
    font-size: 0.625rem;
    letter-spacing: 0.12em;
    font-weight: 500;
}
.product-card__tag--accent {
    background: var(--ink-red);
}
.product-card h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    margin: 0 0 0.625rem;
    line-height: 1.1;
}
.product-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0 0 1.25rem;
    line-height: 1.6;
    flex: 1;
}
.product-card__specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    padding-top: 1rem;
    border-top: 1px dashed var(--line-strong);
}
.product-card__specs li {
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.25rem 0.625rem;
    border: 1px solid var(--line-strong);
}

/* Why us */
.why-us {
    margin-top: 4rem;
    padding: 2rem 2.5rem;
    background: var(--bg-paper);
    border: 1px solid var(--line-strong);
    position: relative;
}
.why-us__head {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-red);
    margin-bottom: 1.25rem;
}
.why-us__rule {
    flex: 1;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--line-strong) 0 4px, transparent 4px 8px);
}
.why-us__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}
.why-item {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--bg);
    border: 1px solid var(--line-strong);
    color: var(--text);
    font-family: var(--mono);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    font-weight: 500;
    transition: all var(--transition);
}
.why-item:hover {
    background: var(--ink-dark);
    color: var(--cream);
    border-color: var(--ink-dark);
}

/* ---------- PROCESS ---------- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
}
.process-step {
    background: var(--bg-paper);
    border: 1px solid var(--line-strong);
    padding: 1.75rem 1.5rem 1.5rem;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
}
.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.process-step__num {
    display: inline-block;
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    color: var(--ink-red);
    padding: 0.25rem 0.5rem;
    border: 1px solid var(--ink-red);
    background: var(--bg);
    margin-bottom: 1rem;
}
.process-step__icon {
    width: 44px; height: 44px;
    background: var(--ink-dark);
    color: var(--cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
}
.process-step h4 {
    font-family: var(--serif);
    font-size: 1.25rem;
    margin: 0 0 0.5rem;
    line-height: 1.15;
}
.process-step p {
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--text-muted);
    margin: 0;
}

/* ---------- Sustainability (dark) ---------- */
.eco-card {
    background: rgba(245, 236, 217, 0.04);
    border: 1px solid rgba(235, 220, 184, 0.15);
    padding: 1.75rem;
    margin-bottom: 1rem;
    transition: background var(--transition), transform var(--transition);
    position: relative;
}
.eco-card:hover {
    background: rgba(245, 236, 217, 0.07);
    transform: translateY(-2px);
}
.eco-card__icon {
    width: 48px; height: 48px;
    background: rgba(179, 58, 31, 0.18);
    color: var(--kraft-tan);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
}
.eco-card__num {
    position: absolute;
    top: 1.75rem; right: 1.75rem;
    font-size: 0.625rem;
    letter-spacing: 0.15em;
    color: var(--kraft-tan);
    opacity: 0.7;
}
.eco-card h4 {
    font-family: var(--serif);
    color: var(--cream);
    font-size: 1.25rem;
    margin: 0 0 0.5rem;
    line-height: 1.15;
}
.eco-card p {
    color: var(--text-on-dark-muted);
    font-size: 0.8125rem;
    margin: 0;
    line-height: 1.6;
}

/* ---------- CONTACT ---------- */
.contact-layout {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

/* 3 contact tiles in a row */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}
.contact-tile {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.5rem 1.5rem 1.75rem;
    background: var(--bg-paper);
    border: 1px solid var(--line-strong);
    text-decoration: none;
    color: var(--text);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}
.contact-tile::before {
    /* top corrugation strip, subtle — matches product cards */
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background-image:
        repeating-linear-gradient(90deg, var(--kraft-mid) 0 3px, var(--kraft-tan) 3px 6px, var(--kraft-mid) 6px 9px);
    opacity: 0.45;
}
.contact-tile:hover {
    transform: translateY(-3px);
    border-color: var(--ink-red);
    box-shadow: var(--shadow-md);
    color: var(--text);
}
.contact-tile__icon {
    width: 44px; height: 44px;
    background: var(--ink-dark);
    color: var(--cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
    transition: background var(--transition);
}
.contact-tile:hover .contact-tile__icon {
    background: var(--ink-red);
}
.contact-tile__label {
    font-size: 0.6875rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-red);
}
.contact-tile__value {
    font-family: var(--serif);
    font-size: 1.35rem;
    line-height: 1.15;
    color: var(--text);
}
.contact-tile__hint {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    margin-top: 0.35rem;
}

/* Map */
.map-wrap {
    border: 1px solid var(--line-strong);
    background: var(--bg-alt);
    box-shadow: var(--shadow-sm);
    position: relative;
    padding-bottom: 42%;
    height: 0;
    overflow: hidden;
}
.map-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: sepia(0.08) saturate(0.92);
}

@media (max-width: 640px) {
    .map-wrap { padding-bottom: 70%; }
    .contact-tile { padding: 1.25rem 1.25rem 1.5rem; }
    .contact-tile__value { font-size: 1.15rem; }
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--bg-dark);
    color: var(--text-on-dark);
    padding-top: 4rem;
    position: relative;
}
.footer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background-image:
        repeating-linear-gradient(
            90deg,
            var(--kraft-mid) 0 3px,
            var(--kraft-tan) 3px 6px,
            var(--kraft-mid) 6px 9px
        );
    opacity: 0.6;
}
.footer__row {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.5rem;
    padding-bottom: 3rem;
}
.footer .brand__name { color: var(--cream); }
.footer .brand__tag { color: var(--text-on-dark-muted); }
.footer__blurb {
    margin-top: 1rem;
    color: var(--text-on-dark-muted);
    font-size: 0.875rem;
    max-width: 400px;
    line-height: 1.65;
}
.footer__col h5 {
    font-family: var(--mono);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--kraft-tan);
    margin: 0 0 1rem;
    font-weight: 500;
}
.footer__col ul li {
    margin-bottom: 0.5rem;
    color: var(--text-on-dark-muted);
    font-size: 0.875rem;
}
.footer__col ul li a {
    color: var(--text-on-dark-muted);
    transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--cream); }

.footer__legal {
    border-top: 1px solid rgba(235, 220, 184, 0.1);
    padding: 1.5rem 0;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-on-dark-muted);
}
.footer__legal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer__legal-right { color: var(--kraft-tan); }

@media (max-width: 760px) {
    .footer__row { grid-template-columns: 1fr; gap: 2rem; }
    .footer__legal-row { justify-content: center; text-align: center; }
}

/* ---------- Back to top ---------- */
.to-top {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    width: 44px; height: 44px;
    background: var(--ink-dark);
    color: var(--cream);
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 50;
}
.to-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}
.to-top:hover {
    background: var(--ink-red);
    color: var(--cream);
    transform: translateY(-2px);
}

/* ---------- Print ---------- */
@media print {
    .header, .ticker, .to-top, .nav-toggle, .mobile-menu,
    .hero__actions, .stamp--hero, .marquee, .hero__scroll { display: none !important; }
    body { background: #fff; color: #000; }
    a { color: #000; text-decoration: underline; }
    .reveal { opacity: 1 !important; transform: none !important; }
}

/* ---------- Reduce motion (belt-and-braces) ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .ticker__track, .marquee__track { animation: none !important; }
    .hero__scroll .scroll-line::after { animation: none !important; }
}
