/* ============================================================
   TERMS & CONDITIONS PAGE — T3M Tours
   ============================================================ */

/* ---- Page Header ----------------------------------------- */
.terms-page-header {
    position: relative;
    padding: 180px 60px 80px;
    text-align: center;
    overflow: hidden;
}
.terms-page-header-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
}
.terms-page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,12,8,.4) 0%, rgba(15,12,8,.1) 50%, rgba(15,12,8,.85) 100%);
}
.terms-page-header-inner {
    position: relative;
    z-index: 2;
}
.terms-page-header h1 {
    font-family: var(--ff-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 600;
    color: var(--text-light);
    margin: 14px 0 16px;
    line-height: 1.1;
}
.terms-page-header h1 em {
    color: var(--accent);
    font-style: italic;
    font-weight: 400;
}
.terms-page-header p {
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ---- Body ------------------------------------------------ */
.terms-body {
    padding: 100px 60px 140px;
    background: var(--bg-dark);
}
.terms-container {
    max-width: 760px;
    margin: 0 auto;
}

.terms-intro {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.9;
    margin-bottom: 56px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-dark);
    font-style: italic;
}

/* Blocks */
.terms-block {
    margin-bottom: 56px;
}
.terms-block:last-child {
    margin-bottom: 0;
}
.terms-block h2 {
    display: flex;
    align-items: baseline;
    gap: 16px;
    font-family: var(--ff-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
}
.terms-num {
    font-family: var(--ff-body);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--accent);
    background: rgba(192,27,27,.1);
    border: 1px solid rgba(192,27,27,.2);
    border-radius: 4px;
    padding: 4px 10px;
    flex-shrink: 0;
    align-self: flex-start;
    transform: translateY(-4px);
}
.terms-block p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.95;
    margin-bottom: 14px;
}
.terms-block p:last-child {
    margin-bottom: 0;
}

/* Contact list */
.terms-contact {
    list-style: none;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.terms-contact li {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.9;
}
.terms-contact a {
    color: var(--accent);
    transition: color .3s;
}
.terms-contact a:hover {
    color: var(--text-light);
}

/* ---- Responsive ------------------------------------------ */
@media (max-width: 768px) {
    .terms-page-header { padding: 140px 20px 60px; }
    .terms-body { padding: 60px 20px 80px; }
    .terms-block h2 { font-size: 24px; gap: 12px; }
    .terms-block { margin-bottom: 40px; }
}
