/* Premium home: editorial industrial redesign. */
body.premium-home {
    --p-black: #050505;
    --p-ink: #11110f;
    --p-paper: #f1f0e9;
    --p-paper-deep: #e8e6dc;
    --p-white: #f7f7f2;
    --p-orange: #ff5b0a;
    --p-lime: #dfff2f;
    --p-ease: cubic-bezier(.22, 1, .36, 1);
    background: var(--p-black);
    color: var(--p-white);
    font-family: "Archivo", sans-serif;
}

.premium-home *,
.premium-home *::before,
.premium-home *::after { box-sizing: border-box; }
.premium-home main { overflow: clip; }
.premium-home img { max-width: 100%; }

.premium-shell {
    width: min(100% - 56px, 1320px);
    margin-inline: auto;
}

.premium-skip {
    position: fixed;
    top: 10px;
    left: 10px;
    z-index: 10000;
    padding: 12px 16px;
    color: #050505;
    background: var(--p-lime);
    border-radius: 999px;
    font-weight: 700;
    transform: translateY(-150%);
    transition: transform .2s ease;
}
.premium-skip:focus { transform: translateY(0); }

/* Header */
.premium-home .header {
    height: 86px;
    background: linear-gradient(to bottom, rgba(5,5,5,.7), transparent);
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    transition: height .3s var(--p-ease), background .3s ease, box-shadow .3s ease;
}
.premium-home .header.is-scrolled {
    height: 72px;
    background: rgba(7,7,7,.88);
    border-bottom: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 14px 50px rgba(0,0,0,.32);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
}
.premium-home .header > .container {
    width: min(100% - 48px, 1380px);
    max-width: none;
}
.premium-home .header-main {
    min-height: 86px;
    padding: 0;
    transition: min-height .3s var(--p-ease);
}
.premium-home .header.is-scrolled .header-main { min-height: 72px; }
.premium-home .logo {
    position: relative;
    z-index: 3;
    gap: 10px;
    font-family: "Archivo", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.025em;
}
.premium-home .logo i,
.premium-home .footer-brand h3 i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--p-black);
    background: var(--p-white);
    box-shadow: none;
    font-size: 13px;
}
.premium-home .nav {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 2;
    width: auto;
    min-height: 86px;
    border: 0;
    transform: translateX(-50%);
    transition: min-height .3s var(--p-ease);
}
.premium-home .header.is-scrolled .nav { min-height: 72px; }
.premium-home .nav > .container {
    width: auto;
    max-width: none;
    padding: 0;
}
.premium-home .nav-list {
    flex-wrap: nowrap;
    gap: clamp(16px, 2vw, 30px);
}
.premium-home .nav-list a {
    padding: 30px 0;
    color: rgba(255,255,255,.76);
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    transition: color .2s ease, padding .3s var(--p-ease);
}
.premium-home .header.is-scrolled .nav-list a { padding-block: 23px; }
.premium-home .nav-list a::after {
    right: auto;
    bottom: 21px;
    width: 100%;
    height: 1px;
    background: var(--p-orange);
    transform-origin: left;
}
.premium-home .header.is-scrolled .nav-list a::after { bottom: 15px; }
.premium-home .header-actions {
    position: relative;
    z-index: 3;
    gap: 10px;
}
.premium-home .nav-quote-btn {
    min-height: 42px;
    padding: 0 20px;
    border: 1px solid rgba(255,255,255,.85);
    border-radius: 999px;
    color: var(--p-black);
    background: var(--p-white);
    box-shadow: none;
    font-size: 12px;
    font-weight: 600;
}
.premium-home .nav-quote-btn:hover {
    color: #fff;
    background: var(--p-orange);
    border-color: var(--p-orange);
    box-shadow: none;
}
.premium-home .header-action,
.premium-home .mobile-menu-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    border-color: rgba(255,255,255,.18);
    border-radius: 50%;
    background: rgba(9,9,9,.32);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.premium-home .header-action:hover,
.premium-home .mobile-menu-btn:hover {
    border-color: rgba(255,255,255,.55);
    background: rgba(255,255,255,.12);
}
.premium-home .cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    min-width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #050505;
    background: var(--p-lime);
    box-shadow: 0 0 0 2px #080808;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
}

/* Shared */
.premium-kicker {
    display: flex;
    align-items: center;
    margin: 0;
    color: rgba(255,255,255,.72);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .13em;
    line-height: 1.2;
    text-transform: uppercase;
}
.premium-kicker--dark { color: rgba(17,17,15,.66); }
.premium-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.premium-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    cursor: pointer;
    transition: color .22s ease, background .22s ease, border-color .22s ease, transform .22s var(--p-ease);
}
.premium-button:hover { transform: translateY(-2px); }
.premium-button:focus-visible,
.premium-text-link:focus-visible,
.premium-range-card:focus-visible,
.premium-report-list a:focus-visible,
.premium-contact-links a:focus-visible {
    outline: 3px solid var(--p-lime);
    outline-offset: 4px;
}
.premium-button--light {
    color: #050505;
    background: var(--p-white);
}
.premium-button--light:hover {
    color: #fff;
    background: var(--p-orange);
}
.premium-button--ghost {
    color: #fff;
    background: rgba(8,8,8,.24);
    border-color: rgba(255,255,255,.38);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.premium-button--ghost:hover {
    border-color: rgba(255,255,255,.9);
    background: rgba(255,255,255,.1);
}
.premium-button--orange {
    color: #080808;
    background: var(--p-orange);
}
.premium-button--orange:hover { background: #ff7a36; }
.premium-button--ink {
    color: #fff;
    background: var(--p-ink);
}
.premium-button--ink:hover { background: #2b2b26; }
.premium-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 5px;
    color: var(--p-ink);
    border-bottom: 1px solid currentColor;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}
.premium-text-link i {
    font-size: 10px;
    transition: transform .2s ease;
}
.premium-text-link:hover i { transform: translateX(4px); }
.premium-text-link--light { color: var(--p-white); }

/* Hero */
.premium-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: #050505;
}
.premium-hero__image,
.premium-hero__scrim {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.premium-hero__image {
    z-index: 0;
    object-fit: cover;
    object-position: center;
    transform: scale(1.015);
    animation: premiumHeroIn 1.3s var(--p-ease) both;
}
@keyframes premiumHeroIn {
    from { opacity: .45; transform: scale(1.055); }
    to { opacity: 1; transform: scale(1.015); }
}
.premium-hero__scrim {
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(4,4,4,.97) 0%, rgba(4,4,4,.78) 31%, rgba(4,4,4,.13) 61%, rgba(4,4,4,.1) 100%),
        linear-gradient(to top, rgba(4,4,4,.9), transparent 42%),
        linear-gradient(to bottom, rgba(4,4,4,.4), transparent 32%);
}
.premium-hero__layout {
    position: relative;
    z-index: 2;
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(0,1fr) 310px;
    align-items: end;
    gap: 80px;
    padding-top: 150px;
    padding-bottom: 82px;
}
.premium-hero__copy { max-width: 910px; }
.premium-hero h1 {
    margin: 36px 0 30px;
    max-width: 9ch;
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(58px, 8vw, 126px);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: .86;
    text-transform: uppercase;
}
.premium-hero h1 em {
    color: var(--p-orange);
    font-style: normal;
    font-weight: inherit;
}
.premium-hero__lead {
    max-width: 620px;
    margin: 0 0 34px;
    color: rgba(255,255,255,.76);
    font-size: clamp(16px,1.35vw,20px);
    line-height: 1.55;
}
.premium-hero__note {
    align-self: end;
    padding: 24px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 18px;
    background: rgba(10,10,10,.44);
    backdrop-filter: blur(20px) saturate(120%);
    -webkit-backdrop-filter: blur(20px) saturate(120%);
}
.premium-hero__note-index {
    display: block;
    margin-bottom: 34px;
    color: rgba(255,255,255,.48);
    font-size: 10px;
    letter-spacing: .14em;
}
.premium-hero__note p {
    margin: 0 0 6px;
    color: rgba(255,255,255,.56);
    font-size: 12px;
}
.premium-hero__note strong {
    display: block;
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: -.04em;
    line-height: 1.05;
}
.premium-hero__note a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 17px;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,.15);
    font-size: 11px;
    text-decoration: none;
}

/* Manifesto */
.premium-manifesto {
    padding: clamp(110px,14vw,210px) 0;
    color: var(--p-ink);
    background: var(--p-paper);
}
.premium-manifesto__grid {
    display: grid;
    grid-template-columns: 180px minmax(0,1fr);
    gap: clamp(40px,7vw,120px);
}
.premium-section-index {
    display: block;
    padding-top: 12px;
    color: rgba(17,17,15,.62);
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.premium-section-index p { margin: 0; }
.premium-manifesto__content h2 {
    max-width: 1050px;
    margin: 0;
    color: var(--p-ink) !important;
    font-size: clamp(44px,6vw,92px);
    font-weight: 500;
    letter-spacing: -.065em;
    line-height: .96;
}
.premium-manifesto__copy {
    max-width: 760px;
    margin: clamp(54px,7vw,100px) 0 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 44px;
}
.premium-manifesto__copy p {
    margin: 0;
    color: rgba(17,17,15,.67);
    font-size: 16px;
    line-height: 1.65;
}
.premium-manifesto__copy .premium-text-link {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 12px;
}

/* Product range */
.premium-range {
    padding: clamp(100px,12vw,180px) 0;
    background: var(--p-black);
}
.premium-section-head {
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(280px,420px);
    align-items: end;
    gap: 56px;
    margin-bottom: clamp(56px,8vw,104px);
}
.premium-section-head h2 {
    margin: 28px 0 0;
    font-size: clamp(54px,7vw,108px);
    font-weight: 500;
    letter-spacing: -.075em;
    line-height: .86;
}
.premium-section-head > p {
    margin: 0 0 6px;
    color: rgba(255,255,255,.6);
    font-size: 17px;
    line-height: 1.65;
}
.premium-range__grid {
    display: grid;
    grid-template-columns: repeat(12,minmax(0,1fr));
    gap: 18px;
}
.premium-range-card {
    position: relative;
    min-height: clamp(430px,47vw,650px);
    grid-column: span 5;
    overflow: hidden;
    color: #fff;
    background: #151515;
    text-decoration: none;
}
.premium-range-card--wide { grid-column: span 7; }
.premium-range-card img,
.premium-range-card__veil {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.premium-range-card img {
    object-fit: cover;
    filter: saturate(.88) contrast(1.06);
    transition: transform .8s var(--p-ease), filter .5s ease;
}
.premium-range-card__veil {
    z-index: 1;
    background: linear-gradient(to top,rgba(4,4,4,.92),transparent 58%), linear-gradient(to bottom,rgba(4,4,4,.42),transparent 34%);
}
.premium-range-card__copy,
.premium-range-card > i {
    position: absolute;
    z-index: 2;
}
.premium-range-card__copy {
    right: 26px;
    bottom: 27px;
    left: 26px;
}
.premium-range-card__copy small {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,.63);
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.premium-range-card__copy strong {
    display: block;
    font-size: clamp(27px,3vw,46px);
    font-weight: 500;
    letter-spacing: -.055em;
    line-height: 1;
}
.premium-range-card > i {
    top: 26px;
    right: 26px;
    font-size: 14px;
    transition: transform .25s ease;
}
.premium-range-card:hover img {
    transform: scale(1.045);
    filter: saturate(1.05) contrast(1.04);
}
.premium-range-card:hover > i { transform: translate(3px,-3px); }

/* Materials */
.premium-material {
    padding: clamp(90px,11vw,170px) 0;
    color: var(--p-ink);
    background: var(--p-paper-deep);
}
.premium-material__grid {
    display: grid;
    grid-template-columns: minmax(0,1.06fr) minmax(420px,.94fr);
    align-items: center;
    gap: clamp(50px,8vw,120px);
}
.premium-material__media { margin: 0; }
.premium-material__media img {
    width: 100%;
    aspect-ratio: 1 / 1.05;
    display: block;
    object-fit: cover;
}
.premium-material__media figcaption {
    margin-top: 12px;
    color: rgba(17,17,15,.55);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.premium-material__content h2 {
    margin: 32px 0 26px;
    color: var(--p-ink) !important;
    font-size: clamp(50px,5.7vw,82px);
    font-weight: 500;
    letter-spacing: -.07em;
    line-height: .92;
}
.premium-material__intro {
    max-width: 560px;
    margin: 0;
    color: rgba(17,17,15,.67);
    font-size: 17px;
    line-height: 1.65;
}
.premium-detail-list {
    margin: 54px 0 0;
    padding: 0;
    border-top: 1px solid rgba(17,17,15,.2);
    list-style: none;
}
.premium-detail-list li {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(17,17,15,.2);
}
.premium-detail-list li > span {
    color: rgba(17,17,15,.48);
    font-size: 10px;
    letter-spacing: .1em;
}
.premium-detail-list strong {
    display: block;
    margin-bottom: 5px;
    font-size: 17px;
    font-weight: 600;
}
.premium-detail-list p {
    margin: 0;
    color: rgba(17,17,15,.62);
    font-size: 14px;
    line-height: 1.55;
}

/* Proof */
.premium-proof {
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 1px solid rgba(255,255,255,.1);
    background: #080808;
}
.premium-proof__grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
}
.premium-proof__item {
    min-height: 250px;
    padding: 34px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-right: 1px solid rgba(255,255,255,.1);
}
.premium-proof__item:last-child { border-right: 0; }
.premium-proof__item strong {
    display: block;
    margin-top: auto;
    font-size: clamp(27px,3vw,45px);
    font-weight: 500;
    letter-spacing: -.055em;
    line-height: 1;
}
.premium-proof__item p {
    margin: 10px 0 0;
    color: rgba(255,255,255,.52);
    font-size: 12px;
}

/* Standards */
.premium-standards {
    padding: clamp(110px,13vw,190px) 0;
    background: #0c0c0b;
}
.premium-standards__grid {
    display: grid;
    grid-template-columns: minmax(330px,.8fr) minmax(0,1.2fr);
    gap: clamp(60px,9vw,140px);
}
.premium-standards__visual {
    position: sticky;
    top: 120px;
    align-self: start;
}
.premium-standards__paper {
    min-height: 610px;
    display: grid;
    place-items: center;
    padding: clamp(34px,5vw,70px);
    background: linear-gradient(135deg,rgba(255,91,10,.28),transparent 45%), linear-gradient(155deg,#282823,#10100f);
}
.premium-standards__paper img {
    width: min(100%,380px);
    display: block;
    box-shadow: 0 35px 80px rgba(0,0,0,.48);
    transform: rotate(-2.5deg);
}
.premium-standards__visual > p {
    margin: 16px 0 0;
    color: rgba(255,255,255,.46);
    font-size: 11px;
}
.premium-standards__content h2 {
    max-width: 780px;
    margin: 34px 0 24px;
    font-size: clamp(48px,6vw,88px);
    font-weight: 500;
    letter-spacing: -.07em;
    line-height: .92;
}
.premium-standards__intro {
    max-width: 580px;
    margin: 0 0 54px;
    color: rgba(255,255,255,.58);
    font-size: 17px;
    line-height: 1.65;
}
.premium-report-list { border-top: 1px solid rgba(255,255,255,.16); }
.premium-report-list a {
    display: grid;
    grid-template-columns: 145px minmax(0,1fr) 24px;
    align-items: center;
    gap: 24px;
    min-height: 94px;
    padding: 18px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.16);
    text-decoration: none;
    transition: color .2s ease, padding .25s var(--p-ease);
}
.premium-report-list a:hover {
    padding-left: 12px;
    color: var(--p-lime);
}
.premium-report-list a > span {
    color: rgba(255,255,255,.42);
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.premium-report-list a > strong {
    font-size: 16px;
    font-weight: 500;
}
.premium-report-list a > i {
    justify-self: end;
    font-size: 11px;
}

/* Process */
.premium-process {
    padding: clamp(100px,12vw,170px) 0;
    background: var(--p-black);
}
.premium-section-head--compact { margin-bottom: 64px; }
.premium-section-head--compact h2 { font-size: clamp(50px,6vw,88px); }
.premium-section-head--compact > .premium-text-link {
    justify-self: end;
    margin-bottom: 8px;
}
.premium-process__grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    border-top: 1px solid rgba(255,255,255,.16);
    border-bottom: 1px solid rgba(255,255,255,.16);
}
.premium-process__grid article {
    min-height: 330px;
    padding: 34px 34px 42px;
    border-right: 1px solid rgba(255,255,255,.16);
}
.premium-process__grid article:last-child { border-right: 0; }
.premium-process__grid article > span {
    color: var(--p-orange);
    font-size: 10px;
    letter-spacing: .12em;
}
.premium-process__grid h3 {
    margin: 120px 0 14px;
    font-size: clamp(25px,2.4vw,37px);
    font-weight: 500;
    letter-spacing: -.05em;
}
.premium-process__grid p {
    max-width: 340px;
    margin: 0;
    color: rgba(255,255,255,.54);
    font-size: 14px;
    line-height: 1.65;
}

/* Quote */
.premium-quote {
    padding: clamp(100px,12vw,180px) 0;
    color: var(--p-ink);
    background: var(--p-paper);
}
.premium-quote__head {
    display: grid;
    grid-template-columns: minmax(0,1fr) 420px;
    align-items: end;
    gap: 70px;
    margin-bottom: clamp(60px,8vw,110px);
}
.premium-quote__head .premium-kicker { grid-column: 1 / -1; }
.premium-quote__head h2 {
    margin: 0;
    color: var(--p-ink) !important;
    font-size: clamp(58px,8vw,118px);
    font-weight: 500;
    letter-spacing: -.08em;
    line-height: .83;
}
.premium-quote__head > p {
    margin: 0 0 8px;
    color: rgba(17,17,15,.63);
    font-size: 17px;
    line-height: 1.65;
}
.premium-quote__grid {
    display: grid;
    grid-template-columns: minmax(0,1.35fr) minmax(320px,.65fr);
    gap: 18px;
}
.premium-quote__form {
    padding: clamp(28px,4vw,54px);
    border: 1px solid rgba(17,17,15,.19);
    background: #f9f8f2;
}
.premium-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.premium-field { margin-bottom: 22px; }
.premium-field label {
    display: block;
    margin-bottom: 9px;
    color: rgba(17,17,15,.72);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.premium-field input,
.premium-field select,
.premium-field textarea {
    width: 100%;
    min-height: 54px;
    padding: 13px 15px;
    color: var(--p-ink);
    border: 1px solid rgba(17,17,15,.2);
    border-radius: 0;
    outline: 0;
    background: transparent;
    font: inherit;
    font-size: 15px;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.premium-field textarea {
    min-height: 130px;
    resize: vertical;
}
.premium-field input::placeholder,
.premium-field textarea::placeholder { color: rgba(17,17,15,.38); }
.premium-field input:focus,
.premium-field select:focus,
.premium-field textarea:focus {
    border-color: var(--p-ink);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(17,17,15,.08);
}
.premium-quote__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}
.premium-form-note {
    margin: 16px 0 0;
    color: rgba(17,17,15,.5);
    font-size: 11px;
}
.premium-form-status {
    margin-top: 14px;
    color: #255900 !important;
    font-size: 13px;
}
.premium-quote__contact {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding: clamp(30px,4vw,52px);
    color: #fff;
    background: linear-gradient(to bottom,rgba(255,91,10,.13),transparent 42%), var(--p-ink);
}
.premium-quote__contact-label {
    color: var(--p-orange);
    font-size: 10px;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.premium-quote__contact h3 {
    max-width: 360px;
    margin: 52px 0 16px;
    font-size: clamp(32px,3.3vw,49px);
    font-weight: 500;
    letter-spacing: -.06em;
    line-height: .96;
}
.premium-quote__contact > p {
    margin: 0;
    color: rgba(255,255,255,.57);
    font-size: 14px;
    line-height: 1.6;
}
.premium-contact-links {
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,.15);
}
.premium-contact-links a {
    display: block;
    padding: 17px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.15);
    text-decoration: none;
}
.premium-contact-links a span {
    display: block;
    margin-bottom: 5px;
    color: rgba(255,255,255,.4);
    font-size: 9px;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.premium-contact-links a strong {
    font-size: 13px;
    font-weight: 500;
    overflow-wrap: anywhere;
}
.premium-contact-links a:hover strong { color: var(--p-lime); }
.premium-quote__availability {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 44px;
}
.premium-status-dot {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--p-lime);
    box-shadow: 0 0 14px rgba(223,255,47,.55);
}
.premium-quote__availability strong {
    display: block;
    font-size: 12px;
    font-weight: 600;
}
.premium-quote__availability p {
    margin: 4px 0 0;
    color: rgba(255,255,255,.42);
    font-size: 10px;
}

/* Closing and footer */
.premium-closing {
    position: relative;
    min-height: 76svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: #050505;
}
.premium-closing > img,
.premium-closing__scrim {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.premium-closing > img {
    object-fit: cover;
    object-position: center;
}
.premium-closing__scrim {
    background: linear-gradient(90deg,rgba(4,4,4,.92),rgba(4,4,4,.28) 62%,rgba(4,4,4,.12)), linear-gradient(to top,rgba(4,4,4,.9),transparent 70%);
}
.premium-closing__content {
    position: relative;
    z-index: 2;
    padding-top: 110px;
    padding-bottom: clamp(70px,9vw,130px);
}
.premium-closing h2 {
    max-width: 920px;
    margin: 34px 0 38px;
    font-size: clamp(62px,8vw,126px);
    font-weight: 500;
    letter-spacing: -.08em;
    line-height: .84;
}
.premium-home .footer {
    padding-top: 78px;
    background: #070707;
    border-top: 1px solid rgba(255,255,255,.12);
}
.premium-home .footer h3,
.premium-home .footer h4 {
    font-family: "Archivo", sans-serif;
    font-weight: 600;
}
.premium-home .footer-grid { gap: 50px; }
.premium-home .footer-column a:hover { color: var(--p-lime); }

@media (max-width: 1120px) {
    .premium-home .nav {
        display: none;
        position: fixed;
        top: 78px;
        right: 18px;
        left: 18px;
        width: auto;
        min-height: 0;
        border: 1px solid rgba(255,255,255,.14);
        border-radius: 16px;
        background: rgba(8,8,8,.96);
        box-shadow: 0 24px 60px rgba(0,0,0,.42);
        transform: none;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
    .premium-home .nav.open { display: block; }
    .premium-home .nav > .container {
        width: 100%;
        padding: 12px 18px;
    }
    .premium-home .nav-list {
        align-items: stretch;
        flex-direction: column;
        gap: 0;
    }
    .premium-home .nav-list a,
    .premium-home .header.is-scrolled .nav-list a {
        display: block;
        padding: 13px 0;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .premium-home .nav-list li:last-child a { border-bottom: 0; }
    .premium-home .nav-list a::after { display: none; }
    .premium-home .mobile-menu-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .premium-hero__layout {
        grid-template-columns: minmax(0,1fr) 260px;
        gap: 38px;
    }
    .premium-proof__grid { grid-template-columns: 1fr 1fr; }
    .premium-proof__item:nth-child(2) { border-right: 0; }
    .premium-proof__item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
}

@media (max-width: 900px) {
    .premium-shell { width: min(100% - 36px,1320px); }
    .premium-hero__layout {
        grid-template-columns: 1fr;
        align-content: end;
        padding-top: 132px;
        padding-bottom: 62px;
    }
    .premium-hero__note { display: none; }
    .premium-hero h1 { max-width: 8ch; }
    .premium-manifesto__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .premium-manifesto__copy { max-width: none; }
    .premium-section-head,
    .premium-quote__head {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .premium-section-head > p,
    .premium-quote__head > p { max-width: 620px; }
    .premium-range-card,
    .premium-range-card--wide {
        grid-column: span 6;
        min-height: 520px;
    }
    .premium-material__grid { grid-template-columns: minmax(0, 1fr); }
    .premium-material__media, .premium-material__content { min-width: 0; }
    .premium-material__media img { aspect-ratio: 16 / 10; }
    .premium-standards__grid { grid-template-columns: 1fr; }
    .premium-standards__visual { position: static; }
    .premium-standards__paper { min-height: 460px; }
    .premium-section-head--compact > .premium-text-link { justify-self: start; }
    .premium-process__grid { grid-template-columns: 1fr; }
    .premium-process__grid article {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.16);
    }
    .premium-process__grid article:last-child { border-bottom: 0; }
    .premium-process__grid h3 { margin-top: 60px; }
    .premium-quote__grid { grid-template-columns: 1fr; }
    .premium-quote__contact { min-height: 580px; }
}

@media (max-width: 680px) {
    .premium-home .header {
        height: 70px;
        background: rgba(7,7,7,.76);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }
    .premium-home .header > .container { width: min(100% - 24px,1380px); }
    .premium-home .header-main,
    .premium-home .header.is-scrolled .header-main { min-height: 70px; }
    .premium-home .logo {
        max-width: 170px;
        font-size: 13px;
        line-height: 1.05;
    }
    .premium-home .nav {
        top: 76px;
        right: 12px;
        left: 12px;
    }
    .premium-home .nav-quote-btn { display: none; }
    .premium-hero__image { object-position: 62% center; }
    .premium-hero__scrim {
        background: linear-gradient(to top,rgba(4,4,4,.98),rgba(4,4,4,.76) 46%,rgba(4,4,4,.28) 78%,rgba(4,4,4,.36)), linear-gradient(90deg,rgba(4,4,4,.74),transparent);
    }
    .premium-hero__layout {
        min-height: 100svh;
        padding-top: 112px;
        padding-bottom: 54px;
    }
    .premium-hero h1 {
        margin: 28px 0 24px;
        max-width: none;
        font-size: clamp(43px,12vw,54px);
        line-height: .9;
    }
    .premium-hero__lead {
        max-width: 38ch;
        font-size: 15px;
    }
    .premium-actions {
        align-items: stretch;
        flex-direction: column;
    }
    .premium-button { width: 100%; }
    .premium-manifesto__content h2,
    .premium-section-head h2,
    .premium-material__content h2,
    .premium-standards__content h2,
    .premium-quote__head h2,
    .premium-closing h2 {
        font-size: clamp(43px,14vw,68px);
        letter-spacing: -.065em;
    }
    .premium-manifesto__copy {
        grid-template-columns: 1fr;
        margin-top: 44px;
    }
    .premium-range__grid { grid-template-columns: 1fr; }
    .premium-range-card,
    .premium-range-card--wide {
        grid-column: auto;
        min-height: 500px;
    }
    .premium-proof__grid { grid-template-columns: 1fr; }
    .premium-proof__item,
    .premium-proof__item:nth-child(2) {
        min-height: 190px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.1);
    }
    .premium-proof__item:last-child { border-bottom: 0; }
    .premium-report-list a {
        grid-template-columns: 1fr 24px;
        gap: 7px 14px;
        min-height: 104px;
    }
    .premium-report-list a > span { grid-column: 1; }
    .premium-report-list a > strong { grid-column: 1; }
    .premium-report-list a > i {
        grid-column: 2;
        grid-row: 1 / 3;
    }
    .premium-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .premium-quote__actions { flex-direction: column; }
    .premium-closing { min-height: 680px; }
    .premium-closing > img { object-position: 64% center; }
    .premium-closing__scrim { background: linear-gradient(to top,rgba(4,4,4,.96),rgba(4,4,4,.44) 74%); }
}

@media (prefers-reduced-motion: reduce) {
    .premium-hero__image {
        animation: none;
        transform: none;
    }
    .premium-button,
    .premium-range-card img,
    .premium-range-card > i,
    .premium-report-list a { transition: none; }
}
