﻿:root {
    --gold: #C9A84C;
    --gold-light: #E2C97E;
    --gold-pale: #F5EDD8;
    --gold-border: rgba(201, 168, 76, 0.25);
    --ink: #141414;
    --ink-soft: #1e1e1e;
    --white: #ffffff;
    --cream: #FAFAF6;
    --muted: #888;
    --border: #E8E4DC;
    --input-bg: #ffffff;
    --input-border: #DDD9D0;
    --input-focus: rgba(201, 168, 76, 0.5);
    --error: #c0392b;
    --success: #27ae60;
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Barlow', sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --site-width: 1160px;
    --site-pad: 32px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--ink);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ── PAGE HEADER ── */
.page-header {
    background: var(--ink);
    padding: 52px var(--site-pad) 48px;
}

.page-header-inner {
    max-width: var(--site-width);
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.header-text {}

.header-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.header-h1 {
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 14px;
}

.header-h1 em {
    font-style: italic;
    color: var(--gold-light);
}

.header-sub {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    max-width: 480px;
    line-height: 1.7;
}

/* Trust badges in header */
.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    padding: 10px 16px;
    min-width: 240px;
}

.trust-badge-icon {
    width: 28px;
    height: 28px;
    background: rgba(201, 168, 76, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.trust-badge-text {
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.trust-badge-text strong {
    display: block;
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 700;
}

/* ── GOLD DIVIDER ── */
.gold-bar {
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
}

/* ── MAIN LAYOUT ── */
.main-wrap {
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 48px var(--site-pad) 80px;
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

/* ── FORM CARD ── */
.form-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

/* ── SECTION HEADERS ── */
.form-section {
    padding: 32px 36px;
    border-bottom: 1px solid var(--border);
}

.form-section:last-child {
    border-bottom: none;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.section-num {
    width: 28px;
    height: 28px;
    background: var(--ink);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
}

.section-sub {
    font-size: 12.5px;
    color: var(--muted);
    margin-left: 42px;
    margin-top: -18px;
    margin-bottom: 24px;
}

/* ── FORM FIELDS ── */
.field-row {
    display: grid;
    gap: 18px;
    margin-bottom: 18px;
}

.field-row.cols-2 {
    grid-template-columns: 1fr 1fr;
}

.field-row.cols-3 {
    grid-template-columns: 1fr 1fr 1fr;
}

.field-row.cols-1 {
    grid-template-columns: 1fr;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.field-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #555;
}

.field-label .req {
    color: var(--gold);
    margin-left: 2px;
}

.field-hint {
    font-size: 11.5px;
    color: #aaa;
    margin-top: -2px;
}

input[type="text"]:not(.products-search-textbox),
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="url"],
select,
textarea {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--ink);
    background: var(--input-bg);
    border: 1.5px solid var(--input-border);
    border-radius: 6px;
    padding: 11px 14px;
    outline: none;
    transition: border-color 0.16s, box-shadow 0.16s;
    width: 100%;
    appearance: none;
}

input::placeholder,
textarea::placeholder {
    color: #ccc;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

textarea {
    resize: vertical;
    min-height: 90px;
    line-height: 1.6;
}

/* Size inputs */
.size-pair {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 8px;
}

.size-pair .x-label {
    font-size: 14px;
    color: #bbb;
    font-weight: 600;
    text-align: center;
}

/* Quantity row */
.qty-group {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.qty-group .field-label {
    font-size: 11.5px;
}

/* ── CHECKBOXES — Finishes ── */
.finishes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.finish-check {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: 7px;
    cursor: pointer;
    transition: border-color 0.14s, background 0.14s;
    user-select: none;
}

.finish-check:hover {
    border-color: var(--gold-border);
    background: var(--gold-pale);
}

.finish-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--gold);
    cursor: pointer;
    flex-shrink: 0;
    border: none;
    padding: 0;
}

.finish-check input[type="checkbox"]:focus {
    box-shadow: none;
    border-color: transparent;
}

.finish-check.checked {
    border-color: var(--gold);
    background: var(--gold-pale);
}

.finish-name {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

/* ── RADIO GROUPS ── */
.radio-row {
    display: flex;
    gap: 12px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border: 1.5px solid var(--border);
    border-radius: 6px;
    cursor: pointer;
    font-size: 13.5px;
    font-weight: 500;
    color: #555;
    transition: border-color 0.14s, background 0.14s, color 0.14s;
    user-select: none;
}

.radio-option:hover {
    border-color: var(--gold-border);
    background: var(--gold-pale);
}

.radio-option input[type="radio"] {
    width: 15px;
    height: 15px;
    accent-color: var(--gold);
    cursor: pointer;
    border: none;
    padding: 0;
    flex-shrink: 0;
}

.radio-option input[type="radio"]:focus {
    box-shadow: none;
}

.radio-option.selected {
    border-color: var(--gold);
    background: var(--gold-pale);
    color: var(--ink);
}

/* ── TWO COLUMN RADIO GROUPS ── */
.two-radio-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.radio-group-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #bbb;
    margin-bottom: 8px;
}

/* ── FILE UPLOAD ── */
.upload-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.upload-zone {
    border: 2px dashed var(--border);
    border-radius: 8px;
    padding: 24px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.16s, background 0.16s;
    background: #fafaf8;
}

.upload-zone:hover {
    border-color: var(--gold);
    background: var(--gold-pale);
}

.upload-icon {
    font-size: 24px;
    margin-bottom: 8px;
    opacity: 0.4;
}

.upload-title {
    font-size: 13px;
    font-weight: 700;
    color: #444;
    margin-bottom: 4px;
}

.upload-sub {
    font-size: 11.5px;
    color: #aaa;
    line-height: 1.5;
}

.upload-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 7px 16px;
    background: var(--ink);
    color: var(--white);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: background 0.14s;
}

.upload-btn:hover {
    background: #333;
}

/* ── LINE BUTTON ── */
.line-btn {
    display: inline-block;
    padding: 8px 20px;
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 7px;
    color: var(--ink);
    font-size: 13.5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.14s var(--ease);
}

.line-btn:hover, .line-btn:focus, .line-btn:active {
    border-color: var(--gold-border);
    background: var(--gold-pale);
    outline: none;
}

/* ── ADD ATTACHMENT PLUS ICON ── */
.add-attachment-plus {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px dashed var(--gold-border);
    background: transparent;
    color: var(--gold);
    font-size: 22px;
    font-weight: 300;
    cursor: pointer;
    transition: all 0.14s var(--ease);
    margin-top: 12px;
    margin-bottom: 8px;
    user-select: none;
}

.add-attachment-plus:hover {
    border-color: var(--gold);
    background: var(--gold-pale);
    transform: scale(1.05);
}

/* ── DROPBOX LINK FIELD ── */
.dropbox-field {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

.dropbox-field input {
    flex: 1;
}

.dropbox-icon {
    font-size: 20px;
    opacity: 0.5;
    flex-shrink: 0;
}

/* ── MULTIPLE QUOTES ── */
.quote-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.quote-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.14s;
    border: 1.5px solid var(--border);
    color: #666;
    background: var(--cream);
}

.quote-tab.active {
    background: var(--ink);
    color: var(--gold);
    border-color: var(--ink);
}

.quote-tab .del {
    font-size: 11px;
    opacity: 0.5;
    margin-left: 2px;
    transition: opacity 0.12s;
}

.quote-tab:hover .del {
    opacity: 1;
}

.add-quote-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px dashed var(--gold-border);
    color: var(--gold);
    background: transparent;
    transition: border-color 0.14s, background 0.14s;
}

.add-quote-btn:hover {
    border-color: var(--gold);
    background: var(--gold-pale);
}

/* ── SUBMIT SECTION ── */
.submit-section {
    padding: 28px 36px 32px;
    background: #fafaf8;
    border-top: 1px solid var(--border);
}

.submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.submit-note {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    max-width: 380px;
}

.submit-note strong {
    color: var(--ink);
}

.submit-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 16px 36px;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    transition: background 0.16s, transform 0.12s, box-shadow 0.16s;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
    white-space: nowrap;
}

.submit-btn:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 28px rgba(201, 168, 76, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-arrow {
    font-size: 18px;
}

/* ── SIDEBAR ── */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.sidebar-card-header {
    background: var(--ink);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card-header h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--gold-light);
}

.sidebar-card-body {
    padding: 18px 20px;
}

/* Response time card */
.response-stats {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.response-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.response-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-icon {
    width: 36px;
    height: 36px;
    background: var(--gold-pale);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.stat-value {
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
}

.stat-label {
    font-size: 11.5px;
    color: var(--muted);
    margin-top: 3px;
}

/* Contact card */
.contact-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 7px;
    transition: border-color 0.14s, background 0.14s;
    cursor: pointer;
}

.contact-option:hover {
    border-color: var(--gold-border);
    background: var(--gold-pale);
}

.contact-option-icon {
    width: 34px;
    height: 34px;
    background: var(--ink);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
}

.contact-option-text {}

.contact-option-label {
    font-size: 11px;
    color: var(--muted);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.contact-option-value {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
}

/* What happens next */
.next-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.next-step {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.next-step:last-child {
    border-bottom: none;
}

.step-num {
    width: 22px;
    height: 22px;
    background: var(--gold-pale);
    border: 1.5px solid var(--gold-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 1px;
}

.step-text {}

.step-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 2px;
}

.step-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
}

/* ── FORM TYPE SWITCHER ── */
.form-switcher {
    max-width: var(--site-width);
    margin: 0 auto;
    padding: 32px var(--site-pad) 0;
    display: flex;
    align-items: stretch;
    gap: 16px;
}

.switcher-tab {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    border-radius: 10px 10px 0 0;
    cursor: pointer;
    border: 1.5px solid var(--border);
    border-bottom: none;
    background: #f0ede8;
    transition: background 0.18s, border-color 0.18s;
    position: relative;
    bottom: -2px;
}

.switcher-tab.active {
    background: var(--white);
    border-color: var(--border);
    border-bottom-color: var(--white);
    z-index: 2;
}

.switcher-tab:not(.active):hover {
    background: #ebe8e2;
}

.tab-icon {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    background: var(--border);
    transition: background 0.18s;
}

.switcher-tab.active .tab-icon {
    background: var(--ink);
}

.tab-content {}

.tab-name {
    font-size: 14px;
    font-weight: 800;
    color: #aaa;
    letter-spacing: 0.02em;
    margin-bottom: 3px;
    transition: color 0.18s;
}

.switcher-tab.active .tab-name {
    color: var(--ink);
}

.tab-desc {
    font-size: 12px;
    color: #bbb;
    line-height: 1.5;
    transition: color 0.18s;
}

.switcher-tab.active .tab-desc {
    color: var(--muted);
}

.tab-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 3px;
}

.tab-badge.fast {
    background: #e8f5e9;
    color: #27ae60;
}

.tab-badge.detailed {
    background: var(--gold-pale);
    color: #9a7830;
}

/* ── QUICK REQUEST FORM ── */
.quick-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.quick-hero {
    background: linear-gradient(135deg, var(--ink) 0%, #2a2a2a 100%);
    padding: 36px 40px 32px;
    position: relative;
    overflow: hidden;
}

.quick-hero::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.08);
}

.quick-hero::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 20%;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(201, 168, 76, 0.05);
}

.quick-hero-eyebrow {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.quick-hero-h2 {
    font-family: var(--font-display);
    font-size: 34px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 10px;
}

.quick-hero-h2 em {
    font-style: italic;
    color: var(--gold-light);
}

.quick-hero-sub {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 500px;
}

.quick-form-body {
    padding: 36px 40px;
}

.quick-fields {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.quick-name-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.quick-project-field textarea {
    min-height: 160px;
    font-size: 14.5px;
    line-height: 1.7;
}

.quick-project-field .char-hint {
    font-size: 11px;
    color: #bbb;
    text-align: right;
    margin-top: 5px;
}

.quick-upload-zone {
    border: 2px dashed var(--border);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: border-color 0.16s, background 0.16s;
    background: #fafaf8;
}

.quick-upload-zone:hover {
    border-color: var(--gold);
    background: var(--gold-pale);
}

.quick-upload-icon {
    width: 44px;
    height: 44px;
    background: var(--border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: background 0.16s;
}

.quick-upload-zone:hover .quick-upload-icon {
    background: rgba(201, 168, 76, 0.2);
}

.quick-upload-text {}

.quick-upload-title {
    font-size: 13.5px;
    font-weight: 700;
    color: #333;
    margin-bottom: 3px;
}

.quick-upload-sub {
    font-size: 12px;
    color: #aaa;
}

.quick-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 8px;
}

.quick-submit-note {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.6;
}

.quick-submit-note strong {
    color: var(--ink);
}

.quick-submit-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--ink);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 16px 36px;
    border-radius: 7px;
    border: none;
    cursor: pointer;
    transition: background 0.16s, transform 0.12s;
    white-space: nowrap;
}

.quick-submit-btn:hover {
    background: #2a2a2a;
    transform: translateY(-1px);
}

.quick-or-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 24px 0 20px;
}

.quick-or-line {
    flex: 1;
    height: 1px;
    background: var(--border);
}

.quick-or-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ccc;
}

.quick-contact-row {
    display: flex;
    gap: 12px;
}

.quick-contact-btn {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: 7px;
    cursor: pointer;
    transition: border-color 0.14s, background 0.14s;
    text-decoration: none;
    color: inherit;
}

.quick-contact-btn:hover {
    border-color: var(--gold-border);
    background: var(--gold-pale);
}

.qcb-icon {
    width: 32px;
    height: 32px;
    background: var(--ink);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.qcb-label {
    font-size: 10px;
    color: var(--muted);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.qcb-value {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
}

/* ── HIDDEN STATE ── */
.form-panel {
    display: none;
}

.form-panel.visible {
    display: block;
}

.text-danger {
    color: red;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-card {
    animation: fadeUp 0.4s var(--ease) both;
}

.quick-card {
    animation: fadeUp 0.4s var(--ease) both;
}

.sidebar {
    animation: fadeUp 0.4s 0.1s var(--ease) both;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .main-wrap {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: -1;
    }

    .trust-badges {
        display: none;
    }

    .header-h1 {
        font-size: 32px;
    }

    .finishes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .upload-grid {
        grid-template-columns: 1fr;
    }

    .two-radio-cols {
        grid-template-columns: 1fr;
    }
}