:root {
    --teal-deep: #0E3B36;
    --teal-ink: #082420;
    --macaw-red: #C81E3A;
    --plum-dark: #33081E;
    --gold: #F0A93A;
    --cream: #FBF4E8;
    --ink: #181512;
    --white: #ffffff;
    --line: rgba(251, 244, 232, 0.18);
}

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

html {
    scroll-behavior: smooth;
}

/* body {
    font-family: 'Manrope', sans-serif;
    background: var(--cream);
    color: var(--ink);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
} */

h1,
h2,
h3 {
    font-weight: 600;
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
}

:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
}

/* ---------- feather stripe (signature brand strip) ---------- */
.feather-strip {
    display: flex;
    height: 6px;
    width: 100%;
}

.feather-strip span {
    flex: 1;
}

.feather-strip span:nth-child(1) {
    background: var(--teal-deep);
}

.feather-strip span:nth-child(2) {
    background: var(--macaw-red);
}

.feather-strip span:nth-child(3) {
    background: var(--gold);
}

.feather-strip span:nth-child(4) {
    background: var(--cream);
    border-right: 1px solid rgba(0, 0, 0, 0.05);
}


/* ---------- HERO ---------- */
.about-hero {
    position: relative;
    background: radial-gradient(1200px 600px at 82% -10%, rgba(240, 169, 58, 0.16), transparent 60%), linear-gradient(150deg, var(--teal-ink) 0%, var(--teal-deep) 62%, #0c332f 100%);
    color: var(--cream);
    padding: 70px 32px 70px;
    overflow: hidden;
    margin-top: 80px;
}

.hero-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 22px;
}

.eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: var(--gold);
}

.about-hero h1 {
    font-size: clamp(2.4rem, 4.4vw, 2.6rem);
    line-height: 1.05;
    margin-bottom: 28px;
    color: var(--white);
}

.about-hero blockquote {
    font-size: 1.125rem;
    line-height: 1.7;
    font-weight: 400;
    color: rgba(251, 244, 232, 0.88);
    border-left: 2px solid var(--gold);
    padding-left: 22px;
    margin-bottom: 36px;
    /* max-width: 52ch; */
}

.directors {
    display: flex;
    gap: 44px;
    flex-wrap: wrap;
}

.director-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
}

.director-title {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 10px;
}

/* hero artwork: abstract macaw brush strokes, css/svg only */
.hero-art {
    position: relative;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-art svg {
    width: 100%;
    height: 100%;
    max-width: 420px;
}

.hero-art-duo {
    aspect-ratio: auto;
}

.hero-photos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}

.hero-photos .hero-photo {
    width: 48%;
}

.hero-photo {
    position: relative;
    width: 82%;
    aspect-ratio: 4/5;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(251, 244, 232, 0.15);
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.4s ease;
}

.hero-photo:hover img {
    transform: scale(1.05);
}

.hero-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(200deg, transparent 55%, rgba(8, 36, 32, 0.55) 100%);
}

/* .hero-photo::before {
      content: '';
      position: absolute;
      left: -14px;
      bottom: -14px;
      width: 56px;
      height: 56px;
      background: var(--gold);
      border-radius: 8px;
      z-index: 2;
      box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    } */

.stroke-ring {
    position: absolute;
    inset: 0;
    border: 1px dashed rgba(251, 244, 232, 0.22);
    border-radius: 50%;
    animation: spin 60s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.about-hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 90px;
    background: linear-gradient(180deg, transparent, rgba(8, 36, 32, 0.35));
    pointer-events: none;
}

/* ---------- VISION & MISSION ---------- */
.vm-section {
    position: relative;
    background: linear-gradient(160deg, var(--macaw-red) 0%, #7c1631 46%, var(--plum-dark) 100%);
    padding: 60px 32px 60px;
    color: var(--cream);
    overflow: hidden;
}

.vm-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 90px;
}

.vm-heading .eyebrow {
    justify-content: center;
    color: var(--gold);
}

.vm-heading .eyebrow::before {
    display: none;
}

.vm-heading h2 {
    font-size: clamp(2.1rem, 4vw, 3rem);
    color: var(--white);
}

.vm-grid {
    max-width: 1080px;
    margin: 0 auto;
    position: relative;
}

.drip-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.drip-line .track {
    flex: 1;
    width: 2px;
    background: repeating-linear-gradient(to bottom,
            rgba(251, 244, 232, 0.55) 0 6px,
            transparent 6px 14px);
}

.drip-line .drop {
    width: 12px;
    height: 16px;
    background: var(--gold);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.vm-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 90px;
}

@keyframes revealOnScroll {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vm-card {
    background: var(--cream);
    color: var(--ink);
    border-radius: 18px;
    padding: 44px 40px;
    position: relative;
    box-shadow: 0 30px 60px rgba(20, 4, 12, 0.35);

    animation: revealOnScroll linear both;
    animation-timeline: view();
    animation-range: entry 10% cover 30%;
}

@supports not (animation-timeline: view()) {
    .vm-card {
        opacity: 1;
        transform: translateY(0);
        animation: none;
    }
}

/* .vm-card.mission {
    margin-top: 120px;
} */

.vm-badge {
    position: absolute;
    top: -30px;
    left: 40px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--teal-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px rgba(8, 36, 32, 0.35);
    border: 3px solid var(--gold);
}

.vm-badge svg {
    width: 40px;
    height: 40px;
    stroke: var(--cream);
}

.vm-card h3 {
    font-size: 1.55rem;
    margin: 20px 0 14px;
    color: var(--teal-deep);
}

.vm-card p {
    font-size: 1rem;
    line-height: 1.75;
    color: #3a352f;
}

.vm-swatches {
    display: flex;
    gap: 6px;
    margin-top: 24px;
    display: none;
}

.vm-swatches span {
    width: 20px;
    height: 20px;
    border-radius: 5px;
}

.vm-swatches span:nth-child(1) {
    background: var(--teal-deep);
}

.vm-swatches span:nth-child(2) {
    background: var(--macaw-red);
}

.vm-swatches span:nth-child(3) {
    background: var(--gold);
}

/* ---------- FOOTER ---------- */
footer {
    background: var(--teal-ink);
    color: rgba(251, 244, 232, 0.82);
    padding: 80px 32px 32px;
}

.footer-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(251, 244, 232, 0.12);
}

.footer-brand .logo {
    color: var(--cream);
}

.footer-brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 34ch;
    color: rgba(251, 244, 232, 0.6);
}

.footer-col h4 {
    font-family: 'Comfortaa', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 11px;
}

.footer-col a {
    font-size: 0.92rem;
    color: rgba(251, 244, 232, 0.82);
}

.footer-col a:hover {
    color: var(--gold);
}

.social-row {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.social-row a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(251, 244, 232, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, border-color .2s ease;
}

.social-row a:hover {
    background: var(--macaw-red);
    border-color: var(--macaw-red);
}

.social-row svg {
    width: 16px;
    height: 16px;
    stroke: var(--cream);
    fill: none;
}

.footer-bottom {
    max-width: 1240px;
    margin: 0 auto;
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.82rem;
    color: rgba(251, 244, 232, 0.5);
}

/* ---------- responsive ---------- */
@media (max-width:920px) {
    nav ul {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 28px 28px;
        gap: 6px;
        border-bottom: 1px solid rgba(24, 21, 18, 0.08);
        transform: translateY(-130%);
        transition: transform .3s ease;
    }

    nav ul.open {
        transform: translateY(0);
    }

    nav ul li {
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        width: 100%;
        margin-top: 4px;
    }

    nav ul li.mobile-open .dropdown-menu {
        display: block;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-art {
        max-width: 280px;
        margin: 0 auto;
    }

    .hero-photo {
        width: 90%;
    }

    .hero-photos {
        gap: 10px;
    }

    .hero-photos .hero-photo {
        width: 48%;
    }

    .vm-cards {
        grid-template-columns: 1fr;
        gap: 70px;
    }

    .vm-card.mission {
        margin-top: 0;
    }

    .drip-line {
        display: none;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .about-hero {
        margin-top: 55px;
    }

}

@media (max-width:560px) {
    .nav-wrap {
        padding: 16px 20px;
    }

    .about-hero {
        padding: 70px 20px 90px;
    }

    .vm-section {
        padding: 80px 20px 100px;
    }

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



}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
}