/* ============================================================
   KC PAPER PACKAGING — editorial design system
   Serif display (Source Serif 4) + Archivo grotesque
   KC Red #D81E22 · Graphite #2C2F34 · Paper neutrals
   ============================================================ */
:root {
    --red: #d81e22;
    --red-dark: #b01418;
    --graphite: #2c2f34;
    --ink: #17181b;
    --paper: #faf9f5;
    --warm: #f0ede6;
    --warm-deep: #e7e2d6;
    --kraft: #c9a173;
    --muted: #6e7178;
    --line: #e2ded3;
    --line-dark: #3a3e44;
    --serif: "Source Serif 4", Georgia, serif;
    --sans: "Archivo", Arial, sans-serif;
    --shadow:
        0 2px 8px rgba(23, 24, 27, 0.05), 0 12px 32px rgba(23, 24, 27, 0.07);
    --shadow-lg:
        0 4px 12px rgba(23, 24, 27, 0.08), 0 24px 56px rgba(23, 24, 27, 0.14);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: var(--sans);
    font-weight: 500;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

::selection {
    background: var(--red);
    color: #fff;
}

/* ---------- type ---------- */
.kicker {
    font-family: var(--sans);
    color: var(--red);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 12px;
}
.kicker::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--red);
    flex: none;
}
.kicker.center {
    justify-content: center;
}
.kicker.center::after {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--red);
    flex: none;
}
h1.display,
h2.display {
    font-family: var(--serif);
    font-weight: 600;
    letter-spacing: -0.015em;
    line-height: 1.06;
    color: var(--ink);
}
h1.display {
    font-size: clamp(2.6rem, 6vw, 4.6rem);
}
h2.display {
    font-size: clamp(1.9rem, 3.8vw, 2.9rem);
    line-height: 1.12;
}
.display em {
    font-style: italic;
    color: var(--red);
}
.lead {
    font-size: 1.07rem;
    color: #4c4f55;
    max-width: 600px;
}

/* ---------- header ---------- */
header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(250, 249, 245, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    height: 74px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 13px;
}
.brand img {
    height: 46px;
    width: auto;
    transition: transform 0.3s;
}
.brand:hover img {
    transform: rotate(-8deg);
}
.brand b {
    font-weight: 800;
    letter-spacing: 0.05em;
    font-size: 0.92rem;
    text-transform: uppercase;
    line-height: 1.25;
}
.brand b small {
    display: block;
    font-weight: 600;
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    color: var(--muted);
}
nav.menu {
    display: flex;
    gap: 34px;
    align-items: center;
}
nav.menu a {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--graphite);
    position: relative;
    padding: 6px 0;
}
nav.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--red);
    transition: width 0.25s ease;
}
nav.menu a:hover::after,
nav.menu a.active::after {
    width: 100%;
}
nav.menu a.active {
    color: var(--red);
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.22s ease;
    cursor: pointer;
    border: none;
}
.btn .arr {
    transition: transform 0.22s;
}
.btn:hover .arr {
    transform: translateX(5px);
}
.btn-red {
    background: var(--red);
    color: #fff;
    box-shadow: 0 6px 18px rgba(216, 30, 34, 0.28);
}
.btn-red:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(216, 30, 34, 0.34);
}
.btn-ghost {
    border: 1.5px solid var(--graphite);
    color: var(--graphite);
    background: transparent;
}
.btn-ghost:hover {
    background: var(--graphite);
    color: #fff;
    transform: translateY(-2px);
}
.btn-white {
    background: #fff;
    color: var(--graphite);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}
.nav-cta {
    padding: 11px 22px !important;
}
.nav-cta::after {
    display: none !important;
}

/* ---------- hero (home) ---------- */
.hero {
    background:
        radial-gradient(
            1100px 500px at 85% -10%,
            rgba(216, 30, 34, 0.05),
            transparent 60%
        ),
        linear-gradient(180deg, var(--warm) 0%, var(--paper) 100%);
    overflow: hidden;
    position: relative;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: center;
    padding: 84px 0 96px;
}
.hero h1 {
    margin: 22px 0 26px;
}
.hero-sub {
    display: flex;
    gap: 14px;
    margin-top: 38px;
    flex-wrap: wrap;
}
.hero-points {
    display: flex;
    gap: 28px;
    margin-top: 44px;
    flex-wrap: wrap;
}
.hero-points div {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--graphite);
    display: flex;
    gap: 8px;
    align-items: center;
}
.hero-points div::before {
    content: "";
    width: 7px;
    height: 7px;
    background: var(--red);
    border-radius: 50%;
    flex: none;
}

.hero-stage {
    position: relative;
    height: 560px;
}
.hero-card {
    position: absolute;
    background: #fff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s ease;
}
.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-card:hover {
    transform: scale(1.025) rotate(0deg) !important;
    z-index: 5;
}
.hc-1 {
    width: 54%;
    height: 78%;
    left: 0;
    top: 4%;
    transform: rotate(-2.5deg);
    z-index: 2;
}
.hc-2 {
    width: 42%;
    height: 56%;
    right: 2%;
    top: 0;
    transform: rotate(2deg);
    z-index: 1;
}
.hc-3 {
    width: 40%;
    height: 44%;
    right: 8%;
    bottom: 2%;
    transform: rotate(-1.5deg);
    z-index: 3;
}
.hero-badge {
    position: absolute;
    z-index: 6;
    left: 42%;
    bottom: 8%;
    background: var(--graphite);
    color: #fff;
    border-radius: 50%;
    width: 128px;
    height: 128px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: var(--shadow-lg);
    animation: spin-slow 0s;
}
.hero-badge b {
    font-family: var(--serif);
    font-size: 1.5rem;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: #ff9a9c;
}

/* ---------- hero visual (segment-synced) ---------- */
.hero-visual {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4/3.4;
    box-shadow: var(--shadow-lg);
    background: var(--warm-deep);
}
.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    box-shadow: inset 0 0 0 1px rgba(23, 24, 27, 0.08);
    pointer-events: none;
}
.hero-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.045);
    /* transition:
        opacity 0.9s ease,
        transform 6s linear; */
}
.hero-visual img.on {
    opacity: 1;
    transform: scale(1);
}
.hero-frame {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 34px;
    height: 34px;
    z-index: 3;
    border-top: 3px solid var(--red);
    border-right: 3px solid var(--red);
}
.hero-cap {
    position: absolute;
    left: 18px;
    bottom: 18px;
    z-index: 3;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-left: 3px solid var(--red);
    border-radius: 3px;
    padding: 10px 16px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--graphite);
}
.hero-fsc {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    background: var(--graphite);
    color: #fff;
    border-radius: 50%;
    width: 104px;
    height: 104px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.56rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    box-shadow: var(--shadow-lg);
}
.hero-fsc b {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.3rem;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
    color: #ff9a9c;
}

/* ---------- ticker ---------- */
.ticker {
    background: var(--graphite);
    color: #fff;
    overflow: hidden;
    padding: 15px 0;
    border-top: 3px solid var(--red);
}
.ticker-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: ticker 36s linear infinite;
}
.ticker span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    padding: 0 26px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 26px;
}
.ticker span::after {
    content: "●";
    color: var(--red);
    font-size: 0.55rem;
}
@keyframes ticker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ---------- sections ---------- */
section {
    padding: 96px 0;
}
section.tight {
    padding: 72px 0;
}
section.alt {
    background: var(--warm);
}
.sec-head {
    max-width: 760px;
    margin-bottom: 56px;
}
.sec-head h2 {
    margin-top: 20px;
}
.sec-head p {
    margin-top: 18px;
}
.sec-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

/* ---------- value cards ---------- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.vcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 34px 30px;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease;
}
.vcard::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.vcard:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.vcard:hover::before {
    transform: scaleX(1);
}
.vcard .num {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--red);
    font-weight: 600;
}
.vcard h3 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.35rem;
    margin: 10px 0 12px;
    letter-spacing: -0.01em;
}
.vcard p {
    font-size: 0.93rem;
    color: var(--muted);
}

/* ---------- product cards ---------- */
.pcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.pcard:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
}
.pcard .ph {
    position: relative;
    aspect-ratio: 1/1.04;
    overflow: hidden;
    background: #f4f2ec;
}
.pcard .ph img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.pcard:hover .ph img {
    transform: scale(1.06);
}
.pcard .ph .sku {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--red);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 6px 10px;
    border-radius: 2px;
}
.pcard .ph .corner {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 22px;
    height: 22px;
    border-top: 2.5px solid var(--red);
    border-right: 2.5px solid var(--red);
    opacity: 0.9;
}
.pcard .pbody {
    padding: 24px 24px 26px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.pcard h3 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.28rem;
    letter-spacing: -0.01em;
    line-height: 1.25;
}
.pcard .meta {
    margin-top: 6px;
    font-size: 0.78rem;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.04em;
}
.pcard ul {
    list-style: none;
    margin-top: 16px;
    font-size: 0.85rem;
    flex: 1;
}
.pcard ul li {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 8px 0;
    border-top: 1px dashed var(--line);
}
.pcard ul li b {
    font-weight: 700;
    color: var(--graphite);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding-top: 2px;
    white-space: nowrap;
}
.pcard ul li span {
    text-align: right;
    color: var(--muted);
}

/* family intro rows */
.fam {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 54px;
    align-items: center;
    margin-bottom: 60px;
}
.fam .fam-img {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}
.fam .fam-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}
.fam .fam-img:hover img {
    transform: scale(1.05);
}
.fam h2 {
    margin-top: 18px;
}
.fam p {
    margin-top: 16px;
    color: var(--muted);
}

/* ---------- dark band ---------- */
.band {
    background: var(--graphite);
    color: #fff;
    border-radius: 10px;
    padding: 58px 60px;
    position: relative;
    overflow: hidden;
}
.band::after {
    content: "";
    position: absolute;
    right: -80px;
    top: -80px;
    width: 340px;
    height: 340px;
    border: 54px solid rgba(216, 30, 34, 0.16);
    border-radius: 50%;
}
.band .kicker {
    color: #ff8a8c;
}
.band .kicker::before {
    background: var(--red);
}
.band h3 {
    font-family: var(--serif);
    font-weight: 500;
    font-size: clamp(1.35rem, 2.6vw, 1.9rem);
    line-height: 1.4;
    max-width: 880px;
    margin-top: 18px;
    position: relative;
    z-index: 1;
}
.band h3 em {
    color: #ff9a9c;
}
.band p {
    color: #b9bcc2;
    max-width: 760px;
    margin-top: 14px;
    position: relative;
    z-index: 1;
}

/* ---------- flow ---------- */
.flow {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    counter-reset: step;
}
.flow > div {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 20px 12px 16px;
    text-align: center;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--graphite);
    position: relative;
    transition:
        transform 0.25s,
        box-shadow 0.25s;
}
.flow > div:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-color: var(--red);
}
.flow > div::before {
    counter-increment: step;
    content: counter(step, decimal-leading-zero);
    display: block;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.25rem;
    color: var(--red);
    margin-bottom: 6px;
    letter-spacing: 0;
}
section.alt .flow > div {
    border-color: var(--warm-deep);
}

/* ---------- stats ---------- */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}
.stat {
    border-left: 3px solid var(--red);
    padding: 6px 0 6px 22px;
}
.stat b {
    display: block;
    font-family: var(--serif);
    font-size: 2.3rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.stat span {
    font-size: 0.85rem;
    color: var(--muted);
}

/* ---------- segment strip ---------- */
.segments {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 14px;
}
.seg {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 0;
    text-align: left;
    overflow: hidden;
    transition: all 0.25s;
    display: block;
}
.seg:hover {
    border-color: var(--red);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.seg img {
    width: 100%;
    height: 104px;
    object-fit: cover;
    display: block;
}
.seg .st {
    padding: 13px 14px 16px;
}
.seg b {
    display: block;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.4;
}
.seg span {
    font-size: 0.69rem;
    color: var(--muted);
    display: block;
    margin-top: 4px;
}

/* ---------- spec table ---------- */
table.spec {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}
table.spec th,
table.spec td {
    text-align: left;
    padding: 18px 18px;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}
table.spec tr:last-child td {
    border-bottom: none;
}
table.spec th {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #fff;
    background: var(--graphite);
    border-bottom: 3px solid var(--red);
}
table.spec td:first-child {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.05rem;
    white-space: nowrap;
}
table.spec tr:hover td {
    background: #fcfbf8;
}
.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.chip {
    border: 1px solid var(--line);
    border-radius: 3px;
    padding: 4px 10px;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--graphite);
    background: var(--paper);
    white-space: nowrap;
    transition: all 0.2s;
}
.chip:hover {
    border-color: var(--red);
    color: var(--red);
}
td.note {
    color: var(--muted);
    font-size: 0.84rem;
    max-width: 260px;
}

/* ---------- compliance ---------- */
.comp {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.comp div {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 20px 22px;
    font-size: 0.86rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.25s;
}
.comp div:hover {
    border-color: var(--red);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.comp div::before {
    content: "✓";
    color: #fff;
    background: var(--red);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex: none;
}

/* ---------- about page ---------- */
.about-hero-img {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: -40px;
    position: relative;
    z-index: 2;
}
.about-hero-img img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
}
.quote-block {
    border-left: 4px solid var(--red);
    padding: 10px 0 10px 30px;
    margin: 30px 0;
}
.quote-block p {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.35rem;
    line-height: 1.5;
    color: var(--graphite);
}

/* ---------- page hero (inner pages) ---------- */
.page-hero {
    background:
        radial-gradient(
            900px 380px at 90% -20%,
            rgba(216, 30, 34, 0.06),
            transparent 60%
        ),
        linear-gradient(180deg, var(--warm) 0%, var(--paper) 100%);
    padding: 78px 0 64px;
}
.page-hero h1 {
    margin-top: 20px;
}
.page-hero .lead {
    margin-top: 22px;
}

/* ---------- contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1.55fr 1fr;
    gap: 34px;
    align-items: start;
}
.form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 42px;
    box-shadow: var(--shadow);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 24px;
}
.field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.field.full {
    grid-column: 1/-1;
}
.field label {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--graphite);
}
.field input,
.field select,
.field textarea {
    font-family: var(--sans);
    font-size: 0.95rem;
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: var(--paper);
    color: var(--ink);
    transition: all 0.2s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--red);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(216, 30, 34, 0.1);
}
.side-card {
    background: var(--graphite);
    color: #fff;
    border-radius: 10px;
    padding: 38px 34px;
    position: sticky;
    top: 100px;
}
.side-card h3 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.6rem;
}
.side-card h3 em {
    font-style: italic;
    color: #ff9a9c;
}
.side-card > p {
    color: #b9bcc2;
    font-size: 0.92rem;
    margin-top: 12px;
}
.c-line {
    padding: 18px 0;
    border-top: 1px solid var(--line-dark);
    margin-top: 18px;
}
.c-line:first-of-type {
    margin-top: 26px;
}
.c-line span {
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #ff8a8c;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}
.c-line a,
.c-line b {
    font-weight: 700;
    font-size: 0.95rem;
    color: #fff;
}
.c-line a:hover {
    color: #ff9a9c;
}
.enq-ways {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 54px;
}

/* ---------- footer ---------- */
footer {
    background: var(--graphite);
    color: #b9bcc2;
    padding: 70px 0 36px;
    border-top: 4px solid var(--red);
}
.f-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 44px;
}
.f-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.92rem;
}
.f-brand img {
    height: 44px;
    background: #fff;
    border-radius: 50%;
    padding: 4px;
}
.f-grid p {
    font-size: 0.86rem;
    margin-top: 18px;
    max-width: 300px;
}
.f-grid h4 {
    color: #fff;
    font-size: 0.74rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.f-grid ul {
    list-style: none;
}
.f-grid ul li {
    margin-bottom: 10px;
}
.f-grid ul a {
    font-size: 0.9rem;
    transition: color 0.2s;
}
.f-grid ul a:hover {
    color: #ff9a9c;
}
.f-tag {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.12rem;
    color: #fff;
    line-height: 1.5;
}
.f-bottom {
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid var(--line-dark);
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    font-size: 0.78rem;
    color: #8d9197;
}
.f-bottom a:hover {
    color: #fff;
}

/* ---------- containment & wrapping fixes ---------- */
.vcard {
    display: block;
    min-width: 0;
}
.vcard h3,
.vcard p {
    overflow-wrap: anywhere;
}
.pcard,
.pbody {
    min-width: 0;
}
.pcard h3,
.pcard .meta,
.pcard ul li span {
    overflow-wrap: anywhere;
}
.c-line a,
.c-line b {
    overflow-wrap: anywhere;
    display: block;
}
.field {
    min-width: 0;
}
.field input,
.field select,
.field textarea {
    width: 100%;
    min-width: 0;
}
.form-grid {
    min-width: 0;
}
.acc summary {
    padding-right: 6px;
    gap: 14px;
}
.acc summary span {
    min-width: 0;
}
.acc .acc-body {
    overflow-wrap: anywhere;
}
table.spec td,
table.spec th {
    overflow-wrap: anywhere;
}
.mega-list a,
.mega-list a span {
    min-width: 0;
}
.mega-list a b,
.mega-list a small {
    overflow-wrap: anywhere;
}
.stat {
    min-width: 0;
}
.stat b {
    line-height: 1.15;
    overflow-wrap: anywhere;
}
.stat span {
    overflow-wrap: anywhere;
}
.spec-list div {
    min-width: 0;
}
.spec-list span {
    overflow-wrap: anywhere;
}
.contact-grid,
.enq-grid {
    min-width: 0;
}
.contact-grid > *,
.enq-grid > * {
    min-width: 0;
}
footer .f-grid > div {
    min-width: 0;
}
footer p,
footer a {
    overflow-wrap: anywhere;
}

/* ---------- reveal animations ---------- */
.rv {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}
.rv.in {
    opacity: 1;
    transform: none;
}
.rv-d1 {
    transition-delay: 0.08s;
}
.rv-d2 {
    transition-delay: 0.16s;
}
.rv-d3 {
    transition-delay: 0.24s;
}
@media (prefers-reduced-motion: reduce) {
    .rv {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .ticker-track {
        animation: none;
    }
}

/* ============================================================
   V2 COMPONENTS — product pages, filters, motion
   ============================================================ */

/* scroll progress */
#progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--red);
    z-index: 300;
    transition: width 0.1s linear;
}

/* rotating word */
.rotator {
    display: inline-block;
    position: relative;
    color: var(--red);
    font-style: italic;
    min-width: 5.2ch;
}
.rotator span {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transform: translateY(14px);
    transition:
        opacity 0.45s,
        transform 0.45s;
    white-space: nowrap;
}
.rotator span.on {
    position: relative;
    opacity: 1;
    transform: none;
}

/* filter bar */
.filterbar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 34px 0 44px;
    position: sticky;
    top: 74px;
    z-index: 90;
    background: var(--paper);
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
}
.fbtn {
    border: 1.5px solid var(--line);
    background: #fff;
    color: var(--graphite);
    border-radius: 30px;
    padding: 9px 20px;
    font-family: var(--sans);
    font-weight: 700;
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}
.fbtn:hover {
    border-color: var(--red);
    color: var(--red);
}
.fbtn.on {
    background: var(--graphite);
    border-color: var(--graphite);
    color: #fff;
}
.fbtn .ct {
    color: var(--red);
    margin-left: 6px;
}
.fbtn.on .ct {
    color: #ff9a9c;
}
.pgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.pgrid .pcard.hide {
    display: none;
}

/* breadcrumbs */
.crumbs {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    flex-wrap: wrap;
}
.crumbs a:hover {
    color: var(--red);
}
.crumbs span.sep {
    color: var(--red);
}

/* product hero */
.phero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    padding: 54px 0 80px;
}
.phero-img {
    position: sticky;
    top: 104px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
}
.phero-img img {
    width: 100%;
    aspect-ratio: 1/1.05;
    object-fit: cover;
}
.phero-img .sku-tag {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--graphite);
    color: #fff;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 8px 13px;
    border-radius: 2px;
}
.phero-img .corner {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 30px;
    height: 30px;
    border-top: 3px solid var(--red);
    border-right: 3px solid var(--red);
}
.phero-img .custom-flag {
    position: absolute;
    bottom: 18px;
    left: 18px;
    right: 18px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(6px);
    border-left: 3px solid var(--red);
    padding: 12px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--graphite);
}
.phero h1 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(2.1rem, 4.2vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: -0.015em;
    margin: 16px 0 6px;
}
.phero h1 em {
    font-style: italic;
    color: var(--red);
}
.phero .tagline {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.18rem;
    color: var(--muted);
}
.phero .desc {
    margin-top: 20px;
    color: #4c4f55;
}
.spec-list {
    margin-top: 30px;
    border-top: 2px solid var(--graphite);
}
.spec-list div {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 18px;
    padding: 13px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
}
.spec-list b {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
    padding-top: 3px;
}
.spec-list span {
    color: #43464c;
}
.custom-box {
    margin-top: 30px;
    background: var(--warm);
    border: 1px solid var(--warm-deep);
    border-radius: 8px;
    padding: 24px 26px;
}
.custom-box h4 {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}
.custom-box h4::before {
    content: "✎";
    color: var(--red);
}
.custom-box p {
    font-size: 0.86rem;
    color: var(--muted);
    margin-top: 6px;
}
.custom-box .chips {
    margin-top: 14px;
}
.phero-ctas {
    display: flex;
    gap: 14px;
    margin-top: 32px;
    flex-wrap: wrap;
}

/* made-to-measure strip */
.mtm {
    background: var(--graphite);
    color: #fff;
    padding: 64px 0;
}
.mtm .wrap {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 50px;
    align-items: center;
}
.mtm h2 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    line-height: 1.2;
}
.mtm h2 em {
    font-style: italic;
    color: #ff9a9c;
}
.mtm-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.mtm-steps div {
    border-left: 2px solid var(--red);
    padding-left: 18px;
}
.mtm-steps b {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 6px;
    color: #ff9a9c;
}
.mtm-steps p {
    font-size: 0.85rem;
    color: #b9bcc2;
}

/* embedded enquiry */
.enq-embed {
    background: var(--warm);
}
.enq-grid {
    display: grid;
    grid-template-columns: 1fr 1.7fr;
    gap: 44px;
    align-items: start;
}
.enq-note h2 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    line-height: 1.15;
    margin-top: 16px;
}
.enq-note h2 em {
    font-style: italic;
    color: var(--red);
}
.enq-note p {
    margin-top: 16px;
    color: var(--muted);
    font-size: 0.95rem;
}
.enq-note .pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 30px;
    padding: 9px 18px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 22px;
}
.enq-note .pill::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
}

/* related + prev/next */
.related h2 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.8rem;
}
.related h2 em {
    font-style: italic;
    color: var(--red);
}
.pn {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
}
.pn a {
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transition: background 0.2s;
}
.pn a:hover {
    background: var(--warm);
}
.pn a + a {
    border-left: 1px solid var(--line);
    text-align: right;
    align-items: flex-end;
}
.pn span {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--red);
}
.pn b {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.2rem;
}

/* accordion */
.acc {
    border-top: 1px solid var(--line);
}
.acc details {
    border-bottom: 1px solid var(--line);
}
.acc summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 4px;
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.12rem;
    transition: color 0.2s;
}
.acc summary:hover {
    color: var(--red);
}
.acc summary::-webkit-details-marker {
    display: none;
}
.acc summary::after {
    content: "+";
    color: var(--red);
    font-size: 1.5rem;
    font-family: var(--sans);
    font-weight: 400;
    transition: transform 0.25s;
    flex: none;
}
.acc details[open] summary::after {
    transform: rotate(45deg);
}
.acc .acc-body {
    padding: 0 4px 24px;
    color: var(--muted);
    font-size: 0.93rem;
    max-width: 760px;
}

/* counters */
.stat b .cnt {
    font-variant-numeric: tabular-nums;
}

/* custom section (home) */
.custom-hero {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    margin-top: 48px;
}
.custom-hero .cc {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 22px 16px;
    text-align: center;
    transition: all 0.25s;
}
.custom-hero .cc:hover {
    transform: translateY(-4px);
    border-color: var(--red);
    box-shadow: var(--shadow);
}
.custom-hero .cc b {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.3rem;
    color: var(--red);
    display: block;
}
.custom-hero .cc span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-top: 8px;
    color: var(--graphite);
}

@media (max-width: 1020px) {
    .phero {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .phero-img {
        position: static;
        max-width: 560px;
    }
    .enq-grid,
    .mtm .wrap {
        grid-template-columns: 1fr;
    }
    .pgrid {
        grid-template-columns: 1fr 1fr;
    }
    .custom-hero {
        grid-template-columns: repeat(3, 1fr);
    }
    .mtm-steps {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}
@media (max-width: 680px) {
    .pgrid {
        grid-template-columns: 1fr;
    }
    .custom-hero {
        grid-template-columns: 1fr 1fr;
    }
    .pn {
        grid-template-columns: 1fr;
    }
    .pn a + a {
        border-left: none;
        border-top: 1px solid var(--line);
    }
    .spec-list div {
        grid-template-columns: 120px 1fr;
    }
    .filterbar {
        top: 64px;
    }
}

/* ============================================================
   V3 — mega menu, explorer, mobile nav, image loading
   ============================================================ */

/* ----- image blur-in ----- */
img.lz {
    opacity: 0;
    transform: scale(1.04);
    filter: blur(10px);
    transition:
        opacity 0.7s ease,
        transform 0.9s ease,
        filter 0.7s ease;
}
img.lz.ld {
    opacity: 1;
    transform: none;
    filter: none;
}

/* ----- mega menu ----- */
.has-mega {
    position: relative;
}
.has-mega > a .car {
    display: inline-block;
    font-size: 0.62rem;
    margin-left: 5px;
    transition: transform 0.25s;
    color: var(--red);
}
.has-mega.open > a .car {
    transform: rotate(180deg);
}
.mega {
    position: fixed;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    top: 74px;
    width: min(1060px, calc(100vw - 40px));
    background: #fff;
    border: 1px solid var(--line);
    border-top: 3px solid var(--red);
    border-radius: 0 0 12px 12px;
    box-shadow: 0 30px 80px rgba(23, 24, 27, 0.18);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s;
    display: grid;
    grid-template-columns: 250px 1fr;
    overflow: hidden;
    z-index: 250;
}
.has-mega.open .mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.mega-rail {
    background: var(--warm);
    padding: 22px 0;
    border-right: 1px solid var(--line);
}
.mega-rail button {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 100%;
    text-align: left;
    border: none;
    background: none;
    padding: 16px 26px;
    cursor: pointer;
    font-family: var(--sans);
    border-left: 3px solid transparent;
    transition: all 0.18s;
}
.mega-rail button b {
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--graphite);
}
.mega-rail button span {
    font-size: 0.72rem;
    color: var(--muted);
}
.mega-rail button:hover,
.mega-rail button.on {
    background: #fff;
    border-left-color: var(--red);
}
.mega-rail button.on b {
    color: var(--red);
}
.mega-rail .mega-all {
    margin-top: 10px;
    padding: 16px 26px;
    display: block;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--red);
}
.mega-rail .mega-all:hover {
    text-decoration: underline;
}
.mega-panel {
    display: none;
    grid-template-columns: 1fr 240px;
    gap: 0;
}
.mega-panel.on {
    display: grid;
}
.mega-list {
    padding: 26px 10px 26px 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 18px;
    align-content: start;
}
.mega-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px 10px;
    border-radius: 6px;
    transition: background 0.15s;
}
.mega-list a:hover {
    background: var(--warm);
}
.mega-list a img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid var(--line);
    flex: none;
}
.mega-list a b {
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--graphite);
    line-height: 1.25;
    display: block;
}
.mega-list a small {
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--red);
    text-transform: uppercase;
}
.mega-feat {
    position: relative;
    overflow: hidden;
}
.mega-feat img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}
.mega-feat .mf-cap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 36px 18px 16px;
    background: linear-gradient(transparent, rgba(23, 24, 27, 0.78));
    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.mega-backdrop {
    position: fixed;
    inset: 0;
    top: 74px;
    background: rgba(23, 24, 27, 0.28);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s;
    z-index: 150;
}
.mega-backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* neutralise nav link styling inside the mega panel */
.mega a {
    text-transform: none;
    letter-spacing: 0;
    font-size: inherit;
    border-bottom: none;
    padding-bottom: 0;
}
.mega a::after {
    display: none !important;
}
.mega-rail .mega-all {
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 0.74rem;
}
.mega-feat .mf-cap {
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* ----- burger / mobile nav ----- */
.burger {
    display: none;
    border: none;
    background: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.burger i {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--graphite);
    border-radius: 2px;
    transition: 0.3s;
}
.mobnav {
    display: none;
    position: fixed;
    inset: 0;
    top: 74px;
    background: var(--paper);
    z-index: 220;
    padding: 28px;
    overflow-y: auto;
}
.mobnav.show {
    display: block;
}
.mobnav > a {
    display: block;
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}
.mobnav details {
    border-bottom: 1px solid var(--line);
}
.mobnav summary {
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;
    padding: 16px 0;
    cursor: pointer;
}
.mobnav summary::-webkit-details-marker {
    display: none;
}
.mobnav summary::after {
    content: "+";
    color: var(--red);
}
.mobnav details[open] summary::after {
    content: "–";
}
.mobnav .mseg {
    padding: 0 0 8px 8px;
}
.mobnav .mseg b {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
    margin: 14px 0 6px;
}
.mobnav .mseg a {
    display: block;
    padding: 7px 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--graphite);
}
.mobnav .btn {
    margin-top: 24px;
    width: 100%;
    justify-content: center;
}
body.lock {
    overflow: hidden;
}

/* ----- segment explorer (home) ----- */
.explore {
    display: flex;
    gap: 14px;
    height: 540px;
}
.xp {
    position: relative;
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.6s cubic-bezier(0.3, 0.7, 0.2, 1);
    background: var(--graphite);
}
.xp.openx {
    flex: 3.6;
}
.xp > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:
        transform 0.8s ease,
        opacity 0.5s;
    opacity: 0.85;
}
.xp.openx > img {
    transform: scale(1.06);
    opacity: 1;
}
.xp .shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        185deg,
        rgba(23, 24, 27, 0.1) 30%,
        rgba(23, 24, 27, 0.86) 100%
    );
}
.xp .xnum {
    position: absolute;
    top: 20px;
    left: 20px;
    font-family: var(--serif);
    font-style: italic;
    font-size: 1.15rem;
    color: #fff;
    opacity: 0.9;
    z-index: 2;
}
.xp .xlabel {
    position: absolute;
    left: 24px;
    bottom: 22px;
    z-index: 2;
    color: #fff;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    transition: opacity 0.3s;
    white-space: nowrap;
}
.xp.openx .xlabel {
    opacity: 0;
}
.xp .xbody {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 28px;
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.45s 0.25s,
        transform 0.45s 0.25s;
    color: #fff;
}
.xp.openx .xbody {
    opacity: 1;
    transform: none;
}
.xp .xbody h3 {
    font-family: var(--serif);
    font-weight: 600;
    font-size: 1.7rem;
}
.xp .xbody h3 em {
    font-style: italic;
    color: #ff9a9c;
}
.xp .xbody p {
    font-size: 0.88rem;
    color: #d4d6da;
    margin-top: 6px;
    max-width: 420px;
}
.xp .xlinks {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.xp .xlinks a {
    background: rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 30px;
    transition: all 0.2s;
    white-space: nowrap;
}
.xp .xlinks a:hover {
    background: var(--red);
    border-color: var(--red);
}
.xp .xall {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border-bottom: 2px solid var(--red);
    padding-bottom: 4px;
}

@media (max-width: 1020px) {
    .mega,
    .mega-backdrop {
        display: none !important;
    }
    .has-mega > a .car {
        display: none;
    }
    nav.menu > a:not(.nav-cta),
    .has-mega {
        display: none;
    }
    .burger {
        display: flex;
    }
    .explore {
        flex-direction: column;
        height: auto;
    }
    .xp {
        min-height: 120px;
        flex: none;
    }
    .xp.openx {
        flex: none;
        min-height: 420px;
    }
    .xp .xlabel {
        writing-mode: horizontal-tb;
        transform: none;
        bottom: 18px;
    }
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
    .hero-grid {
        grid-template-columns: 1fr;
        padding: 56px 0 64px;
    }
    .hero-stage {
        height: 480px;
        max-width: 560px;
    }
    .hero-visual {
        max-width: 620px;
        aspect-ratio: 4/3;
    }
    .flow,
    .segments {
        grid-template-columns: repeat(4, 1fr);
    }
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .f-grid {
        grid-template-columns: 1fr 1fr;
    }
    .fam {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .side-card {
        position: static;
    }
}
@media (max-width: 680px) {
    .grid-3,
    .grid-2,
    .grid-4,
    .comp,
    .form-grid,
    .enq-ways {
        grid-template-columns: 1fr;
    }
    .stats {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .flow,
    .segments {
        grid-template-columns: repeat(2, 1fr);
    }
    nav.menu {
        gap: 18px;
    }
    nav.menu a:not(.nav-cta) {
        font-size: 0.72rem;
    }
    .brand b small {
        display: none;
    }
    .brand b {
        font-size: 0.8rem;
    }
    .band {
        padding: 36px 26px;
    }
    .form-card {
        padding: 26px 20px;
    }
    .hero-stage {
        height: 380px;
    }
    .f-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    table.spec {
        display: block;
        overflow-x: auto;
    }
    section {
        padding: 64px 0;
    }
}

.hero-visual img {
    transition: none !important;
}

.brand b {
    display: flex;
    flex-direction: column;
}

.brand-name {
    display: block;
}

.brand small {
    display: block;
}
/* Mobile hero fix */
@media (max-width: 768px) {
    .hero {
        width: 100%;
        overflow: hidden;
    }

    .hero .wrap {
        width: 100%;
        max-width: 100%;
        padding: 0 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        width: 100%;
        margin-top: 20px !important;
    }

    .hero-grid > div {
        width: 100%;
        min-width: 0;
    }

    .hero h1 {
        font-size: 42px;
        line-height: 1.05;
        word-break: normal;
    }

    .hero .lead {
        width: 100%;
    }

    .hero-visual {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        overflow: hidden;
    }

    .hero-visual img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-sub {
        flex-wrap: wrap;
    }
}
