/* KSM × TECH / BUILD WITH ME — v3 · Vrindavan tokens */

/* ─── HERO ─────────────────────────────────────────── */
.bw-hero {
    padding: 160px 0 80px;
    position: relative;
    z-index: 2;
}

.bw-hero .eyebrow {
    color: var(--art-a);
    margin-bottom: 24px;
}

.bw-hero h1 {
    font-family: var(--display);
    font-weight: 400;
    font-size: clamp(2.6rem, 6.5vw, 4.6rem);
    line-height: 1.06;
    letter-spacing: -0.015em;
    max-width: 22ch;
    margin-bottom: 24px;
    color: var(--text);
}

.bw-hero h1 em {
    font-style: italic;
    color: var(--art-a);
}

.bw-lede {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 52ch;
    margin-bottom: 32px;
}

.bw-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--ui);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.25, 0.1, 0.25, 1.0);
}

.btn-primary {
    background: var(--text);
    color: var(--paper);
}
.btn-primary:hover {
    background: var(--terracotta);
    color: white;
}

.btn-quiet {
    border: 1px solid var(--line);
    color: var(--text-soft);
}
.btn-quiet:hover {
    border-color: var(--text);
    color: var(--text);
}

/* ─── EYEBROW (shared) ─────────────────────────────── */
.eyebrow {
    font-family: var(--ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ─── CURRENCY TOGGLE ──────────────────────────────── */
.bw-currency {
    display: inline-flex;
    border: 1px solid var(--line);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 40px;
}

.bw-currency button {
    padding: 10px 24px;
    font-family: var(--ui);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    border: none;
    background: transparent;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.25, 0.1, 0.25, 1.0);
}

.bw-currency button.is-active {
    background: var(--text);
    color: var(--paper);
}

/* ─── CARD GRID ────────────────────────────────────── */
.bw-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    max-width: 1100px;
}

@media (max-width: 700px) { .bw-grid { grid-template-columns: 1fr; max-width: 520px; } }

.bw-card {
    background: var(--paper-light);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s cubic-bezier(0.25, 0.1, 0.25, 1.0), transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1.0);
}

.bw-card:hover {
    outline: 1px solid var(--line);
    transform: translateY(-2px);
}

.bw-card-img {
    width: calc(100% + 18px);
    max-width: none;
    height: auto;
    display: block;
    border-bottom: 1px solid var(--line);
}

.bw-card-placeholder {
    width: 100%;
    aspect-ratio: 16/10;
}

.bw-card-body {
    padding: 20px;
}

.bw-card-body .eyebrow {
    margin-bottom: 8px;
    color: var(--art-a);
}

.bw-card-body h3 {
    font-family: var(--ui);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.3;
}

.bw-card-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 12px;
}

.bw-price {
    font-family: var(--display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.bw-card-link {
    font-family: var(--ui);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--art-a);
    text-decoration: none;
    transition: color 0.2s cubic-bezier(0.25, 0.1, 0.25, 1.0);
}

.bw-card-link:hover { color: var(--terracotta); }

.bw-custom {
    font-size: 0.95rem;
    color: var(--text-soft);
    max-width: 64ch;
    line-height: 1.7;
    padding: 24px 0;
    border-top: 1px solid var(--line);
}

.bw-custom a {
    color: var(--art-a);
    font-weight: 600;
}

/* ─── WORK SECTION ─────────────────────────────────── */
.bw-work {
    padding: 80px 0;
}

/* ─── HOW IT WORKS ─────────────────────────────────── */
.bw-how {
    padding: 80px 0;
    background: var(--paper-sunken);
}

.bw-how h2 {
    font-family: var(--display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--text);
    margin-bottom: 48px;
}

.bw-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 768px) { .bw-steps { grid-template-columns: 1fr; gap: 24px; } }

.bw-step { position: relative; padding-left: 48px; }

.bw-step-num {
    position: absolute;
    left: 0;
    top: 0;
    font-family: var(--display);
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--terracotta);
    line-height: 1;
}

.bw-step h3 {
    font-family: var(--ui);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.bw-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─── WHAT YOU OWN ─────────────────────────────────── */
.bw-own {
    padding: 80px 0;
}

.bw-own h2 {
    font-family: var(--display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--text);
    margin-bottom: 32px;
}

.bw-own-list {
    list-style: none;
    max-width: 56ch;
}

.bw-own-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.95rem;
    color: var(--text-soft);
    line-height: 1.6;
}

.bw-own-list li strong { color: var(--text); }

/* ─── FAQ ──────────────────────────────────────────── */
.bw-faq {
    padding: 80px 0;
    background: var(--paper-sunken);
}

.bw-faq h2 {
    font-family: var(--display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--text);
    margin-bottom: 32px;
}

.bw-faq-list {
    max-width: 64ch;
}

.bw-faq-list details {
    border-bottom: 1px solid var(--line);
}

.bw-faq-list summary {
    padding: 16px 0;
    font-family: var(--ui);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bw-faq-list summary::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: transform 0.25s;
}

.bw-faq-list details[open] summary::after {
    content: '−';
}

.bw-faq-list details p {
    padding: 0 0 16px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 58ch;
}

/* ─── START HERE ───────────────────────────────────── */
.bw-start {
    padding: 80px 0;
    text-align: center;
}

.bw-start h2 {
    font-family: var(--display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--text);
    margin-bottom: 12px;
}

.bw-start p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 48ch;
    margin: 0 auto 32px;
}

.bw-contact {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 640px) {
    .bw-hero { padding: 120px 0 56px; }
    .bw-hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
    .bw-currency button { padding: 8px 16px; font-size: 0.78rem; }
    .bw-card-body { padding: 16px; }
    .bw-price { font-size: 1.3rem; }
    .btn { padding: 12px 22px; font-size: 0.78rem; }
}
