:root {
    --red: #b30000;
    --red-dark: #7d0808;
    --red-soft: #dcd0c9;
    --ink: #111111;
    --charcoal: #4f4a49;
    --stone: #777170;
    --cream: #f3f0eb;
    --paper: #fbfaf8;
    --white: #ffffff;
    --line: #d9d4cd;
    --line-dark: #2c2a2a;
    --font: "Manrope", Arial, sans-serif;
    --mono: "IBM Plex Mono", monospace;
    --page: min(1480px, calc(100% - 64px));
    --radius: 4px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
button, input, select { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { color: inherit; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    left: 18px;
    top: 18px;
    z-index: 999;
    transform: translateY(-160%);
    background: var(--ink);
    color: var(--white);
    padding: 10px 14px;
    font-weight: 700;
}
.skip-link:focus { transform: translateY(0); }

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

.brand-bar {
    background: var(--ink);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.brand-bar-inner {
    width: var(--page);
    min-height: 36px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
}
.brand-bar-divider {
    width: 30px;
    height: 1px;
    background: rgba(255,255,255,.35);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251,250,248,.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
}
.header-inner {
    width: var(--page);
    min-height: 92px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 240px 1fr auto;
    align-items: center;
    gap: 34px;
}
.brand {
    width: 210px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
}
.brand img { width: 194px; height: auto; }
.brand-tagline {
    margin-left: 22px;
    margin-top: -4px;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .36em;
    color: var(--charcoal);
}
.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 2.6vw, 44px);
}
.main-nav a,
.header-text-link {
    position: relative;
    font-size: 13px;
    font-weight: 700;
}
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 2px;
    background: var(--red);
    transition: right .2s ease;
}
.main-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: 22px; }
.menu-toggle { display: none; }

.button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .01em;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 46px; padding-inline: 20px; }
.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: var(--red); }
.button-red { background: var(--red); color: var(--white); }
.button-red:hover { background: var(--red-dark); }
.button-white { background: var(--white); color: var(--ink); }
.button-white:hover { background: var(--cream); }
.button-block { width: 100%; }
.text-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 800;
    border-bottom: 1px solid var(--ink);
    padding-bottom: 3px;
}
.text-arrow span { font-size: 16px; }

.hero {
    background: var(--cream);
    border-bottom: 1px solid var(--line);
}
.hero-grid {
    width: var(--page);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, .91fr) minmax(540px, 1.09fr);
    min-height: 760px;
}
.hero-copy {
    padding: 92px 70px 80px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.kicker {
    margin: 0 0 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--red);
    font-size: 11px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.kicker span {
    width: 24px;
    height: 2px;
    background: currentColor;
}
.kicker-dark { color: var(--ink); }
.kicker-light { color: var(--white); }
.hero h1 {
    margin: 0;
    max-width: 760px;
    font-size: clamp(66px, 6.7vw, 118px);
    line-height: .88;
    letter-spacing: -.067em;
    font-weight: 700;
}
.hero h1 em {
    color: var(--red);
    font-style: normal;
    font-weight: 800;
}
.hero-lead {
    max-width: 610px;
    margin: 34px 0 0;
    color: #4e4a47;
    font-size: 18px;
    line-height: 1.75;
}
.hero-actions {
    margin-top: 34px;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.hero-proof {
    margin-top: 62px;
    padding-top: 22px;
    border-top: 1px solid #cbc4bc;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}
.hero-proof div { min-width: 0; }
.hero-proof .proof-number {
    display: block;
    margin-bottom: 16px;
    font-family: var(--mono);
    font-size: 10px;
    color: var(--red);
}
.hero-proof strong { display: block; font-size: 13px; }
.hero-proof small { display: block; margin-top: 5px; color: var(--stone); font-size: 11px; }

.hero-art {
    position: relative;
    min-height: 760px;
    padding: 44px 0 44px 44px;
}
.hero-art-label {
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 2;
    font-size: 9px;
    color: var(--charcoal);
}
.fabric-panel {
    position: relative;
    height: 100%;
    min-height: 672px;
    overflow: hidden;
    background:
        linear-gradient(125deg, rgba(255,255,255,.08), transparent 40%),
        repeating-linear-gradient(0deg, rgba(255,255,255,.018) 0 1px, transparent 1px 4px),
        #1b1919;
    border-radius: 2px;
}
.fabric-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 68% 38%, rgba(179,0,0,.26), transparent 33%);
    pointer-events: none;
}
.fabric-thread {
    position: absolute;
    border: 2px solid rgba(179,0,0,.78);
    border-radius: 50%;
    transform: rotate(-24deg);
}
.thread-one { width: 640px; height: 330px; left: -180px; bottom: -90px; }
.thread-two { width: 520px; height: 220px; right: -180px; top: 100px; border-color: rgba(255,255,255,.12); }
.hoop {
    position: absolute;
    left: 50%;
    top: 43%;
    width: min(390px, 62%);
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    border: 20px solid #ded7cd;
    border-radius: 50%;
    box-shadow: inset 0 0 0 3px #a99e91, 0 30px 80px rgba(0,0,0,.5);
    z-index: 1;
}
.hoop::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -48px;
    width: 64px;
    height: 38px;
    transform: translateX(-50%);
    border: 7px solid #ded7cd;
    border-bottom: 0;
    border-radius: 8px 8px 0 0;
}
.hoop-inner {
    position: absolute;
    inset: 6px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        repeating-linear-gradient(90deg, rgba(255,255,255,.025) 0 1px, transparent 1px 3px),
        #252222;
}
.hoop-inner img { width: 54%; filter: drop-shadow(0 10px 20px rgba(0,0,0,.22)); }
.fabric-caption {
    position: absolute;
    left: 40px;
    bottom: 36px;
    z-index: 2;
    color: var(--white);
}
.fabric-caption span {
    display: block;
    margin-bottom: 8px;
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #beb7b1;
}
.fabric-caption strong {
    font-size: clamp(42px, 4vw, 66px);
    line-height: .86;
    letter-spacing: -.05em;
}
.spec-card {
    position: absolute;
    z-index: 4;
    width: 205px;
    padding: 18px;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 18px 60px rgba(0,0,0,.12);
}
.spec-card span { display: block; color: var(--red); font-size: 8px; }
.spec-card strong { display: block; margin-top: 8px; font-size: 14px; }
.spec-card small { display: block; margin-top: 4px; color: var(--stone); font-size: 10px; }
.spec-card-top { left: 8px; top: 90px; }
.spec-card-bottom { right: -20px; bottom: 104px; }
.mini-progress { height: 4px; background: #ded9d3; margin-top: 14px; }
.mini-progress span { width: 68%; height: 100%; background: var(--red); }

.marquee {
    background: var(--red);
    color: var(--white);
    overflow: hidden;
}
.marquee-track {
    min-height: 68px;
    width: var(--page);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    white-space: nowrap;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
}
.marquee-track i { width: 5px; height: 5px; background: var(--white); border-radius: 50%; opacity: .6; }

.section { padding: 112px 0; }
.section-intro,
.service-showcase,
.business-panel,
.faq-section,
.footer-top,
.footer-bottom { width: var(--page); margin-inline: auto; }
.two-column-intro {
    display: grid;
    grid-template-columns: 1.18fr .82fr;
    gap: 90px;
    align-items: end;
}
.section-intro h2,
.pricing-header h2,
.promise-copy h2,
.process-intro h2,
.business-copy h2,
.faq-title h2,
.final-cta h2,
.drawer-panel h2 {
    margin: 0;
    font-size: clamp(46px, 5vw, 78px);
    line-height: .98;
    letter-spacing: -.055em;
}
.section-intro > p,
.pricing-header > p,
.promise-copy > p,
.business-copy > p {
    margin: 0;
    color: var(--stone);
    font-size: 16px;
    line-height: 1.8;
}
.service-showcase {
    margin-top: 58px;
    display: grid;
    grid-template-columns: 1.15fr .9fr .95fr;
    gap: 12px;
}
.service-tile {
    min-height: 570px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--line);
}
.service-tile-red { background: var(--red); color: var(--white); border-color: var(--red); }
.service-tile-cream { background: #e8e1d8; }
.service-tile-dark { background: #1a1818; color: var(--white); border-color: #1a1818; }
.service-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.service-top .mono { font-size: 9px; opacity: .72; }
.service-visual {
    position: relative;
    flex: 1;
    display: grid;
    place-items: center;
    min-height: 310px;
}
.polo-visual::before,
.jacket-visual::before,
.cap-visual::before {
    content: "";
    display: block;
    border: 2px solid currentColor;
    opacity: .34;
}
.polo-visual::before { width: 210px; height: 250px; clip-path: polygon(23% 0, 40% 0, 50% 13%, 60% 0, 77% 0, 100% 15%, 85% 35%, 78% 28%, 78% 100%, 22% 100%, 22% 28%, 15% 35%, 0 15%); background: rgba(255,255,255,.04); }
.jacket-visual::before { width: 220px; height: 260px; clip-path: polygon(30% 0, 43% 0, 50% 14%, 57% 0, 70% 0, 100% 19%, 87% 43%, 76% 36%, 76% 100%, 24% 100%, 24% 36%, 13% 43%, 0 19%); background: rgba(79,74,73,.04); }
.cap-visual::before { width: 250px; height: 160px; border-radius: 140px 140px 24px 24px; transform: translateY(28px); }
.service-visual span {
    position: absolute;
    font-family: var(--mono);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .12em;
}
.service-tile-red .service-visual span { color: var(--white); }
.service-tile-cream .service-visual span { color: var(--red); }
.service-tile-dark .service-visual span { color: #d7d0c9; }
.service-bottom h3 { margin: 0; font-size: 28px; letter-spacing: -.035em; }
.service-bottom p { margin: 8px 0 0; max-width: 390px; color: inherit; opacity: .72; font-size: 12px; line-height: 1.7; }

.pricing-section {
    padding: 112px 0;
    background: #161414;
    color: var(--white);
}
.pricing-header,
.calculator { width: var(--page); margin-inline: auto; }
.pricing-header {
    display: grid;
    grid-template-columns: 1fr .72fr;
    gap: 90px;
    align-items: end;
}
.pricing-header > p { color: #aaa3a0; }
.calculator {
    margin-top: 60px;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(380px, .65fr);
    background: var(--paper);
    color: var(--ink);
}
.calculator-form { padding: 48px; }
.form-step {
    margin-bottom: 40px;
    display: flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
}
.form-step span {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    background: var(--red);
    color: var(--white);
    font-family: var(--mono);
    font-size: 9px;
}
.form-group { margin-bottom: 28px; }
.field-label {
    display: block;
    margin-bottom: 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}
.segmented-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}
.segment {
    min-height: 52px;
    border: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: transparent;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
}
.segment.active { background: var(--ink); color: var(--white); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.text-input {
    width: 100%;
    min-height: 54px;
    border: 1px solid #cfc9c2;
    border-radius: 0;
    background: var(--white);
    color: var(--ink);
    padding: 0 15px;
    outline: 0;
}
.text-input:focus { border-color: var(--red); box-shadow: 0 0 0 2px rgba(179,0,0,.08); }
.mode-switch { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mode-button {
    min-height: 82px;
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line);
    background: transparent;
    text-align: left;
    padding: 12px;
    cursor: pointer;
}
.mode-button.active { border-color: var(--red); background: #fff7f5; }
.mode-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: #e7e2dc;
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;
}
.mode-button.active .mode-icon { background: var(--red); color: var(--white); }
.mode-button strong { display: block; font-size: 12px; }
.mode-button small { display: block; margin-top: 3px; color: var(--stone); font-size: 10px; }
.pricing-panel { margin: 4px 0 30px; padding: 24px; background: #efebe5; }
.pricing-panel.is-hidden { display: none; }
.size-heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.size-heading strong { font-size: 13px; }
.size-heading span { padding: 6px 9px; background: var(--ink); color: var(--white); font-size: 8px; font-family: var(--mono); text-transform: uppercase; }
.size-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 7px; }
.size-option {
    min-width: 0;
    min-height: 146px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 4px;
    border: 1px solid #d3ccc3;
    background: var(--paper);
    padding: 10px 7px;
    cursor: pointer;
}
.size-option.active { border-color: var(--red); box-shadow: inset 0 0 0 1px var(--red); }
.size-option strong { font-size: 11px; }
.size-option small { min-height: 28px; text-align: center; color: var(--stone); font-size: 8px; }
.size-shape {
    display: grid;
    place-items: center;
    margin: auto;
    border: 1px solid #b9b1a8;
    color: var(--charcoal);
    font-family: var(--mono);
    font-size: 8px;
}
.size-option.active .size-shape { border-color: var(--red); color: var(--red); }
.size-name { width: 58px; height: 28px; }
.size-a6 { width: 45px; height: 63px; }
.size-a5 { width: 51px; height: 72px; }
.size-a4 { width: 57px; height: 80px; }
.size-a3 { width: 63px; height: 89px; }
.helper-text { margin: 15px 0 0; color: var(--stone); font-size: 9px; line-height: 1.7; }
.stitch-entry { display: flex; align-items: center; gap: 12px; }
.stitch-entry .text-input { max-width: 270px; }
.stitch-entry span { font-size: 11px; color: var(--stone); }
.upload-box {
    min-height: 82px;
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px dashed #aaa39a;
    cursor: pointer;
}
.upload-box:hover { border-color: var(--red); }
.upload-symbol { width: 36px; height: 36px; display: grid; place-items: center; background: var(--ink); color: var(--white); font-size: 20px; }
.upload-copy strong { display: block; font-size: 11px; }
.upload-copy small { display: block; margin-top: 4px; color: var(--stone); font-size: 9px; }
.upload-action { font-size: 10px; font-weight: 800; text-decoration: underline; }
.upload-box input { position: absolute; opacity: 0; pointer-events: none; }

.calculator-summary {
    position: relative;
    padding: 42px;
    display: flex;
    flex-direction: column;
    background: var(--red);
    color: var(--white);
    overflow: hidden;
}
.calculator-summary::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    right: -220px;
    top: -120px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 50%;
}
.summary-brand { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.summary-brand img { width: 52px; height: 52px; object-fit: contain; padding: 7px; background: var(--white); }
.summary-brand span { font-size: 8px; opacity: .75; }
.summary-context { margin-top: 34px; display: flex; gap: 6px; flex-wrap: wrap; }
.summary-context span { padding: 7px 9px; border: 1px solid rgba(255,255,255,.28); font-size: 9px; }
.summary-price { margin-top: 34px; padding-bottom: 30px; border-bottom: 1px solid rgba(255,255,255,.3); }
.summary-price span, .summary-price small { display: block; }
.summary-price span { font-size: 10px; text-transform: uppercase; letter-spacing: .08em; opacity: .8; }
.summary-price strong { display: block; margin: 5px 0 2px; font-size: clamp(50px, 5vw, 76px); line-height: 1; letter-spacing: -.06em; }
.summary-price small { font-size: 9px; opacity: .76; }
.summary-lines { margin-top: 22px; display: grid; gap: 12px; }
.summary-lines div { display: flex; justify-content: space-between; gap: 20px; font-size: 10px; }
.summary-lines span { opacity: .72; }
.summary-lines strong { text-align: right; }
.summary-total { margin: auto 0 24px; padding-top: 38px; }
.summary-total span, .summary-total small { display: block; }
.summary-total span { font-size: 10px; opacity: .74; text-transform: uppercase; }
.summary-total strong { display: block; margin-top: 7px; font-size: 34px; letter-spacing: -.04em; }
.summary-total small { font-size: 9px; opacity: .74; }
.summary-note { margin: 14px 0 0; font-size: 9px; line-height: 1.65; opacity: .7; }

.brand-promise {
    width: var(--page);
    margin: 0 auto;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: center;
}
.promise-wordmark {
    min-height: 620px;
    padding: 46px;
    display: flex;
    align-items: flex-end;
    background:
        linear-gradient(155deg, transparent 60%, rgba(179,0,0,.14)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.018) 0 1px, transparent 1px 4px),
        #1a1818;
    color: var(--white);
    font-size: clamp(58px, 6vw, 94px);
    line-height: .82;
    letter-spacing: -.065em;
    font-weight: 800;
}
.promise-copy > p { margin-top: 28px; max-width: 720px; }
.promise-list { margin-top: 46px; border-top: 1px solid var(--line); }
.promise-list div {
    display: grid;
    grid-template-columns: 48px 180px 1fr;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    align-items: baseline;
}
.promise-list span { font-family: var(--mono); font-size: 9px; color: var(--red); }
.promise-list strong { font-size: 12px; }
.promise-list small { color: var(--stone); font-size: 10px; }

.process-section { background: var(--charcoal); color: var(--white); padding: 112px 0; }
.process-intro,
.process-list { width: var(--page); margin-inline: auto; }
.process-intro { max-width: none; }
.process-intro h2 { max-width: 840px; }
.process-list { margin-top: 62px; border-top: 1px solid rgba(255,255,255,.25); }
.process-list article {
    display: grid;
    grid-template-columns: 80px 240px 1fr 50px;
    gap: 24px;
    align-items: center;
    min-height: 118px;
    border-bottom: 1px solid rgba(255,255,255,.18);
}
.process-no { font-family: var(--mono); color: #d7d1cb; font-size: 10px; }
.process-list h3 { margin: 0; font-size: 24px; letter-spacing: -.03em; }
.process-list p { margin: 0; max-width: 640px; color: #d0c9c4; font-size: 12px; }
.process-arrow { text-align: right; font-size: 24px; color: #d9d2cd; }

.business-section { background: var(--paper); }
.business-panel {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    min-height: 590px;
    border: 1px solid var(--line);
}
.business-copy { padding: 70px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.business-copy > p { margin-top: 26px; max-width: 570px; }
.business-copy .button { margin-top: 30px; }
.order-preview { padding: 56px; background: #e8e1d8; display: flex; flex-direction: column; }
.order-preview-head { display: flex; justify-content: space-between; gap: 16px; font-size: 9px; }
.status-live { display: flex; align-items: center; gap: 7px; font-size: 8px; font-weight: 800; }
.status-live i { width: 7px; height: 7px; background: var(--red); border-radius: 50%; }
.order-preview-title { margin-top: 78px; display: grid; grid-template-columns: 1fr auto; align-items: end; }
.order-preview-title span { grid-column: 1 / -1; font-size: 12px; color: var(--stone); }
.order-preview-title strong { margin-top: 2px; font-size: clamp(88px, 8vw, 130px); line-height: .84; letter-spacing: -.08em; color: var(--red); }
.order-preview-title small { margin-left: 8px; padding-bottom: 11px; font-size: 10px; text-transform: uppercase; }
.order-preview-specs { margin-top: 52px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #c6bdb3; }
.order-preview-specs div { padding: 14px 12px 14px 0; border-right: 1px solid #c6bdb3; }
.order-preview-specs div + div { padding-left: 12px; }
.order-preview-specs span { display: block; color: var(--stone); font-size: 8px; text-transform: uppercase; }
.order-preview-specs strong { display: block; margin-top: 5px; font-size: 10px; }
.production-line { margin-top: auto; height: 7px; background: #c9c0b6; }
.production-line span { display: block; height: 100%; background: var(--red); }
.order-preview-foot { margin-top: 10px; display: flex; justify-content: space-between; gap: 8px; color: var(--stone); font-family: var(--mono); font-size: 7px; text-transform: uppercase; }

.faq-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
    list-style: none;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { font-size: 22px; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -5px 50px 25px 0; color: var(--stone); font-size: 12px; line-height: 1.75; }

.final-cta {
    width: var(--page);
    margin: 0 auto 112px;
    min-height: 430px;
    padding: 64px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    background: var(--red);
    color: var(--white);
}
.final-cta-copy > span { display: block; margin-bottom: 22px; font-size: 9px; opacity: .7; }
.final-cta h2 { max-width: 980px; }
.final-cta .button { flex: 0 0 auto; }

.site-footer { background: #171515; color: var(--white); padding: 74px 0 26px; }
.footer-top { display: grid; grid-template-columns: 2fr .75fr .75fr 1fr; gap: 48px; align-items: start; }
.footer-brand img { width: 260px; }
.footer-brand > span { display: block; margin: -5px 0 0 28px; color: #bcb4b0; font-size: 8px; font-weight: 800; letter-spacing: .37em; }
.footer-col { display: flex; flex-direction: column; gap: 9px; font-size: 11px; }
.footer-col strong { margin-bottom: 7px; font-size: 10px; color: #908a87; text-transform: uppercase; letter-spacing: .08em; }
.footer-col a, .footer-col span { color: #d7d0cc; }
.footer-col a:hover { color: var(--white); }
.footer-parent { padding-left: 28px; border-left: 1px solid #383434; }
.footer-parent span, .footer-parent small { display: block; color: #8f8885; font-size: 9px; }
.footer-parent strong { display: block; margin: 5px 0; font-size: 13px; }
.footer-bottom { margin-top: 72px; padding-top: 20px; border-top: 1px solid #302d2c; display: flex; justify-content: space-between; color: #7d7774; font-size: 9px; }

.order-drawer { position: fixed; inset: 0; z-index: 500; pointer-events: none; opacity: 0; transition: opacity .2s ease; }
.order-drawer.open { opacity: 1; pointer-events: auto; }
.drawer-backdrop { position: absolute; inset: 0; border: 0; background: rgba(17,17,17,.66); cursor: pointer; }
.drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(560px, 100%);
    height: 100%;
    overflow-y: auto;
    padding: 64px 50px;
    background: var(--paper);
    transform: translateX(100%);
    transition: transform .3s ease;
}
.order-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-close { position: absolute; right: 24px; top: 20px; width: 42px; height: 42px; border: 1px solid var(--line); background: transparent; font-size: 24px; cursor: pointer; }
.drawer-logo { width: 74px; margin-bottom: 38px; }
.drawer-panel h2 { font-size: 52px; }
.drawer-panel > p:not(.kicker) { color: var(--stone); font-size: 13px; }
.drawer-summary { margin: 36px 0; border-top: 1px solid var(--line); }
.drawer-summary div { display: flex; justify-content: space-between; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 11px; }
.drawer-summary span { color: var(--stone); }

@media (max-width: 1200px) {
    :root { --page: min(100% - 44px, 1120px); }
    .header-inner { grid-template-columns: 210px 1fr auto; gap: 20px; }
    .header-text-link { display: none; }
    .hero-grid { grid-template-columns: .95fr 1.05fr; }
    .hero-copy { padding-right: 42px; }
    .hero-art { padding-left: 20px; }
    .spec-card-bottom { right: -8px; }
    .service-showcase { grid-template-columns: 1fr 1fr; }
    .service-tile:first-child { grid-row: span 2; }
    .service-tile { min-height: 470px; }
    .size-grid { grid-template-columns: repeat(3, 1fr); }
    .size-option:nth-child(4), .size-option:nth-child(5) { min-height: 135px; }
    .business-copy { padding: 54px; }
    .order-preview { padding: 42px; }
}

@media (max-width: 960px) {
    :root { --page: calc(100% - 32px); }
    .brand-bar-inner span:last-child, .brand-bar-divider { display: none; }
    .header-inner { min-height: 78px; display: flex; justify-content: space-between; }
    .brand { width: 180px; }
    .brand img { width: 170px; }
    .brand-tagline { margin-left: 19px; font-size: 7px; }
    .main-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: 78px;
        display: none;
        padding: 18px 16px 24px;
        background: var(--paper);
        border-bottom: 1px solid var(--line);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .main-nav.open { display: flex; }
    .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--line); }
    .header-actions { margin-left: auto; }
    .menu-toggle {
        width: 44px;
        height: 44px;
        border: 0;
        background: transparent;
        display: grid;
        align-content: center;
        gap: 6px;
        padding: 10px;
        cursor: pointer;
        order: 3;
    }
    .menu-toggle span:not(.sr-only) { display: block; height: 2px; background: var(--ink); }
    .hero-grid { grid-template-columns: 1fr; min-height: 0; }
    .hero-copy { padding: 78px 0 64px; }
    .hero-art { min-height: 670px; padding: 0 0 34px; }
    .fabric-panel { min-height: 620px; }
    .spec-card-top { left: -6px; }
    .spec-card-bottom { right: -6px; }
    .marquee-track { overflow-x: auto; justify-content: flex-start; gap: 26px; }
    .marquee-track span, .marquee-track i { flex: 0 0 auto; }
    .section { padding: 86px 0; }
    .two-column-intro, .pricing-header, .brand-promise, .business-panel, .faq-section { grid-template-columns: 1fr; gap: 36px; }
    .service-showcase { grid-template-columns: 1fr; }
    .service-tile:first-child { grid-row: auto; }
    .service-tile { min-height: 490px; }
    .pricing-section, .process-section { padding: 86px 0; }
    .calculator { grid-template-columns: 1fr; }
    .calculator-summary { min-height: 590px; }
    .summary-total { margin-top: 50px; }
    .brand-promise { width: var(--page); }
    .promise-wordmark { min-height: 440px; }
    .process-list article { grid-template-columns: 55px 150px 1fr 30px; }
    .business-panel { min-height: 0; }
    .business-copy { padding: 50px; }
    .order-preview { min-height: 530px; }
    .faq-section { width: var(--page); }
    .final-cta { min-height: 390px; padding: 50px; align-items: flex-start; flex-direction: column; }
    .footer-top { grid-template-columns: 1.5fr 1fr 1fr; }
    .footer-parent { grid-column: 1 / -1; padding: 24px 0 0; border-left: 0; border-top: 1px solid #383434; }
}

@media (max-width: 640px) {
    :root { --page: calc(100% - 24px); }
    body { font-size: 15px; }
    .brand-bar-inner { min-height: 31px; font-size: 9px; }
    .site-header { top: 0; }
    .header-inner { min-height: 70px; }
    .brand { width: 142px; }
    .brand img { width: 138px; }
    .brand-tagline { display: none; }
    .header-actions .button { display: none; }
    .main-nav { top: 70px; }
    .hero-copy { padding: 60px 0 48px; }
    .hero h1 { font-size: 58px; }
    .hero-lead { margin-top: 26px; font-size: 15px; }
    .hero-actions { align-items: flex-start; flex-direction: column; }
    .hero-proof { margin-top: 46px; grid-template-columns: 1fr; gap: 14px; }
    .hero-proof div { display: grid; grid-template-columns: 34px 105px 1fr; align-items: baseline; gap: 6px; }
    .hero-proof .proof-number { margin: 0; }
    .hero-proof small { margin: 0; }
    .hero-art { min-height: 500px; }
    .fabric-panel { min-height: 470px; }
    .hoop { width: 66%; border-width: 14px; }
    .hoop::before { top: -38px; width: 50px; height: 31px; border-width: 5px; }
    .fabric-caption { left: 22px; bottom: 24px; }
    .fabric-caption strong { font-size: 42px; }
    .spec-card { width: 155px; padding: 13px; }
    .spec-card-top { top: 40px; left: -4px; }
    .spec-card-bottom { right: -4px; bottom: 66px; }
    .section-intro h2, .pricing-header h2, .promise-copy h2, .process-intro h2, .business-copy h2, .faq-title h2, .final-cta h2 { font-size: 43px; }
    .service-tile { min-height: 430px; padding: 20px; }
    .calculator-form { padding: 28px 18px; }
    .segmented-grid { grid-template-columns: repeat(2, 1fr); }
    .field-row, .mode-switch { grid-template-columns: 1fr; }
    .pricing-panel { padding: 17px 12px; }
    .size-grid { grid-template-columns: repeat(2, 1fr); }
    .size-option { min-height: 132px; }
    .size-option:last-child { grid-column: span 2; }
    .upload-box { grid-template-columns: 36px 1fr; }
    .upload-action { display: none; }
    .calculator-summary { min-height: 560px; padding: 30px 22px; }
    .summary-price strong { font-size: 58px; }
    .promise-wordmark { min-height: 340px; padding: 28px; font-size: 58px; }
    .promise-list div { grid-template-columns: 36px 1fr; gap: 8px 12px; }
    .promise-list small { grid-column: 2; }
    .process-list article { grid-template-columns: 40px 1fr 24px; gap: 10px; padding: 20px 0; }
    .process-list h3 { font-size: 20px; }
    .process-list p { grid-column: 2 / 4; }
    .process-arrow { grid-column: 3; grid-row: 1; }
    .business-copy, .order-preview { padding: 30px 22px; }
    .order-preview { min-height: 500px; }
    .order-preview-title { margin-top: 58px; }
    .order-preview-specs { grid-template-columns: 1fr 1fr; }
    .order-preview-specs div { border-bottom: 1px solid #c6bdb3; }
    .faq-section { gap: 30px; }
    .faq-list summary { min-height: 70px; font-size: 12px; }
    .final-cta { width: var(--page); margin-bottom: 70px; min-height: 370px; padding: 30px 22px; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
    .footer-brand { grid-column: 1 / -1; }
    .footer-brand img { width: 220px; }
    .footer-bottom { margin-top: 48px; }
    .drawer-panel { padding: 54px 22px 30px; }
    .drawer-panel h2 { font-size: 42px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; }
}
