/* ── Root tokens ── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=DM+Sans:wght@300;400;500;600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');
:root {
    --sks-green: #1f4d3a;
    --sks-green-dark: #163628;
    --sks-green-light: #2a6650;
    --sks-gold: #c9a227;
    --sks-gold-light: #e2b93d;
    --sks-gold-pale: #f5e9c0;
    --sks-cream: #faf8f3;
    --sks-text: #1a1a1a;
    --sks-muted: #5a5a5a;
    --sks-border: #e2ddd4;
    --td-radius: 10px;
    --td-radius-lg: 16px;
    --td-shadow: 0 4px 24px rgba(31, 77, 58, .10);
    --td-shadow-hover: 0 8px 36px rgba(31, 77, 58, .18);
}

/* ── Section shell ── */
.sks-td-section {
    background: var(--sks-cream);
    font-family: 'DM Sans', sans-serif;
    color: var(--sks-text);
    overflow: hidden;
}

/* ── Decorative top bar ── */
.sks-td-topbar {
    height: 5px;
    background: linear-gradient(90deg, var(--sks-green) 60%, var(--sks-gold) 100%);
}

/* ── Hero banner ── */
.sks-td-hero {
    background: var(--sks-green-dark);
    position: relative;
    padding: 72px 0 56px;
    overflow: hidden;
}

.sks-td-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 50%, rgba(201, 162, 39, .12) 0%, transparent 60%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a227' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.sks-td-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201, 162, 39, .15);
    border: 1px solid rgba(201, 162, 39, .35);
    color: var(--sks-gold-light);
    font-size: .78rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 20px;
}

.sks-td-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0;
}

.sks-td-hero-title span {
    color: var(--sks-gold);
}

.sks-td-hero-subtitle {
    color: rgba(255, 255, 255, .6);
    font-size: .95rem;
    margin-top: 12px;
    font-weight: 300;
    max-width: 520px;
}

.sks-td-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--td-radius);
    padding: 16px 22px;
    color: #fff;
    font-size: .88rem;
}

.sks-td-hero-badge i {
    color: var(--sks-gold);
    font-size: 1.3rem;
}

.sks-td-hero-badge strong {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--sks-gold);
    line-height: 1;
}

/* ── About strip ── */
.sks-td-about {
    background: #fff;
    border-bottom: 1px solid var(--sks-border);
}

.sks-td-about-inner {
    border-left: 4px solid var(--sks-gold);
    padding-left: 24px;
}

.sks-td-about-inner p {
    color: var(--sks-muted);
    font-size: .975rem;
    line-height: 1.8;
    margin: 0;
}

.sks-td-about-inner p+p {
    margin-top: 12px;
}

/* ── Section title component ── */
.sks-td-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: var(--sks-green);
    font-weight: 700;
    margin-bottom: 8px;
}

.sks-td-section-title span {
    color: var(--sks-gold);
}

.sks-td-divider {
    width: 48px;
    height: 3px;
    background: var(--sks-gold);
    border-radius: 2px;
    margin-bottom: 16px;
}

.sks-td-section-sub {
    color: var(--sks-muted);
    font-size: .92rem;
    max-width: 560px;
}

/* ── Services grid ── */
.sks-td-services-section {
    background: var(--sks-cream);
}

.sks-td-service-card {
    background: #fff;
    border: 1px solid var(--sks-border);
    border-radius: var(--td-radius-lg);
    padding: 28px 24px;
    height: 100%;
    transition: box-shadow .25s, transform .25s, border-color .25s;
    position: relative;
    overflow: hidden;
}

.sks-td-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--sks-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}

.sks-td-service-card:hover {
    box-shadow: var(--td-shadow-hover);
    transform: translateY(-4px);
    border-color: rgba(201, 162, 39, .4);
}

.sks-td-service-card:hover::before {
    transform: scaleX(1);
}

.sks-td-service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--td-radius);
    background: var(--sks-green);
    color: var(--sks-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 16px;
    flex-shrink: 0;
}

.sks-td-service-card h5 {
    font-size: .95rem;
    font-weight: 600;
    color: var(--sks-green);
    margin-bottom: 0;
    line-height: 1.4;
}

/* ── Products grid ── */
.sks-td-products-section {
    background: var(--sks-green);
    position: relative;
    overflow: hidden;
}

.sks-td-products-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a227' fill-opacity='0.04'%3E%3Ccircle cx='40' cy='40' r='30'/%3E%3C/g%3E%3C/svg%3E") center/80px;
}

.sks-td-products-section .sks-td-section-title {
    color: #fff;
}

.sks-td-products-section .sks-td-section-sub {
    color: rgba(255, 255, 255, .6);
}

.sks-td-product-card {
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--td-radius-lg);
    padding: 28px 22px;
    text-align: center;
    height: 100%;
    transition: background .25s, transform .25s, border-color .25s;
    position: relative;
}

.sks-td-product-card:hover {
    background: rgba(255, 255, 255, .13);
    border-color: rgba(201, 162, 39, .5);
    transform: translateY(-4px);
}

.sks-td-product-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(201, 162, 39, .15);
    border: 1px solid rgba(201, 162, 39, .3);
    color: var(--sks-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 16px;
}

.sks-td-product-card h5 {
    color: #fff;
    font-size: .9rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* ── Capabilities / Commission strip ── */
.sks-td-commission {
    background: #fff;
    border-top: 1px solid var(--sks-border);
    border-bottom: 1px solid var(--sks-border);
}

.sks-td-comm-box {
    background: var(--sks-green-dark);
    border-radius: var(--td-radius-lg);
    padding: 32px 28px;
    color: #fff;
    height: 100%;
}

.sks-td-comm-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--sks-gold);
    margin-bottom: 16px;
}

.sks-td-comm-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sks-td-comm-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: .88rem;
    color: rgba(255, 255, 255, .8);
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    line-height: 1.5;
}

.sks-td-comm-list li:last-child {
    border-bottom: none;
}

.sks-td-comm-list li i {
    color: var(--sks-gold);
    margin-top: 2px;
    flex-shrink: 0;
    font-size: .9rem;
}

/* ── Timeline strip ── */
.sks-td-timeline {
    background: var(--sks-cream);
}

.sks-td-tl-wrap {
    display: flex;
    gap: 0;
    position: relative;
}

.sks-td-tl-wrap::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--sks-gold), transparent);
}

.sks-td-tl-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 32px;
    position: relative;
}

.sks-td-tl-item:last-child {
    padding-bottom: 0;
}

.sks-td-tl-dot {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--sks-green);
    border: 3px solid var(--sks-gold);
    color: var(--sks-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .8rem;
    flex-shrink: 0;
    z-index: 1;
    text-align: center;
    line-height: 1.2;
}

.sks-td-tl-body h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--sks-green);
    margin-bottom: 4px;
}

.sks-td-tl-body p {
    font-size: .88rem;
    color: var(--sks-muted);
    margin: 0;
    line-height: 1.7;
}

/* ── CTA banner ── */
.sks-td-cta {
    background: var(--sks-green-dark);
    position: relative;
    overflow: hidden;
}

.sks-td-cta::after {
    content: 'SKS';
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-family: 'Playfair Display', serif;
    font-size: 14rem;
    font-weight: 700;
    color: rgba(201, 162, 39, .05);
    line-height: 1;
    pointer-events: none;
}

.sks-td-cta h3 {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    margin-bottom: 10px;
}

.sks-td-cta p {
    color: rgba(255, 255, 255, .6);
    font-size: .93rem;
    margin: 0;
}

.sks-td-btn-gold {
    background: var(--sks-gold);
    color: var(--sks-green-dark);
    border: none;
    border-radius: var(--td-radius);
    padding: 12px 28px;
    font-weight: 600;
    font-size: .93rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background .2s, transform .2s;
}

.sks-td-btn-gold:hover {
    background: var(--sks-gold-light);
    color: var(--sks-green-dark);
    transform: translateY(-2px);
}

.sks-td-btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: var(--td-radius);
    padding: 12px 28px;
    font-weight: 500;
    font-size: .93rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color .2s, background .2s;
}

.sks-td-btn-outline:hover {
    border-color: var(--sks-gold);
    color: var(--sks-gold);
    background: rgba(201, 162, 39, .07);
}

/* ── Stat pills in hero ── */
.sks-td-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.sks-td-stat {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--td-radius);
    padding: 14px 20px;
    min-width: 120px;
}

.sks-td-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--sks-gold);
    font-weight: 700;
    line-height: 1;
}

.sks-td-stat-lbl {
    font-size: .75rem;
    color: rgba(255, 255, 255, .55);
    font-weight: 400;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .06em;
}