/* ---------- RESET ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Space Grotesk', sans-serif;
    background: #f4f3ef;
    color: #0a0a0a;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ---------- VARIABLES ---------- */
:root {
    --bg: #f4f3ef;
    --ink: #0a0a0a;
    --ink-soft: #2a2a2a;
    --muted: #8a8a86;
    --line: #d8d6d0;
    --accent: #0a0a0a;
    --paper: #ffffff;
}

/* ---------- UTILITIES ---------- */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 32px;
}

.graffiti { font-family: 'Permanent Marker', cursive; font-weight: 400; }
.display  { font-family: 'Archivo Black', sans-serif; letter-spacing: -0.02em; }

/* ---------- NAV ---------- */
.nav {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 999999;
    padding: 22px 0;
    background: rgba(244, 243, 239, 0);
    border-bottom: 1px solid transparent;
    transition: all 0.35s ease;
}

/* Desktop logo row (centered, above links) */
.nav-logo-row {
    display: block;
    text-align: center;
    margin: 0 auto 10px;
}
.nav-logo-img {
    height: 164px;
    width: auto;
    margin: 0 auto;
    display: block;
}

/* Mobile logo (hidden on desktop) */
.nav-mobile-logo { display: none; }

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    position: relative;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 6rem;
    list-style: none;
}
.nav-links a {
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
    padding: 4px 0;
    transition: opacity 0.25s ease;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 0; height: 2px;
    background: var(--ink);
    transition: width 0.3s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: var(--ink);
    color: var(--bg);
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: transform 0.25s ease, background 0.25s ease;
}
.nav-cta:hover { transform: translateY(-2px); background: var(--ink-soft); }

.menu-toggle {
    display: none;
    width: 38px; height: 30px;
    position: relative;
    flex-shrink: 0;
}
.menu-toggle span {
    position: absolute;
    left: 0; right: 0;
    height: 2px;
    background: var(--ink);
    transition: all 0.3s ease;
}
.menu-toggle span:nth-child(1) { top: 6px; }
.menu-toggle span:nth-child(2) { top: 14px; }
.menu-toggle span:nth-child(3) { top: 22px; }
.menu-toggle.open span:nth-child(1) { top: 14px; transform: rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { top: 14px; transform: rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
    padding: 180px 0 0;
    position: relative;
    overflow: hidden;
    padding-top: 20rem;
}

.hero > .container { position: relative; z-index: 2; }

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--ink-soft);
}
.hero-eyebrow::before {
    content: '';
    display: inline-block;
    width: 40px; height: 2px;
    background: var(--ink);
}

.hero-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(3.4rem, 10vw, 9.5rem);
    line-height: 0.92;
    letter-spacing: -0.04em;
    margin-bottom: 40px;
    position: relative;
}
.hero-title .word {
    display: inline-block;
    overflow: visible;
    position: relative;
}
.hero-title .drip {
    font-family: 'Permanent Marker', cursive;
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.01em;
    position: relative;
}
.hero-title .drip::after {
    content: '';
    position: absolute;
    left: 6%;
    bottom: -16px;
    width: 88%;
    height: 14px;
    background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'><path d='M0 0 L0 6 Q5 14 10 6 L15 4 Q20 12 25 4 L40 2 Q45 10 50 3 L70 5 Q75 13 80 5 L100 3 Q105 11 110 4 L130 6 Q135 14 140 6 L160 4 Q165 12 170 4 L185 5 Q190 13 195 5 L200 3 L200 0 Z' fill='black'/></svg>") no-repeat center / 100% 100%;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: end;
}

.hero-lede {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--ink-soft);
    max-width: 460px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 36px;
}

.hero-side {
    border-left: 1px solid var(--line);
    padding-left: 32px;
}
.hero-meta {
    display: grid;
    gap: 28px;
}
.hero-meta-item .num {
    font-family: 'Archivo Black', sans-serif;
    font-size: 2.6rem;
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}
.hero-meta-item .lbl {
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
}

.hero-bg {
    background: url('../images/photoshoot9.png');
    background-position: 750px 20px;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: -99 !important;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 32px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 2px solid var(--ink);
}
.btn-primary { background: var(--ink); color: var(--bg); }
.btn-primary:hover { background: transparent; color: var(--ink); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }
.btn .arrow { display: inline-block; transition: transform 0.3s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- MARQUEE ---------- */
.marquee-wrap {
    margin-top: 100px;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,1);
    border-bottom: 1px solid rgba(255,255,255,1);
    background: rgba(255,255,255,0.3);
    overflow: hidden;
    z-index: 99;
    position: relative;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.marquee {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: scroll-left 32s linear infinite;
}
.marquee span {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.4rem;
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    gap: 60px;
}
.marquee span::after {
    content: '✦';
    color: var(--muted);
    font-size: 0.9rem;
}
@keyframes scroll-left {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ---------- SECTION ---------- */
.section {
    padding: 130px 0;
    position: relative;
}
.section-head {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: end;
    margin-bottom: 72px;
}
.section-tag {
    font-size: 0.82rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--muted);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}
.section-tag::before {
    content: '';
    width: 8px; height: 8px;
    background: var(--ink);
    border-radius: 50%;
}
.section-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin-top: 14px;
}
.section-title em {
    font-family: 'Permanent Marker', cursive;
    font-style: normal;
    font-weight: 400;
}
.section-sub {
    font-size: 1.05rem;
    color: var(--ink-soft);
    max-width: 520px;
}

/* ---------- CATEGORIES (OLD) ---------- */
.cats {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.cat-card {
    position: relative;
    aspect-ratio: 3/4;
    border-radius: 18px;
    overflow: hidden;
    background: var(--ink);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    cursor: pointer;
    transition: transform 0.45s cubic-bezier(.2,.7,.2,1);
}

.light { background: #f4f3ef; color: var(--ink); border: 1px solid var(--line); }
.gray  { background: #1a1a1a; }

.cat-card:hover { transform: translateY(-8px); }
.cat-card .num {
    position: absolute;
    top: 24px; left: 28px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    opacity: 0.7;
}
.cat-card .icon {
    position: absolute;
    top: 22px; right: 24px;
    font-family: 'Permanent Marker', cursive;
    font-size: 1.6rem;
    opacity: 0.85;
}
.cat-card h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.65rem;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}
.cat-card p {
    font-size: 0.92rem;
    opacity: 0.75;
    margin-bottom: 18px;
}
.cat-card .more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 500;
}
.cat-card .more::after {
    content: '→';
    transition: transform 0.3s ease;
}
.cat-card:hover .more::after { transform: translateX(6px); }

/* ---------- PROCESS ---------- */
.process { background: var(--ink); color: var(--bg); }
.process .section-tag { color: #999; }
.process .section-tag::before { background: var(--bg); }
.process .section-sub { color: #c9c8c4; }

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.step {
    position: relative;
    padding-top: 28px;
    border-top: 1px solid #2a2a2a;
}
.step .step-num {
    font-family: 'Permanent Marker', cursive;
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 28px;
    display: inline-block;
}
.step h4 {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.35rem;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}
.step p {
    font-size: 0.96rem;
    color: #b0b0ac;
    line-height: 1.65;
}

/* ---------- SHOWCASE ---------- */
.showcase-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
}
.showcase-card {
    border-radius: 22px;
    padding: 56px;
    background: var(--paper);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 460px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}
.showcase-card:hover { transform: translateY(-6px); }
.showcase-card.dark { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.showcase-card.dark .showcase-meta { color: #999; }

.showcase-meta {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted);
    margin-bottom: 24px;
}
.showcase-card h3 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2rem, 3.4vw, 3rem);
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}
.showcase-card h3 em {
    font-family: 'Permanent Marker', cursive;
    font-style: normal;
    font-weight: 400;
}
.showcase-card p {
    font-size: 1.02rem;
    line-height: 1.6;
    max-width: 460px;
    margin-bottom: 28px;
}
.showcase-card.dark p { color: #c9c8c4; }

.showcase-card .pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    border: 1.5px solid currentColor;
    font-size: 0.84rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    align-self: flex-start;
    transition: all 0.3s ease;
}
.showcase-card .pill:hover { background: currentColor; }
.showcase-card .pill:hover span { color: var(--paper); }
.showcase-card.dark .pill:hover span { color: var(--ink); }

.showcase-card .corner {
    position: absolute;
    bottom: -60px; right: -60px;
    width: 280px; height: 280px;
    border: 28px solid currentColor;
    border-radius: 50%;
    opacity: 0.06;
}
.showcase-card .corner.b {
    bottom: 80px; right: -120px;
    width: 220px; height: 220px;
    border-width: 22px;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials { background: var(--paper); }

.quote-wrap {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}
.quote {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    min-height: 140px;
}
.quote em {
    font-family: 'Permanent Marker', cursive;
    font-style: normal;
    font-weight: 400;
}
.quote-meta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
}
.quote-meta strong { color: var(--ink); font-weight: 600; }

.quote-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 48px;
}
.quote-dots button {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--line);
    transition: all 0.3s ease;
}
.quote-dots button.active {
    background: var(--ink);
    transform: scale(1.3);
}

/* ---------- CTA ---------- */
.cta {
    padding: 130px 10px;
    background: var(--ink);
    color: var(--bg);
    position: relative;
    overflow: hidden;
}
.cta-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    align-items: start;
    gap: 80px;
    position: relative;
    z-index: 2;
}
.cta h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
}
.cta h2 em {
    font-family: 'Permanent Marker', cursive;
    font-style: normal;
    font-weight: 400;
}
.cta-right p {
    color: #b0b0ac;
    margin-bottom: 28px;
    font-size: 1.05rem;
    line-height: 1.6;
}
.cta-form {
    display: flex;
    gap: 10px;
    background: #1a1a1a;
    padding: 8px;
    border-radius: 999px;
    border: 1px solid #2a2a2a;
}
.cta-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 14px 20px;
    color: var(--bg);
    font-family: inherit;
    font-size: 0.95rem;
}
.cta-form input::placeholder { color: #777; }
.cta-form button {
    padding: 14px 26px;
    background: var(--bg);
    color: var(--ink);
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: transform 0.25s ease;
}
.cta-form button:hover { transform: scale(1.03); }

.cta-bg {
    position: absolute;
    left: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 480px;
    height: 480px;
    opacity: 0.06;
    pointer-events: none;
}
.cta-bg::before,
.cta-bg::after {
    content: '';
    position: absolute;
    width: 240px; height: 240px;
    border: 30px solid var(--bg);
    border-radius: 50%;
}
.cta-bg::before { top: 20px; left: 120px; }
.cta-bg::after  { bottom: 20px; left: 120px; }

.cta-left h2 {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.4rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.cta-left h2 em {
    font-family: 'Permanent Marker', cursive;
    font-style: normal;
    font-weight: 400;
}
.cta-left p {
    color: #b0b0ac;
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 400px;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--bg);
    padding: 80px 0 32px;
    border-top: 1px solid var(--line);
}
.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}
.footer-brand {
    font-family: 'Permanent Marker', cursive;
    font-size: 1.8rem;
    margin-bottom: 16px;
}
.footer-tag {
    color: var(--ink-soft);
    max-width: 320px;
    line-height: 1.6;
}
.footer h5 {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 22px;
}
.footer ul { list-style: none; display: grid; gap: 12px; }
.footer ul a {
    color: var(--ink-soft);
    transition: color 0.25s ease, padding-left 0.25s ease;
    display: inline-block;
}
.footer ul a:hover { color: var(--ink); padding-left: 6px; }

.footer-bot {
    padding-top: 32px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.86rem;
    color: var(--muted);
    flex-wrap: wrap;
    gap: 16px;
}
.footer-socials { display: flex; gap: 20px; }
.footer-socials a { transition: color 0.25s ease; }
.footer-socials a:hover { color: var(--ink); }

/* ---------- REVEAL ANIMATIONS ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- FAQ ---------- */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 60px;
}
.faq-col {
    border-top: 1px solid var(--line);
}
.faq-item {
    border-bottom: 1px solid var(--line);
}
.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 26px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 24px;
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(1rem, 2vw, 1.15rem);
    letter-spacing: -0.01em;
    color: var(--ink);
    transition: color 0.25s ease;
}
.faq-q:hover { color: var(--muted); }

.faq-icon {
    flex-shrink: 0;
    width: 28px; height: 28px;
    border: 1.5px solid var(--ink);
    border-radius: 50%;
    position: relative;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.35s ease;
}
.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--ink);
    border-radius: 2px;
    transition: background 0.25s ease, transform 0.35s ease, opacity 0.25s ease;
}
/* horizontal bar */
.faq-icon::before {
    width: 12px; height: 1.5px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
/* vertical bar */
.faq-icon::after {
    width: 1.5px; height: 12px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
}
.faq-item.open .faq-icon {
    background: var(--ink);
    transform: rotate(45deg);
}
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: var(--bg); }

.faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(.2,.8,.2,1);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }

.faq-a > p {
    overflow: hidden;
    padding-bottom: 0;
    font-size: 1rem;
    color: var(--ink-soft);
    line-height: 1.7;
    transition: padding-bottom 0.4s ease;
}
.faq-item.open .faq-a > p { padding-bottom: 26px; }

/* ---------- ORDER FORM ---------- */
.order-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.order-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.order-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.order-field label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #b0b0ac;
}
.order-label-hint {
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
    font-size: 0.72rem;
    color: #666;
}
.order-field input,
.order-field textarea {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--bg);
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    resize: none;
    width: 100%;
}
.order-field input::placeholder,
.order-field textarea::placeholder { color: #444; }
.order-field input:focus,
.order-field textarea:focus {
    border-color: #555;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.04);
}

/* Upload zone */
.order-upload {
    background: #1a1a1a;
    border: 1.5px dashed #333;
    border-radius: 12px;
    padding: 28px 20px 20px;
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease;
    position: relative;
}
.order-upload.drag-over {
    border-color: var(--bg);
    background: #222;
}
.order-upload input[type="file"] {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
    border: none;
    background: transparent;
    padding: 0;
    box-shadow: none;
}
.order-upload input[type="file"]:focus { box-shadow: none; }

.order-upload-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    pointer-events: none;
}
.order-upload-icon {
    width: 40px; height: 40px;
    border: 1.5px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 4px;
}
.order-upload-text {
    font-size: 0.88rem;
    color: #666;
    text-align: center;
}
.order-upload-text u { color: #999; text-underline-offset: 3px; }

/* File preview chips */
.order-file-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}
.order-file-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #252525;
    border: 1px solid #333;
    border-radius: 999px;
    padding: 6px 14px 6px 10px;
    font-size: 0.78rem;
    color: #ccc;
    max-width: 200px;
}
.order-file-chip img {
    width: 22px; height: 22px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}
.order-file-chip .chip-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.order-file-chip .chip-remove {
    flex-shrink: 0;
    cursor: pointer;
    color: #555;
    font-size: 1rem;
    line-height: 1;
    transition: color 0.2s ease;
    pointer-events: all;
    z-index: 3;
    position: relative;
}
.order-file-chip .chip-remove:hover { color: #fff; }

/* Submit button */
.order-submit {
    margin-top: 6px;
    padding: 18px 32px;
    background: var(--bg);
    color: var(--ink);
    border-radius: 999px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 0.92rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
    border: none;
    align-self: center;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.order-submit:hover { transform: translateY(-2px); }
.order-submit.sent {
    background: #1f3d1f;
    color: #5adb5a;
    pointer-events: none;
}

/* ---------- CATEGORIES (LINEUP) ---------- */
.lineup-wrap {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    min-height: 1224px;
}

/* Left nav */
.lineup-nav {
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--line);
    background: var(--paper);
}
.lineup-nav-item {
    display: grid;
    grid-template-columns: 36px 1fr 20px;
    align-items: center;
    gap: 14px;
    width: 100%;
    text-align: left;
    padding: 28px 24px;
    border: none;
    border-bottom: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
    transition: background 0.25s ease, padding-left 0.25s ease;
    position: relative;
}
.lineup-nav-item:last-child { border-bottom: none; }
.lineup-nav-item::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 3px;
    background: var(--ink);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.lineup-nav-item.active::before,
.lineup-nav-item:hover::before { opacity: 1; }

.lineup-nav-item.active { background: #1a1a1a; }
.lineup-nav-item.active * { color: #fff !important; }

.lineup-nav-item:hover { background: #2a2a2a; }
.lineup-nav-item:hover * { color: #fff !important; }

.lineup-num {
    font-family: 'Archivo Black', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    color: var(--muted);
    transition: color 0.25s ease;
}
.lineup-nav-item.active .lineup-num,
.lineup-nav-item:hover .lineup-num { color: var(--ink); }

.lineup-label {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.lineup-label strong {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1rem;
    letter-spacing: -0.01em;
    line-height: 1;
    color: var(--ink);
}
.lineup-label em {
    font-style: normal;
    font-size: 0.78rem;
    color: var(--muted);
    line-height: 1.4;
}

.lineup-arrow {
    font-size: 1rem;
    color: var(--muted);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.lineup-nav-item.active .lineup-arrow,
.lineup-nav-item:hover .lineup-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Right panel */
.lineup-panel {
    background: var(--bg);
    position: relative;
    overflow: hidden;
}
.lineup-pane {
    display: none;
    padding: 40px 40px 48px;
    animation: paneFadeIn 0.35s ease forwards;
}
.lineup-pane.active { display: block; }

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

/* Pane header */
.pane-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}
.pane-tag {
    font-family: 'Archivo Black', sans-serif;
    font-size: 1.35rem;
    letter-spacing: -0.015em;
}
.pane-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1.5px solid var(--ink);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink);
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.pane-cta:hover {
    background: var(--ink);
    color: var(--bg);
    transform: translateY(-2px);
}

/* Blanks grid */
.blanks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.blank-card {
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    background: var(--paper);
    transition: transform 0.35s cubic-bezier(.2,.7,.2,1), box-shadow 0.35s ease;
    cursor: pointer;
}
.blank-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.blank-img {
  width: 100% !important;
  aspect-ratio: 4/4!important;
  background-size: cover!important;
  position: relative!important;
  overflow: hidden!important;
}
.blank-info {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid var(--line);
}
.blank-name {
    font-family: 'Archivo Black', sans-serif;
    font-size: 0.95rem;
    letter-spacing: -0.01em;
    color: var(--ink);
    line-height: 1;
}
.blank-detail {
    font-size: 0.75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ---------- BLANK SELECT DROPDOWN ---------- */
.blank-select { position: relative; }

.blank-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 14px 18px;
    cursor: pointer;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    user-select: none;
}
.blank-select.open .blank-select-trigger {
    border-color: #555;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.04);
    border-radius: 12px 12px 0 0;
}

.blank-select-val {
    font-size: 0.95rem;
    color: #444;
    transition: color 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.blank-select.selected .blank-select-val { color: var(--bg); }

.blank-select-arrow {
    flex-shrink: 0;
    font-size: 0.85rem;
    color: #555;
    margin-left: 12px;
    display: inline-block;
    transition: transform 0.3s ease;
}
.blank-select.open .blank-select-arrow { transform: rotate(180deg); }

.blank-select-drop {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #1a1a1a;
    border: 1px solid #555;
    border-top: none;
    border-radius: 0 0 12px 12px;
    z-index: 999;
    display: none;
    box-shadow: 0 24px 48px rgba(0,0,0,0.5);
    overflow: hidden;
}
.blank-select.open .blank-select-drop { display: block; }

.blank-select-search-wrap {
    padding: 12px 14px 8px;
    border-bottom: 1px solid #2a2a2a;
}
.blank-select-search {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    border-radius: 8px;
    padding: 10px 14px;
    color: var(--bg);
    font-family: inherit;
    font-size: 0.88rem;
    outline: none;
    transition: border-color 0.2s ease;
}
.blank-select-search:focus { border-color: #555; }
.blank-select-search::placeholder { color: #444; }

.blank-select-options {
    max-height: 260px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #333 transparent;
    padding: 6px 0;
}
.blank-select-options::-webkit-scrollbar { width: 4px; }
.blank-select-options::-webkit-scrollbar-track { background: transparent; }
.blank-select-options::-webkit-scrollbar-thumb { background: #333; border-radius: 99px; }

.bso-group-label {
    padding: 10px 18px 4px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #cc2b2b;
    font-family: 'Archivo Black', sans-serif;
}
.bso-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 18px;
    cursor: pointer;
    transition: background 0.15s ease;
}
.bso-option:hover,
.bso-option.focused { background: #242424; }
.bso-option.chosen  { background: #1f1f1f; }

.bso-option-dot {
    flex-shrink: 0;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #333;
    transition: background 0.2s ease;
}
.bso-option:hover .bso-option-dot,
.bso-option.chosen .bso-option-dot { background: #cc2b2b; }

.bso-option-info { display: flex; flex-direction: column; gap: 1px; }

.bso-option-name {
    font-size: 0.9rem;
    color: #ddd;
    font-weight: 500;
}
.bso-option.chosen .bso-option-name { color: var(--bg); }

.bso-option-detail {
    font-size: 0.72rem;
    color: #555;
}
.bso-empty {
    padding: 20px 18px;
    font-size: 0.88rem;
    color: #444;
    font-style: italic;
    text-align: center;
}
.bso-match { color: #cc2b2b; font-weight: 700; }

/* ---------- BLANK DETAIL MODAL ---------- */
.bm-overlay {
    position: fixed;
    inset: 0;
    z-index: 99999999;
    background: rgba(10,10,10,0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}
.bm-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.bm-box {
    background: var(--paper);
    border-radius: 20px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    position: relative;
    transform: translateY(24px) scale(0.97);
    transition: transform 0.38s cubic-bezier(.2,.8,.2,1);
    box-shadow: 0 40px 100px rgba(0,0,0,0.35);
}
.bm-overlay.open .bm-box {
    transform: translateY(0) scale(1);
}

.bm-close {
    position: absolute;
    top: 16px; right: 18px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--bg);
    font-size: 1.2rem;
    line-height: 1;
    display: flex; align-items: center; justify-content: center;
    z-index: 10;
    transition: transform 0.2s ease, background 0.2s ease;
}
.bm-close:hover { transform: rotate(90deg); background: #cc2b2b; }

/* Left: visual panel */
.bm-visual {
    background: #f0eeea;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 420px;
}

/* Slide strip */
.bm-slide-wrap {
    display: flex;
    width: 200%;
    height: 100%;
    transition: transform 0.42s cubic-bezier(.2,.8,.2,1);
}
.bm-slide-wrap.on-slide-1 { transform: translateX(-50%); }

.bm-slide {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.bm-slide.active {
    opacity: 1;
    pointer-events: all;
}

/* Image wrapper + zoom */
.bm-img-wrap {
    position: relative;
    width: 100%;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: zoom-in;
    border-radius: 10px;
}
.bm-img-wrap--chart { cursor: default; }
.bm-img-wrap img {
    width: auto;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    margin: 0 auto;
    transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
    transform-origin: center center;
    user-select: none;
    border-radius: 8px;
}
.bm-img-wrap.zoomed {
    cursor: zoom-out;
    overflow: visible;
}
.bm-img-wrap.zoomed img { transform: scale(2); }

/* Zoom hint */
.bm-zoom-hint {
    position: absolute;
    bottom: 10px; right: 10px;
    background: rgba(10,10,10,0.55);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 999px;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}
.bm-img-wrap.zoomed .bm-zoom-hint { opacity: 0; }

/* Arrows */
.bm-arrow {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--paper);
    border: 1px solid var(--line);
    font-size: 1rem;
    display: flex; align-items: center; justify-content: center;
    z-index: 5;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.bm-arrow:hover { background: var(--ink); color: var(--bg); }
.bm-arrow--prev { left: 12px; }
.bm-arrow--next { right: 12px; }
.bm-arrow--prev:hover { transform: translateY(-50%) translateX(-2px); }
.bm-arrow--next:hover { transform: translateY(-50%) translateX(2px); }

/* Dots */
.bm-dots {
    position: absolute;
    bottom: 14px;
    display: flex; gap: 8px;
    z-index: 5;
}
.bm-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--line);
    border: none;
    transition: background 0.25s ease, transform 0.25s ease;
}
.bm-dot.active { background: var(--ink); transform: scale(1.35); }

/* Right: info panel */
.bm-info {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--line) transparent;
}
.bm-category {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #cc2b2b;
    font-family: 'Archivo Black', sans-serif;
}
.bm-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    letter-spacing: -0.02em;
    line-height: 1.05;
    color: var(--ink);
}
.bm-title em {
    font-family: 'Permanent Marker', cursive;
    font-style: normal;
    color: #cc2b2b;
}

.bm-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.bm-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 0.74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink-soft);
}
.bm-tag-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #cc2b2b;
    flex-shrink: 0;
}
.bm-divider {
    height: 1px;
    background: var(--line);
    margin: 4px 0;
}

.bm-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.bm-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line);
}
.bm-spec-row:last-child { border-bottom: none; padding-bottom: 0; }
.bm-spec-label {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.72rem;
    color: var(--muted);
}
.bm-spec-val {
    color: var(--ink);
    font-weight: 500;
    text-align: right;
}

.bm-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 16px 28px;
    background: var(--ink);
    color: var(--bg);
    border-radius: 999px;
    font-family: 'Archivo Black', sans-serif;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    transition: transform 0.25s ease, background 0.25s ease;
    text-align: center;
}
.bm-cta:hover {
    background: #cc2b2b;
    transform: translateY(-2px);
}

/* ---------- TEXT MODAL ---------- */
.tm-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.tm-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.tm-box {
    background: var(--paper);
    border-radius: 20px;
    padding: 44px 48px;
    width: 100%;
    max-width: 560px;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.35s cubic-bezier(.2,.8,.2,1);
    box-shadow: 0 40px 80px rgba(0,0,0,0.25);
}
.tm-overlay.open .tm-box {
    transform: translateY(0) scale(1);
}
.tm-close {
    position: absolute;
    top: 16px; right: 18px;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--bg);
    font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
}
.tm-close:hover { transform: rotate(90deg); background: #cc2b2b; }

.tm-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(1.4rem, 4vw, 2rem);
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--ink);
    margin-bottom: 20px;
    padding-right: 32px;
}
.tm-divider {
    height: 1px;
    background: var(--line);
    margin-bottom: 20px;
}
.tm-content {
    font-size: 1rem;
    color: var(--ink-soft);
    line-height: 1.75;
}

/* ---------- LOADING SPINNER ---------- */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.6s linear infinite;
    margin-right: 8px;
    vertical-align: middle;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}


/* ---------- TOS MODAL EXTENSIONS ---------- */
.tm-box--wide {
    max-width: 680px;
    padding: 44px 48px;
}

.tm-body {
    max-height: 45vh;
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: var(--line) transparent;
}
.tm-body::-webkit-scrollbar { width: 4px; }
.tm-body::-webkit-scrollbar-track { background: transparent; }
.tm-body::-webkit-scrollbar-thumb { background: var(--line); border-radius: 99px; }

.tm-date {
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--muted);
    margin-bottom: 28px;
}

.tm-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
}
.tm-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.tm-section-title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink);
    margin-bottom: 10px;
}

.tm-section p {
    font-size: 0.92rem;
    color: var(--ink-soft);
    line-height: 1.75;
    margin-bottom: 10px;
}
.tm-section p:last-child { margin-bottom: 0; }

.tm-list {
    list-style: none;
    margin: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.tm-list li {
    font-size: 0.9rem;
    color: var(--ink-soft);
    line-height: 1.6;
    padding-left: 18px;
    position: relative;
}
.tm-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-size: 0.75rem;
    color: #cc2b2b;
    top: 2px;
}

@media (max-width: 560px) {
    .tm-box--wide { padding: 36px 28px; }
    .tm-body { max-height: 45vh; }
}





/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ---------- Mobile nav (≤980px) ---------- */
@media (max-width: 980px) {
    .nav {
        position: fixed;
        background: var(--bg);
        border-bottom: 1px solid var(--line);
        padding: 0;
    }

    .nav-logo-row  { display: none; }
    .nav-mobile-logo { display: block; }

    .nav-inner {
        justify-content: space-between;
        padding: 12px 24px;
        gap: 0;
    }

    .menu-toggle { display: flex; }
    .nav-cta { display: none; }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--bg);
        flex-direction: column;
        align-items: flex-start;
        padding: 0 32px;
        gap: 20px;
        border-bottom: 2px solid var(--line);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.4s ease, opacity 0.3s ease;
    }
    .nav-links.open {
        max-height: 400px;
        opacity: 1;
        padding: 24px 32px 32px;
    }
}

/* ---------- ≤1440px ---------- */
@media (max-width: 1440px) {
    .hero-bg {
        background: url('../images/photoshoot9.png');
        background-position: 450px 20px;
        background-repeat: no-repeat;
        background-size: contain;
        z-index: -99 !important;
    }
}

/* ---------- ≤980px (layout) ---------- */
@media (max-width: 980px) {
    .hero { padding: 140px 0 80px;  }
    .hero .container {padding-top:2rem;}
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-side { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 32px; }
    .hero-bg-mark { width: 500px; height: 500px; background-position: -300px -300px; }

    .hero-bg {
        background: url('../images/photoshoot9.png');
        background-position: 250px 20px;
        background-repeat: no-repeat;
        background-size: contain;
        z-index: -99 !important;
    }

    .section { padding: 90px 0; }
    .section-head { grid-template-columns: 1fr; gap: 24px; }

    .cats { grid-template-columns: repeat(2, 1fr); }
    .steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }

    .showcase-grid { grid-template-columns: 1fr; }

    .cta-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 2rem 1rem!important;
    }
    .cta-left p { max-width: 100%; }

    .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-bot { display: block !important; position: relative; }

    .lineup-wrap { grid-template-columns: 1fr; border-radius: 16px; }
    .lineup-nav {
        flex-direction: row;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid var(--line);
        scrollbar-width: none;
    }
    .lineup-nav::-webkit-scrollbar { display: none; }
    .lineup-nav-item {
        grid-template-columns: auto;
        grid-template-rows: auto auto;
        gap: 4px;
        padding: 16px 20px;
        border-bottom: none;
        border-right: 1px solid var(--line);
        min-width: 140px;
    }
    .lineup-nav-item:last-child { border-right: none; }
    .lineup-nav-item::before {
        left: 0; top: auto; bottom: 0; right: 0;
        width: auto; height: 3px;
    }
    .lineup-arrow { display: none; }
    .lineup-label em { display: none; }
    .lineup-pane { padding: 28px 24px 36px; }
    .blanks-grid { grid-template-columns: repeat(2, 1fr); }

    /* Offset hero below fixed nav */
    .hero { padding-top: 80px; }
}

/* ---------- ≤860px ---------- */
@media (max-width: 860px) {
    .faq-grid { grid-template-columns: 1fr; gap: 0; }
    .faq-col:not(:first-child) { border-top: none; }
}

/* ---------- ≤700px ---------- */
@media (max-width: 700px) {
    .bm-box {
        grid-template-columns: 1fr;
        max-height: 92vh;
        overflow-y: auto;
    }
    .bm-visual { min-height: 260px; }
    .bm-info { padding: 28px 24px; }
    .bm-arrow--prev { left: 6px; }
    .bm-arrow--next { right: 6px; }
}

/* ---------- ≤560px ---------- */
@media (max-width: 560px) {
    .container { padding: 0 22px; }
    .cats { grid-template-columns: 1fr; }
    .steps { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .showcase-card { padding: 36px; min-height: 380px; }
    .cta-form { flex-direction: column; border-radius: 22px; }
    .cta-form button { width: 100%; }
    .lineup-nav-item { min-width: 110px; padding: 14px 16px; }
    .blanks-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .pane-header { flex-direction: column; align-items: flex-start; gap: 14px; }
    .faq-q { font-size: 0.95rem; padding: 20px 0; }
    .order-form-row { grid-template-columns: 1fr; }
    .tm-box { padding: 36px 28px; }
}
