:root {
    --red: #A53B2D;
    --gold: #D4A373;
    --peach: #F2BE8C;
    --cream: #D4C4B7;
    --dark: #201F1F;
    --card: #1C1B1B;
    --stone: #E5E2E1;
}

/* Sticky TOC */
.toc {
    position: fixed;
    top: 50%;
    left: max(20px, calc(50% - 570px));
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 100;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    opacity: .35;
    transition: opacity .25s;
}

.toc-item:hover,
.toc-item.active {
    opacity: 1;
}

.toc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--stone);
    flex-shrink: 0;
    transition: background .2s, transform .2s;
}

.toc-item.active .toc-dot {
    background: var(--red);
    transform: scale(1.4);
}

.toc-label {
    font-size: 9px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--stone);
    white-space: nowrap;
}

.toc-item.active .toc-label {
    color: var(--red);
}

/* Page / hero */
.tos-page {
    padding-top: 190px;
}

.hero-wrap {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-top: 60px;
    padding-bottom: 0;
}

.tos-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 6vw, 60px);
    line-height: 1;
    color: #fff;
    text-align: center;
}

.tos-title span {
    color: var(--red);
}

.tos-meta {
    font-size: 20px;
    color: var(--cream);
    text-align: center;
    padding-bottom: 24px;
}

.hero-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 163, 115, 0), #D4A373 50%, rgba(212, 163, 115, 0));
    opacity: .3;
}

/* Content */
.content-wrap {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 24px 160px;
}

.content-col {
    width: 716px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 96px;
    padding-top: 60px;
}

/* Section */
.tos-sec {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sec-head {
    display: flex;
    align-items: center;
    gap: 16px;
}

.sec-num {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    line-height: 32px;
    color: var(--red);
    min-width: 41px;
}

.sec-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    line-height: 32px;
    color: #E5E2E1;
}

.body-text {
    font-size: 14px;
    line-height: 23px;
    color: var(--cream);
}

.small-text {
    font-size: 12px;
    line-height: 24px;
    letter-spacing: 1.6px;
    text-transform: capitalize;
    color: var(--cream);
}

.gold-div {
    height: 1px;
    background: linear-gradient(90deg, rgba(212, 163, 115, 0), #D4A373 50%, rgba(212, 163, 115, 0));
    opacity: .3;
}

/* 02 User Accounts */
.sec-02-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

.sec-02-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.security-card {
    background: var(--dark);
    border: 1px solid rgba(80, 69, 59, .1);
    border-radius: 4px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.security-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--red);
    padding-top: 8px;
}

/* 03 Subscriptions */
.bullet-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bullet-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.bullet-sq {
    width: 11px;
    height: 11px;
    background: var(--peach);
    flex-shrink: 0;
    margin-top: 6px;
    border-radius: 1px;
}

/* 04 Ordering — dark panel */
.dark-panel {
    background: var(--card);
    padding: 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.dark-panel::before {
    content: '';
    position: absolute;
    right: 15px;
    bottom: 39px;
    width: 169px;
    height: 122px;
    background: #E5E2E1;
    opacity: .05;
    border-radius: 2px;
}

.panel-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.panel-col-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--gold);
    margin-bottom: 16px;
}

/* 06 Liability */
.callout {
    border-left: 4px solid var(--red);
    padding: 32px;
    background: rgba(32, 31, 31, .1);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.callout-label {
    font-size: 16px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: #E5E2E1;
}

/* 07 Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-card {
    background: var(--dark);
    border: 1px solid var(--red);
    border-radius: 4px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--red);
}

.contact-card-email {
    font-size: 14px;
    letter-spacing: 1.6px;
    color: var(--cream);
}

.contact-card-note {
    font-size: 10px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: rgba(237, 224, 212, .4);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .toc {
        display: none;
    }

    .content-col {
        width: 100%;
    }
}

@media (max-width: 640px) {

    .sec-02-grid,
    .panel-cols,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}