:root {
    --ink: #151515;
    --coal: #262220;
    --paper: #f7f7f3;
    --white: #ffffff;
    --line: #ddd9d0;
    --muted: #6d6962;
    --red: #bd2f32;
    --teal: #087d7c;
    --green: #245b45;
    --gold: #c49735;
    --blue: #244f9e;
    --shadow: 0 18px 55px rgba(21, 21, 21, 0.16);
    --radius: 10px;
    --radius-lg: 18px;
    --header-height: 78px;
    --font-body: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-display: "Bricolage Grotesque", "Arial Narrow", ui-sans-serif, system-ui, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background:
        radial-gradient(circle at 100% 9%, rgba(196, 151, 53, 0.09), transparent 25rem),
        radial-gradient(circle at 0 54%, rgba(8, 125, 124, 0.06), transparent 28rem),
        var(--paper);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
}

body.is-drawer-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

body#top h1,
body#top h2,
body#top h3,
body#top .hero-slide__title {
    font-family: var(--font-display);
}

button {
    cursor: pointer;
}

:focus-visible {
    outline: 3px solid rgba(196, 151, 53, 0.9);
    outline-offset: 3px;
}

.topbar {
    background: var(--ink);
    color: var(--white);
    font-size: 0.82rem;
}

.topbar__inner {
    width: min(1180px, calc(100% - 32px));
    min-height: 38px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar a {
    color: var(--white);
}

.topbar__split {
    color: #f3d77b;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    height: var(--header-height);
    padding: 0 max(20px, calc((100% - 1180px) / 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    background: rgba(247, 247, 243, 0.92);
    border-bottom: 1px solid rgba(21, 21, 21, 0.1);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand__mark {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: grid;
    place-items: center;
    border: 2px solid var(--ink);
    background: var(--red);
    color: var(--white);
    font-weight: 900;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-size: 1rem;
    line-height: 1.1;
}

.brand small {
    color: var(--muted);
    font-size: 0.78rem;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    font-size: 0.94rem;
    color: var(--coal);
}

.main-nav a {
    position: relative;
    padding: 8px 0;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon-button,
.quote-button,
.button {
    border: 0;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.icon-button:hover,
.quote-button:hover,
.button:hover {
    transform: translateY(-1px);
}

.icon-button {
    width: 42px;
    padding: 0;
    background: var(--white);
    color: var(--ink);
    border: 1px solid var(--line);
    position: relative;
}

.icon-button svg,
.quote-button svg,
.button svg,
.text-link svg,
.breadcrumbs svg,
.check-list svg,
.detail-list svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.icon-button--light {
    background: #f2efe8;
}

.icon-button--glass {
    color: var(--white);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(12px);
}

.icon-button.is-active,
.icon-button[data-active="true"] {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.quote-button {
    min-width: 122px;
    padding: 0 14px;
    background: var(--ink);
    color: var(--white);
    position: relative;
}

.counter {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--gold);
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 800;
}

.menu-button {
    display: none;
}

.button {
    padding: 0 18px;
    font-weight: 800;
}

.button--light {
    background: var(--white);
    color: var(--ink);
}

.button--dark {
    background: var(--ink);
    color: var(--white);
}

.button--outline {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
}

.button--ghost-light {
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.38);
}

.button--small {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.9rem;
}

.button.is-added {
    background: var(--green);
    color: var(--white);
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--red);
    font-size: 0.8rem;
    font-weight: 900;
    text-transform: uppercase;
}

.muted {
    color: var(--muted);
}

.hero-slider {
    position: relative;
    min-height: 520px;
    height: min(680px, calc(100vh - 160px));
    overflow: hidden;
    background: var(--ink);
}

.slides,
.hero-slide {
    position: absolute;
    inset: 0;
}

.hero-slide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 520ms ease;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 10, 10, 0.82) 0%, rgba(10, 10, 10, 0.54) 35%, rgba(10, 10, 10, 0.12) 75%),
        linear-gradient(0deg, rgba(10, 10, 10, 0.36), rgba(10, 10, 10, 0.04));
}

.hero-slide__content {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 32px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: var(--white);
    max-width: 1180px;
    padding-right: 44%;
}

.hero-slide__content .eyebrow {
    color: #f3d77b;
}

.hero-slide h1 {
    max-width: 760px;
    margin: 0;
    font-family: var(--font-display);
    font-size: 4.45rem;
    line-height: 0.95;
    font-weight: 800;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

.hero-slide__content > p:not(.eyebrow) {
    max-width: 620px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.05rem;
}

.hero-slide__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-outline {
    position: absolute;
    z-index: 1;
    left: 22px;
    bottom: 24px;
    writing-mode: vertical-rl;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    text-stroke: 1px rgba(255, 255, 255, 0.5);
    font-size: 5.2rem;
    line-height: 1;
    font-weight: 900;
    opacity: 0.72;
    pointer-events: none;
}

.slider-controls {
    position: absolute;
    z-index: 4;
    right: max(20px, calc((100% - 1180px) / 2));
    bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider-dots {
    display: flex;
    align-items: center;
    gap: 8px;
}

.slider-dots button {
    width: 26px;
    height: 4px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
}

.slider-dots button.is-active {
    background: var(--white);
}

.marquee {
    background: var(--red);
    color: var(--white);
    overflow: hidden;
    border-block: 2px solid var(--ink);
}

.marquee__track {
    width: max-content;
    display: flex;
    align-items: center;
    animation: marquee 28s linear infinite;
}

.marquee span {
    display: inline-flex;
    align-items: center;
    min-height: 54px;
    padding: 0 24px;
    font-weight: 900;
    text-transform: uppercase;
}

.marquee span::after {
    content: "";
    width: 8px;
    height: 8px;
    margin-left: 24px;
    background: var(--gold);
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.section {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 86px 0;
}

.intro-band {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    align-items: center;
    gap: 44px;
}

.intro-band__text h2,
.section-heading h2,
.about-copy h2,
.process-section h2,
.faq-section h2,
.page-hero h1,
.product-hero h1,
.product-details h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 3rem;
    line-height: 1;
    overflow-wrap: anywhere;
}

.intro-band__text p:last-child,
.section-heading p,
.about-copy p,
.page-hero p,
.product-hero__copy > p {
    color: var(--muted);
    font-size: 1.02rem;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.stat {
    min-height: 138px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.stat strong {
    color: var(--green);
    font-size: 2.35rem;
    line-height: 1;
}

.stat span {
    color: var(--muted);
    font-weight: 800;
}

.section--split {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 42px;
    align-items: start;
}

.section-heading {
    max-width: 620px;
}

.section-heading--row {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    color: var(--teal);
    font-weight: 900;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.category-card,
.category-tile,
.product-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.category-card {
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    isolation: isolate;
    color: var(--white);
}

.category-card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 360ms ease;
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.02), rgba(10, 10, 10, 0.82));
}

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

.category-card span,
.product-card__media span,
.product-hero__media span,
.category-tile span {
    display: inline-flex;
    width: fit-content;
    padding: 5px 9px;
    background: var(--gold);
    color: var(--ink);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
}

.category-card h3 {
    margin: 12px 0 4px;
    font-size: 1.45rem;
}

.category-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
}

.product-section {
    border-top: 1px solid var(--line);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.product-grid--catalog {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 32%);
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
}

.product-strip .product-card {
    scroll-snap-align: start;
}

.product-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.product-card__media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #ece9e1;
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 360ms ease;
}

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

.product-card__media span {
    position: absolute;
    left: 12px;
    top: 12px;
}

.product-card__body {
    flex: 1;
    padding: 18px;
    display: flex;
    flex-direction: column;
}

.product-card__category {
    margin: 0 0 6px;
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.product-card h3 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.15;
}

.product-card__body > p:not(.product-card__category) {
    margin: 10px 0 14px;
    color: var(--muted);
    font-size: 0.92rem;
}

.product-card__lead {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--green);
    font-weight: 850;
}

.product-card__actions {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
}

.quote-control {
    flex: 1;
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 8px;
    align-items: end;
}

.qty-field,
.drawer-qty {
    display: grid;
    gap: 5px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}

.qty-field input,
.drawer-qty input {
    width: 100%;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    padding: 0 10px;
    font-weight: 900;
}

.qty-field--large input {
    height: 46px;
    font-size: 1.05rem;
}

.product-quote-panel {
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr);
    gap: 14px;
    align-items: end;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.about-section {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 56px;
    border-top: 1px solid var(--line);
}

.about-images {
    position: relative;
    min-height: 640px;
}

.about-images img {
    width: 72%;
    height: 520px;
    object-fit: cover;
    border: 8px solid var(--paper);
    box-shadow: var(--shadow);
}

.about-images__main {
    position: absolute;
    left: 0;
    top: 0;
}

.about-images__float {
    position: absolute;
    right: 0;
    bottom: 0;
}

.about-copy {
    max-width: 560px;
}

.check-list,
.detail-list {
    list-style: none;
    padding: 0;
    margin: 22px 0;
    display: grid;
    gap: 12px;
}

.check-list li,
.detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--coal);
    font-weight: 800;
}

.check-list svg,
.detail-list svg {
    margin-top: 3px;
    color: var(--teal);
}

.process-section {
    width: 100%;
    background: var(--coal);
    color: var(--white);
    padding-left: max(16px, calc((100% - 1180px) / 2));
    padding-right: max(16px, calc((100% - 1180px) / 2));
}

.process-section .section-heading {
    width: min(1180px, 100%);
    margin: 0 auto 28px;
}

.process-section .eyebrow {
    color: #f3d77b;
}

.process-layout {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 32px;
    align-items: stretch;
}

.process-visual {
    min-height: 660px;
    overflow: hidden;
    border-radius: var(--radius);
}

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

.process-steps {
    display: grid;
    gap: 12px;
}

.process-step {
    min-height: 96px;
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 16px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
}

.process-step span {
    color: #f3d77b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    line-height: 1;
}

.process-step h3,
.process-step p {
    margin: 0;
}

.process-step p {
    margin-top: 5px;
    color: rgba(255, 255, 255, 0.74);
}

.faq-list {
    max-width: 880px;
}

.faq-list details {
    border-bottom: 1px solid var(--line);
    background: transparent;
}

.faq-list summary {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    list-style: none;
    font-weight: 900;
    font-size: 1.08rem;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list details[open] summary svg {
    transform: rotate(45deg);
}

.faq-list p {
    margin: 0;
    padding: 0 48px 24px 0;
    color: var(--muted);
}

.page-hero {
    width: min(1180px, calc(100% - 32px));
    min-height: 330px;
    margin: 0 auto;
    padding: 76px 0 54px;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    border-bottom: 1px solid var(--line);
}

.page-hero > div {
    max-width: 760px;
}

.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 28px;
}

.category-tabs a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    font-weight: 800;
}

.category-tabs a.is-active {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
}

.category-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.category-tile {
    display: grid;
    grid-template-rows: 220px minmax(0, 1fr);
}

.category-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-tile div {
    padding: 16px;
}

.category-tile h2 {
    margin: 10px 0 6px;
    font-size: 1.25rem;
}

.category-tile p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.product-hero {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 64px 0;
    display: grid;
    grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
    gap: 52px;
    align-items: center;
}

.product-hero__media {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid var(--line);
}

.product-hero__media img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-hero__media span {
    position: absolute;
    left: 16px;
    top: 16px;
}

.breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--muted);
    font-size: 0.9rem;
}

.product-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 26px 0;
}

.product-meta div {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.product-meta dt {
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 900;
    text-transform: uppercase;
}

.product-meta dd {
    margin: 5px 0 0;
    font-weight: 900;
}

.product-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.product-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px;
    border-top: 1px solid var(--line);
}

.detail-list li {
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.detail-list--accent svg {
    color: var(--red);
}

.final-cta {
    background: var(--green);
    color: var(--white);
    border-top: 2px solid var(--ink);
}

.final-cta__inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 56px 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: stretch;
    gap: 32px;
}

.final-cta .eyebrow {
    color: #f3d77b;
}

.final-cta h2 {
    max-width: 720px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.75rem;
    line-height: 0.98;
}

.final-cta p {
    max-width: 780px;
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
}

.final-cta__content {
    display: grid;
    align-content: center;
    gap: 16px;
}

.final-cta__steps {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.final-cta__steps span {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.84rem;
    font-weight: 900;
}

.final-cta__panel {
    padding: 22px;
    display: grid;
    align-content: center;
    gap: 14px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    background: rgba(21, 21, 21, 0.24);
}

.final-cta__panel strong {
    font-size: 1.2rem;
}

.final-cta__panel span {
    color: rgba(255, 255, 255, 0.76);
}

.site-footer {
    background: var(--ink);
    color: var(--white);
}

.site-footer__grid,
.site-footer__bottom {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-footer__grid {
    padding: 62px 0 38px;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    gap: 40px;
}

.brand--footer .brand__mark {
    border-color: var(--white);
}

.site-footer p {
    max-width: 420px;
    color: rgba(255, 255, 255, 0.72);
}

.site-footer h3 {
    margin: 0 0 12px;
}

.site-footer a,
.site-footer span {
    display: block;
    color: rgba(255, 255, 255, 0.78);
    margin: 8px 0;
}

.site-footer__bottom {
    padding: 18px 0 28px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 80;
    background: rgba(0, 0, 0, 0.46);
}

.drawer {
    position: fixed;
    z-index: 90;
    inset: 0 0 0 auto;
    width: min(430px, 100%);
    transform: translateX(100%);
    transition: transform 220ms ease;
    pointer-events: none;
}

.drawer.is-open {
    transform: translateX(0);
    pointer-events: auto;
}

.drawer__panel {
    width: 100%;
    height: 100%;
    padding: 22px;
    background: var(--paper);
    box-shadow: -20px 0 55px rgba(0, 0, 0, 0.22);
    overflow-y: auto;
}

.drawer__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.drawer__header h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
    line-height: 1;
}

.drawer__items {
    display: grid;
    gap: 12px;
}

.drawer-item {
    display: grid;
    grid-template-columns: 74px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.drawer-item img {
    width: 74px;
    height: 74px;
    object-fit: cover;
    border-radius: 6px;
}

.drawer-item h3,
.drawer-item p {
    margin: 0;
}

.drawer-item h3 {
    font-size: 0.98rem;
    line-height: 1.15;
}

.drawer-item p {
    color: var(--muted);
    font-size: 0.82rem;
}

.drawer-item__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.drawer-qty {
    width: 82px;
}

.drawer-item__actions .button {
    min-width: 68px;
}

.empty-state {
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--muted);
}

.inquiry-form {
    margin-top: 18px;
    display: grid;
    gap: 12px;
}

.inquiry-form label {
    display: grid;
    gap: 6px;
    font-weight: 800;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 12px;
    background: var(--white);
    color: var(--ink);
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 24px;
    z-index: 120;
    max-width: min(460px, calc(100% - 32px));
    padding: 12px 16px;
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

@media (max-width: 1100px) {
    .product-grid,
    .category-feature-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-slide__content {
        padding-right: 32%;
    }

    .hero-slide h1 {
        font-size: 3.55rem;
    }
}

@media (max-width: 880px) {
    :root {
        --header-height: 70px;
    }

    .topbar__inner {
        justify-content: center;
        flex-wrap: wrap;
        padding: 8px 0;
    }

    .topbar__split {
        display: none;
    }

    .topbar a {
        display: none;
    }

    .site-header {
        padding: 0 16px;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        display: grid;
        gap: 0;
        padding: 12px 16px 18px;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .site-header.is-menu-open .main-nav {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav a {
        padding: 12px 0;
    }

    .menu-button {
        display: inline-flex;
    }

    .quote-button {
        min-width: 44px;
        width: 44px;
        padding: 0;
    }

    .quote-button > span:not(.counter) {
        display: none;
    }

    .hero-slider {
        min-height: 460px;
        height: min(560px, calc(100vh - 150px));
    }

    .hero-slide__shade {
        background: linear-gradient(90deg, rgba(10, 10, 10, 0.84), rgba(10, 10, 10, 0.34));
    }

    .hero-slide__content {
        padding-right: 18%;
    }

    .hero-slide h1 {
        font-size: 2.8rem;
    }

    .hero-slide__content > p:not(.eyebrow) {
        font-size: 0.98rem;
    }

    .hero-outline {
        font-size: 3.5rem;
        left: 10px;
    }

    .section,
    .intro-band,
    .section--split,
    .about-section,
    .product-hero,
    .product-details,
    .process-layout,
    .final-cta__inner,
    .site-footer__grid {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 64px 0;
    }

    .intro-band__text h2,
    .section-heading h2,
    .about-copy h2,
    .process-section h2,
    .faq-section h2,
    .page-hero h1,
    .product-hero h1,
    .product-details h2 {
        font-size: 2.35rem;
    }

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

    .category-grid,
    .product-grid,
    .product-grid--catalog {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-images {
        min-height: 540px;
    }

    .about-images img {
        height: 430px;
    }

    .process-visual {
        min-height: 420px;
    }

    .page-hero {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-meta {
        grid-template-columns: 1fr;
    }

    .final-cta__inner {
        align-items: start;
    }

    .site-footer__bottom {
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .topbar__inner {
        min-height: 32px;
        font-size: 0.76rem;
    }

    .topbar a {
        display: none;
    }

    .site-header {
        height: auto;
        min-height: var(--header-height);
        flex-wrap: wrap;
        align-content: center;
        gap: 8px;
        justify-content: flex-start;
        padding-top: 8px;
        padding-bottom: 0;
    }

    .brand {
        gap: 8px;
    }

    .brand strong {
        font-size: 0.92rem;
    }

    .header-actions {
        display: none;
    }

    .main-nav {
        order: 3;
        position: static;
        width: 100%;
        display: flex;
        justify-content: flex-start;
        gap: 18px;
        overflow-x: auto;
        padding: 4px 0 10px;
        background: transparent;
        border-bottom: 0;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        scrollbar-width: none;
    }

    .main-nav::-webkit-scrollbar {
        display: none;
    }

    .main-nav a {
        flex: 0 0 auto;
        font-size: 0.84rem;
        padding: 8px 0;
    }

    .brand small {
        display: none;
    }

    .brand__mark {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .hero-slider {
        min-height: 430px;
        height: min(500px, calc(100vh - 135px));
    }

    .hero-slide__content {
        padding-right: 0;
        justify-content: flex-end;
        padding-bottom: 92px;
    }

    .hero-slide h1 {
        font-size: 1.74rem;
        line-height: 1.02;
        max-width: 18rem;
    }

    .hero-slide__content > p:not(.eyebrow) {
        display: none;
    }

    .hero-outline {
        font-size: 2.7rem;
        opacity: 0.46;
    }

    .slider-controls {
        left: 16px;
        right: auto;
    }

    .marquee span {
        min-height: 44px;
        padding: 0 16px;
        font-size: 0.84rem;
    }

    .intro-band__text h2,
    .section-heading h2,
    .about-copy h2,
    .process-section h2,
    .faq-section h2,
    .page-hero h1,
    .product-hero h1,
    .product-details h2 {
        font-size: 1.86rem;
        line-height: 1.04;
    }

    .section-heading--row {
        align-items: flex-start;
        flex-direction: column;
    }

    .stat-grid,
    .category-grid,
    .product-grid,
    .product-grid--catalog,
    .category-feature-grid {
        grid-template-columns: 1fr;
    }

    .stat {
        min-height: 108px;
    }

    .category-card {
        min-height: 320px;
    }

    .product-strip {
        grid-auto-columns: 86%;
    }

    .about-images {
        min-height: 470px;
    }

    .about-images img {
        width: 82%;
        height: 350px;
        border-width: 5px;
    }

    .process-step {
        grid-template-columns: 52px minmax(0, 1fr);
        padding: 14px;
    }

    .process-step span {
        font-size: 1.55rem;
    }

    .page-hero {
        min-height: 260px;
        padding-top: 54px;
    }

    .product-hero {
        padding: 40px 0;
        gap: 28px;
    }

    .product-card__actions,
    .product-hero__actions {
        align-items: stretch;
    }

    .quote-control,
    .product-quote-panel {
        grid-template-columns: 1fr;
    }

    .quote-control .button,
    .product-hero__actions .button {
        width: 100%;
    }

    .drawer-item {
        grid-template-columns: 62px minmax(0, 1fr);
    }

    .drawer-item__actions {
        grid-column: 2;
        justify-content: flex-start;
    }

    .drawer-item__actions .button {
        flex: 1;
    }

    .drawer-item__actions .icon-button {
        width: 42px;
        flex: 0 0 42px;
    }
}

/* Collision-safe homepage hero and premium site footer. */
@media (min-width: 881px) {
    body[data-page="home"] .hero-slider {
        min-height: 620px;
        height: min(720px, calc(100svh - 116px));
    }

    body#top[data-page="home"] .hero-slide__content {
        padding-top: 28px;
        padding-bottom: 122px;
    }
}

body#top[data-page="home"] .hero-slide__content {
    padding-right: 0;
}

body#top[data-page="home"] .hero-outline {
    display: none;
}

body#top[data-page="home"] .hero-slide__title {
    width: min(760px, 62vw);
    max-width: none;
    font-size: clamp(3.4rem, 5.4vw, 4.75rem);
    line-height: 0.94;
    letter-spacing: -0.055em;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
}

body#top[data-page="home"] .hero-slide__content > p:not(.eyebrow) {
    width: min(620px, 56vw);
}

@media (max-width: 1100px) {
    body#top[data-page="home"] .hero-slide__title {
        width: min(620px, 63vw);
        font-size: clamp(3rem, 5.8vw, 3.7rem);
    }
}

@media (max-width: 880px) {
    body#top[data-page="home"] .hero-slide__title {
        width: min(570px, 88vw);
        font-size: clamp(2.45rem, 7vw, 3.2rem);
    }

    body#top[data-page="home"] .hero-slide__content > p:not(.eyebrow) {
        width: min(540px, 82vw);
    }
}

@media (max-width: 620px) {
    body#top[data-page="home"] .hero-slide__title {
        width: min(340px, 88vw);
        font-size: clamp(1.95rem, 8vw, 2.25rem);
        line-height: 0.96;
        letter-spacing: -0.035em;
    }
}

.site-footer {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.11);
    background:
        radial-gradient(circle at 12% 18%, rgba(36, 91, 69, 0.23), transparent 25rem),
        radial-gradient(circle at 88% 82%, rgba(196, 151, 53, 0.08), transparent 22rem),
        #111512;
}

.site-footer::before {
    content: "AO";
    position: absolute;
    right: -0.06em;
    bottom: -0.26em;
    color: rgba(255, 255, 255, 0.018);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(15rem, 34vw, 34rem);
    font-weight: 900;
    line-height: 0.8;
    pointer-events: none;
}

.site-footer__shell {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.site-footer a,
.site-footer span {
    margin: 0;
}

.site-footer__masthead {
    min-height: 260px;
    padding: 58px 0 50px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.site-footer__kicker {
    margin: 0 0 17px !important;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #f3d77b !important;
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.site-footer__kicker i {
    width: 7px;
    height: 7px;
    display: block;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 5px rgba(189, 47, 50, 0.16);
}

.site-footer__masthead h2 {
    max-width: 800px;
    margin: 0;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.2rem, 6vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 0.88;
}

.site-footer__cta {
    min-height: 54px;
    padding: 0 20px;
    border: 1px solid #f3d77b;
    border-radius: 999px;
    background: #f3d77b;
    color: var(--ink);
    white-space: nowrap;
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.24);
}

.site-footer__cta:hover {
    background: var(--white);
    border-color: var(--white);
}

.site-footer__cta svg {
    transition: transform 180ms ease;
}

.site-footer__cta:hover svg {
    transform: translate(3px, -3px);
}

.site-footer__grid {
    width: 100%;
    padding: 55px 0 50px;
    display: grid;
    grid-template-columns: minmax(250px, 1.35fr) 0.7fr 0.85fr minmax(265px, 1.15fr);
    gap: 48px;
}

.brand--footer {
    color: var(--white);
}

.brand--footer .brand__mark {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
    border-color: rgba(255, 255, 255, 0.75);
    box-shadow: 7px 7px 0 rgba(255, 255, 255, 0.08);
}

.brand--footer strong {
    color: var(--white);
    font-size: 1.05rem;
}

.brand--footer small {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.48);
}

.site-footer__about > p {
    max-width: 320px;
    margin: 22px 0 !important;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.82rem;
    line-height: 1.65;
}

.site-footer__specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.site-footer__specialties span {
    min-height: 31px;
    padding: 0 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.65rem;
    font-weight: 800;
}

.site-footer__specialties svg {
    width: 13px;
    height: 13px;
    color: #f3d77b;
}

.site-footer__column h3 {
    margin: 3px 0 20px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.site-footer__column a {
    position: relative;
    width: fit-content;
    margin: 0 0 11px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.78rem;
    transition: color 160ms ease, transform 160ms ease;
}

.site-footer__column a::before {
    content: "";
    position: absolute;
    left: -13px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #f3d77b;
    opacity: 0;
    transform: translate(-3px, -50%);
    transition: opacity 160ms ease, transform 160ms ease;
}

.site-footer__column a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.site-footer__column a:hover::before {
    opacity: 1;
    transform: translate(0, -50%);
}

.site-footer__contact {
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
}

.site-footer__contact-label {
    margin: 0 0 13px !important;
    color: #f3d77b !important;
    font-size: 0.62rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.site-footer__contact-link,
.site-footer__location {
    padding: 12px 0;
    display: grid !important;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.site-footer__location {
    border-bottom: 0;
}

.site-footer__contact-link > svg,
.site-footer__location > svg {
    width: 32px;
    height: 32px;
    padding: 8px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.08);
    color: #f3d77b;
}

.site-footer__contact-link span,
.site-footer__location span,
.site-footer__contact-link small,
.site-footer__contact-link strong,
.site-footer__location small,
.site-footer__location strong {
    min-width: 0;
    display: block;
}

.site-footer__contact-link small,
.site-footer__location small {
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.57rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer__contact-link strong,
.site-footer__location strong {
    overflow-wrap: anywhere;
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.72rem;
}

.site-footer__contact-link:hover strong {
    color: var(--white);
}

.site-footer__bottom {
    width: 100%;
    min-height: 68px;
    padding: 18px 0;
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.site-footer__bottom span,
.site-footer__bottom a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.63rem;
}

.site-footer__bottom a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 800;
}

.site-footer__bottom a:hover {
    color: #f3d77b;
}

.site-footer__bottom svg {
    width: 13px;
    height: 13px;
}

@media (max-width: 1000px) {
    .site-footer__grid {
        grid-template-columns: 1.25fr 0.75fr 1fr;
    }

    .site-footer__about {
        grid-column: span 3;
        padding-bottom: 34px;
        display: grid;
        grid-template-columns: minmax(220px, 0.8fr) minmax(260px, 1.2fr);
        align-items: center;
        gap: 24px 48px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .site-footer__about > p {
        margin: 0 !important;
    }

    .site-footer__specialties {
        grid-column: 1 / -1;
    }
}

@media (max-width: 700px) {
    .site-footer__masthead {
        min-height: 0;
        padding: 48px 0;
        grid-template-columns: 1fr;
        align-items: start;
        gap: 30px;
    }

    .site-footer__masthead h2 {
        max-width: 500px;
        font-size: clamp(2.8rem, 13vw, 4.3rem);
    }

    .site-footer__cta {
        width: fit-content;
    }

    .site-footer__grid {
        padding: 42px 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 38px 25px;
    }

    .site-footer__about {
        grid-column: 1 / -1;
        display: block;
    }

    .site-footer__about > p {
        margin: 22px 0 !important;
    }

    .site-footer__contact {
        grid-column: 1 / -1;
    }

    .site-footer__bottom {
        grid-template-columns: 1fr auto;
        gap: 10px 20px;
    }

    .site-footer__bottom span:nth-child(2) {
        grid-column: 1 / -1;
        grid-row: 2;
    }
}

@media (max-width: 430px) {
    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__masthead h2 {
        font-size: 2.65rem;
    }

    .site-footer__contact {
        padding: 17px;
    }

    .site-footer__bottom {
        grid-template-columns: 1fr;
    }

    .site-footer__bottom span:nth-child(2),
    .site-footer__bottom a {
        grid-column: auto;
        grid-row: auto;
    }
}

/* Homepage audience, customization and sample-approval stories. */
.buyer-programs {
    padding-top: 104px;
    padding-bottom: 112px;
}

.buyer-programs__heading {
    margin-bottom: 38px;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    align-items: end;
    gap: 56px;
}

.buyer-programs__heading h2,
.jacket-anatomy h2,
.approval-room__heading h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.7rem, 4.8vw, 4.7rem);
    line-height: 0.96;
    letter-spacing: -0.045em;
}

.buyer-programs__heading > p {
    max-width: 450px;
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 0.96rem;
}

.buyer-programs__grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 250px;
    gap: 14px;
}

.buyer-program {
    position: relative;
    grid-column: span 5;
    overflow: hidden;
    border-radius: 16px;
    background: var(--coal);
    color: var(--white);
    box-shadow: 0 18px 42px rgba(21, 21, 21, 0.1);
}

.buyer-program:nth-child(2),
.buyer-program:nth-child(3) {
    grid-column: span 7;
}

.buyer-program img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 600ms cubic-bezier(.2, .7, .2, 1);
}

.buyer-program::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 13, 12, 0.9), rgba(10, 13, 12, 0.3) 72%, rgba(10, 13, 12, 0.08)),
        linear-gradient(0deg, rgba(10, 13, 12, 0.38), transparent 64%);
}

.buyer-program:hover img {
    transform: scale(1.045);
}

.buyer-program__number {
    position: absolute;
    z-index: 2;
    right: 18px;
    top: 15px;
    color: rgba(255, 255, 255, 0.55);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    font-weight: 900;
}

.buyer-program__content {
    position: relative;
    z-index: 2;
    width: min(76%, 440px);
    height: 100%;
    padding: 27px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.buyer-program__content small {
    color: #f3d77b;
    font-size: 0.63rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.buyer-program__content h3 {
    margin: 7px 0 6px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.65rem;
    line-height: 1;
}

.buyer-program__content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.78rem;
}

.buyer-program__content b {
    margin-top: 18px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
}

.buyer-program__content b svg {
    width: 15px;
    height: 15px;
    transition: transform 180ms ease;
}

.buyer-program:hover .buyer-program__content b svg {
    transform: translate(3px, -3px);
}

.jacket-anatomy {
    padding-top: 112px;
    padding-bottom: 112px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
    align-items: center;
    gap: 76px;
}

.jacket-anatomy__frame {
    position: relative;
    min-height: 625px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 50% 50% 18px 18px;
    background:
        radial-gradient(circle at 50% 40%, #f6f3ec 0 28%, #e8e2d6 68%, #d8cfc0 100%);
    box-shadow: 0 30px 70px rgba(49, 35, 25, 0.13);
}

.jacket-anatomy__frame::before {
    content: "";
    position: absolute;
    inset: 22px;
    border: 1px solid rgba(57, 44, 33, 0.13);
    border-radius: inherit;
}

.jacket-anatomy__frame img {
    width: 88%;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 28px 25px rgba(46, 27, 17, 0.16));
}

.jacket-anatomy__caption {
    margin: 13px 2px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: var(--muted);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.jacket-anatomy__caption span {
    color: var(--red);
}

.anatomy-pin {
    position: absolute;
    z-index: 2;
    min-height: 31px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 9px 0 6px;
    border: 1px solid rgba(21, 21, 21, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 8px 20px rgba(21, 21, 21, 0.1);
    backdrop-filter: blur(8px);
}

.anatomy-pin i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 4px rgba(189, 47, 50, 0.14);
}

.anatomy-pin b {
    font-size: 0.62rem;
}

.anatomy-pin em {
    color: var(--muted);
    font-size: 0.61rem;
    font-style: normal;
    font-weight: 800;
}

.anatomy-pin--collar { left: 9%; top: 15%; }
.anatomy-pin--chest { right: 7%; top: 35%; }
.anatomy-pin--pocket { left: 5%; bottom: 33%; }
.anatomy-pin--hem { right: 8%; bottom: 17%; }

.jacket-anatomy__copy {
    max-width: 505px;
}

.jacket-anatomy__lead {
    margin: 24px 0 28px;
    color: var(--muted);
    font-size: 1rem;
}

.anatomy-options {
    border-top: 1px solid var(--line);
}

.anatomy-options article {
    padding: 18px 0;
    display: grid;
    grid-template-columns: 135px minmax(0, 1fr);
    gap: 18px;
    border-bottom: 1px solid var(--line);
}

.anatomy-options span {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.78rem;
    font-weight: 900;
}

.anatomy-options span svg {
    width: 17px;
    height: 17px;
    color: var(--green);
}

.anatomy-options p {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
}

.jacket-anatomy__actions {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.jacket-anatomy__actions .text-link {
    padding: 0;
    border: 0;
    background: transparent;
}

.approval-room {
    margin-top: 86px;
    margin-bottom: 86px;
    padding: 70px 64px;
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
    align-items: center;
    gap: 64px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 98% 4%, rgba(196, 151, 53, 0.14), transparent 24rem),
        #eae7de;
    box-shadow: 0 26px 70px rgba(21, 21, 21, 0.08);
}

.approval-room__heading h2 {
    font-size: clamp(2.6rem, 4.4vw, 4.2rem);
}

.approval-room__heading > p:not(.eyebrow) {
    max-width: 430px;
    margin: 23px 0 27px;
    color: var(--muted);
}

.approval-board {
    padding: 17px;
    border: 1px solid rgba(21, 21, 21, 0.12);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 20px 45px rgba(21, 21, 21, 0.09);
    transform: rotate(1deg);
}

.approval-board__topline,
.approval-board__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    color: var(--muted);
    font-size: 0.61rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.approval-board__topline {
    padding: 3px 3px 14px;
}

.approval-board__main {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
}

.approval-ticket {
    min-height: 330px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(21, 21, 21, 0.09);
    border-radius: 10px;
    background: var(--white);
}

.approval-ticket__icon {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    margin-bottom: auto;
    border-radius: 9px;
    background: #edf4ef;
    color: var(--green);
}

.approval-ticket__icon svg {
    width: 17px;
    height: 17px;
}

.approval-ticket small {
    margin-top: 34px;
    color: var(--red);
    font-size: 0.57rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.approval-ticket h3 {
    margin: 6px 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.18rem;
    line-height: 1.05;
}

.approval-ticket p {
    margin: 0;
    color: var(--muted);
    font-size: 0.68rem;
}

.measurement-lines {
    margin-top: 24px;
    display: grid;
    gap: 6px;
}

.measurement-lines i {
    height: 5px;
    display: block;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green) 0 58%, #e7e4dd 58%);
}

.measurement-lines i:nth-child(2) { background: linear-gradient(90deg, var(--gold) 0 76%, #e7e4dd 76%); }
.measurement-lines i:nth-child(3) { background: linear-gradient(90deg, var(--red) 0 43%, #e7e4dd 43%); }

.approval-swatches {
    margin-top: 22px;
    display: flex;
}

.approval-swatches i {
    width: 31px;
    height: 31px;
    display: block;
    margin-right: -5px;
    border: 3px solid var(--white);
    border-radius: 50%;
    background: var(--approval-swatch);
    box-shadow: 0 4px 10px rgba(21, 21, 21, 0.14);
}

.label-preview {
    width: 112px;
    margin-top: 20px;
    padding: 10px;
    border: 1px dashed rgba(21, 21, 21, 0.3);
    background: #f1ede3;
    text-align: center;
}

.label-preview b,
.label-preview span {
    display: block;
}

.label-preview b {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.68rem;
}

.label-preview span {
    margin-top: 2px;
    color: var(--muted);
    font-size: 0.45rem;
    letter-spacing: 0.1em;
}

.approval-board__footer {
    padding: 14px 3px 2px;
    justify-content: flex-start;
}

.approval-board__footer span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.approval-board__footer svg {
    width: 12px;
    height: 12px;
    color: var(--green);
}

@media (max-width: 1100px) {
    .jacket-anatomy {
        gap: 48px;
    }

    .jacket-anatomy__frame {
        min-height: 550px;
    }

    .approval-room {
        padding: 54px 42px;
        gap: 42px;
    }

    .approval-board__main {
        grid-template-columns: 1fr;
    }

    .approval-ticket {
        min-height: 180px;
    }

    .approval-ticket__icon {
        margin-bottom: 12px;
    }

    .approval-ticket small {
        margin-top: 0;
    }
}

@media (max-width: 880px) {
    .buyer-programs__heading,
    .jacket-anatomy,
    .approval-room {
        grid-template-columns: 1fr;
    }

    .buyer-programs__heading {
        gap: 20px;
    }

    .buyer-programs__grid {
        grid-auto-rows: 270px;
    }

    .buyer-program,
    .buyer-program:nth-child(2),
    .buyer-program:nth-child(3) {
        grid-column: span 6;
    }

    .jacket-anatomy__visual {
        width: min(100%, 630px);
        margin: 0 auto;
    }

    .jacket-anatomy__copy {
        max-width: 660px;
    }

    .approval-room {
        gap: 38px;
    }

    .approval-room__heading {
        max-width: 660px;
    }

    .approval-board {
        transform: none;
    }

    .approval-board__main {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .approval-ticket {
        min-height: 290px;
    }
}

@media (max-width: 620px) {
    .buyer-programs,
    .jacket-anatomy {
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .buyer-programs__heading h2,
    .jacket-anatomy h2,
    .approval-room__heading h2 {
        font-size: 2.45rem;
    }

    .buyer-programs__grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }

    .buyer-program,
    .buyer-program:nth-child(2),
    .buyer-program:nth-child(3) {
        grid-column: auto;
    }

    .buyer-program__content {
        width: 88%;
        padding: 22px;
    }

    .jacket-anatomy {
        gap: 44px;
    }

    .jacket-anatomy__frame {
        min-height: 440px;
        border-radius: 48% 48% 14px 14px;
    }

    .anatomy-pin {
        min-height: 28px;
    }

    .anatomy-pin em {
        display: none;
    }

    .jacket-anatomy__caption {
        display: block;
        line-height: 1.5;
    }

    .jacket-anatomy__caption span {
        display: block;
    }

    .anatomy-options article {
        grid-template-columns: 105px minmax(0, 1fr);
        gap: 12px;
    }

    .jacket-anatomy__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .approval-room {
        width: calc(100% - 20px);
        margin-top: 50px;
        margin-bottom: 50px;
        padding: 38px 20px;
        border-radius: 14px;
    }

    .approval-board {
        padding: 11px;
    }

    .approval-board__main {
        grid-template-columns: 1fr;
    }

    .approval-ticket {
        min-height: 185px;
    }

    .approval-board__topline span:last-child {
        display: none;
    }

    .approval-board__footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 7px;
    }
}

/* Premium landing-page pass */
body[data-page="home"] .site-header.is-scrolled {
    background: rgba(247, 247, 243, 0.97);
    box-shadow: 0 12px 34px rgba(21, 21, 21, 0.08);
}

body[data-page="home"] .hero-slider {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 60px rgba(21, 21, 21, 0.14);
}

body[data-page="home"] .hero-slide__shade {
    background:
        linear-gradient(90deg, rgba(6, 12, 10, 0.9) 0%, rgba(8, 14, 12, 0.69) 36%, rgba(8, 12, 11, 0.12) 76%),
        linear-gradient(0deg, rgba(8, 12, 11, 0.54), transparent 48%);
}

body[data-page="home"] .hero-slide.is-active img {
    animation: homeHeroDrift 8s ease-out both;
}

@keyframes homeHeroDrift {
    from { transform: scale(1.045); }
    to { transform: scale(1); }
}

body[data-page="home"] .hero-slide__content {
    padding-bottom: 64px;
}

body[data-page="home"] .hero-slide h1 {
    max-width: 780px;
    letter-spacing: -0.045em;
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
}

.hero-slide__title {
    max-width: 760px;
    margin: 0;
    font-family: var(--font-display);
    font-size: 4.45rem;
    line-height: 0.95;
    font-weight: 800;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
    text-wrap: balance;
}

body[data-page="home"] .hero-slide__title {
    max-width: 780px;
    letter-spacing: -0.045em;
    text-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
}

body[data-page="home"] .hero-slide__content .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    letter-spacing: 0.12em;
}

body[data-page="home"] .hero-slide__content .eyebrow::before {
    content: "";
    width: 27px;
    height: 1px;
    background: currentColor;
}

body[data-page="home"] .hero-slide__actions .button {
    min-height: 46px;
    border-radius: 9px;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
}

.hero-proof {
    position: absolute;
    z-index: 5;
    left: max(20px, calc((100% - 1180px) / 2));
    bottom: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(12, 19, 16, 0.46);
    color: var(--white);
    backdrop-filter: blur(15px);
}

.hero-proof > div {
    min-width: 168px;
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 13px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-proof > div:last-child {
    border-right: 0;
}

.hero-proof svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    color: #f3d77b;
}

.hero-proof span,
.hero-proof strong,
.hero-proof small {
    display: block;
}

.hero-proof strong {
    font-size: 0.78rem;
}

.hero-proof small {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.64rem;
}

body[data-page="home"] .slider-controls {
    bottom: 29px;
}

body[data-page="home"] .slider-dots button {
    transition: width 220ms ease, background 220ms ease;
}

body[data-page="home"] .slider-dots button.is-active {
    width: 42px;
    background: #f3d77b;
}

body[data-page="home"] .marquee {
    position: relative;
    border-block: 0;
    background: linear-gradient(90deg, #a8232b, var(--red), #a8232b);
    box-shadow: 0 8px 24px rgba(189, 47, 50, 0.18);
}

body[data-page="home"] .home-intro {
    min-height: 405px;
    gap: 62px;
}

body[data-page="home"] .home-intro::after {
    content: "BUILT FOR BULK";
    position: absolute;
    z-index: -1;
    left: -4px;
    bottom: 32px;
    color: rgba(21, 21, 21, 0.028);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4.6rem, 10vw, 9rem);
    font-weight: 900;
    letter-spacing: -0.07em;
    line-height: 0.75;
    white-space: nowrap;
}

body[data-page="home"] .intro-band__text h2 {
    max-width: 650px;
    font-size: clamp(3rem, 4.3vw, 4.45rem);
    letter-spacing: -0.045em;
}

body[data-page="home"] .stat-grid {
    gap: 14px;
}

body[data-page="home"] .stat {
    min-height: 178px;
    padding: 18px;
    border-color: rgba(21, 21, 21, 0.08);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.88);
}

body[data-page="home"] .stat:nth-child(2) {
    transform: translateY(-16px);
}

body[data-page="home"] .stat:nth-child(2):hover {
    transform: translateY(-20px);
}

.stat__icon {
    width: 34px;
    height: 34px;
    display: grid !important;
    place-items: center;
    border-radius: 9px;
    background: #edf5ef;
    color: var(--green) !important;
}

.stat__icon svg {
    width: 17px;
    height: 17px;
}

body[data-page="home"] .stat strong {
    margin-top: auto;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.7rem;
}

body[data-page="home"] .stat__label {
    color: var(--muted);
    font-size: 0.74rem;
    line-height: 1.25;
}

body[data-page="home"] .designer-spotlight {
    position: relative;
    isolation: isolate;
    border-color: rgba(36, 91, 69, 0.18);
    background:
        radial-gradient(circle at 87% 20%, rgba(196, 151, 53, 0.11), transparent 17rem),
        #ebeae3;
    box-shadow: 0 28px 74px rgba(21, 21, 21, 0.1);
}

body[data-page="home"] .designer-spotlight::after {
    content: "DESIGN / PREVIEW / INQUIRE";
    position: absolute;
    right: 22px;
    bottom: 15px;
    color: rgba(36, 91, 69, 0.22);
    font-size: 0.61rem;
    font-weight: 900;
    letter-spacing: 0.18em;
}

body[data-page="home"] .designer-spotlight__copy .button {
    min-height: 46px;
    background: linear-gradient(135deg, var(--green), #34735a);
    box-shadow: 0 12px 24px rgba(36, 91, 69, 0.23);
}

.designer-spotlight__palette {
    position: absolute;
    z-index: 3;
    right: 18px;
    top: 18px;
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    background: rgba(13, 27, 22, 0.68);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(21, 21, 21, 0.18);
    backdrop-filter: blur(10px);
}

.designer-spotlight__palette i {
    width: 22px;
    height: 22px;
    display: block;
    border: 2px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    background: var(--swatch);
}

.designer-spotlight__palette i + i {
    margin-left: -10px;
}

.designer-spotlight__palette small {
    margin-left: 3px;
    font-size: 0.62rem;
    font-style: normal;
    font-weight: 900;
}

body[data-page="home"] .section--split {
    gap: 62px;
}

body[data-page="home"] .section--split > .section-heading::before {
    content: "02";
    display: block;
    margin-bottom: 34px;
    color: rgba(36, 91, 69, 0.18);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 4.3rem;
    font-weight: 900;
    line-height: 0.65;
}

body[data-page="home"] .category-grid {
    gap: 16px;
}

body[data-page="home"] .category-card {
    min-height: 390px;
    padding: 22px;
    border: 0;
}

body[data-page="home"] .category-card:nth-child(1),
body[data-page="home"] .category-card:nth-child(4) {
    transform: translateY(-18px);
}

body[data-page="home"] .category-card:nth-child(1):hover,
body[data-page="home"] .category-card:nth-child(4):hover {
    transform: translateY(-24px);
}

body[data-page="home"] .category-card::after {
    background:
        linear-gradient(180deg, rgba(8, 12, 11, 0.03) 22%, rgba(8, 12, 11, 0.9) 100%),
        linear-gradient(90deg, rgba(8, 12, 11, 0.14), transparent 60%);
}

.category-card__index {
    position: absolute;
    top: 17px;
    right: 18px;
    color: rgba(255, 255, 255, 0.64);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.category-card__footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
    align-items: end;
    gap: 14px;
}

.category-card__footer h3 {
    margin-top: 13px;
}

.category-card__arrow {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    backdrop-filter: blur(8px);
    transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.category-card__arrow svg {
    width: 18px;
    height: 18px;
}

.category-card:hover .category-card__arrow {
    transform: rotate(8deg);
    background: var(--white);
    color: var(--ink);
}

body[data-page="home"] .product-section {
    overflow: hidden;
    background:
        radial-gradient(circle at 100% 0, rgba(8, 125, 124, 0.07), transparent 25rem),
        rgba(255, 255, 255, 0.83);
}

body[data-page="home"] .product-section::before {
    content: "SELECTED PROGRAMS";
    position: absolute;
    right: 22px;
    top: 18px;
    color: rgba(21, 21, 21, 0.045);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.8rem, 5vw, 5.8rem);
    font-weight: 900;
    letter-spacing: -0.055em;
    white-space: nowrap;
    pointer-events: none;
}

body[data-page="home"] .product-section > * {
    position: relative;
    z-index: 1;
}

body[data-page="home"] .product-card {
    border-color: rgba(21, 21, 21, 0.08);
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(21, 21, 21, 0.055);
}

body[data-page="home"] .product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 24px 45px rgba(21, 21, 21, 0.14);
}

body[data-page="home"] .product-card__media::after {
    content: "View style";
    position: absolute;
    right: 12px;
    bottom: 12px;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(21, 21, 21, 0.76);
    color: var(--white);
    font-size: 0.67rem;
    font-weight: 900;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(8px);
}

body[data-page="home"] .product-card:hover .product-card__media::after {
    opacity: 1;
    transform: translateY(0);
}

.home-capabilities {
    width: min(1180px, calc(100% - 32px));
    margin: 24px auto 0;
    padding: 52px;
    display: grid;
    grid-template-columns: minmax(250px, 0.68fr) minmax(0, 1.32fr);
    align-items: center;
    gap: 46px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 10% 100%, rgba(196, 151, 53, 0.16), transparent 20rem),
        linear-gradient(135deg, #152a23, #0f1d18);
    color: var(--white);
    box-shadow: 0 28px 65px rgba(15, 29, 24, 0.18);
}

.home-capabilities .eyebrow {
    color: #f3d77b;
}

.home-capabilities h2 {
    max-width: 420px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 3.7vw, 3.55rem);
    line-height: 0.97;
    letter-spacing: -0.035em;
}

.home-capabilities__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.home-capabilities article {
    position: relative;
    min-height: 180px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.065);
    transition: transform 200ms ease, background 200ms ease, border-color 200ms ease;
}

.home-capabilities article:hover {
    transform: translateY(-4px);
    border-color: rgba(243, 215, 123, 0.38);
    background: rgba(255, 255, 255, 0.105);
}

.home-capabilities article > span {
    position: absolute;
    right: 15px;
    top: 13px;
    color: rgba(255, 255, 255, 0.2);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 900;
}

.home-capabilities article > svg {
    width: 23px;
    height: 23px;
    color: #f3d77b;
}

.home-capabilities article h3 {
    margin: 24px 0 6px;
    font-size: 0.98rem;
}

.home-capabilities article p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.78rem;
    line-height: 1.45;
}

body[data-page="home"] .about-section {
    padding-top: 110px;
    padding-bottom: 110px;
    border-top: 0;
}

body[data-page="home"] .about-images::before {
    content: "";
    position: absolute;
    left: -34px;
    top: 54px;
    width: 68%;
    height: 72%;
    border: 1px solid rgba(36, 91, 69, 0.18);
    border-radius: 50%;
}

.about-images__stamp {
    position: absolute;
    z-index: 3;
    left: 25px;
    bottom: 18px;
    min-width: 235px;
    padding: 14px 17px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(18, 32, 27, 0.86);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(21, 21, 21, 0.18);
    backdrop-filter: blur(11px);
}

.about-images__stamp span,
.about-images__stamp strong {
    display: block;
}

.about-images__stamp span {
    color: #f3d77b;
    font-size: 0.63rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-images__stamp strong {
    margin-top: 3px;
    font-size: 0.84rem;
}

body[data-page="home"] .about-copy h2 {
    font-size: clamp(2.8rem, 4.3vw, 4.2rem);
    letter-spacing: -0.04em;
}

body[data-page="home"] .check-list li {
    padding: 11px 13px;
    border: 1px solid rgba(21, 21, 21, 0.08);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.66);
}

body[data-page="home"] .process-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 12%, rgba(196, 151, 53, 0.13), transparent 24rem),
        var(--coal);
}

body[data-page="home"] .process-section::after {
    content: "PROCESS";
    position: absolute;
    right: -24px;
    top: 58px;
    color: rgba(255, 255, 255, 0.035);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(5rem, 13vw, 12rem);
    font-weight: 900;
    letter-spacing: -0.07em;
    pointer-events: none;
}

body[data-page="home"] .process-section > * {
    position: relative;
    z-index: 1;
}

.process-section__count {
    display: inline-flex;
    min-height: 31px;
    align-items: center;
    margin-top: 17px;
    padding: 0 10px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body[data-page="home"] .process-step {
    border-radius: 12px;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

body[data-page="home"] .process-step:hover {
    transform: translateX(5px);
    border-color: rgba(243, 215, 123, 0.32);
    background: rgba(255, 255, 255, 0.11);
}

body[data-page="home"] .home-recent-section {
    margin-top: 76px;
    margin-bottom: 76px;
    padding-left: 30px;
    padding-right: 30px;
    border: 1px solid rgba(21, 21, 21, 0.08);
    border-radius: var(--radius-lg);
    background: rgba(237, 234, 225, 0.63);
}

body[data-page="home"] .home-faq-section {
    display: grid;
    grid-template-columns: minmax(250px, 0.62fr) minmax(0, 1.38fr);
    align-items: start;
    gap: 64px;
}

body[data-page="home"] .home-faq-section > .section-heading {
    position: sticky;
    top: calc(var(--header-height) + 28px);
}

body[data-page="home"] .faq-list {
    max-width: none;
    display: grid;
    gap: 10px;
}

body[data-page="home"] .faq-list details {
    padding: 0 20px;
    border: 1px solid rgba(21, 21, 21, 0.09);
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.74);
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

body[data-page="home"] .faq-list details[open] {
    border-color: rgba(36, 91, 69, 0.28);
    background: var(--white);
    box-shadow: 0 14px 32px rgba(21, 21, 21, 0.07);
}

body[data-page="home"] .faq-list summary {
    min-height: 68px;
}

body[data-page="home"] .final-cta {
    position: relative;
    overflow: hidden;
    border-top: 0;
    background:
        radial-gradient(circle at 78% 35%, rgba(196, 151, 53, 0.2), transparent 20rem),
        linear-gradient(120deg, #1c4937, var(--green));
}

body[data-page="home"] .final-cta::after {
    content: "LET'S BUILD";
    position: absolute;
    right: -10px;
    bottom: -18px;
    color: rgba(255, 255, 255, 0.045);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(4rem, 10vw, 9rem);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 0.8;
    pointer-events: none;
}

body[data-page="home"] .final-cta__inner {
    position: relative;
    z-index: 1;
    padding-top: 72px;
    padding-bottom: 72px;
}

body[data-page="home"] .final-cta__panel {
    border-radius: 14px;
    background: rgba(13, 27, 22, 0.42);
    box-shadow: 0 18px 40px rgba(8, 20, 15, 0.18);
}

body[data-page="home"] .reveal-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 680ms ease var(--reveal-delay, 0ms), transform 680ms cubic-bezier(.2, .75, .25, 1) var(--reveal-delay, 0ms);
}

body[data-page="home"] .reveal-item.is-revealed {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1100px) {
    .hero-slide__title {
        font-size: 3.55rem;
    }

    .hero-proof > div {
        min-width: 145px;
    }

    .home-capabilities {
        padding: 42px;
        grid-template-columns: 0.75fr 1.25fr;
    }
}

@media (max-width: 880px) {
    .hero-slide__title {
        font-size: 2.8rem;
    }

    .hero-proof {
        display: none;
    }

    body[data-page="home"] .hero-slide__content {
        padding-bottom: 0;
    }

    body[data-page="home"] .home-intro {
        gap: 40px;
    }

    body[data-page="home"] .stat:nth-child(2),
    body[data-page="home"] .stat:nth-child(2):hover,
    body[data-page="home"] .category-card:nth-child(1),
    body[data-page="home"] .category-card:nth-child(4),
    body[data-page="home"] .category-card:nth-child(1):hover,
    body[data-page="home"] .category-card:nth-child(4):hover {
        transform: none;
    }

    body[data-page="home"] .section--split > .section-heading::before {
        margin-bottom: 20px;
    }

    .home-capabilities {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .home-capabilities__heading h2 {
        max-width: 620px;
    }

    body[data-page="home"] .home-faq-section {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    body[data-page="home"] .home-faq-section > .section-heading {
        position: static;
    }
}

@media (max-width: 620px) {
    .hero-slide__title {
        max-width: 19rem;
        font-size: 1.9rem;
        line-height: 1;
    }

    body[data-page="home"] .hero-slide h1 {
        letter-spacing: -0.025em;
    }

    body[data-page="home"] .hero-slide__title {
        letter-spacing: -0.025em;
    }

    body[data-page="home"] .slider-controls {
        top: 17px;
        bottom: auto;
        left: 16px;
        right: auto;
        padding: 8px 10px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 999px;
        background: rgba(10, 18, 15, 0.4);
        backdrop-filter: blur(10px);
    }

    body[data-page="home"] .slider-controls > .icon-button {
        display: none;
    }

    body[data-page="home"] .slider-dots button {
        width: 22px;
    }

    body[data-page="home"] .slider-dots button.is-active {
        width: 34px;
    }

    body[data-page="home"] .intro-band__text h2 {
        font-size: 2.25rem;
        line-height: 0.98;
    }

    body[data-page="home"] .header-actions {
        display: flex;
        margin-left: auto;
    }

    body[data-page="home"] .header-actions .menu-button {
        display: none;
    }

    body[data-page="home"] .designer-spotlight__palette small {
        display: none;
    }

    body[data-page="home"] .home-intro {
        min-height: 0;
    }

    body[data-page="home"] .home-intro::after,
    body[data-page="home"] .product-section::before,
    body[data-page="home"] .process-section::after {
        display: none;
    }

    body[data-page="home"] .stat {
        min-height: 132px;
    }

    body[data-page="home"] .category-card {
        min-height: 340px;
    }

    .home-capabilities {
        width: calc(100% - 20px);
        padding: 30px 22px;
        border-radius: 14px;
    }

    .home-capabilities__grid {
        grid-template-columns: 1fr;
    }

    .home-capabilities article {
        min-height: 154px;
    }

    body[data-page="home"] .about-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .about-images__stamp {
        left: 10px;
        bottom: 10px;
        min-width: 210px;
    }

    body[data-page="home"] .home-recent-section {
        width: calc(100% - 16px);
        margin-top: 44px;
        margin-bottom: 44px;
        padding-left: 16px;
        padding-right: 16px;
    }

    body[data-page="home"] .faq-list details {
        padding: 0 14px;
    }

    body[data-page="home"] .final-cta__inner {
        padding-top: 54px;
        padding-bottom: 54px;
    }
}

@media (max-width: 430px) {
    body[data-page="home"] .hero-slide__actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 20px;
    }

    body[data-page="home"] .hero-slide__actions .button {
        width: 100%;
        min-height: 42px;
    }

    body[data-page="home"] .hero-slide__content {
        padding-bottom: 70px;
    }
}

/* Homepage polish and a compact, resilient product-card CTA. */
.button--dark:hover {
    background: var(--coal);
}

.home-intro {
    position: relative;
    isolation: isolate;
    padding-top: 104px;
    padding-bottom: 104px;
}

.home-intro::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 36px -34px;
    border: 1px solid rgba(21, 21, 21, 0.08);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 26px 70px rgba(28, 25, 20, 0.05);
}

.stat {
    box-shadow: 0 10px 24px rgba(21, 21, 21, 0.04);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 32px rgba(21, 21, 21, 0.1);
}

.section--split .section-heading {
    position: sticky;
    top: calc(var(--header-height) + 26px);
}

.text-link:hover {
    color: var(--red);
}

.text-link svg {
    transition: transform 180ms ease;
}

.text-link:hover svg {
    transform: translate(3px, -3px);
}

.category-card {
    border-radius: var(--radius-lg);
    box-shadow: 0 14px 32px rgba(21, 21, 21, 0.08);
    transition: transform 240ms ease, box-shadow 240ms ease;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 44px rgba(21, 21, 21, 0.18);
}

.product-section {
    padding-left: 32px;
    padding-right: 32px;
    border: 1px solid rgba(21, 21, 21, 0.08);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 20px 60px rgba(21, 21, 21, 0.045);
}

.product-card {
    container-type: inline-size;
}

.quote-control {
    grid-template-columns: 66px minmax(0, 1fr);
}

.qty-field input {
    padding: 0 8px;
    text-align: center;
}

.button--quote {
    min-height: 38px;
    padding: 0 12px;
    white-space: nowrap;
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--green), #30735a);
    color: var(--white);
    box-shadow: 0 7px 16px rgba(36, 91, 69, 0.24);
}

.button--quote:hover {
    background: linear-gradient(135deg, #1d4d3a, var(--green));
    box-shadow: 0 11px 20px rgba(36, 91, 69, 0.34);
}

.button--quote.is-added {
    background: var(--teal);
    box-shadow: 0 7px 16px rgba(8, 125, 124, 0.24);
}

@container (max-width: 300px) {
    .product-card__actions {
        align-items: flex-end;
    }

    .quote-control {
        grid-template-columns: 1fr;
    }

    .quote-control .button--quote {
        width: 100%;
    }
}

@media (max-width: 880px) {
    .section--split .section-heading {
        position: static;
    }

    .product-section {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 620px) {
    .home-intro {
        padding-top: 76px;
        padding-bottom: 76px;
    }

    .home-intro::before {
        inset: 28px -10px;
        border-radius: 14px;
    }

    .product-section {
        width: calc(100% - 16px);
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* Varsity jacket designer */
.designer-spotlight {
    width: min(1180px, calc(100% - 32px));
    min-height: 470px;
    margin: 12px auto 28px;
    display: grid;
    grid-template-columns: minmax(340px, 0.88fr) minmax(0, 1.12fr);
    overflow: hidden;
    border: 1px solid rgba(21, 21, 21, 0.1);
    border-radius: var(--radius-lg);
    background: #ebeae3;
    box-shadow: 0 20px 58px rgba(21, 21, 21, 0.06);
}

.designer-spotlight__image {
    position: relative;
    min-height: 470px;
    overflow: hidden;
    background: var(--coal);
}

.designer-spotlight__image::after {
    content: "VARSITY";
    position: absolute;
    left: -12px;
    bottom: 6px;
    color: rgba(255, 255, 255, 0.66);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.4rem, 8vw, 7.4rem);
    font-weight: 900;
    letter-spacing: -0.08em;
    line-height: 0.8;
}

.designer-spotlight__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 550ms ease;
}

.designer-spotlight:hover .designer-spotlight__image img {
    transform: scale(1.04);
}

.designer-spotlight__image > span {
    position: absolute;
    z-index: 1;
    top: 18px;
    left: 18px;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--gold);
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.designer-spotlight__copy {
    display: grid;
    align-content: center;
    justify-items: start;
    padding: 48px clamp(28px, 5vw, 64px);
}

.designer-spotlight__copy h2 {
    max-width: 650px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 3.4vw, 3.55rem);
    line-height: 0.97;
}

.designer-spotlight__copy > p:not(.eyebrow) {
    max-width: 560px;
    margin: 18px 0 0;
    color: var(--muted);
}

.designer-spotlight__checks {
    display: grid;
    gap: 8px;
    margin: 24px 0;
}

.designer-spotlight__checks span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--coal);
    font-size: 0.86rem;
    font-weight: 850;
}

.designer-spotlight__checks svg {
    width: 16px;
    height: 16px;
    color: var(--teal);
}

.designer-hero {
    width: min(1180px, calc(100% - 32px));
    min-height: 520px;
    margin: 0 auto;
    padding: 54px 0 76px;
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.8fr);
    align-items: center;
    gap: 64px;
}

.designer-hero__copy {
    position: relative;
    z-index: 1;
    max-width: 590px;
}

.designer-hero__copy h1 {
    max-width: 580px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(3.2rem, 5.4vw, 5.55rem);
    line-height: 0.91;
    letter-spacing: -0.05em;
}

.designer-hero__copy > p:not(.eyebrow) {
    max-width: 540px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 1.07rem;
}

.designer-hero__points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 28px 0;
}

.designer-hero__points span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 0 11px;
    border: 1px solid rgba(36, 91, 69, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 900;
}

.designer-hero__points svg {
    width: 15px;
    height: 15px;
}

.designer-hero__visual {
    position: relative;
    min-height: 440px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(21, 21, 21, 0.12);
    border-radius: var(--radius-lg);
    background: var(--coal);
    box-shadow: 0 28px 62px rgba(21, 21, 21, 0.16);
}

.designer-hero__visual::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    background: linear-gradient(180deg, transparent 58%, rgba(14, 20, 17, 0.78));
    pointer-events: none;
}

.designer-hero__visual img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
    object-position: center;
    transition: transform 650ms ease;
}

.designer-hero__visual:hover img {
    transform: scale(1.035);
}

.designer-hero__visual figcaption {
    position: absolute;
    z-index: 2;
    left: 24px;
    bottom: 20px;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.05rem;
    font-weight: 900;
    line-height: 1;
}

.designer-workbench {
    width: min(1400px, calc(100% - 32px));
    margin: 0 auto 96px;
    display: grid;
    grid-template-columns: minmax(292px, 330px) minmax(460px, 1fr) minmax(238px, 270px);
    align-items: start;
    gap: 18px;
    scroll-margin-top: calc(var(--header-height) + 20px);
}

.designer-controls,
.designer-summary {
    border: 1px solid rgba(21, 21, 21, 0.1);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 48px rgba(21, 21, 21, 0.06);
}

.designer-controls {
    position: sticky;
    top: calc(var(--header-height) + 18px);
    overflow: hidden;
}

.designer-controls__heading {
    padding: 25px 24px 20px;
    border-bottom: 1px solid var(--line);
}

.designer-controls__heading .eyebrow {
    margin-bottom: 7px;
}

.designer-controls__heading h2,
.designer-summary h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.75rem;
    line-height: 1;
}

.designer-controls__heading > p:last-child {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.designer-control-scroll {
    max-height: min(540px, calc(100svh - 332px));
    padding: 0 24px;
    overflow-y: auto;
    scrollbar-color: var(--line) transparent;
}

.designer-control-group {
    min-width: 0;
    margin: 0;
    padding: 20px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
}

.designer-control-group:last-child {
    border-bottom: 0;
}

.designer-control-group legend {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 900;
}

.designer-control-group legend > span {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    font-size: 0.7rem;
}

.designer-presets {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 15px;
}

.designer-preset {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 7px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    font-size: 0.71rem;
    font-weight: 850;
    text-align: left;
    transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.designer-preset:hover {
    transform: translateY(-1px);
    border-color: rgba(36, 91, 69, 0.54);
}

.designer-preset.is-active {
    border-color: var(--green);
    background: #eff6f0;
}

.designer-preset > span {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    border: 1px solid rgba(21, 21, 21, 0.14);
    border-radius: 50%;
    background: conic-gradient(var(--preset-body) 0 25%, var(--preset-sleeve) 25% 50%, var(--preset-rib) 50% 75%, var(--preset-stripe) 75% 100%);
}

.designer-color-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-top: 15px;
}

.designer-color-field {
    display: grid;
    justify-items: center;
    gap: 6px;
    color: var(--muted);
    font-size: 0.66rem;
    font-weight: 900;
    text-transform: uppercase;
}

.designer-color-field input {
    width: 40px;
    height: 40px;
    padding: 3px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--white);
    cursor: pointer;
}

.designer-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 10px;
    margin-top: 16px;
}

.designer-form-grid label,
.designer-select-row {
    display: grid;
    gap: 5px;
    min-width: 0;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}

.designer-form-grid input,
.designer-form-grid select,
.designer-select-row select {
    width: 100%;
    min-width: 0;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    color: var(--ink);
    padding: 0 9px;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: none;
}

.designer-form-grid select,
.designer-select-row select {
    cursor: pointer;
}

.designer-artwork-upload {
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    padding: 9px;
    border: 1px dashed rgba(36, 91, 69, 0.4);
    border-radius: 10px;
    background: #f5f9f5;
    cursor: pointer;
    transition: border-color 160ms ease, background 160ms ease;
}

.designer-artwork-upload:hover {
    border-color: var(--green);
    background: #ecf5ee;
}

.designer-artwork-upload input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    clip-path: inset(50%);
}

.designer-artwork-upload__icon {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--green);
    color: var(--white);
}

.designer-artwork-upload__icon svg {
    width: 17px;
    height: 17px;
}

.designer-artwork-upload > span:last-child {
    display: grid;
    gap: 1px;
    min-width: 0;
}

.designer-artwork-upload strong {
    font-size: 0.78rem;
}

.designer-artwork-upload small {
    color: var(--muted);
    font-size: 0.67rem;
}

.designer-select-row {
    margin-top: 12px;
}

.designer-clear-artwork,
.designer-download {
    border: 0;
    background: transparent;
    color: var(--teal);
    font-size: 0.77rem;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.designer-clear-artwork {
    margin-top: 10px;
}

.designer-artwork-note {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.68rem;
    line-height: 1.4;
}

.designer-artwork-note svg {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    margin-top: 1px;
    color: var(--teal);
}

.designer-actions {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 9px;
    padding: 16px 18px 18px;
    border-top: 1px solid var(--line);
    background: rgba(247, 247, 243, 0.82);
}

.designer-actions .button {
    min-width: 0;
    padding-inline: 11px;
    font-size: 0.78rem;
}

.designer-actions .button--dark {
    background: linear-gradient(135deg, var(--green), #39775f);
}

.designer-download,
.designer-status {
    grid-column: 1 / -1;
}

.designer-download {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 2px 0;
}

.designer-download svg {
    width: 15px;
    height: 15px;
}

.designer-status {
    min-height: 0;
    margin: 0;
    color: var(--green);
    font-size: 0.73rem;
    font-weight: 800;
}

.designer-preview {
    position: relative;
    min-height: 776px;
    padding: 18px;
    overflow: hidden;
    border: 1px solid #242d29;
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 50% 45%, rgba(244, 237, 224, 0.14), transparent 31%),
        linear-gradient(135deg, #18372d, #101a17 72%);
    box-shadow: 0 28px 64px rgba(15, 22, 19, 0.2);
}

.designer-preview::after {
    content: "VARSITY / CUSTOM / 01";
    position: absolute;
    right: -18px;
    bottom: 84px;
    color: rgba(255, 255, 255, 0.06);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.25em;
    transform: rotate(-90deg);
    transform-origin: right bottom;
}

.designer-preview__topline {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.designer-preview__topline > span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.designer-preview__topline svg {
    width: 15px;
    height: 15px;
    color: #f3d77b;
}

.designer-view-toggle {
    display: inline-grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.14);
}

.designer-view-toggle button {
    min-width: 54px;
    min-height: 28px;
    border: 0;
    border-radius: 5px;
    background: transparent;
    color: rgba(255, 255, 255, 0.66);
    font-size: 0.68rem;
    font-weight: 900;
}

.designer-view-toggle button.is-active {
    background: var(--white);
    color: var(--ink);
}

.designer-canvas-wrap {
    position: relative;
    z-index: 1;
    min-height: 650px;
    display: grid;
    place-items: center;
}

.designer-canvas-glow {
    position: absolute;
    width: min(88%, 500px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(244, 237, 224, 0.13);
    filter: blur(10px);
}

.designer-canvas {
    position: relative;
    z-index: 1;
    width: min(100%, 630px);
    max-height: 650px;
    overflow: visible;
}

.designer-canvas [data-designer-jacket-view][hidden] {
    display: none;
}

.designer-preview__hint {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    max-width: 620px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.73rem;
    line-height: 1.45;
}

.designer-preview__hint svg {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    margin-top: 2px;
    color: #f3d77b;
}

.designer-summary {
    padding: 24px 20px;
}

.designer-summary .eyebrow {
    margin-bottom: 8px;
}

.designer-summary__list {
    display: grid;
    gap: 0;
    margin: 22px 0;
}

.designer-summary__list div {
    padding: 13px 0;
    border-top: 1px solid var(--line);
}

.designer-summary__list div:last-child {
    border-bottom: 1px solid var(--line);
}

.designer-summary__list dt {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
}

.designer-summary__list dd {
    margin: 5px 0 0;
    font-size: 0.83rem;
    font-weight: 850;
    line-height: 1.3;
}

.designer-summary__swatch {
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
    border: 1px solid rgba(21, 21, 21, 0.18);
    border-radius: 50%;
    background: var(--green);
}

.designer-summary__note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    padding: 12px;
    border-radius: 10px;
    background: #f5f4ef;
}

.designer-summary__note svg {
    width: 17px;
    height: 17px;
    flex: 0 0 auto;
    color: var(--teal);
}

.designer-summary__note p {
    margin: 0;
    color: var(--muted);
    font-size: 0.73rem;
    line-height: 1.45;
}

.designer-process {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto 86px;
    padding: 46px;
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 48px;
    border-radius: var(--radius-lg);
    background: var(--green);
    color: var(--white);
}

.designer-process .eyebrow {
    color: #f3d77b;
}

.designer-process h2 {
    max-width: 390px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.5rem;
    line-height: 0.97;
}

.designer-process ol {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.designer-process li {
    display: grid;
    align-content: start;
    gap: 7px;
}

.designer-process li > span {
    color: #f3d77b;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.7rem;
    font-weight: 900;
}

.designer-process strong {
    font-size: 0.94rem;
}

.designer-process p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    line-height: 1.45;
}

.drawer-design-note {
    display: grid;
    gap: 6px;
    padding: 13px;
    border: 1px solid rgba(36, 91, 69, 0.2);
    border-radius: var(--radius);
    background: #f0f7f2;
}

.drawer-design-note__title {
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--green);
    font-size: 0.8rem;
}

.drawer-design-note__title svg,
.drawer-design-note a svg {
    width: 15px;
    height: 15px;
}

.drawer-design-note p {
    margin: 0;
    color: var(--muted);
    font-size: 0.75rem;
}

.drawer-design-note a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    width: fit-content;
    color: var(--teal);
    font-size: 0.78rem;
    font-weight: 900;
}

@media (max-width: 1240px) {
    .designer-workbench {
        grid-template-columns: minmax(292px, 330px) minmax(0, 1fr);
    }

    .designer-summary {
        grid-column: 1 / -1;
        display: grid;
        grid-template-columns: 220px minmax(0, 1fr) minmax(220px, 0.85fr);
        align-items: start;
        gap: 20px;
    }

    .designer-summary__list {
        margin: 0;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 20px;
    }

    .designer-summary__list div:last-child {
        border-bottom: 0;
    }
}

@media (max-width: 880px) {
    .designer-spotlight {
        grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
    }

    .designer-spotlight__image,
    .designer-spotlight {
        min-height: 420px;
    }

    .designer-spotlight__copy {
        padding: 38px 32px;
    }

    .designer-hero {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-top: 46px;
    }

    .designer-hero__copy {
        max-width: 640px;
    }

    .designer-hero__visual {
        min-height: 430px;
        max-width: 570px;
    }

    .designer-workbench {
        grid-template-columns: 1fr;
    }

    .designer-controls {
        position: static;
    }

    .designer-control-scroll {
        max-height: none;
        overflow: visible;
    }

    .designer-summary {
        grid-column: auto;
    }

    .designer-preview {
        min-height: 700px;
    }

    .designer-process {
        grid-template-columns: 1fr;
        gap: 34px;
    }
}

@media (max-width: 620px) {
    .designer-spotlight {
        width: min(100% - 20px, 1180px);
        min-height: 0;
        grid-template-columns: 1fr;
        margin-top: 0;
        margin-bottom: 16px;
        border-radius: 14px;
    }

    .designer-spotlight__image {
        min-height: 350px;
    }

    .designer-spotlight__copy {
        padding: 32px 22px;
    }

    .designer-spotlight__copy h2 {
        font-size: 2.1rem;
    }

    .designer-hero {
        width: min(100% - 32px, 1180px);
        min-height: 0;
        padding: 34px 0 54px;
    }

    .designer-hero__copy h1 {
        font-size: 2.75rem;
        letter-spacing: -0.045em;
    }

    .designer-hero__points {
        gap: 7px;
        margin: 22px 0;
    }

    .designer-hero__points span {
        font-size: 0.7rem;
    }

    .designer-hero__visual,
    .designer-hero__visual img {
        min-height: 365px;
    }

    .designer-workbench {
        width: min(100% - 20px, 1400px);
        margin-bottom: 60px;
        gap: 12px;
    }

    .designer-controls__heading,
    .designer-summary {
        padding: 20px 16px;
    }

    .designer-control-scroll {
        padding: 0 16px;
    }

    .designer-actions {
        padding: 14px 16px 16px;
    }

    .designer-preview {
        min-height: 560px;
        padding: 14px 10px;
        border-radius: 14px;
    }

    .designer-preview__topline > span {
        font-size: 0.65rem;
    }

    .designer-canvas-wrap {
        min-height: 440px;
    }

    .designer-canvas {
        width: min(126%, 590px);
        max-width: none;
        max-height: 470px;
    }

    .designer-preview__hint {
        padding: 0 6px;
        font-size: 0.68rem;
    }

    .designer-summary {
        display: block;
    }

    .designer-summary__list {
        display: grid;
        grid-template-columns: 1fr;
        margin: 20px 0;
    }

    .designer-summary__list div:last-child {
        border-bottom: 1px solid var(--line);
    }

    .designer-process {
        width: min(100% - 20px, 1180px);
        margin-bottom: 58px;
        padding: 28px 22px;
        border-radius: 14px;
    }

    .designer-process h2 {
        font-size: 2rem;
    }

    .designer-process ol {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .designer-process li {
        grid-template-columns: 43px minmax(0, 1fr);
        column-gap: 10px;
    }

    .designer-process li > span {
        grid-row: span 2;
        font-size: 1.35rem;
    }
}
