/* ════════════════════════════════════════════════════════════
   LOS Group — los-1
   Design system: warm-paper canvas, brand green accent,
   editorial serif + clean sans, generous rhythm, soft motion.
   ════════════════════════════════════════════════════════════ */

:root {
    /* ── Palette ─────────────────────────────────────── */
    --paper:        #f5f2ea;
    --paper-2:      #efeadc;
    --surface:      #ffffff;
    --ink:          #16170f;
    --ink-2:        #2d2e25;
    --muted:        #6c6b5e;
    --muted-2:      #9b9a8d;
    --line:         rgba(22, 23, 15, 0.10);
    --line-soft:    rgba(22, 23, 15, 0.06);

    --brand:        #88c43d;
    --brand-deep:   #527226;
    --brand-darker: #2f461b;
    --brand-soft:   #e7f0d3;

    --night:        #1a1d12;
    --night-2:      #232718;

    /* ── Type ─────────────────────────────────────── */
    --font-display: "Fraunces", "Times New Roman", serif;
    --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

    /* ── Sizing ─────────────────────────────────────── */
    --container:    1280px;
    --gutter:       clamp(20px, 4vw, 48px);
    --radius-sm:    8px;
    --radius:       18px;
    --radius-lg:    28px;
    --radius-pill:  999px;

    /* ── Motion ─────────────────────────────────────── */
    --ease:         cubic-bezier(.2, .8, .2, 1);
    --ease-out:     cubic-bezier(.16, 1, .3, 1);
    --t-fast:       180ms;
    --t-med:        320ms;
    --t-slow:       640ms;

    /* ── Shadow ─────────────────────────────────────── */
    --shadow-sm:    0 1px 2px rgba(22, 23, 15, 0.04), 0 1px 1px rgba(22, 23, 15, 0.02);
    --shadow:       0 14px 30px -16px rgba(22, 23, 15, 0.18), 0 4px 10px -6px rgba(22, 23, 15, 0.08);
    --shadow-lg:    0 30px 60px -28px rgba(22, 23, 15, 0.25);
}

/* ════════ Reset & base ════════ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t-med) var(--ease); }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; transition: background var(--t-med) var(--ease), color var(--t-med) var(--ease), transform var(--t-med) var(--ease), border-color var(--t-med) var(--ease); }
ul, ol { list-style: none; padding: 0; margin: 0; }
input, select, textarea { font: inherit; color: inherit; }

::selection { background: var(--brand); color: var(--brand-darker); }

.container {
    width: 100%;
    max-width: var(--container);
    padding-inline: var(--gutter);
    margin-inline: auto;
}

/* ════════ Type system ════════ */
.section-title {
    font-family: var(--font-display);
    font-weight: 380;
    font-size: clamp(2.1rem, 4.5vw, 3.6rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink);
    margin: 0.4em 0 0.5em;
    font-variation-settings: "opsz" 90, "SOFT" 30, "WONK" 0;
}
.section-title--light { color: #f5efe0; }
.serif-italic {
    font-style: italic;
    font-weight: 320;
    color: var(--brand-deep);
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.section-title--light .serif-italic { color: var(--brand); }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--brand-deep);
    padding: 6px 12px 6px 8px;
    background: var(--brand-soft);
    border-radius: var(--radius-pill);
}
.eyebrow__dot {
    width: 6px; height: 6px;
    background: var(--brand-deep);
    border-radius: 50%;
    animation: pulse 2.4s var(--ease) infinite;
}
.eyebrow--dark { background: rgba(22, 23, 15, 0.05); color: var(--ink); }
.eyebrow--dark .eyebrow__dot { background: var(--brand-deep); }
.eyebrow--light { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.85); }

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(1.5); opacity: 0.5; }
}

/* ════════ Buttons ════════ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: -0.005em;
    border-radius: var(--radius-pill);
    transition: all var(--t-med) var(--ease);
    white-space: nowrap;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}
.btn svg { transition: transform var(--t-med) var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--primary {
    background: var(--ink);
    color: #f5efe0;
}
.btn--primary:hover { background: var(--brand-deep); }

.btn--ghost {
    background: transparent;
    border-color: var(--line);
    color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #f5efe0; border-color: var(--ink); }

.btn--text {
    padding: 14px 4px;
    border-bottom: 1px solid currentColor;
    border-radius: 0;
}
.btn--text:hover { color: var(--brand-deep); }

.btn--block { width: 100%; justify-content: center; padding: 16px 22px; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
    padding-bottom: 6px;
    transition: all var(--t-med) var(--ease);
}
.link-arrow span { transition: transform var(--t-med) var(--ease); }
.link-arrow:hover { color: var(--brand-deep); border-color: var(--brand-deep); }
.link-arrow:hover span { transform: translateX(4px); }

.link-inline {
    color: var(--brand-deep);
    font-weight: 500;
    border-bottom: 1px solid var(--brand-deep);
    padding-bottom: 2px;
}

/* ════════ Utility bar ════════ */
.utility-bar {
    background: var(--ink);
    color: rgba(245, 239, 224, 0.78);
    font-size: 0.78rem;
}
.utility-bar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    height: 40px;
}
.utility-bar__left,
.utility-bar__right {
    display: flex;
    align-items: center;
    gap: 22px;
}
.utility-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color var(--t-fast) var(--ease);
}
.utility-bar__item svg { color: var(--brand); flex-shrink: 0; }
.utility-bar__right .utility-bar__item:hover { color: #fff; }
.utility-bar__item--portal {
    padding: 4px 10px;
    background: rgba(136, 196, 61, 0.16);
    border: 1px solid rgba(136, 196, 61, 0.35);
    border-radius: var(--radius-pill);
    color: var(--brand) !important;
    transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.utility-bar__item--portal:hover {
    background: var(--brand);
    color: var(--brand-darker) !important;
    border-color: var(--brand);
}
.utility-bar__item--portal svg { color: inherit; }
.utility-bar__socials { display: flex; gap: 6px; }
.utility-bar__social {
    width: 26px; height: 26px;
    display: grid; place-items: center;
    border-radius: 50%;
    background: rgba(245, 239, 224, 0.08);
    transition: all var(--t-fast) var(--ease);
}
.utility-bar__social:hover { background: var(--brand); color: var(--brand-darker); }

/* ════════ Header / nav ════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(245, 242, 234, 0.86);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: all var(--t-med) var(--ease);
}
.site-header.is-scrolled {
    background: rgba(245, 242, 234, 0.95);
    border-bottom-color: var(--line-soft);
    box-shadow: 0 4px 16px -10px rgba(22, 23, 15, 0.15);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
    gap: 24px;
}
.logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.primary-nav > ul {
    display: flex;
    align-items: center;
    gap: 4px;
}
.primary-nav > ul > li > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--ink-2);
    border-radius: var(--radius-pill);
    transition: background var(--t-med) var(--ease), color var(--t-med) var(--ease);
}
.primary-nav > ul > li > a:hover { background: rgba(22, 23, 15, 0.05); color: var(--ink); }
.primary-nav > ul > li > a.is-active {
    color: var(--brand-darker);
    background: var(--brand-soft);
}
.primary-nav .has-mega { position: relative; }
.primary-nav .has-mega > a svg { transition: transform var(--t-fast) var(--ease); }
.primary-nav .has-mega:hover > a svg { transform: rotate(180deg); }

.primary-nav .has-mega { position: relative; }
/* Bridge the gap between trigger and menu so the dropdown stays open while moving the cursor down */
.primary-nav .has-mega::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    height: 18px;
    pointer-events: none;
}
.primary-nav .has-mega:hover::after { pointer-events: auto; }

.mega-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    width: min(720px, 90vw);
    display: grid;
    grid-template-columns: 1fr 1.1fr 1.2fr;
    gap: 28px;
    padding: 28px;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--line-soft);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--t-med) var(--ease), transform var(--t-med) var(--ease), visibility var(--t-med);
}
.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
    transition-delay: 80ms;
}
.mega-menu__kicker {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-deep);
    margin-bottom: 14px;
}
.mega-menu__col ul { display: flex; flex-direction: column; gap: 4px; }
.mega-menu__col a {
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--ink-2);
    font-weight: 500;
    font-size: 0.88rem;
    background: transparent;
}
.mega-menu__col a:hover { background: var(--paper-2); color: var(--ink); }
.mega-menu__feature {
    background: var(--ink);
    color: #f5efe0;
    padding: 22px;
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.mega-menu__feature h4 {
    margin: 4px 0 8px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.2;
    color: #f5efe0;
}
.mega-menu__feature p { margin: 0 0 14px; font-size: 0.85rem; color: rgba(245,239,224,0.7); }
.mega-menu__feature .link-inline { color: var(--brand); border-color: var(--brand); }

.site-header__cta {
    display: flex;
    align-items: center;
    gap: 14px;
}
.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface);
}
.nav-toggle span {
    width: 18px; height: 1.5px; background: var(--ink);
    transition: all var(--t-med) var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ════════ Hero ════════ */
.hero {
    position: relative;
    padding: clamp(60px, 8vw, 110px) 0 clamp(80px, 9vw, 130px);
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    top: -200px; right: -200px;
    width: 600px; height: 600px;
    background: radial-gradient(closest-side, rgba(136, 196, 61, 0.18), transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: center;
    gap: clamp(40px, 6vw, 80px);
}
.hero__copy { max-width: 620px; }

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 6.2vw, 5.2rem);
    font-weight: 350;
    line-height: 1.02;
    letter-spacing: -0.035em;
    color: var(--ink);
    margin: 22px 0 24px;
    font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
}
.hero__title-accent {
    display: inline-block;
    position: relative;
    color: var(--brand-deep);
}
.hero__title-accent em {
    font-style: italic;
    font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
    font-weight: 320;
}
.hero__title-accent::after {
    content: "";
    position: absolute;
    left: 0; right: 0;
    bottom: 6px;
    height: 8px;
    background: var(--brand);
    opacity: 0.32;
    border-radius: 2px;
    z-index: -1;
}

.hero__sub {
    font-size: clamp(1rem, 1.2vw, 1.12rem);
    line-height: 1.65;
    color: var(--muted);
    max-width: 540px;
    margin: 0 0 32px;
}

.hero__cta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.hero__meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 0;
    padding-top: 32px;
    border-top: 1px solid var(--line);
}
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta dt {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted-2);
    margin-bottom: 6px;
}
.hero__meta dd {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 2.6vw, 2.5rem);
    font-weight: 400;
    line-height: 1;
    margin: 0;
    color: var(--ink);
    letter-spacing: -0.02em;
    font-variation-settings: "opsz" 144, "SOFT" 40;
}

.hero__visual {
    position: relative;
    aspect-ratio: 4 / 5;
    max-height: 660px;
}
.hero__image-wrap {
    position: relative;
    width: 100%; height: 100%;
}
.hero__image {
    border-radius: var(--radius-lg);
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}
.hero__image--primary {
    width: 78%;
    height: 100%;
    margin-left: auto;
}
.hero__image--secondary {
    position: absolute;
    bottom: 12%; left: 0;
    width: 42%;
    aspect-ratio: 4/5;
    height: auto;
    border: 6px solid var(--paper);
    z-index: 2;
    animation: floatSlow 7s ease-in-out infinite;
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

.hero__badge {
    position: absolute;
    top: 8%; left: -8%;
    width: 124px; height: 124px;
    border-radius: 0;
    background: var(--brand);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-display);
    box-shadow: var(--shadow);
    z-index: 3;
    transition: transform var(--t-med) var(--ease);
}
.hero__badge:hover { transform: scale(1.04); }
.hero__badge-num {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.04em;
    font-variation-settings: "opsz" 144, "SOFT" 80;
}
.hero__badge-num sup { font-size: 1.1rem; vertical-align: super; }
.hero__badge-label {
    font-family: var(--font-sans);
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    margin-top: 6px;
    line-height: 1.2;
}

.hero__quote {
    position: absolute;
    right: -20px;
    bottom: -10px;
    max-width: 280px;
    background: var(--surface);
    border-radius: var(--radius);
    padding: 20px 22px;
    box-shadow: var(--shadow-lg);
    z-index: 3;
    border: 1px solid var(--line-soft);
}
.hero__quote > svg { color: var(--brand-deep); opacity: 0.5; margin-bottom: 6px; }
.hero__quote p {
    margin: 0;
    font-family: var(--font-display);
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--ink);
    font-weight: 380;
    font-variation-settings: "opsz" 90, "SOFT" 50;
}
.hero__quote cite {
    display: block;
    margin-top: 10px;
    font-size: 0.74rem;
    font-style: normal;
    color: var(--muted);
    letter-spacing: 0.04em;
}

.hero__scroll-hint {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted-2);
}
.hero__scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--muted-2) 0%, transparent 100%);
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%   { transform: scaleY(0); transform-origin: top; }
    49%  { transform: scaleY(1); transform-origin: top; }
    50%  { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ════════ Marquee ════════ */
.marquee {
    background: var(--ink);
    color: #f5efe0;
    padding: 22px 0;
    overflow: hidden;
    border-top: 1px solid rgba(245,239,224,0.06);
    border-bottom: 1px solid rgba(245,239,224,0.06);
}
.marquee__track {
    display: flex;
    gap: 36px;
    width: max-content;
    animation: marqueeScroll 36s linear infinite;
}
.marquee__group {
    display: flex;
    align-items: center;
    gap: 36px;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.2vw, 2.2rem);
    font-weight: 380;
    font-variation-settings: "opsz" 144, "SOFT" 40;
    white-space: nowrap;
    padding-right: 36px;
}
.marquee__dot { color: var(--brand); font-size: 0.6em; }
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ════════ About ════════ */
.about {
    padding: clamp(80px, 10vw, 140px) 0;
    position: relative;
}
.about__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(40px, 7vw, 100px);
    align-items: center;
}
.about__visual {
    position: relative;
    aspect-ratio: 4 / 4.4;
}
.about__image-frame {
    width: 100%; height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: rotate(-1.5deg);
}
.about__image-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 800ms var(--ease);
}
.about__visual:hover .about__image-frame img { transform: scale(1.05); }

.about__sticker {
    position: absolute;
    bottom: -30px; left: -30px;
    width: 160px; height: 160px;
    background: var(--paper);
    border: 1px dashed var(--brand-deep);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--brand-darker);
    box-shadow: var(--shadow);
    transform: rotate(-8deg);
}
.about__sticker-num {
    font-family: var(--font-sans);
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-weight: 600;
}
.about__sticker-year {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.04em;
    font-variation-settings: "opsz" 144, "SOFT" 80;
}

.about__floating-card {
    position: absolute;
    top: 6%; right: -40px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface);
    border-radius: var(--radius);
    padding: 14px 18px 14px 14px;
    box-shadow: var(--shadow);
    max-width: 240px;
    transition: background var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}
.about__floating-icon {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--brand-deep);
    display: grid; place-items: center;
    flex-shrink: 0;
    transition: background var(--t-med) var(--ease), color var(--t-med) var(--ease);
}
.about__floating-card strong {
    display: block;
    font-size: 0.84rem;
    color: var(--ink);
    font-weight: 600;
    transition: color var(--t-med) var(--ease);
}
.about__floating-card span {
    display: block;
    font-size: 0.74rem;
    color: var(--muted);
    transition: color var(--t-med) var(--ease);
}
.about__floating-card:hover {
    background: var(--brand);
    cursor: default;
}
.about__floating-card:hover strong,
.about__floating-card:hover span { color: #fff; }
.about__floating-card:hover .about__floating-icon {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.about__copy { max-width: 580px; }
.about__lead {
    font-size: clamp(1rem, 1.15vw, 1.1rem);
    line-height: 1.65;
    color: var(--muted);
    margin: 0 0 32px;
}
.check-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: var(--surface);
    border-radius: var(--radius-sm);
    border: 1px solid var(--line-soft);
    transition: all var(--t-med) var(--ease);
}
.check-list li:hover {
    border-color: var(--brand);
    background: rgba(136, 196, 61, 0.06);
    transform: translateX(6px);
    box-shadow: 0 4px 12px -6px rgba(136, 196, 61, 0.25);
}
.check-list li:hover .check-list__icon {
    background: var(--brand-deep);
    color: #fff;
    transform: scale(1.1);
}
.check-list__icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: var(--brand);
    color: var(--brand-darker);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    padding: 0;
    line-height: 0;
    font-size: 0;
    transition: all var(--t-med) var(--ease);
}
.check-list__icon svg {
    display: block;
    margin: 0;
    flex-shrink: 0;
}
.check-list strong {
    display: block;
    font-weight: 600;
    color: var(--ink);
    font-size: 0.96rem;
    margin-bottom: 2px;
}
.check-list div span {
    display: block;
    color: var(--muted);
    font-size: 0.86rem;
}

.about__cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.about__cta-meta {
    color: var(--muted);
    font-size: 0.9rem;
}
.about__cta-meta a {
    color: var(--ink);
    font-weight: 500;
    border-bottom: 1px solid var(--line);
    transition: border-color var(--t-fast) var(--ease);
}
.about__cta-meta a:hover { border-color: var(--brand-deep); }

/* ════════ Brands ════════ */
.brands {
    padding: 60px 0 80px;
    background: var(--paper-2);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}
.brands__head {
    text-align: center;
    margin-bottom: 42px;
}
.brands__title {
    margin: 16px 0 0;
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.2vw, 1.8rem);
    font-weight: 380;
    color: var(--ink);
    letter-spacing: -0.015em;
    font-variation-settings: "opsz" 90, "SOFT" 40;
}
.brands__logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    align-items: center;
}
.brands__logo {
    aspect-ratio: 5 / 2;
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    padding: 18px;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.4s ease;
}
.brands__logo:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: translateY(-3px);
    border-color: var(--brand);
    box-shadow: var(--shadow);
}
.brands__logo img {
    max-height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* ════════ Services ════════ */
.services {
    padding: clamp(80px, 10vw, 140px) 0;
}
.services__head {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: flex-end;
    margin-bottom: 60px;
}
.services__intro {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--muted);
    margin: 0;
    max-width: 380px;
    justify-self: end;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.services__grid--two { grid-template-columns: repeat(2, 1fr); }
.service-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line-soft);
    transition: all var(--t-med) var(--ease);
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand);
}
.service-card--feature {
    background: var(--ink);
    color: #f5efe0;
    border-color: transparent;
}
.service-card--feature .service-card__body { color: #f5efe0; }
.service-card--feature h3 { color: #f5efe0 !important; }
.service-card--feature p { color: rgba(245,239,224,0.75) !important; }
.service-card--feature .service-card__index { color: rgba(245,239,224,0.55); }
.service-card--feature .link-arrow { color: #f5efe0; border-color: rgba(245,239,224,0.25); }
.service-card--feature .link-arrow:hover { color: var(--brand); border-color: var(--brand); }

.service-card__image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.service-card__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 600ms var(--ease);
}
.service-card:hover .service-card__image img { transform: scale(1.06); }
.service-card__icon {
    position: absolute;
    bottom: 16px; left: 16px;
    width: 52px; height: 52px;
    border-radius: 50%;
    background: var(--paper);
    display: grid; place-items: center;
    box-shadow: var(--shadow-sm);
}
.service-card__icon img { width: 26px; height: 26px; }

.service-card__body {
    padding: 28px 26px 32px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.service-card__index {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    font-weight: 600;
    color: var(--muted-2);
    margin-bottom: 14px;
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ink);
    margin: 0 0 12px;
    font-variation-settings: "opsz" 90, "SOFT" 40;
}
.service-card p {
    margin: 0 0 24px;
    font-size: 0.94rem;
    line-height: 1.55;
    color: var(--muted);
    flex: 1;
}

/* ════════ Products tabs ════════ */
.products {
    background: var(--night);
    color: #f5efe0;
    padding: clamp(80px, 10vw, 140px) 0;
    position: relative;
    overflow: hidden;
}
.products::before {
    content: "";
    position: absolute;
    top: -40%; left: -10%;
    width: 60%; height: 80%;
    background: radial-gradient(closest-side, rgba(136,196,61,0.15), transparent 70%);
    pointer-events: none;
}
.products::after {
    content: "";
    position: absolute;
    bottom: -20%; right: -10%;
    width: 50%; height: 70%;
    background: radial-gradient(closest-side, rgba(136,196,61,0.08), transparent 70%);
    pointer-events: none;
}
.products__inner { position: relative; z-index: 1; }
.products__head { margin-bottom: 50px; max-width: 680px; }

.tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(245,239,224,0.12);
    padding-bottom: 2px;
}
.tabs__btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    font-size: 0.92rem;
    color: rgba(245,239,224,0.55);
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all var(--t-med) var(--ease);
}
.tabs__btn:hover { color: rgba(245,239,224,0.9); }
.tabs__btn.is-active {
    color: #f5efe0;
    border-color: var(--brand);
}
.tabs__num {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-variation-settings: "opsz" 90, "SOFT" 60;
    color: var(--brand);
}
.tabs__label { font-weight: 500; }

.tab-panel {
    display: none;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(30px, 4vw, 60px);
    animation: fadeUp var(--t-slow) var(--ease) both;
}
.tab-panel.is-active { display: grid; }
.tab-panel__copy h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 380;
    color: #f5efe0;
    margin: 0 0 16px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-variation-settings: "opsz" 144, "SOFT" 50;
}
.tab-panel__copy p {
    color: rgba(245,239,224,0.7);
    line-height: 1.6;
    margin: 0;
    font-size: 0.96rem;
}

.pill-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.pill-grid--dense {
    grid-template-columns: repeat(3, 1fr);
}
.pill-card {
    background: rgba(245,239,224,0.04);
    border: 1px solid rgba(245,239,224,0.1);
    border-radius: var(--radius);
    padding: 22px 22px 24px;
    transition: all var(--t-med) var(--ease);
    cursor: default;
    position: relative;
}
.pill-card:hover {
    background: rgba(245,239,224,0.08);
    border-color: var(--brand);
    transform: translateY(-3px);
}
.pill-card__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--brand);
    color: var(--brand-darker);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 14px;
    padding: 0;
}
.pill-card__num svg { display: block; }
.pill-card strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: #f5efe0;
    margin-bottom: 6px;
    letter-spacing: -0.015em;
    font-variation-settings: "opsz" 90, "SOFT" 40;
}
.pill-card > span:not(.pill-card__num) {
    display: block;
    color: rgba(245,239,224,0.6);
    font-size: 0.84rem;
    line-height: 1.5;
}
.pill-grid--dense .pill-card { padding: 20px 22px; }
.pill-grid--dense .pill-card strong { margin: 0; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ════════ Insights ════════ */
.insights {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--paper-2);
}
.insights__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}
.insights__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 24px;
}
.insights__col {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 24px;
}

.post-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line-soft);
    transition: all var(--t-med) var(--ease);
    display: flex;
    flex-direction: column;
}
.post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand);
}
.post-card__image {
    position: relative;
    overflow: hidden;
}
.post-card--feature .post-card__image { aspect-ratio: 16/11; }
.post-card__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 700ms var(--ease);
}
.post-card:hover .post-card__image img { transform: scale(1.05); }
.post-card__tag {
    position: absolute;
    top: 16px; left: 16px;
    padding: 6px 12px;
    background: rgba(245, 242, 234, 0.95);
    backdrop-filter: blur(6px);
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--brand-darker);
    text-transform: uppercase;
}
.post-card__body {
    padding: 26px 26px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 0;
}
.post-card__meta {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted-2);
    font-weight: 600;
    margin-bottom: 10px;
}
.post-card h3 {
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 1.7vw, 1.45rem);
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: -0.018em;
    color: var(--ink);
    margin: 0 0 12px;
    font-variation-settings: "opsz" 90, "SOFT" 40;
}
.post-card p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0 0 20px;
}
.post-card .link-arrow {
    margin-top: auto;
    align-self: flex-start;
}

.post-card--horizontal {
    display: grid;
    grid-template-columns: 40% 1fr;
    border-radius: var(--radius);
}
.post-card--horizontal .post-card__image { aspect-ratio: auto; height: 100%; }
.post-card--horizontal .post-card__body { padding: 22px 24px; }
.post-card--horizontal h3 { font-size: 1.1rem; margin-bottom: 16px; }

/* ════════ Contact ════════ */
.contact {
    padding: clamp(80px, 10vw, 140px) 0;
    background: var(--ink);
    color: #f5efe0;
    position: relative;
    overflow: hidden;
}
.contact::before {
    content: "";
    position: absolute;
    top: -50%; left: 30%;
    width: 60%; height: 80%;
    background: radial-gradient(closest-side, rgba(136,196,61,0.10), transparent 70%);
    pointer-events: none;
}
.contact__inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: clamp(40px, 6vw, 80px);
    align-items: start;
    position: relative;
}
.contact__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 350;
    line-height: 1.05;
    color: #f5efe0;
    margin: 18px 0 24px;
    letter-spacing: -0.025em;
    font-variation-settings: "opsz" 144, "SOFT" 30;
}
.contact__title .serif-italic { color: var(--brand); }
.contact__sub {
    color: rgba(245,239,224,0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 36px;
    max-width: 480px;
}
.contact__channels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.contact__channel {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 22px;
    background: rgba(245,239,224,0.04);
    border: 1px solid rgba(245,239,224,0.1);
    border-radius: var(--radius);
    transition: all var(--t-med) var(--ease);
}
.contact__channel:hover {
    background: rgba(245,239,224,0.08);
    border-color: var(--brand);
    transform: translateY(-2px);
}
.contact__channel-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--brand);
    font-weight: 600;
}
.contact__channel-value {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: #f5efe0;
    letter-spacing: -0.01em;
    font-variation-settings: "opsz" 90, "SOFT" 30;
}

.contact__form {
    background: var(--surface);
    color: var(--ink);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}
.contact__form h3 {
    margin: 0 0 22px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--ink);
    letter-spacing: -0.015em;
    font-variation-settings: "opsz" 90, "SOFT" 40;
}
.field {
    margin-bottom: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.field-row .field { margin-bottom: 16px; }
.field label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
}
.field input,
.field select,
.field textarea {
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--paper);
    font-family: var(--font-sans);
    font-size: 0.94rem;
    color: var(--ink);
    transition: all var(--t-fast) var(--ease);
    width: 100%;
    resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--brand);
    background: var(--surface);
    box-shadow: 0 0 0 4px rgba(136, 196, 61, 0.18);
}
.contact__form-note {
    margin: 12px 0 0;
    text-align: center;
    font-size: 0.78rem;
    color: var(--muted);
}

/* ════════ Footer ════════ */
.footer {
    background: var(--night-2);
    color: rgba(245,239,224,0.78);
    padding: 80px 0 0;
    border-top: 1px solid rgba(245,239,224,0.06);
}
.footer__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(245,239,224,0.08);
}
.footer__logo {
    display: block;
    height: 54px;
    width: auto;
    max-width: 240px;
    object-fit: contain;
    margin-bottom: 18px;
}
.footer__tagline {
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1.4;
    color: rgba(245,239,224,0.7);
    max-width: 290px;
    margin: 0 0 22px;
    font-variation-settings: "opsz" 90, "SOFT" 50;
}
.footer__socials { display: flex; gap: 8px; }
.footer__social {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(245,239,224,0.06);
    display: grid; place-items: center;
    color: rgba(245,239,224,0.7);
    transition: all var(--t-fast) var(--ease);
}
.footer__social:hover {
    background: var(--brand);
    color: var(--brand-darker);
    transform: translateY(-2px);
}

.footer__col h4 {
    margin: 0 0 18px;
    color: #f5efe0;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
    color: rgba(245,239,224,0.7);
    font-size: 0.92rem;
    transition: color var(--t-fast) var(--ease);
    display: inline-block;
}
.footer__col a:hover { color: var(--brand); transform: translateX(3px); }

.footer__col address {
    font-style: normal;
    font-family: var(--font-display);
    font-size: 1rem;
    line-height: 1.5;
    color: #f5efe0;
    margin-bottom: 16px;
    font-variation-settings: "opsz" 90, "SOFT" 40;
}
.footer__contact-list { display: flex; flex-direction: column; gap: 8px; }
.footer__contact-list a {
    color: rgba(245,239,224,0.7);
    font-size: 0.88rem;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 22px;
    padding-bottom: 26px;
    font-size: 0.82rem;
    color: rgba(245,239,224,0.55);
    flex-wrap: wrap;
    gap: 12px;
}
.footer__bottom-right {
    display: flex;
    align-items: center;
    gap: 10px;
}
.footer__bottom-right a {
    color: rgba(245,239,224,0.55);
    transition: color var(--t-fast) var(--ease);
}
.footer__bottom-right a:hover { color: var(--brand); }

/* ════════ Float WhatsApp ════════ */
.float-whatsapp {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 54px; height: 54px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: grid; place-items: center;
    box-shadow: 0 10px 24px -8px rgba(37, 211, 102, 0.55);
    z-index: 40;
    transition: all var(--t-med) var(--ease);
}
.float-whatsapp::before {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.4);
    z-index: -1;
    animation: ringPulse 2.5s ease-out infinite;
}
.float-whatsapp:hover { transform: scale(1.08); }
@keyframes ringPulse {
    0%   { transform: scale(0.9); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* ════════ Reveal-on-scroll ════════ */
[data-reveal] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
}

/* ════════ Responsive ════════ */
@media (max-width: 1100px) {
    .hero__inner { grid-template-columns: 1fr; gap: 60px; }
    .hero__visual { max-height: 540px; margin: 0 auto; max-width: 480px; }
    .hero__scroll-hint { display: none; }
    .insights__grid { grid-template-columns: 1fr; }
    .insights__col { grid-template-rows: auto auto; }
    .post-card--horizontal { grid-template-columns: 40% 1fr; }
    .footer__inner { grid-template-columns: 1.4fr 1fr 1fr; }
    .footer__col--contact { grid-column: 1 / -1; }
    .contact__inner { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
    .utility-bar__item--hours { display: none; }
    .primary-nav { display: none; }
    .nav-toggle { display: flex; }
    .site-header__inner { height: 72px; }

    .about__inner { grid-template-columns: 1fr; }
    .about__visual { max-width: 480px; margin: 0 auto; aspect-ratio: 4/4; }
    .about__floating-card { right: 10px; }
    .services__head { grid-template-columns: 1fr; }
    .services__intro { justify-self: start; }
    .services__grid { grid-template-columns: 1fr; }
    .brands__logos { grid-template-columns: repeat(3, 1fr); }
    .tab-panel { grid-template-columns: 1fr; }
    .pill-grid { grid-template-columns: 1fr 1fr; }
    .pill-grid--dense { grid-template-columns: 1fr 1fr; }
    .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
    .footer__brand { grid-column: 1 / -1; }
    .footer__col--contact { grid-column: 1 / -1; }
    .contact__channels { grid-template-columns: 1fr; }
}

/* iPad portrait / small tablet */
@media (max-width: 768px) {
    .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer__brand { grid-column: 1 / -1; text-align: center; }
    .footer__tagline { max-width: 100%; margin: 0 auto 22px; }
    .footer__socials { justify-content: center; }
    .footer__logo { margin: 0 auto 18px; }
    .footer__col { text-align: center; }
    .footer__col ul { align-items: center; }
    .footer__col address { text-align: center; }
    .footer__bottom { flex-direction: column; align-items: center; text-align: center; gap: 8px; font-size: 0.78rem; }
    .footer__bottom-right { justify-content: center; flex-wrap: wrap; }
    .footer { padding: 50px 0 0; }
}

@media (max-width: 600px) {
    .container { padding-left: 16px; padding-right: 16px; }
    .utility-bar__left .utility-bar__item:first-child { display: none; }
    .utility-bar__right .utility-bar__item { display: none; }
    .utility-bar__right .utility-bar__item--portal { display: inline-flex; }
    .utility-bar__right .utility-bar__socials { display: flex; }
    .hero__title { font-size: 2rem; }
    .hero__sub { font-size: 1rem; }
    .hero__cta { flex-direction: column; align-items: stretch; }
    .hero__cta .btn { justify-content: center; }
    .hero__meta { grid-template-columns: 1fr 1fr; gap: 18px; }
    .hero__meta div:nth-child(3) { grid-column: 1 / -1; }
    .hero__badge { width: 80px; height: 80px; top: 2%; left: 2%; }
    .hero__badge-num { font-size: 1.4rem; }
    .hero__badge-label { font-size: 0.55rem; }
    .hero__quote { display: none; }
    .hero__image-wrap { aspect-ratio: 4/5; }

    .section-title { font-size: 1.6rem; }
    .brands__title { font-size: 1.4rem; }
    .brands__logos { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .brands__logo { padding: 12px; }
    .pill-grid, .pill-grid--dense { grid-template-columns: 1fr; }
    .insights__head { flex-direction: column; align-items: flex-start; }
    .post-card--horizontal { grid-template-columns: 1fr; }
    .post-card--horizontal .post-card__image { aspect-ratio: 16/10; }
    .post-card__meta { font-size: 0.75rem; }
    .field-row { grid-template-columns: 1fr; }
    .contact__form { padding: 20px; }
    .contact__title { font-size: 1.6rem; }
    .service-card__body { padding: 20px; }
    .service-card h3 { font-size: 1.1rem; }
    .service-card p { font-size: 0.88rem; }
    .footer__inner { grid-template-columns: 1fr; gap: 28px; }
    .footer { padding: 40px 0 0; }
    .footer__bottom { flex-direction: column; align-items: center; text-align: center; gap: 6px; }
    .footer__tagline { font-size: 0.9rem; max-width: 100%; }
    .footer__col h4 { font-size: 0.76rem; margin-bottom: 14px; }
    .footer__col a { font-size: 0.88rem; }
    .footer__col { text-align: center; }
    .footer__col ul { align-items: center; }
    .footer__col address { text-align: center; }
    .footer__brand { text-align: center; }
    .footer__socials { justify-content: center; }
    .footer__logo { margin: 0 auto 18px; }
    .about__sticker { width: 100px; height: 100px; bottom: -12px; left: -12px; }
    .about__sticker-year { font-size: 1.8rem; }
    .about__floating-card { right: 0; max-width: 180px; padding: 10px 14px; }
    .product-card__inner { padding: 16px; }
    .product-card__actions { flex-direction: column; gap: 6px; }
    .tabs__btn { padding: 14px 16px; }
    .tabs__label { font-size: 0.85rem; }
    .btn { font-size: 0.85rem; padding: 11px 22px; }
}

@media (max-width: 400px) {
    .hero__badge { display: none; }
    .hero__meta { grid-template-columns: 1fr; }
    .hero__meta div:nth-child(3) { grid-column: auto; }
    .brands__logos { grid-template-columns: 1fr 1fr; gap: 8px; }
    .brands__logo { padding: 10px; }
    .utility-bar { font-size: 0.7rem; }
    .footer__col h4 { font-size: 0.72rem; }
}

/* ════════════════════════════════════════════════════════════
   Interior-page modules
   ════════════════════════════════════════════════════════════ */

/* ── Page banner (interior hero) ─────────────────────────── */
.page-banner {
    position: relative;
    padding: clamp(60px, 7vw, 96px) 0 clamp(40px, 5vw, 64px);
    background: var(--paper);
    border-bottom: 1px solid var(--line-soft);
    overflow: hidden;
}
.page-banner::before {
    content: "";
    position: absolute;
    top: -200px; right: -120px;
    width: 480px; height: 480px;
    background: radial-gradient(closest-side, rgba(136, 196, 61, 0.20), transparent 70%);
    pointer-events: none;
}
.page-banner__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: end;
    position: relative;
}
.page-banner__title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 350;
    line-height: 1.04;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin: 18px 0 0;
    font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
    max-width: 720px;
}
.page-banner__title .serif-italic { color: var(--brand-deep); }
.page-banner__lead {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    max-width: 420px;
    justify-self: end;
}
.breadcrumbs {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.82rem;
    color: var(--muted);
}
.breadcrumbs a { color: var(--muted); transition: color var(--t-fast) var(--ease); }
.breadcrumbs a:hover { color: var(--brand-deep); }
.breadcrumbs__sep { color: var(--muted-2); }
.breadcrumbs__current { color: var(--ink); font-weight: 500; }

/* ── Prose section ─────────────────────────── */
.prose-section {
    padding: clamp(60px, 8vw, 110px) 0;
}
.prose-section--dark {
    background: var(--ink);
    color: #f5efe0;
}
.prose-section--dark .section-title { color: #f5efe0; }
.prose-section--dark .serif-italic { color: var(--brand); }

.split-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(36px, 6vw, 80px);
    align-items: center;
}
.split-grid--reverse .split-grid__visual { order: 2; }
.split-grid__visual img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

/* Sticky-image variant: image follows on scroll while content beside it scrolls past */
.split-grid--sticky {
    align-items: start;
}
.split-grid--sticky .split-grid__visual {
    position: sticky;
    top: 110px; /* clear sticky header + breathing room */
    align-self: start;
    max-height: calc(100vh - 140px);
}
.split-grid--sticky .split-grid__visual img {
    max-height: calc(100vh - 140px);
    object-fit: cover;
    object-position: center;
}
@media (max-width: 1100px) {
    .split-grid--sticky .split-grid__visual {
        position: static;
        max-height: none;
    }
    .split-grid--sticky .split-grid__visual img { max-height: none; }
}
.prose {
    max-width: 620px;
    color: var(--muted);
    line-height: 1.7;
}
.prose p { margin: 0 0 16px; font-size: 1rem; }
.prose-section--dark .prose { color: rgba(245,239,224,0.78); }

/* ── Stats band ─────────────────────────── */
.stats-band {
    padding: clamp(40px, 6vw, 80px) 0;
    background: var(--paper-2);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}
.stats-band__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.stat {
    text-align: left;
    padding-left: 18px;
    border-left: 2px solid var(--brand);
}
.stat__num {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.8vw, 3.6rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.03em;
    color: var(--ink);
    font-variation-settings: "opsz" 144, "SOFT" 40;
    display: block;
}
.stat__label {
    margin-top: 8px;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    font-weight: 600;
}

/* ── Values grid ─────────────────────────── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 40px;
}
.value-card {
    background: var(--surface);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--line-soft);
    transition: all var(--t-med) var(--ease);
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--brand);
}
.value-card__icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--brand-soft);
    color: var(--brand-deep);
    display: grid; place-items: center;
    margin-bottom: 18px;
}
.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0 0 8px;
    color: var(--ink);
    font-variation-settings: "opsz" 90, "SOFT" 40;
}
.value-card p { margin: 0; font-size: 0.92rem; color: var(--muted); line-height: 1.55; }

/* ── Timeline ─────────────────────────── */
.timeline {
    position: relative;
    padding-left: 32px;
    margin: 40px 0;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 8px; top: 8px; bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--brand) 0%, var(--line) 100%);
}
.timeline-item {
    position: relative;
    padding-bottom: 28px;
}
.timeline-item::before {
    content: "";
    position: absolute;
    left: -29px; top: 4px;
    width: 14px; height: 14px;
    background: var(--paper);
    border: 2px solid var(--brand);
    border-radius: 50%;
}
.timeline-item__year {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--brand-deep);
    margin: 0 0 4px;
    font-variation-settings: "opsz" 90, "SOFT" 50;
}
.timeline-item h3 {
    margin: 0 0 4px;
    color: var(--ink);
    font-size: 1.1rem;
    font-weight: 600;
}
.timeline-item p { margin: 0; color: var(--muted); font-size: 0.94rem; line-height: 1.55; }

/* ── Product catalog (portfolio) ─────────────────────────── */
.catalog {
    padding: clamp(60px, 8vw, 100px) 0;
}
.catalog__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}
.catalog__search {
    position: relative;
    width: 100%;
    margin-bottom: 4px;
}
.catalog__search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    pointer-events: none;
}
.catalog__search-input {
    width: 100%;
    padding: 12px 14px 12px 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    color: var(--ink);
    outline: none;
    transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
    box-sizing: border-box;
}
.catalog__search-input:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(136,196,61,0.15);
}
.catalog__search-input::placeholder { color: var(--muted); }
.filter-chip {
    padding: 10px 18px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--line);
    background: var(--surface);
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--ink-2);
    transition: all var(--t-fast) var(--ease);
    cursor: pointer;
}
.filter-chip:hover { border-color: var(--ink); }
.filter-chip.is-active {
    background: var(--ink);
    color: #f5efe0;
    border-color: var(--ink);
}
.catalog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.product-card {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--line-soft);
    overflow: hidden;
    transition: all var(--t-med) var(--ease);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-3px);
    border-color: var(--brand);
    box-shadow: var(--shadow);
}
.product-card__image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--paper-2);
}
.product-card__image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 600ms var(--ease);
}
.product-card:hover .product-card__image img { transform: scale(1.04); }
.product-card__inner {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}
.product-card__category {
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--brand-deep);
}
.product-card__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--ink);
    margin: 4px 0;
    font-variation-settings: "opsz" 90, "SOFT" 40;
    letter-spacing: -0.015em;
}
.product-card__brand {
    font-size: 0.84rem;
    color: var(--muted);
    margin: 0;
}
.product-card__actions {
    margin-top: auto;
    display: flex;
    gap: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--line-soft);
}
.product-card__cta {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.84rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: all var(--t-fast) var(--ease);
    text-decoration: none;
}
.product-card__cta--specs {
    color: var(--ink);
    border: 1px solid var(--line-soft);
    background: var(--paper);
}
.product-card__cta--specs:hover {
    border-color: var(--brand);
    color: var(--brand-deep);
}
.product-card__cta--wa {
    color: #fff;
    background: #25D366;
    border: 1px solid #25D366;
}
.product-card__cta--wa:hover {
    background: #1da851;
    border-color: #1da851;
}
.product-card__cta span { transition: transform var(--t-fast) var(--ease); }
.product-card:hover .product-card__cta span { transform: translateX(4px); }

/* ── FAQ accordion ─────────────────────────── */
.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--t-med) var(--ease);
}
.faq-item[open] {
    border-color: var(--brand);
    box-shadow: var(--shadow);
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--ink);
    font-variation-settings: "opsz" 90, "SOFT" 40;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--brand-soft);
    color: var(--brand-deep);
    display: grid; place-items: center;
    transition: transform var(--t-med) var(--ease);
}
.faq-item[open] .faq-icon { transform: rotate(45deg); background: var(--brand); }
.faq-body {
    padding: 0 24px 24px;
    color: var(--muted);
    line-height: 1.65;
    font-size: 0.96rem;
    margin: 0;
}

/* ── Article body (blog post) ─────────────────────────── */
.article {
    padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 100px);
}
.article__inner {
    /* matches the homepage container width — wide visual presence */
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
/* Inner text columns constrained for comfortable reading */
.article .breadcrumbs,
.article__meta,
.article__title,
.article__lead,
.article__body,
.article__share {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.article__hero {
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 0 0 40px;
    box-shadow: var(--shadow);
}
.article__hero img {
    width: 100%; height: 100%; object-fit: cover;
}
.article__meta {
    display: flex;
    gap: 18px;
    margin-bottom: 14px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted-2);
    font-weight: 600;
}
.article__meta-tag {
    color: var(--brand-deep);
}
.article__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.6vw, 3rem);
    font-weight: 380;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin: 0 0 26px;
    color: var(--ink);
    font-variation-settings: "opsz" 144, "SOFT" 30;
}
.article__lead {
    font-size: 1.18rem;
    line-height: 1.55;
    color: var(--ink-2);
    margin: 0 0 36px;
    font-family: var(--font-display);
    font-weight: 350;
    font-variation-settings: "opsz" 90, "SOFT" 60;
}
.article__body {
    color: var(--ink-2);
    line-height: 1.75;
    font-size: 1.02rem;
}
.article__body h2 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--ink);
    margin: 50px 0 18px;
    letter-spacing: -0.02em;
    font-variation-settings: "opsz" 90, "SOFT" 40;
}
.article__body h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ink);
    margin: 30px 0 10px;
}
.article__body p { margin: 0 0 18px; color: var(--muted); }
.article__body ul, .article__body ol {
    margin: 0 0 22px;
    padding-left: 22px;
    color: var(--muted);
}
.article__body li { margin-bottom: 8px; padding-left: 6px; }
.article__body ul li::marker { color: var(--brand-deep); }
.article__body blockquote {
    margin: 30px 0;
    padding: 22px 28px;
    border-left: 3px solid var(--brand);
    background: var(--paper-2);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--ink);
    font-variation-settings: "opsz" 90, "SOFT" 80;
}
.article__share {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}
.article__share-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    color: var(--muted);
}
.article__share a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--paper-2);
    color: var(--ink);
    display: grid; place-items: center;
    transition: all var(--t-fast) var(--ease);
}
.article__share a:hover { background: var(--brand); color: var(--brand-darker); }

/* ── Blog index list ─────────────────────────── */
.blog-list {
    padding: clamp(60px, 8vw, 100px) 0;
}
.blog-list__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

/* ── Map + contact split ─────────────────────────── */
.contact-grid {
    padding: clamp(60px, 8vw, 110px) 0;
}
.contact-grid__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-info__item {
    display: flex;
    gap: 16px;
    padding: 18px;
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-sm);
    transition: all var(--t-fast) var(--ease);
}
.contact-info__item:hover {
    border-color: var(--brand);
    transform: translateX(2px);
}
.contact-info__icon {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--brand-soft);
    color: var(--brand-deep);
    display: grid; place-items: center;
    flex-shrink: 0;
}
.contact-info__label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 4px;
}
.contact-info__value {
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 1.04rem;
    line-height: 1.4;
    font-variation-settings: "opsz" 90, "SOFT" 40;
}
.contact-info__value a { display: block; }
.contact-info__value a:hover { color: var(--brand-deep); }

.map-wrap {
    aspect-ratio: 16 / 11;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--line-soft);
    background: var(--paper-2);
    box-shadow: var(--shadow);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.2) contrast(1.05); }

/* ── Self-service portal banner ─────────────────────────── */
.portal-banner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 32px clamp(24px, 4vw, 44px);
    background: var(--ink);
    color: #f5efe0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
    overflow: hidden;
    position: relative;
}
.portal-banner::before {
    content: "";
    position: absolute;
    inset: 0 -10% 0 60%;
    background: radial-gradient(closest-side, rgba(136, 196, 61, 0.18), transparent 70%);
    pointer-events: none;
}
.portal-banner:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}
.portal-banner__icon {
    width: 60px; height: 60px;
    border-radius: 18px;
    background: var(--brand);
    color: var(--brand-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}
.portal-banner__copy { position: relative; }
.portal-banner__kicker {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 6px;
}
.portal-banner__title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.2vw, 1.75rem);
    font-weight: 400;
    letter-spacing: -0.015em;
    color: #f5efe0;
    margin: 0 0 4px;
    line-height: 1.15;
    font-variation-settings: "opsz" 90, "SOFT" 40;
}
.portal-banner__sub {
    margin: 0;
    color: rgba(245, 239, 224, 0.7);
    font-size: 0.94rem;
    line-height: 1.5;
}
.portal-banner__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    background: var(--brand);
    color: var(--brand-darker);
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.92rem;
    white-space: nowrap;
    transition: transform var(--t-med) var(--ease);
    position: relative;
}
.portal-banner:hover .portal-banner__cta svg { transform: translateX(3px); }
.portal-banner__cta svg { transition: transform var(--t-med) var(--ease); }

@media (max-width: 760px) {
    .portal-banner {
        grid-template-columns: 1fr;
        gap: 18px;
        text-align: left;
        padding: 26px;
    }
    .portal-banner__cta { justify-self: start; }
}

/* ── Support hero with icons ─────────────────────────── */
.support-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 40px;
}
.support-feature {
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--line-soft);
    border-radius: var(--radius);
    transition: all var(--t-med) var(--ease);
}
.support-feature:hover {
    border-color: var(--brand);
    transform: translateY(-3px);
}
.support-feature__num {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--brand-deep);
    margin: 0;
    line-height: 1;
    font-variation-settings: "opsz" 144, "SOFT" 50;
}
.support-feature h3 {
    font-size: 0.98rem;
    font-weight: 600;
    margin: 14px 0 6px;
    color: var(--ink);
}
.support-feature p { margin: 0; font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

/* ── Page CTA band ─────────────────────────── */
.cta-band {
    padding: clamp(60px, 8vw, 100px) 0;
    background: var(--ink);
    color: #f5efe0;
    position: relative;
    overflow: hidden;
}
.cta-band::before {
    content: "";
    position: absolute;
    top: -30%; right: -10%;
    width: 60%; height: 80%;
    background: radial-gradient(closest-side, rgba(136,196,61,0.13), transparent 70%);
    pointer-events: none;
}
.cta-band__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    flex-wrap: wrap;
}
.cta-band__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 350;
    line-height: 1.1;
    color: #f5efe0;
    margin: 0;
    max-width: 640px;
    letter-spacing: -0.02em;
    font-variation-settings: "opsz" 144, "SOFT" 30;
}
.cta-band__title .serif-italic { color: var(--brand); }
.cta-band__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-band .btn--ghost { color: #f5efe0; border-color: rgba(245,239,224,0.25); }
.cta-band .btn--ghost:hover { background: rgba(245,239,224,0.08); border-color: #f5efe0; }
.cta-band .btn--primary { background: var(--brand); color: var(--brand-darker); }
.cta-band .btn--primary:hover { background: #fff; color: var(--ink); }

/* ── Responsive interior pages ─────────────────────────── */
@media (max-width: 1100px) {
    .page-banner__inner { grid-template-columns: 1fr; align-items: flex-start; }
    .page-banner__lead { justify-self: start; }
    .split-grid { grid-template-columns: 1fr; }
    .split-grid--reverse .split-grid__visual { order: 0; }
    .stats-band__grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .catalog__grid { grid-template-columns: repeat(2, 1fr); }
    .blog-list__grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid__inner { grid-template-columns: 1fr; }
    .support-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
    .stats-band__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .values-grid { grid-template-columns: 1fr; }
    .catalog__grid { grid-template-columns: 1fr; }
    .blog-list__grid { grid-template-columns: 1fr; }
    .support-features { grid-template-columns: 1fr 1fr; gap: 14px; }
    .cta-band__inner { flex-direction: column; align-items: flex-start; }
    .page-banner__title { font-size: clamp(2rem, 8vw, 2.6rem); }
    .catalog__filters { gap: 6px; padding-bottom: 18px; margin-bottom: 28px; }
    .filter-chip { padding: 8px 14px; font-size: 0.8rem; }
    .catalog__search-input { font-size: 0.85rem; padding: 10px 12px 10px 36px; }
    .catalog__search-icon { left: 10px; width: 14px; height: 14px; }
    .article__title { font-size: clamp(1.7rem, 6vw, 2.2rem); }
    .article__lead { font-size: 1.05rem; }
    .article__body { font-size: 0.98rem; }
    .article__body h2 { font-size: 1.4rem; margin-top: 36px; }
    .map-wrap { aspect-ratio: 4/3; }
    .contact-info__item { padding: 14px; }
    .product-card { padding: 20px; }
}
@media (max-width: 480px) {
    .stats-band__grid { grid-template-columns: 1fr; }
    .support-features { grid-template-columns: 1fr; }
    .contact-info__value { font-size: 0.96rem; }
    .breadcrumbs { font-size: 0.74rem; }
    .page-banner { padding-top: 40px; padding-bottom: 30px; }
    .article__hero { aspect-ratio: 4/3; border-radius: var(--radius); }
}

/* ════════ Mobile nav drawer ════════ */
.mobile-nav-open .primary-nav {
    display: block;
    position: fixed;
    inset: 84px 0 0 0;
    background: var(--paper);
    padding: 30px var(--gutter);
    border-top: 1px solid var(--line);
    overflow-y: auto;
    z-index: 51;
}
.mobile-nav-open .primary-nav ul {
    flex-direction: column;
    gap: 4px;
    align-items: stretch;
}
.mobile-nav-open .primary-nav a {
    padding: 18px 16px;
    font-size: 1.1rem;
    justify-content: space-between;
    border-radius: var(--radius-sm);
    width: 100%;
}
.mobile-nav-open .mega-menu { display: none; }
.mobile-nav-open { overflow: hidden; }
