/* HERO */
.hero {
    max-width: 1280px;
    margin: 0 auto;
    padding: 148px 56px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 22px;
}
.breadcrumb span {
    color: var(--accent);
}
.breadcrumb::before {
    content: "";
    display: block;
    width: 18px;
    height: 1px;
    background: var(--accent);
}
.hero h1 {
    font-family: var(--ff-display);
    font-size: clamp(52px, 6vw, 80px);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}
.hero h1 em {
    font-style: italic;
    color: var(--accent);
}
.hero-body {
    font-size: 18px;
    color: var(--ink-muted);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 16px;
    max-width: 460px;
}
.hero-body2 {
    font-size: 15px;
    color: var(--ink-muted);
    line-height: 1.75;
    font-weight: 300;
    max-width: 460px;
    margin-bottom: 40px;
}
.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--ff-display);
    font-size: 20px;
    font-weight: 400;
    font-style: italic;
    color: var(--accent);
}
.hero-tagline::before {
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    background: var(--accent);
}

/* hero right: belief cards */
.belief-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.belief-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition:
        box-shadow var(--t),
        transform var(--t);
}
.belief-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}
.belief-card.dark {
    background: var(--ink);
    border-color: transparent;
}
.belief-num {
    font-size: 11px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.08em;
    flex-shrink: 0;
    padding-top: 2px;
}
.belief-card.dark .belief-num {
    color: rgba(200, 64, 10, 0.7);
}
.belief-text {
    font-size: 15px;
    color: var(--ink-muted);
    line-height: 1.6;
    font-weight: 300;
}
.belief-card.dark .belief-text {
    color: rgba(255, 255, 255, 0.5);
}
.belief-strong {
    font-weight: 500;
    color: var(--ink);
}
.belief-card.dark .belief-strong {
    color: rgba(255, 255, 255, 0.9);
}

/* MANIFESTO BAND */
.manifesto-band {
    background: var(--ink);
    padding: 100px 56px;
}
.manifesto-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}
.manifesto-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}
.manifesto-title {
    font-family: var(--ff-display);
    font-size: 48px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: white;
}
.manifesto-title em {
    font-style: italic;
    color: var(--accent);
}
.manifesto-p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 20px;
}
.manifesto-p:last-child {
    margin-bottom: 0;
}
.manifesto-pullquote {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    border-left: 3px solid var(--accent);
    padding-left: 24px;
    margin: 32px 0;
    line-height: 1.5;
}

/* VALUES */
.values-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 56px;
}
.section-eyebrow {
    margin-bottom: 16px;
}
.values-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 56px;
}
.values-header h2 {
    font-family: var(--ff-display);
    font-size: 44px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.values-header h2 em {
    font-style: italic;
    color: var(--accent);
}
.values-header p {
    font-size: 16px;
    color: var(--ink-muted);
    line-height: 1.8;
    font-weight: 300;
    padding-top: 20px;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.value-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition:
        box-shadow var(--t),
        transform var(--t);
    position: relative;
    overflow: hidden;
}
.value-card:hover {
    box-shadow: 0 20px 52px rgba(0, 0, 0, 0.07);
    transform: translateY(-2px);
}
.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.value-card:hover::before {
    transform: scaleX(1);
}
.value-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}
.value-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.value-card h3 {
    font-family: var(--ff-display);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}
.value-card p {
    font-size: 15px;
    color: var(--ink-muted);
    line-height: 1.75;
    font-weight: 300;
}

/* TEAM SECTION */
.team-section {
    background: var(--surface-warm);
    padding: 100px 56px;
}
.team-inner {
    max-width: 1280px;
    margin: 0 auto;
}
.team-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 60px;
}
.team-header h2 {
    font-family: var(--ff-display);
    font-size: 44px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
}
.team-header h2 em {
    font-style: italic;
    color: var(--accent);
}
.team-header p {
    font-size: 16px;
    color: var(--ink-muted);
    line-height: 1.8;
    font-weight: 300;
    padding-top: 20px;
}
.team-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.team-eyebrow::after {
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    background: var(--accent);
    opacity: 0.5;
}

/* background cards grid */
.bg-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}
.bg-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
}
.bg-card-num {
    font-family: var(--ff-display);
    font-size: 48px;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.bg-card-title {
    font-size: 15px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px;
}
.bg-card-desc {
    font-size: 14px;
    color: var(--ink-muted);
    line-height: 1.6;
    font-weight: 300;
}

/* expertise tags */
.expertise-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.expertise-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--ink-muted);
    background: white;
    border: 1px solid var(--border);
    padding: 10px 18px;
    border-radius: 100px;
    transition:
        border-color var(--t),
        color var(--t),
        background var(--t);
}
.expertise-tag:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-light);
}
.expertise-tag svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
}

/* STORY SECTION */
.story-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 100px 56px;
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}
.story-col h2 {
    font-family: var(--ff-display);
    font-size: 40px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.story-col h2 em {
    font-style: italic;
    color: var(--accent);
}
.story-col p {
    font-size: 16px;
    color: var(--ink-muted);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 20px;
}
.story-col p:last-child {
    margin-bottom: 0;
}
.story-col p strong {
    color: var(--ink);
    font-weight: 500;
}

/* DIFFERENCE BAND */
.diff-band {
    background: var(--ink);
    padding: 100px 56px;
}
.diff-inner {
    max-width: 1280px;
    margin: 0 auto;
}
.diff-header {
    margin-bottom: 56px;
}
.diff-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 20px;
}
.diff-title {
    font-family: var(--ff-display);
    font-size: 48px;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: white;
    max-width: 680px;
}
.diff-title em {
    font-style: italic;
    color: var(--accent);
}
.diff-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.diff-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: background var(--t);
}
.diff-card:hover {
    background: rgba(255, 255, 255, 0.07);
}
.diff-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(200, 64, 10, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.diff-card-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.diff-card h3 {
    font-size: 18px;
    font-weight: 500;
    color: white;
    margin-bottom: 10px;
}
.diff-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.75;
    font-weight: 300;
}
.diff-vs {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.diff-vs-col {
    flex: 1;
}
.diff-vs-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.diff-vs-label.them {
    color: rgba(255, 255, 255, 0.25);
}
.diff-vs-label.us {
    color: var(--accent);
}
.diff-vs-item {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    line-height: 1.5;
    font-weight: 300;
}
.diff-vs-item.us {
    color: rgba(255, 255, 255, 0.75);
}
.diff-vs-item::before {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    min-width: 14px;
    border-radius: 50%;
    flex-shrink: 0;
}
.diff-vs-item.them::before {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
}
.diff-vs-item.us::before {
    background: rgba(200, 64, 10, 0.2);
    border: 1px solid rgba(200, 64, 10, 0.5);
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 14 14' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 7l3 3 6-6' stroke='%23c8400a' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: 10px;
    background-position: center;
    background-repeat: no-repeat;
}
.diff-vs-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
    align-self: stretch;
}

/* CTA */
.cta-section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 56px 100px;
}
.cta-box {
    background: var(--ink);
    border-radius: 20px;
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-box::before {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 320px;
    height: 320px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.08;
}
.cta-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 18px;
}
.cta-title {
    font-family: var(--ff-display);
    font-size: 50px;
    font-weight: 300;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}
.cta-title em {
    font-style: italic;
    color: var(--accent);
}
.cta-sub {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.38);
    max-width: 440px;
    margin: 0 auto 40px;
    font-weight: 300;
    line-height: 1.7;
}
/* about-us tweaks .btn-primary padding/font-size slightly */
.cta-section .btn-primary {
    padding: 15px 32px;
    font-size: 16px;
}

@media (max-width: 960px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 100px 24px 60px;
        gap: 48px;
    }
    .hero h1 {
        font-size: 36px;
    }
    .manifesto-band {
        padding: 60px 24px;
    }
    .manifesto-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .manifesto-title {
        font-size: 28px;
    }
    .values-section {
        padding: 60px 24px;
    }
    .values-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .values-header h2 {
        font-size: 28px;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .team-section {
        padding: 60px 24px;
    }
    .team-header {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .team-header h2 {
        font-size: 28px;
    }
    .bg-cards {
        grid-template-columns: 1fr;
    }
    .story-section {
        padding: 60px 24px;
    }
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .story-col h2 {
        font-size: 26px;
    }
    .diff-band {
        padding: 60px 24px;
    }
    .diff-title {
        font-size: 28px;
    }
    .diff-grid {
        grid-template-columns: 1fr;
    }
    .diff-vs {
        flex-direction: column;
    }
    .diff-vs-divider {
        width: 100%;
        height: 1px;
        align-self: auto;
    }
    .cta-section {
        padding: 20px 24px 60px;
    }
    .cta-box {
        padding: 48px 28px;
    }
    .cta-title {
        font-size: 36px;
    }
}
