:root {
    --premium-ink: #0b1115;
    --premium-graphite: #151c21;
    --premium-deep: #102a2c;
    --premium-brass: #d7b56d;
    --premium-bronze: #9a6a2f;
    --premium-ivory: #f7f6f1;
    --premium-pearl: #f5f5f0;
    --premium-line: #deded6;
}

.ui-control {
    width: 100%;
    min-height: 3rem;
    border-radius: 0.375rem;
    border-width: 1px;
    background: #fff;
    padding: 0.625rem 0.75rem;
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.ui-textarea {
    min-height: 7rem;
    resize: vertical;
}

.ui-control-default {
    border-color: #d5d5cc;
}

.ui-control-default:hover {
    border-color: #bdbdaf;
}

.ui-control-default:focus {
    border-color: #b98645;
    box-shadow: 0 0 0 3px rgb(215 181 109 / 0.24);
}

.ui-control-error {
    border-color: #f87171;
}

.ui-control-error:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgb(239 68 68 / 0.15);
}

.form-container {
    container-type: inline-size;
}

.form-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

.form-grid-full {
    min-width: 0;
}

@container (min-width: 28rem) {
    .form-grid-two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .form-grid-full {
        grid-column: 1 / -1;
    }
}

.choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.choice-option {
    border-color: #d5d5cc;
}

.choice-option:hover {
    border-color: #b98645;
}

.choice-option-selected {
    border-color: #b98645;
}

.lead-form {
    isolation: isolate;
}

.content-disc-list {
    list-style-type: disc;
    padding-left: 1.4rem;
    color: #334155;
}

.content-disc-list > li {
    padding-left: 0.3rem;
    line-height: 1.9;
}

.content-disc-list > li + li {
    margin-top: 0.45rem;
}

.content-disc-list > li::marker,
.content-rich-text li::marker {
    color: var(--premium-bronze);
}

.content-rich-text {
    color: #475569;
    font-size: 1rem;
    line-height: 2;
}

.content-rich-text > * + * {
    margin-top: 1.25rem;
}

.content-rich-text h2 {
    margin-top: 3rem;
    color: #0f172a;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

.content-rich-text h3 {
    margin-top: 2rem;
    color: #0f172a;
    font-size: 1.125rem;
    font-weight: 800;
    line-height: 1.4;
}

.content-rich-text ul {
    list-style-type: disc;
    padding-left: 1.4rem;
}

.content-rich-text ol {
    list-style-type: decimal;
    padding-left: 1.4rem;
}

.content-rich-text li {
    padding-left: 0.3rem;
}

.content-rich-text li + li {
    margin-top: 0.45rem;
}

.content-rich-text a {
    color: var(--premium-bronze);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.2em;
}

.content-rich-text strong {
    color: #0f172a;
}

.about-story .content-rich-text > p:first-child {
    color: #0f172a;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.9;
}

.about-story .content-rich-text h2 {
    position: relative;
    padding-top: 1.25rem;
}

.about-story .content-rich-text h2::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 3rem;
    height: 2px;
    content: '';
    background: #d7b56d;
}

.faq-stack {
    border-top: 1px solid var(--premium-line);
}

.faq-item {
    border-bottom: 1px solid var(--premium-line);
    background: #fff;
}

.faq-summary {
    display: flex;
    min-height: 4.25rem;
    cursor: pointer;
    list-style: none;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    color: #0f172a;
    font-weight: 800;
    line-height: 1.5;
}

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

.faq-icon {
    position: relative;
    display: inline-flex;
    width: 1.75rem;
    height: 1.75rem;
    flex: 0 0 1.75rem;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--premium-line);
    border-radius: 999px;
    background: var(--premium-ivory);
}

.faq-icon::before,
.faq-icon::after {
    position: absolute;
    width: 0.7rem;
    height: 1px;
    content: '';
    background: var(--premium-ink);
    transition: transform 180ms ease;
}

.faq-icon::after {
    transform: rotate(90deg);
}

.faq-item[open] .faq-icon::after {
    transform: rotate(0deg);
}

.faq-answer {
    padding: 0 3rem 1.25rem 0;
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.8;
}

.ui-file-control {
    min-height: 3rem;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.ui-file-control:hover,
.ui-file-control:focus {
    border-color: #b98645;
    box-shadow: 0 0 0 3px rgb(215 181 109 / 0.18);
    outline: none;
}

.ui-file-control::file-selector-button {
    margin-right: 0.75rem;
    border: 0;
    border-radius: 0.3rem;
    background: #0b1115;
    padding: 0.55rem 0.75rem;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}
