/* =========================================================
   SanyogRishtey.com — About Us
   ========================================================= */

:root {
    --about-coral: #e24b4f;
    --about-coral-deep: #c53a3e;
    --about-teal: #1f8f96;
    --about-ink: #1a1a1a;
    --about-muted: #5e5a56;
    --about-cream: #f7f3ef;
    --about-line: #e6ddd6;
    --about-max: 1080px;
    --font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    color: var(--about-ink);
    font-family: var(--font-family);
    background: #fff;
}

.about-page {
    overflow-x: hidden;
}

.about-kicker {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--about-coral);
}

.about-kicker--center { text-align: center; }

.about-heading {
    margin: 0 0 18px;
    font-family: var(--font-family);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.about-heading--center { text-align: center; }

.about-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.about-btn--primary {
    background: var(--about-coral);
    color: #fff;
}

.about-btn--primary:hover {
    background: var(--about-coral-deep);
    transform: translateY(-1px);
}

.about-btn--ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.7);
}

.about-btn--ghost:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* ---------- Hero ---------- */

.about-hero {
    position: relative;
    min-height: min(88vh, 720px);
    display: flex;
    align-items: flex-end;
    background:
        linear-gradient(135deg, rgba(26, 18, 16, 0.55), rgba(26, 18, 16, 0.25)),
        url('../images/hero-couple.png') center 20% / cover no-repeat,
        #2a2420;
    color: #fff;
}

.about-hero__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 14, 12, 0.15) 0%, rgba(20, 14, 12, 0.72) 100%);
    pointer-events: none;
}

.about-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--about-max);
    margin: 0 auto;
    padding: 72px 24px 64px;
    animation: about-rise 0.8s ease both;
}

.about-hero__brand {
    margin: 0 0 14px;
    font-family: var(--font-family);
    font-size: clamp(2.4rem, 6vw, 3.6rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.01em;
}

.about-hero__title {
    margin: 0 0 16px;
    font-family: var(--font-family);
    font-size: clamp(1.15rem, 2.4vw, 1.45rem);
    font-weight: 500;
    line-height: 1.45;
    max-width: 28ch;
    color: rgba(255, 255, 255, 0.92);
}

.about-hero__lead {
    margin: 0 0 28px;
    max-width: 42ch;
    font-size: 15.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}

.about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@keyframes about-rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ---------- Story ---------- */

.about-story {
    padding: 72px 24px;
    background:
        radial-gradient(ellipse at 0% 0%, rgba(226, 75, 79, 0.06), transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(31, 143, 150, 0.07), transparent 45%),
        var(--about-cream);
}

.about-story__inner {
    max-width: var(--about-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    gap: 48px;
    align-items: start;
}

.about-story__copy p {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--about-muted);
}

.about-aside-card {
    background: #fff;
    border: 1px solid var(--about-line);
    border-radius: 16px;
    padding: 28px 26px;
    animation: about-rise 0.9s ease 0.15s both;
}

.about-aside-card__label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--about-teal);
    margin-bottom: 8px;
}

.about-aside-card strong {
    display: block;
    font-family: var(--font-family);
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-aside-card p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--about-muted);
}

/* ---------- Values ---------- */

.about-values {
    padding: 72px 24px 64px;
    background: #fff;
}

.about-values__inner {
    max-width: var(--about-max);
    margin: 0 auto;
}

.about-values__intro {
    margin: -6px auto 40px;
    max-width: 48ch;
    text-align: center;
    font-size: 15.5px;
    line-height: 1.6;
    color: var(--about-muted);
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 36px;
}

.about-value {
    padding-top: 18px;
    border-top: 2px solid var(--about-coral);
    animation: about-rise 0.7s ease both;
}

.about-value:nth-child(2) { animation-delay: 0.08s; border-top-color: var(--about-teal); }
.about-value:nth-child(3) { animation-delay: 0.16s; }
.about-value:nth-child(4) { animation-delay: 0.24s; border-top-color: var(--about-teal); }

.about-value h3 {
    margin: 0 0 8px;
    font-family: var(--font-family);
    font-size: 1.35rem;
    font-weight: 700;
}

.about-value p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--about-muted);
}

/* ---------- Steps ---------- */

.about-steps {
    padding: 64px 24px 72px;
    background:
        linear-gradient(180deg, #fff 0%, var(--about-cream) 100%);
}

.about-steps__inner {
    max-width: 720px;
    margin: 0 auto;
}

.about-steps__list {
    list-style: none;
    margin: 36px 0 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.about-steps__list li {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    align-items: start;
}

.about-steps__num {
    font-family: var(--font-family);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--about-coral);
    line-height: 1;
    padding-top: 4px;
}

.about-steps__list h3 {
    margin: 0 0 6px;
    font-size: 1.1rem;
    font-weight: 600;
}

.about-steps__list p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--about-muted);
}

/* ---------- CTA ---------- */

.about-cta {
    padding: 64px 24px 80px;
    background:
        linear-gradient(135deg, #2a1f1c 0%, #3d2824 45%, #1f4a4d 100%);
    color: #fff;
    text-align: center;
}

.about-cta__inner {
    max-width: 640px;
    margin: 0 auto;
}

.about-cta__title {
    margin: 0 0 12px;
    font-family: var(--font-family);
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
}

.about-cta__text {
    margin: 0 0 28px;
    font-size: 15.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
}

.about-cta .about-hero__actions {
    justify-content: center;
}

/* ---------- Responsive ---------- */

@media (max-width: 800px) {
    .about-story__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-values__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .about-hero {
        min-height: 70vh;
        align-items: flex-end;
    }

    .about-hero__inner {
        padding: 56px 20px 48px;
    }
}

@media (max-width: 480px) {
    .about-steps__list li {
        grid-template-columns: 48px 1fr;
        gap: 12px;
    }

    .about-btn {
        width: 100%;
    }

    .about-hero__actions {
        flex-direction: column;
    }
}
