/* =========================================================
   DISCLAIMER — Shyam Sarthi Travels
   Design concept: "Read The Route"
   Same highway/GPS-dashboard language as About, Services &
   Contact — the seven disclaimer points are laid out as
   waypoints along a dashed route, echoing the "Road So Far"
   journey device used on About Us.
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@600;700;800&family=Inter:wght@400;500;600;700&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root {
    --dc-navy-deep: #04101f;
    --dc-navy: #0a2147;
    --dc-navy-mid: #163461;
    --dc-gold: #e3a63e;
    --dc-gold-pale: #f6dca3;
    --dc-mist: #eef2f8;
    --dc-ink: #0e1a2e;
    --dc-ink-soft: #55617a;
    --dc-line: rgba(10, 33, 71, 0.14);
    --dc-radius: 18px;

    --dc-font-display: 'Big Shoulders Display', 'Arial Narrow', sans-serif;
    --dc-font-body: 'Inter', -apple-system, sans-serif;
    --dc-font-mono: 'IBM Plex Mono', 'Courier New', monospace;
}

.dc-hero,
.dc-intro,
.dc-route,
.dc-clarity {
    font-family: var(--dc-font-body);
}

.dc-eyebrow {
    display: inline-block;
    font-family: var(--dc-font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--dc-gold);
    margin-bottom: 14px;
}

/* ================= HERO ================= */

.dc-hero {
    position: relative;
    background: var(--dc-navy-deep);
    padding: 150px 0 100px;
    overflow: hidden;
    color: #fff;
}

.dc-hero-route {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.dc-hero-route-path {
    stroke: var(--dc-gold);
    stroke-width: 2.5;
    stroke-dasharray: 10 10;
    opacity: 0.5;
    stroke-dashoffset: 1500;
    animation: dc-draw-route 2.6s ease-out 0.2s forwards;
}

.dc-hero-route-dot {
    fill: var(--dc-gold);
    opacity: 0;
    animation: dc-fade-in 0.6s ease-out forwards;
}

.dot-start { animation-delay: 0.2s; }
.dot-end { animation-delay: 2.6s; }

@keyframes dc-draw-route {
    to { stroke-dashoffset: 0; }
}

@keyframes dc-fade-in {
    to { opacity: 1; }
}

.dc-hero-inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
}

.dc-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--dc-font-mono);
    font-size: 0.8rem;
    color: #8b98b3;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dc-breadcrumb a {
    color: var(--dc-gold-pale);
    text-decoration: none;
}

.dc-breadcrumb a:hover,
.dc-breadcrumb a:focus-visible {
    text-decoration: underline;
}

.dc-breadcrumb .is-current {
    color: #fff;
}

.dc-hero-coords {
    display: inline-block;
    font-family: var(--dc-font-mono);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--dc-gold-pale);
    border: 1px solid rgba(227, 166, 62, 0.4);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 26px;
}

.dc-hero-title {
    font-family: var(--dc-font-display);
    font-weight: 800;
    text-transform: uppercase;
    font-size: clamp(2.4rem, 5.6vw, 3.8rem);
    line-height: 1.02;
    letter-spacing: 0.005em;
    margin: 0 0 24px;
    color: #fff;
}

.dc-hero-lede {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #c3ccdb;
    max-width: 560px;
    margin: 0 0 28px;
}

.dc-hero-badge {
    display: inline-block;
    font-family: var(--dc-font-mono);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--dc-navy-deep);
    background: var(--dc-gold);
    padding: 10px 18px;
    border-radius: 999px;
}

/* ================= INTRO ================= */

.dc-intro {
    background: #fff;
    padding: 76px 0;
    border-bottom: 1px solid var(--dc-line);
}

.dc-intro-inner {
    max-width: 780px;
}

.dc-intro h2 {
    font-family: var(--dc-font-display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    color: var(--dc-navy);
    margin: 0 0 20px;
    line-height: 1.2;
}

.dc-intro p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--dc-ink-soft);
    margin: 0 0 18px;
}

.dc-intro p:last-child {
    margin-bottom: 0;
}

/* ================= ROUTE / NOTICE LIST ================= */

.dc-route {
    background: var(--dc-mist);
    padding: 100px 0 110px;
}

.dc-route-heading {
    max-width: 640px;
    margin: 0 0 56px;
}

.dc-route-heading h2 {
    font-family: var(--dc-font-display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    color: var(--dc-navy);
    line-height: 1.18;
    margin: 0;
}

.dc-route-list {
    list-style: none;
    margin: 0;
    padding: 0 0 0 4px;
    position: relative;
}

.dc-route-list::before {
    content: "";
    position: absolute;
    left: 34px;
    top: 10px;
    bottom: 10px;
    width: 0;
    border-left: 3px dashed rgba(10, 33, 71, 0.28);
}

.dc-route-item {
    position: relative;
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 28px;
    padding-bottom: 40px;
}

.dc-route-item:last-child,
.dc-route-item-final {
    padding-bottom: 0;
}

.dc-route-marker {
    position: relative;
    z-index: 1;
    justify-self: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--dc-navy);
    color: var(--dc-gold-pale);
    font-family: var(--dc-font-mono);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 0 0 6px var(--dc-mist), 0 10px 22px rgba(10, 33, 71, 0.22);
}

.dc-route-item-final .dc-route-marker {
    background: var(--dc-gold);
    color: var(--dc-navy-deep);
}

.dc-route-content {
    background: #fff;
    border: 1px solid var(--dc-line);
    border-radius: var(--dc-radius);
    padding: 24px 28px;
}

.dc-route-content h3 {
    font-family: var(--dc-font-display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.2rem;
    color: var(--dc-navy);
    margin: 0 0 10px;
    letter-spacing: 0.005em;
    line-height: 1.3;
}

.dc-route-content p {
    font-size: 0.96rem;
    line-height: 1.72;
    color: var(--dc-ink-soft);
    margin: 0;
}

/* ================= CLARITY STRIP ================= */

.dc-clarity {
    background: #fff;
    padding: 70px 0;
}

.dc-clarity-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 40px;
    background: var(--dc-navy);
    border-radius: var(--dc-radius);
    padding: 44px 48px;
}

.dc-clarity-text h2 {
    font-family: var(--dc-font-display);
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(1.3rem, 2.4vw, 1.8rem);
    color: #fff;
    margin: 4px 0 12px;
    line-height: 1.25;
}

.dc-clarity-text p {
    font-size: 0.96rem;
    line-height: 1.7;
    color: #c3ccdb;
    margin: 0;
    max-width: 520px;
}

.dc-clarity-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--dc-font-mono);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--dc-navy-deep);
    background: var(--dc-gold);
    padding: 14px 24px;
    border-radius: 999px;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.2s ease, background 0.2s ease;
}

.dc-clarity-link:hover,
.dc-clarity-link:focus-visible {
    background: var(--dc-gold-pale);
    transform: translateX(3px);
}

/* ================= FOCUS STATES ================= */

.dc-hero a:focus-visible,
.dc-clarity-link:focus-visible {
    outline: 2px solid var(--dc-gold);
    outline-offset: 3px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 860px) {

    .dc-clarity-inner {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .dc-clarity-link {
        width: fit-content;
    }

}

@media (max-width: 640px) {

    .dc-hero {
        padding: 120px 0 76px;
    }

    .dc-intro {
        padding: 60px 0;
    }

    .dc-route {
        padding: 64px 0;
    }

    .dc-route-list::before {
        left: 24px;
    }

    .dc-route-item {
        grid-template-columns: 48px 1fr;
        gap: 16px;
    }

    .dc-route-marker {
        width: 48px;
        height: 48px;
        font-size: 0.8rem;
    }

    .dc-route-content {
        padding: 18px 20px;
    }

    .dc-clarity {
        padding: 50px 0;
    }

    .dc-clarity-inner {
        padding: 30px 26px;
    }

}

/* ================= REDUCED MOTION ================= */

@media (prefers-reduced-motion: reduce) {

    .dc-hero-route-path,
    .dc-hero-route-dot {
        animation: none !important;
        opacity: 0.5;
        stroke-dashoffset: 0;
    }

    .dot-start,
    .dot-end {
        opacity: 1;
    }

    .dc-clarity-link {
        transition: none;
    }

}