/* ══════════════════════════════════════════════════════════
   terms.css
   ══════════════════════════════════════════════════════════ */

:root {
    --brand: #c67529;
    --brand-2: #ff8f0c;
    --brand-3: #b07219;
    --ink: #000000;
    --muted: #363636;
    --line: rgba(0, 0, 0, .08);
    --cream: #faf7f1;
}

.kf-divider--center {
    margin-left: auto;
    margin-right: auto;
}

/* ═══ HERO ═══ */
.tc-hero {
    position: relative;
    padding: 170px 0 90px;
    background: #0f0d0a;
    color: #fff;
    overflow: hidden;
}

.tc-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(198, 117, 41, .16), transparent 45%),
        radial-gradient(circle at 85% 80%, rgba(255, 143, 12, .12), transparent 50%);
}

.tc-hero-content {
    position: relative;
    z-index: 1;
}

.tc-breadcrumb {
    font-size: 12px;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 26px;
}

.tc-breadcrumb a {
    color: rgba(255, 255, 255, .8);
    text-decoration: none;
}

.tc-breadcrumb a:hover {
    color: var(--brand-2);
}

.tc-breadcrumb span {
    margin: 0 8px;
}

.tc-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(38px, 5vw, 64px);
    color: #fff;
    margin-bottom: 16px;
}

.tc-updated {
    font-size: 12.5px;
    letter-spacing: .5px;
    color: rgba(255, 255, 255, .5);
}

/* ═══ INTRO ═══ */
.tc-intro-section {
    padding: 80px 0 20px;
    background: #fff;
}

.tc-intro {
    max-width: 820px;
    margin: 0 auto;
}

.tc-intro p {
    font-size: 15px;
    line-height: 2;
    color: var(--muted);
    margin-bottom: 22px;
}

.tc-intro strong {
    color: var(--ink);
}

/* ═══ BODY — sticky TOC + sections ═══ */
.tc-body-section {
    padding: 40px 0 110px;
    background: #fff;
}

.tc-body-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 70px;
    align-items: start;
}

.tc-toc {
    position: sticky;
    top: 110px;
}

.tc-toc-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--brand);
    margin-bottom: 20px;
}

.tc-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-left: 1px solid var(--line);
}

.tc-toc-list li {
    margin-bottom: 4px;
}

.tc-toc-list a {
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 10px 0 10px 20px;
    margin-left: -1px;
    border-left: 2px solid transparent;
    font-size: 14.5px;
    color: var(--muted);
    text-decoration: none;
    transition: color .3s ease, border-color .3s ease;
}

.tc-toc-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    color: rgba(198, 117, 41, .5);
}

.tc-toc-list a:hover {
    color: var(--ink);
}

.tc-toc-list a.active {
    color: var(--ink);
    font-weight: 600;
    border-left-color: var(--brand);
}

.tc-toc-list a.active .tc-toc-num {
    color: var(--brand);
}

.tc-sections {
    max-width: 760px;
}

.tc-section {
    position: relative;
    padding: 46px 0 46px 66px;
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 110px;
}

.tc-section:first-child {
    padding-top: 0;
}

.tc-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tc-section-num {
    position: absolute;
    left: 0;
    top: 46px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--cream);
    border: 1px solid rgba(198, 117, 41, .2);
    display: grid;
    place-items: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--brand);
}

.tc-section:first-child .tc-section-num {
    top: 0;
}

.tc-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 27px;
    font-weight: 600;
    color: var(--ink);
    letter-spacing: .3px;
    margin-bottom: 0;
}

.tc-section .kf-divider {
    margin: 16px 0 22px;
}

.tc-section p {
    font-size: 14.5px;
    line-height: 1.95;
    color: var(--muted);
    margin-bottom: 18px;
}

.tc-section p:last-child {
    margin-bottom: 0;
}

.tc-section a {
    color: var(--brand-3);
    text-decoration: underline;
}

/* Bulleted restriction lists */
.tc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.tc-list li {
    position: relative;
    padding-left: 22px;
    font-size: 14.5px;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 10px;
}

.tc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
}

.tc-list li:last-child {
    margin-bottom: 0;
}

/* ═══ CONTACT CTA ═══ */
.tc-cta-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: #1b3228;
    color: #fff;
}

.tc-cta-bg {
    position: absolute;
    inset: 0;
    background: url("../image/director-bg.webp") center/cover no-repeat;
    opacity: .15;
    filter: grayscale(1);
}

.tc-cta-section .sub-heading {
    color: #e8c896;
}

.tc-cta-section .main-title {
    font-size: 36px;
    margin-bottom: 20px;
}

.tc-cta-text {
    max-width: 480px;
    margin: 0 auto 34px;
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .7);
}

.tc-cta-btn {
    border-color: #fff;
    color: #fff;
}

.tc-cta-btn:hover {
    border-color: var(--brand);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 991px) {
    .tc-hero { padding: 140px 0 70px; }
    .tc-body-grid { grid-template-columns: 1fr; gap: 40px; }
    .tc-toc { position: static; border-bottom: 1px solid var(--line); padding-bottom: 30px; }
    .tc-toc-list { display: flex; flex-wrap: wrap; gap: 8px; border-left: none; }
    .tc-toc-list a { padding: 8px 16px; border: 1px solid var(--line); border-radius: 30px; }
    .tc-toc-list a.active { border-color: var(--brand); background: rgba(198, 117, 41, .06); }
    .tc-section { padding-left: 58px; }
    .tc-section-num { width: 38px; height: 38px; font-size: 14px; }
}

@media (max-width: 576px) {
    .tc-intro-section, .tc-body-section { padding-top: 30px; }
    .tc-section { padding-left: 0; padding-top: 25px; }
    .tc-section:first-child { padding-top: 0; }
    .tc-section-num { position: static; margin-bottom: 16px; }
    .tc-cta-section { padding: 80px 0; }
}