:root {
    --bg: #f7f2ea;
    --ink: #1b1b1b;
    --muted: #5f5b52;
    --gold: #c8a76b;
    --gold-soft: #e5cfa0;
    --brand-green: #78b042;
    --brand-green-dark: #5a8a32;
    --card: #ffffff;
    --border: rgba(27, 27, 27, 0.08);
    --shadow: 0 20px 45px rgba(16, 23, 18, 0.12);
    --serif: "Cormorant Garamond", serif;
    --sans: "Manrope", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--sans);
    color: var(--ink);
    background:
        radial-gradient(circle at 10% 20%, rgba(200, 167, 107, 0.2), transparent 45%),
        radial-gradient(circle at 80% 10%, rgba(182, 193, 179, 0.25), transparent 55%),
        linear-gradient(130deg, #fefcf8, #f2ece2 55%, #f7f2ea 100%);
    min-height: 100vh;
    line-height: 1.6;
}

.about-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 32px 6vw 80px;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(200, 167, 107, 0.18);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(16, 23, 18, 0.08);
}

.logo {
    width: 138px;
    height: auto;
    display: block;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-family: var(--serif);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.98rem;
}

.site-nav a {
    text-decoration: none;
    color: var(--ink);
    position: relative;
}

.site-nav a[aria-current="page"] {
    color: var(--brand-green-dark);
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
    width: 100%;
}

.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
    margin-top: 64px;
}

.eyebrow {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(200, 167, 107, 0.16);
    color: #7c5b24;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.76rem;
    margin-bottom: 18px;
}

.about-hero h1 {
    font-family: var(--serif);
    font-size: clamp(2.3rem, 4vw, 4rem);
    line-height: 1.08;
    margin-bottom: 16px;
}

.about-hero p {
    color: var(--muted);
    margin-bottom: 26px;
}

.about-hero-media {
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(200, 167, 107, 0.2);
    box-shadow: var(--shadow);
    min-height: 420px;
}

.about-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 26px;
    border-radius: 999px;
    border: 1px solid transparent;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-green), #9fd26c);
    color: #10210c;
    box-shadow: 0 12px 24px rgba(120, 176, 66, 0.3);
}

.btn-outline {
    background: #ffffff;
    color: var(--brand-green-dark);
    border-color: rgba(120, 176, 66, 0.45);
}

.btn-ghost {
    background: rgba(120, 176, 66, 0.12);
    color: var(--brand-green-dark);
    border-color: rgba(120, 176, 66, 0.35);
}

.btn:hover {
    transform: translateY(-2px);
}

.stats,
.principles,
.journey,
.about-cta {
    margin-top: 70px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.stat-card {
    padding: 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(200, 167, 107, 0.2);
    box-shadow: 0 14px 28px rgba(16, 23, 18, 0.08);
}

.stat-card h2 {
    font-family: var(--serif);
    font-size: 2rem;
    margin-bottom: 6px;
}

.stat-card p {
    color: var(--muted);
    font-size: 0.95rem;
}

.section-title h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 3rem);
    margin-bottom: 6px;
}

.section-title p {
    color: var(--muted);
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.principle-card {
    padding: 26px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(200, 167, 107, 0.2);
}

.principle-card h3 {
    font-family: var(--serif);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.principle-card p {
    color: var(--muted);
}

.journey-list {
    margin-top: 24px;
    display: grid;
    gap: 14px;
}

.journey-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 14px;
    align-items: start;
    padding: 20px 24px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(200, 167, 107, 0.2);
}

.journey-item span {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(200, 167, 107, 0.2);
    font-weight: 700;
}

.journey-item h3 {
    font-family: var(--serif);
    font-size: 1.4rem;
}

.journey-item p {
    color: var(--muted);
}

.about-cta {
    padding: 34px;
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(200, 167, 107, 0.2);
}

.about-cta h2 {
    font-family: var(--serif);
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 8px;
}

.about-cta p {
    color: var(--muted);
    margin-bottom: 20px;
}

.site-footer {
    margin-top: 70px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.footer-card {
    padding: 40px;
    border-radius: 32px;
    background: linear-gradient(140deg, rgba(255, 255, 255, 0.95), rgba(243, 236, 223, 0.92));
    border: 1px solid rgba(200, 167, 107, 0.2);
    box-shadow: 0 20px 45px rgba(16, 23, 18, 0.12);
    display: grid;
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-line {
    height: 2px;
    background: rgba(27, 27, 27, 0.12);
    flex: 1;
    margin-left: auto;
}

.footer-brand p {
    color: var(--muted);
    max-width: 320px;
}

.footer-description {
    color: var(--muted);
    max-width: 520px;
    margin-left: auto;
    text-align: right;
    line-height: 1.6;
}

.footer-logo {
    width: 140px;
    margin-bottom: 12px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 28px;
}

.footer-column h4 {
    font-family: var(--serif);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.footer-column a,
.footer-column span {
    display: block;
    color: var(--muted);
    text-decoration: none;
    margin-bottom: 8px;
}

.footer-column a:hover {
    color: var(--ink);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--muted);
    border-top: 1px solid rgba(27, 27, 27, 0.08);
    padding-top: 16px;
    font-size: 0.9rem;
}

.footer-bottom span a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(27, 27, 27, 0.25);
}

.footer-bottom span a:hover {
    color: var(--ink);
}

.footer-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-chips span {
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(200, 167, 107, 0.18);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.whatsapp-chat {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: grid;
    place-items: center;
    box-shadow: 0 16px 30px rgba(16, 23, 18, 0.18);
    z-index: 95;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-chat:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 35px rgba(16, 23, 18, 0.25);
}

.whatsapp-chat::after {
    content: "Chat With Us";
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: #ffffff;
    color: #1b1b1b;
    padding: 8px 16px;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(16, 23, 18, 0.15);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-right: 16px;
    font-family: var(--sans);
    visibility: hidden;
}

.whatsapp-chat:hover::after {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}

@media (max-width: 1024px) {
    .site-header {
        border-radius: 24px;
        flex-wrap: wrap;
    }

    .site-nav {
        justify-content: center;
        flex-wrap: wrap;
    }

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

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

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

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .site-header {
        flex-direction: column;
    }

    .site-nav {
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .about-page {
        padding: 24px 6vw 60px;
    }

    .site-header {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

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

    .about-hero-media {
        min-height: 280px;
    }

    .footer-card {
        padding: 28px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
