.nav-links a[aria-current="page"],
.mobile-menu a[aria-current="page"] {
    color: var(--text-dark);
}

.about-page {
    background:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.04), transparent 30%),
        radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.02), transparent 40%),
        #ffffff;
    min-height: 100vh;
}

.about-shell {
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-hero {
    padding: 8rem 2.5rem 6rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.about-hero .subtext-pill {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #111;
    background: #faf9f6;
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    transition: border-color 0.3s ease;
}

.about-hero .section-title {
    margin: 0 auto 1rem;
}

.page-section {
    padding: 5rem 2.5rem;
}

.about-two-col {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 4rem;
    align-items: start;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3rem);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #111;
    margin-bottom: 1.5rem;
}

.section-copy {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1.25rem;
}

.about-proof-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Offwhite Interactive Cards */
.offwhite-card {
    background: #faf9f6;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.015);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.offwhite-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.04);
    border-color: rgba(37, 99, 235, 0.12);
}

.about-proof-card {
    padding: 2rem;
    border-radius: 20px;
}

.about-proof-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111;
    margin-bottom: 0.75rem;
}

.about-proof-card p {
    color: #5b6472;
    line-height: 1.6;
    font-size: 0.95rem;
}

.about-team-intro {
    max-width: 800px;
    margin: 0 0 3rem;
    text-align: left;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.about-member-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.about-member-top {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.about-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(37, 99, 235, 0.01));
    color: var(--blue);
    font-size: 1.25rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.05);
    position: relative;
}

.about-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.about-avatar::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(37, 99, 235, 0.25);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1;
}

.about-member-card:hover .about-avatar::after {
    inset: -6px;
    opacity: 1;
}

.about-member-card h3,
.about-partner-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111;
    margin-bottom: 0.25rem;
}

.about-member-role {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #6b7280;
}

.about-member-card p {
    color: #4b5563;
    line-height: 1.65;
    font-size: 1rem;
}

/* Ferdi Partner Card */
.about-partner-card {
    padding: 3rem;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: stretch;
    margin-top: 2rem;
}

.about-partner-aside {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.about-partner-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #111;
    background: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(0,0,0,0.06);
}

.about-partner-copy {
    border-left: 1px solid rgba(15, 23, 42, 0.08);
    padding-left: 3rem;
}

.about-partner-copy p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.about-partner-copy p:last-child {
    margin-bottom: 0;
}

.about-fit {
    text-align: left;
    max-width: 840px;
    margin: 0 auto;
}

.about-fit p {
    font-size: 1.08rem;
    line-height: 1.72;
    color: #4b5563;
    margin-bottom: 1rem;
}

.about-principles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.25rem;
}

.about-principle-obj {
    padding: 2rem;
}

.about-principle-obj h3 {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #111;
    margin-bottom: 0.75rem;
}

.about-principle-obj p {
    color: #5b6472;
    line-height: 1.65;
}

.about-closing {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.about-closing h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    color: #111;
}

.about-closing p {
    font-size: 1.08rem;
    color: #4b5563;
    max-width: 720px;
    margin: 0 auto 1rem;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--blue);
    color: #fff;
    padding: 0.45rem 1.1rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.btn-primary:hover {
    background: #1d4ed8;
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.25);
    transform: translateY(-1px);
}

.btn-secondary {
    background: #fff;
    color: #111;
    padding: 0.45rem 1.1rem;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.875rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: #f9fafa;
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.accent-text {
    color: #111;
    font-weight: 800;
    font-style: normal;
}

@media (max-width: 1024px) {
    .about-two-col {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-proof-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .about-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .about-partner-card {
        grid-template-columns: 1fr;
        padding: 2.5rem;
    }
    .about-partner-copy {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(15, 23, 42, 0.08);
        padding-top: 2rem;
    }
}

@media (max-width: 640px) {
    .about-proof-strip, .about-team-grid, .about-principles {
        grid-template-columns: 1fr;
    }
}

/* Refined about page */
.about-page {
    background: #fff;
    min-height: 100vh;
    position: relative;
}

.about-page::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(15, 23, 42, 0.08) 0.8px, transparent 0.8px);
    background-size: 24px 24px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.3), transparent 28%);
    opacity: 0.45;
    z-index: 0;
}

.about-shell {
    max-width: 1120px;
}

.about-hero {
    padding: 7.5rem 2.5rem 5.25rem;
    position: relative;
}

.about-hero::after {
    content: '';
    position: absolute;
    right: 7%;
    top: 6.5rem;
    width: 12rem;
    height: 12rem;
    border: 1px solid rgba(37, 99, 235, 0.12);
    border-radius: 28px;
    transform: rotate(8deg);
    opacity: 0.8;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
}

.about-hero-copy {
    max-width: 760px;
    grid-column: auto;
    text-align: center;
}

.about-overline {
    display: inline-block;
    margin-bottom: 1.15rem;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6b7280;
}

.about-hero-title {
    max-width: 100%;
}

.about-hero-copy .section-copy {
    margin-left: auto;
    margin-right: auto;
}

.about-hero-copy .section-copy-muted {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-title,
.about-closing h2 {
    font-size: clamp(1.85rem, 3vw, 2.18rem);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.045em;
    color: #111;
    margin-bottom: 1rem;
}

.about-title-primary {
    color: #111;
}

.accent-text {
    color: #7a7a7a;
    font-weight: 400;
    font-style: italic;
}

.section-copy,
.about-fit p,
.about-closing p {
    font-size: 0.98rem;
    line-height: 1.72;
    color: #4b5563;
    max-width: 62ch;
}

.section-copy-muted {
    font-size: 0.9rem;
    line-height: 1.68;
    color: #7b8391;
    max-width: 58ch;
}

.about-section-head {
    width: 17rem;
    max-width: 100%;
}

.about-section-head.right {
    margin-left: auto;
    text-align: right;
}

.about-section-intro {
    display: block;
    margin-bottom: 1.2rem;
}

.about-section-copy-col {
    max-width: 62ch;
}

.about-section-intro .about-section-copy-col {
    margin-top: 0.85rem;
}

.about-section-intro.right .about-section-copy-col {
    margin-left: auto;
    text-align: right;
}

.about-section-intro.right .section-copy-muted {
    margin-left: auto;
    text-align: right;
}

.offwhite-card {
    background: #fbfbf9;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: 24px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.03);
    background-image:
        repeating-linear-gradient(
            180deg,
            rgba(15, 23, 42, 0.04) 0,
            rgba(15, 23, 42, 0.04) 1px,
            transparent 1px,
            transparent 26px
        );
}

.offwhite-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(37, 99, 235, 0.15) 0.8px, transparent 0.8px);
    background-size: 18px 18px;
    mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.22), transparent 32%);
    opacity: 0.14;
}

.offwhite-card:hover {
    transform: none;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.05);
    border-color: rgba(37, 99, 235, 0.16);
}

.about-proof-strip,
.about-principles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.15rem;
    align-items: stretch;
}

.about-proof-card,
.about-principle-obj {
    padding: 1.35rem 1.45rem 1.2rem;
    min-height: 0;
}

.about-proof-strip .about-proof-card,
.about-principles .about-principle-obj {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-single-card {
    margin-top: 1rem;
    max-width: none;
    width: 100%;
}

.about-single-card .section-copy {
    margin-bottom: 0;
    max-width: none;
    position: relative;
    z-index: 1;
    line-height: 1.625rem;
}

.about-card-top {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 0.7rem;
    position: relative;
    z-index: 1;
}

.about-card-icon {
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(37, 99, 235, 0.1);
    flex-shrink: 0;
}

.about-card-icon svg {
    width: 1.15rem;
    height: 1.15rem;
    stroke: var(--blue);
    animation: about-icon-float 6s ease-in-out infinite;
}

.about-proof-card h3,
.about-principle-obj h3 {
    font-size: 1.03rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111;
    margin: 0 0 0.65rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.about-proof-card p,
.about-principle-obj p {
    font-size: 0.94rem;
    line-height: 1.625rem;
    color: #5b6472;
    position: relative;
    z-index: 1;
}

.about-team-intro {
    margin-bottom: 1.25rem;
}

.about-team-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
    margin-bottom: 1rem;
}

.about-member-card {
    padding: 1.25rem 1.25rem 1.6rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    background-image: none;
    box-shadow: none;
    border: 1px solid rgba(15, 23, 42, 0.08);
}

.about-member-card::before,
.about-member-card::after,
.about-partner-card::before,
.about-partner-card::after {
    display: none;
}

.about-member-card:hover,
.about-partner-card:hover {
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
    border-color: rgba(37, 99, 235, 0.18);
}

.about-member-card-frame,
.about-partner-frame {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.about-member-card-frame::before,
.about-member-card-frame::after,
.about-partner-frame::before,
.about-partner-frame::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-color: rgba(37, 99, 235, 0.4);
    border-style: solid;
}

.about-member-card-frame::before,
.about-partner-frame::before {
    top: 16px;
    left: 16px;
    border-width: 1px 0 0 1px;
}

.about-member-card-frame::after,
.about-partner-frame::after {
    right: 16px;
    bottom: 16px;
    border-width: 0 1px 1px 0;
}

.about-photo,
.about-partner-photo {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #f2f2ef;
    position: relative;
    z-index: 1;
}

.about-photo {
    aspect-ratio: 1 / 1;
    width: calc(100% - 1.1rem);
    max-width: 260px;
    margin: 0 auto 1.05rem;
}

.about-photo img,
.about-partner-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center 16%;
}

.about-member-top {
    display: block;
    margin-bottom: 0.65rem;
    position: relative;
    z-index: 3;
}

.about-member-card h3,
.about-partner-copy h3 {
    font-size: 0.94rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111;
    margin-bottom: 0.25rem;
}

.about-member-role,
.about-meta-line {
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #6b7280;
}

.about-member-card p,
.about-partner-copy p {
    font-size: 0.82rem;
    line-height: 1.58;
    color: #4b5563;
    position: relative;
    z-index: 3;
}

.about-partner-card {
    display: grid;
    grid-template-columns: 206px minmax(0, 1fr);
    gap: 1.25rem;
    padding: 1.2rem 1.2rem 1.3rem;
    background: #fff;
    background-image: none;
    box-shadow: none;
    border: 1px solid rgba(15, 23, 42, 0.08);
    align-items: start;
}

.about-partner-aside {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0.45rem;
}

.about-partner-photo {
    aspect-ratio: 1 / 1;
    width: 100%;
    max-width: 178px;
    margin-top: 0.55rem;
}

.about-partner-copy {
    border: 0;
    padding: 0.15rem 0 0;
}

.about-fit {
    max-width: none;
    margin: 0;
}

.about-closing {
    max-width: none;
    text-align: left;
}

.about-closing-grid .section-copy:last-child {
    margin-bottom: 0;
}

@keyframes about-icon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* =========================================================
   CONTACT SECTION — Renders at the bottom of About Us but
   fills the viewport like a standalone page when anchored.
   ========================================================= */
.contact-section {
    position: relative;
    min-height: 100vh;
    padding: 6rem 2.5rem 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #fff;
    scroll-margin-top: 0;
    isolation: isolate;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.12), transparent);
    z-index: 1;
}

.contact-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.contact-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(15, 23, 42, 0.08) 0.8px, transparent 0.8px);
    background-size: 26px 26px;
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35), transparent 65%);
    opacity: 0.5;
}

.contact-bg .glow-a,
.contact-bg .glow-b {
    display: none;
}

.contact-shell {
    max-width: 1120px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.contact-shell::before,
.contact-shell::after {
    content: '';
    position: absolute;
    width: 28px;
    height: 28px;
    border-color: rgba(37, 99, 235, 0.38);
    border-style: solid;
    pointer-events: none;
}

.contact-shell::before {
    top: -1.2rem;
    left: -1.2rem;
    border-width: 1px 0 0 1px;
}

.contact-shell::after {
    right: -1.2rem;
    bottom: -1.2rem;
    border-width: 0 1px 1px 0;
}

.contact-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    max-width: 68ch;
    margin: 0 0 2.25rem;
}

.contact-overline {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #6b7280;
    margin: 0;
    align-self: flex-start;
}

.contact-overline::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.contact-overline .sep {
    color: rgba(15, 23, 42, 0.25);
    font-weight: 500;
}

.contact-title {
    font-size: clamp(2rem, 3.2vw, 2.5rem);
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.045em;
    color: #111;
    margin: 0;
}

.contact-title .primary {
    color: #111;
}

.contact-title .accent {
    color: #7a7a7a;
    font-weight: 400;
    font-style: italic;
}

.contact-intro {
    font-size: 1rem;
    line-height: 1.72;
    color: #4b5563;
    max-width: 62ch;
    margin: 0.35rem 0 0;
}

.contact-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: 0.25rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    width: 100%;
}

.contact-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #374151;
    background: #fbfbf9;
    border: 1px solid rgba(15, 23, 42, 0.07);
    padding: 0.4rem 0.85rem;
    border-radius: 100px;
}

.contact-chip img {
    width: 18px;
    height: 13px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}

.contact-chip svg {
    width: 0.95rem;
    height: 0.95rem;
    stroke: var(--blue);
    stroke-width: 1.8;
    fill: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
    align-items: stretch;
}

.contact-card {
    padding: 1.65rem 1.5rem 1.6rem;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.02), 0 10px 28px -18px rgba(15, 23, 42, 0.08);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 2px 0 rgba(15, 23, 42, 0.02), 0 20px 40px -18px rgba(15, 23, 42, 0.14);
    border-color: rgba(15, 23, 42, 0.16);
}

.contact-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    align-self: flex-start;
    font-size: 0.64rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--blue);
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.14);
    padding: 0.35rem 0.7rem;
    border-radius: 100px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.contact-tag svg {
    width: 0.8rem;
    height: 0.8rem;
    stroke: var(--blue);
    stroke-width: 2;
    fill: none;
}

.contact-card h3 {
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #111;
    margin: 0 0 0.2rem;
    position: relative;
    z-index: 1;
}

.contact-role {
    font-size: 0.66rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #6b7280;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.contact-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 1.2rem;
    position: relative;
    z-index: 1;
}

.contact-desc strong {
    color: #111;
    font-weight: 600;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, 0.07);
    position: relative;
    z-index: 1;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.84rem;
    font-weight: 500;
    color: #1f2937;
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.contact-link:hover {
    color: var(--blue);
    transform: translateX(2px);
}

.contact-link svg {
    width: 0.95rem;
    height: 0.95rem;
    stroke: #6b7280;
    stroke-width: 1.8;
    fill: none;
    flex-shrink: 0;
    transition: stroke 0.2s ease;
}

.contact-link:hover svg {
    stroke: var(--blue);
}

@media (max-width: 1024px) {
    .about-hero::after {
        display: none;
    }

    .about-proof-strip,
    .about-principles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-partner-card {
        grid-template-columns: 1fr;
    }

    .about-partner-photo {
        max-width: 220px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-shell::before,
    .contact-shell::after {
        display: none;
    }

    .contact-section {
        min-height: auto;
        padding: 4.5rem 2rem 4.5rem;
    }
}

@media (max-width: 640px) {
    .about-hero,
    .page-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .contact-section {
        padding: 4rem 1rem 4rem;
        scroll-margin-top: 4.75rem;
    }

    .contact-chips {
        gap: 0.45rem;
    }

    .about-section-head,
    .about-section-copy-col {
        width: 100%;
        max-width: 100%;
    }

    .about-section-head.right {
        margin-left: auto;
        text-align: right;
    }

    .about-section-intro.right .about-section-copy-col,
    .about-section-intro.right .section-copy-muted {
        margin-left: auto;
        text-align: right;
    }

    .about-proof-strip,
    .about-team-grid,
    .about-principles {
        grid-template-columns: 1fr;
    }

    .about-photo {
        width: calc(100% - 1rem);
        max-width: none;
    }

    .about-member-card {
        padding: 1.4rem 1.4rem 1.75rem;
    }

    .about-partner-card {
        gap: 0.95rem;
        padding: 1.4rem 1.4rem 1.75rem;
    }

    .about-partner-aside {
        padding-left: 0;
    }

    .about-partner-photo {
        width: calc(100% - 1rem);
        max-width: none;
        margin: 0 auto 0.1rem;
    }

    .about-partner-copy {
        padding-top: 0;
    }
}
