/* Sobre — editorial layout */
:root {
    --about-ink: #1a0b0f;
    --about-wine: #2a0d16;
    --about-rose: #f23665;
    --about-rose-soft: #fff0f3;
    --about-paper: #fbf9f7;
    --about-line: rgba(26, 11, 15, 0.13);
    --about-muted: #6f6266;
    --about-serif: 'Playfair Display', serif;
}

.about-page {
    background: var(--about-paper);
    color: var(--about-ink);
}

.about-page main {
    overflow: hidden;
}

.about-shell {
    width: min(100% - 3rem, 1200px);
    margin-inline: auto;
}

.about-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--about-rose);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.3em;
    line-height: 1;
    text-transform: uppercase;
}

.about-eyebrow::before {
    width: 2.4rem;
    height: 1px;
    background: currentColor;
    content: '';
}

.about-eyebrow--light {
    color: #ff799a;
}

.about-section-index {
    display: block;
    margin-top: 1.2rem;
    color: #9a8f92;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-section-index--light {
    color: rgba(255, 255, 255, 0.34);
}

.about-page h1,
.about-page h2,
.about-page h3 {
    text-wrap: balance;
}

.about-page h1 em,
.about-page h2 em {
    color: var(--about-rose);
    font-family: var(--about-serif);
    font-weight: 500;
}

.about-button {
    min-height: 3.65rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    padding: 0.85rem 1.65rem;
    border: 1px solid transparent;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.about-button .material-symbols-outlined {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.about-button:hover {
    transform: translateY(-3px);
}

.about-button:hover .material-symbols-outlined {
    transform: translateX(4px);
}

.about-button--primary {
    background: var(--about-rose);
    color: #fff;
    box-shadow: 0 16px 35px rgba(242, 54, 101, 0.23);
}

.about-button--primary:hover {
    background: #d92d56;
}

.about-button--ghost {
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.about-button--ghost:hover {
    border-color: #fff;
    background: #fff;
    color: var(--about-ink);
}

.about-text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    padding-bottom: 0.35rem;
    text-transform: uppercase;
}

.about-text-link .material-symbols-outlined {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.about-text-link:hover {
    color: #ff799a;
}

.about-text-link:hover .material-symbols-outlined {
    transform: translate(3px, -3px);
}

.about-text-link--dark {
    border-color: rgba(26, 11, 15, 0.24);
    color: var(--about-ink);
}

/* Hero */
.about-hero {
    min-height: 860px;
    height: 100svh;
    position: relative;
    display: flex;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    background: var(--about-ink);
}

.about-hero::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(20, 7, 11, 0.98) 0%, rgba(20, 7, 11, 0.93) 36%, rgba(20, 7, 11, 0.44) 66%, rgba(20, 7, 11, 0.18) 100%),
        linear-gradient(0deg, rgba(20, 7, 11, 0.75) 0%, transparent 35%);
    content: '';
}

.about-hero::after {
    position: absolute;
    z-index: 2;
    inset: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    pointer-events: none;
    content: '';
}

.about-hero__glow {
    position: absolute;
    z-index: 2;
    top: 24%;
    left: -9rem;
    width: 28rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(242, 54, 101, 0.13);
    filter: blur(90px);
}

.about-hero__media {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: flex-end;
    background: linear-gradient(90deg, #18080d 0%, #2b1019 58%, #4b3942 100%);
}

.about-hero__media img {
    width: min(70vw, 1040px);
    height: 100%;
    object-fit: contain;
    object-position: right bottom;
    transform: translate3d(0, var(--hero-parallax, 0), 0);
    filter: saturate(0.8) contrast(1.03);
    will-change: transform;
}

.about-hero__inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 5rem;
    padding-top: 8rem;
}

.about-hero__content {
    width: 100%;
    min-width: 0;
    max-width: 710px;
}

.about-hero h1 {
    margin-top: 1.65rem;
    color: #fff;
    font-family: var(--about-serif);
    font-size: clamp(3.6rem, 7.2vw, 7.4rem);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 0.94;
}

.about-hero h1 em {
    display: inline-block;
    margin-left: clamp(0rem, 4vw, 4rem);
}

.about-hero__lead {
    max-width: 590px;
    margin-top: 2.25rem;
    padding-left: 1.4rem;
    border-left: 2px solid rgba(242, 54, 101, 0.62);
    color: rgba(255, 255, 255, 0.66);
    font-size: clamp(1rem, 1.5vw, 1.16rem);
    font-weight: 400;
    line-height: 1.85;
}

.about-hero__actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
}

.about-hero__signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
    color: #fff;
    writing-mode: vertical-rl;
}

.about-hero__signature-number {
    font-family: var(--about-serif);
    font-size: 2rem;
    font-style: italic;
}

.about-hero__signature-copy {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.35);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    line-height: 1.6;
    text-transform: uppercase;
}

.about-hero__scroll {
    position: absolute;
    z-index: 4;
    right: 3.5rem;
    bottom: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    transform: rotate(90deg) translateX(-100%);
    transform-origin: left bottom;
}

.about-hero__scroll i {
    width: 3rem;
    height: 1px;
    position: relative;
    display: block;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
}

.about-hero__scroll i::after {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #ff799a;
    animation: about-scroll-line 2.2s ease-in-out infinite;
    content: '';
    transform: translateX(-100%);
}

@keyframes about-scroll-line {
    50%,
    100% { transform: translateX(100%); }
}

/* Impact */
.about-impact {
    position: relative;
    z-index: 5;
    background: #fff;
    border-bottom: 1px solid var(--about-line);
}

.about-impact__grid {
    display: grid;
    grid-template-columns: 1.45fr repeat(3, 1fr);
}

.about-impact__intro,
.about-stat {
    min-height: 10.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 2rem 2.3rem;
    border-right: 1px solid var(--about-line);
}

.about-impact__intro {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding-left: 0;
}

.about-impact__intro .material-symbols-outlined {
    color: var(--about-rose);
    font-size: 1.8rem;
    font-variation-settings: 'FILL' 1;
}

.about-impact__intro p {
    max-width: 250px;
    color: var(--about-muted);
    font-family: var(--about-serif);
    font-size: 1.08rem;
    font-style: italic;
    line-height: 1.55;
}

.about-stat:last-child {
    border-right: 0;
}

.about-stat strong {
    display: flex;
    align-items: baseline;
    color: var(--about-ink);
    font-family: var(--about-serif);
    font-size: clamp(2.5rem, 4vw, 3.55rem);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 1;
}

.about-stat strong b {
    margin-left: 0.2rem;
    color: var(--about-rose);
    font-size: 0.65em;
}

.about-stat > span {
    margin-top: 0.75rem;
    color: #8a7e82;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    line-height: 1.45;
    text-transform: uppercase;
}

/* Story */
.about-story {
    padding: clamp(6rem, 10vw, 10rem) 0;
    background: var(--about-paper);
}

.about-story__heading,
.about-team__heading {
    display: grid;
    grid-template-columns: 0.65fr 1.35fr;
    align-items: start;
    gap: 4rem;
    padding-bottom: 4.5rem;
    border-bottom: 1px solid var(--about-line);
}

.about-story__heading h2,
.about-team__heading h2 {
    font-family: var(--about-serif);
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.about-story__editorial {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 7rem;
    align-items: start;
    padding-top: 5rem;
}

.about-story__portrait {
    position: relative;
}

.about-story__portrait::before {
    position: absolute;
    z-index: 0;
    top: -1rem;
    left: -1rem;
    width: 38%;
    height: 38%;
    border-top: 2px solid var(--about-rose);
    border-left: 2px solid var(--about-rose);
    content: '';
}

.about-story__portrait img {
    width: 100%;
    max-height: 690px;
    position: relative;
    z-index: 1;
    object-fit: cover;
    object-position: center 18%;
}

.about-story__portrait figcaption {
    margin-top: 1.1rem;
    color: #8d8185;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.17em;
    text-transform: uppercase;
}

.about-story__copy {
    padding-top: 1.2rem;
}

.about-story__copy > p {
    margin-bottom: 1.6rem;
    color: var(--about-muted);
    font-size: 1.05rem;
    line-height: 1.95;
}

.about-story__copy .about-story__dropcap {
    color: var(--about-ink);
    font-family: var(--about-serif);
    font-size: clamp(1.55rem, 2.5vw, 2.2rem);
    line-height: 1.5;
}

.about-story__dropcap::first-letter {
    margin-right: 0.25rem;
    color: var(--about-rose);
    font-size: 3.2em;
    float: left;
    line-height: 0.78;
}

.about-story__copy blockquote {
    position: relative;
    margin: 3rem 0;
    padding: 2.3rem 0 2.3rem 2rem;
    border-top: 1px solid var(--about-line);
    border-bottom: 1px solid var(--about-line);
    color: var(--about-ink);
    font-family: var(--about-serif);
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    font-style: italic;
    line-height: 1.5;
}

.about-story__copy blockquote::before {
    position: absolute;
    top: 2.3rem;
    left: 0;
    color: var(--about-rose);
    content: '“';
    font-size: 2rem;
}

.about-story__moment {
    grid-column: 1 / -1;
    position: relative;
    min-height: 33rem;
    margin-top: 1rem;
    overflow: hidden;
}

.about-story__moment::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(26, 11, 15, 0.82), rgba(26, 11, 15, 0.08) 70%);
    content: '';
}

.about-story__moment img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    object-position: center 38%;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-story__moment:hover img {
    transform: scale(1.025);
}

.about-story__moment figcaption {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: clamp(2rem, 7vw, 6rem);
    max-width: 440px;
    color: #fff;
    transform: translateY(-50%);
}

.about-story__moment figcaption span {
    display: block;
    margin-bottom: 1.1rem;
    color: #ff799a;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.about-story__moment figcaption strong {
    font-family: var(--about-serif);
    font-size: clamp(2.3rem, 4vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
}

/* Values */
.about-values {
    padding: clamp(6rem, 9vw, 8rem) 0;
    background:
        radial-gradient(circle at 10% 15%, rgba(242, 54, 101, 0.13), transparent 28rem),
        radial-gradient(circle at 90% 85%, rgba(242, 54, 101, 0.06), transparent 24rem),
        var(--about-wine);
    color: #fff;
}

.about-values__header {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
    align-items: end;
    gap: clamp(3rem, 8vw, 7rem);
    padding-bottom: clamp(3rem, 5vw, 4.5rem);
}

.about-values__intro {
    min-width: 0;
}

.about-values__intro .about-eyebrow {
    margin-bottom: 0.65rem;
}

.about-values__intro .about-section-index {
    display: block;
    margin-bottom: 2rem;
}

.about-values__intro h2 {
    max-width: 760px;
    font-family: var(--about-serif);
    font-size: clamp(3.2rem, 5.2vw, 5.7rem);
    font-weight: 600;
    letter-spacing: -0.05em;
    line-height: 0.98;
}

.about-values__intro h2 em {
    color: #ff5f89;
    font-weight: 500;
}

.about-values__lead {
    max-width: 27rem;
    padding: 0.25rem 0 0.25rem 1.5rem;
    border-left: 2px solid rgba(255, 95, 137, 0.72);
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
    line-height: 1.85;
}

.about-values__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.about-value {
    position: relative;
    min-height: 22rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    padding: clamp(1.7rem, 2.4vw, 2.35rem);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 0.65rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
    box-shadow: 0 1.2rem 3rem rgba(12, 2, 6, 0.13);
    transition: border-color 0.28s ease, background-color 0.28s ease, box-shadow 0.28s ease, transform 0.28s ease;
}

.about-value::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff5f89, rgba(255, 95, 137, 0));
    content: '';
    opacity: 0;
    transform: scaleX(0.35);
    transform-origin: left;
    transition: opacity 0.28s ease, transform 0.28s ease;
}

.about-page .about-value.reveal.visible:hover {
    border-color: rgba(255, 95, 137, 0.42);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.028));
    box-shadow: 0 1.5rem 3.5rem rgba(12, 2, 6, 0.2);
    transform: translateY(-5px);
}

.about-value:hover::before {
    opacity: 1;
    transform: scaleX(1);
}

.about-value__number {
    position: absolute;
    top: clamp(1.7rem, 2.4vw, 2.35rem);
    right: clamp(1.7rem, 2.4vw, 2.35rem);
    color: rgba(255, 255, 255, 0.46);
    font-family: var(--about-serif);
    font-size: 0.9rem;
    font-style: italic;
}

.about-value > .material-symbols-outlined {
    width: 3.8rem;
    height: 3.8rem;
    display: grid;
    place-items: center;
    margin: 0 0 auto;
    border: 1px solid rgba(255, 95, 137, 0.35);
    border-radius: 50%;
    background: rgba(255, 95, 137, 0.07);
    color: #ff799a;
    font-size: 1.55rem;
    font-variation-settings: 'FILL' 1;
}

.about-value h3 {
    margin: 3.5rem 0 0.85rem;
    font-family: var(--about-serif);
    font-size: clamp(1.55rem, 2vw, 1.85rem);
    font-weight: 600;
    line-height: 1.15;
}

.about-value p {
    max-width: 32rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.94rem;
    line-height: 1.75;
}

/* Team */
.about-team {
    padding: clamp(6rem, 10vw, 10rem) 0;
    background: #fff;
}

.about-team__grid {
    display: grid;
    gap: 8rem;
    margin-top: 5rem;
}

.about-person {
    display: grid;
    grid-template-columns: minmax(280px, 0.88fr) minmax(300px, 1.12fr);
    align-items: center;
    gap: clamp(3rem, 8vw, 8rem);
}

.about-person--reverse {
    grid-template-columns: minmax(300px, 1.12fr) minmax(280px, 0.88fr);
}

.about-person--reverse .about-person__photo {
    grid-column: 2;
    grid-row: 1;
}

.about-person--reverse .about-person__content {
    grid-column: 1;
    grid-row: 1;
}

.about-person__photo {
    height: min(70vw, 620px);
    position: relative;
    overflow: hidden;
    background: #e6e0e1;
}

.about-person__photo::after {
    position: absolute;
    inset: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.46);
    content: '';
    pointer-events: none;
}

.about-person__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-person:hover .about-person__photo img {
    transform: scale(1.025);
}

.about-person__photo > span {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    padding: 1rem 1.3rem;
    background: var(--about-rose);
    color: #fff;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.about-person__role {
    margin-bottom: 1.5rem;
    color: var(--about-rose);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.21em;
    text-transform: uppercase;
}

.about-person__content h3 {
    margin-bottom: 1.6rem;
    font-family: var(--about-serif);
    font-size: clamp(2.2rem, 4vw, 3.9rem);
    font-weight: 600;
    letter-spacing: -0.035em;
    line-height: 1.1;
}

.about-person__content > p:last-child {
    max-width: 510px;
    padding-top: 1.5rem;
    border-top: 1px solid var(--about-line);
    color: var(--about-muted);
    font-size: 1rem;
    line-height: 1.9;
}

.about-team__promise {
    max-width: 880px;
    display: grid;
    justify-items: center;
    margin: 9rem auto 0;
    text-align: center;
}

.about-team__promise .material-symbols-outlined {
    color: rgba(242, 54, 101, 0.18);
    font-size: 5rem;
    font-variation-settings: 'FILL' 1;
}

.about-team__promise p {
    margin-top: -1.4rem;
    font-family: var(--about-serif);
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    font-style: italic;
    line-height: 1.3;
}

.about-team__promise > span:last-child {
    margin-top: 1.8rem;
    color: var(--about-rose);
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

/* Gallery */
.about-gallery {
    padding: 8rem 0;
    background: var(--about-paper);
}

.about-gallery__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3.5rem;
}

.about-gallery__header h2 {
    margin-top: 1rem;
    font-family: var(--about-serif);
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 600;
    letter-spacing: -0.045em;
}

.about-gallery__viewport {
    width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: thin;
    scrollbar-color: var(--about-rose) rgba(26, 11, 15, 0.08);
}

.about-gallery__track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-inline: max(1.5rem, calc((100vw - 1200px) / 2));
    padding-bottom: 1.5rem;
}

.about-gallery__track figure {
    width: clamp(280px, 30vw, 440px);
    height: 25rem;
    flex: 0 0 auto;
    overflow: hidden;
}

.about-gallery__track .about-gallery__tall {
    width: clamp(235px, 24vw, 350px);
    height: 32rem;
}

.about-gallery__track img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.5s ease;
}

.about-gallery__track figure:hover img {
    transform: scale(1.04);
    filter: saturate(1);
}

.about-gallery__manual-stage {
    position: relative;
}

.about-gallery__manual-next {
    position: absolute;
    z-index: 2;
    top: 50%;
    right: clamp(1rem, 2vw, 2rem);
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(26, 11, 15, 0.82);
    box-shadow: 0 0.75rem 2rem rgba(26, 11, 15, 0.2);
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.about-gallery__manual-next:hover,
.about-gallery__manual-next:focus-visible {
    background: var(--about-rose);
    outline: 3px solid var(--about-ink);
    outline-offset: 3px;
    transform: translateY(-50%) scale(1.06);
}

.about-gallery[data-moments-marquee] {
    overflow: hidden;
}

.about-gallery__marquee-viewport {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 9%, #000 91%, transparent 100%);
}

.about-gallery__marquee-track {
    width: max-content;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 1.5rem 0 2rem;
    animation: about-gallery-marquee 34s linear infinite;
    will-change: transform;
}

.about-gallery__marquee-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto;
    padding-right: 1rem;
}

.about-gallery__marquee-viewport:hover .about-gallery__marquee-track {
    animation-play-state: paused;
}

@keyframes about-gallery-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.about-gallery[data-moments-gallery] {
    overflow: hidden;
}

.about-gallery__stage {
    position: relative;
}

.about-gallery__dots {
    display: none;
}

.about-gallery.is-gallery-ready .about-gallery__header {
    opacity: 0;
    transform: translateY(1.5rem);
    transition: opacity 0.7s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-gallery.is-gallery-ready .about-gallery__header > .about-text-link {
    opacity: 0;
    transform: translateY(1rem);
    transition: opacity 0.55s ease 0.14s, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1) 0.14s;
}

.about-gallery.is-gallery-ready .about-gallery__stage,
.about-gallery.is-gallery-ready .about-gallery__dots {
    opacity: 0;
    transform: translateY(2rem) scale(0.985);
    transition: opacity 0.8s ease 0.2s, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.about-gallery.is-gallery-ready .about-gallery__viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: auto;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
    cursor: grab;
}

.about-gallery.is-gallery-ready .about-gallery__viewport::-webkit-scrollbar {
    display: none;
}

.about-gallery.is-gallery-ready .about-gallery__viewport.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.about-gallery.is-gallery-ready .about-gallery__viewport.is-auto-moving {
    scroll-snap-type: none;
}

.about-gallery.is-gallery-ready .about-gallery__track {
    gap: clamp(0.85rem, 1.8vw, 1.75rem);
    padding: 2rem max(1.5rem, calc(50vw - 130px)) 2.5rem;
}

.about-gallery.is-gallery-ready .about-gallery__track figure {
    --gallery-scale: 0.9;
    --gallery-enter-y: 1.5rem;
    width: clamp(320px, 46vw, 580px);
    height: clamp(22rem, 31vw, 29rem);
    position: relative;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    opacity: 0;
    overflow: hidden;
    filter: blur(1.2px);
    transform: translateY(var(--gallery-enter-y)) scale(var(--gallery-scale));
    transform-origin: center;
    transition: transform 0.72s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.55s ease,
        filter 0.55s ease;
    will-change: transform, opacity, filter;
}

.about-gallery.is-gallery-ready .about-gallery__track .about-gallery__tall {
    width: clamp(270px, 37vw, 450px);
    height: clamp(25rem, 35vw, 33rem);
}

.about-gallery.is-gallery-ready .about-gallery__track figure img {
    filter: saturate(0.72) contrast(0.94);
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.55s ease;
}

.about-gallery.is-gallery-ready .about-gallery__track figure.is-active {
    --gallery-scale: 1;
    opacity: 1;
    filter: blur(0);
    z-index: 1;
}

.about-gallery.is-gallery-ready .about-gallery__track figure.is-active img {
    filter: saturate(0.94) contrast(1.02);
}

.about-gallery.is-gallery-ready .about-gallery__track figure.is-nearby {
    --gallery-scale: 0.94;
    opacity: 0.64;
    filter: blur(0.6px);
}

.about-gallery.is-gallery-ready.is-gallery-revealed .about-gallery__header,
.about-gallery.is-gallery-ready.is-gallery-revealed .about-gallery__header > .about-text-link,
.about-gallery.is-gallery-ready.is-gallery-revealed .about-gallery__stage,
.about-gallery.is-gallery-ready.is-gallery-revealed .about-gallery__dots {
    opacity: 1;
    transform: none;
}

.about-gallery.is-gallery-ready.is-gallery-revealed .about-gallery__track figure {
    --gallery-enter-y: 0rem;
    opacity: 0.38;
    transition-delay: calc(var(--gallery-order, 0) * 70ms), 0ms, 0ms;
}

.about-gallery.is-gallery-ready.is-gallery-revealed .about-gallery__track figure.is-active {
    opacity: 1;
}

.about-gallery.is-gallery-ready.is-gallery-revealed .about-gallery__track figure.is-nearby {
    opacity: 0.64;
}

.about-gallery__control {
    display: none;
}

.about-gallery.is-gallery-ready .about-gallery__control {
    position: absolute;
    z-index: 3;
    top: 50%;
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(26, 11, 15, 0.18);
    border-radius: 50%;
    background: rgba(255, 253, 250, 0.9);
    box-shadow: 0 0.75rem 2rem rgba(36, 15, 20, 0.12);
    color: var(--about-ink);
    cursor: pointer;
    opacity: 0.55;
    transform: translateY(-50%) scale(0.92);
    transition: opacity 0.3s ease, color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
}

.about-gallery.is-gallery-ready .about-gallery__control:hover,
.about-gallery.is-gallery-ready .about-gallery__control:focus-visible {
    background: var(--about-ink);
    color: var(--about-paper);
    opacity: 1;
    transform: translateY(-50%) scale(1);
    outline: 3px solid var(--about-rose);
    outline-offset: 3px;
}

.about-gallery.is-gallery-ready .about-gallery__stage:hover .about-gallery__control {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.about-gallery__control--prev {
    left: clamp(0.75rem, 2vw, 2rem);
}

.about-gallery__control--next {
    right: clamp(0.75rem, 2vw, 2rem);
}

.about-gallery.is-gallery-ready .about-gallery__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
}

.about-gallery__dot {
    width: 0.5rem;
    height: 0.5rem;
    border: 0;
    border-radius: 999px;
    background: rgba(26, 11, 15, 0.23);
    cursor: pointer;
    padding: 0;
    transition: width 0.45s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, transform 0.3s ease;
}

.about-gallery__dot:hover,
.about-gallery__dot:focus-visible {
    background: var(--about-rose);
    outline: 3px solid var(--about-ink);
    outline-offset: 3px;
    transform: scale(1.12);
}

.about-gallery__dot.is-active {
    width: 2rem;
    background: var(--about-rose);
}

/* CTA and footer */
.about-cta {
    min-height: 720px;
    position: relative;
    display: grid;
    place-items: center;
    isolation: isolate;
    overflow: hidden;
    color: #fff;
}

.about-cta__background,
.about-cta__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.about-cta__background {
    z-index: -2;
    object-fit: cover;
    object-position: 50% 30%;
}

.about-cta__overlay {
    z-index: -1;
    background: linear-gradient(90deg, rgba(26, 11, 15, 0.94), rgba(26, 11, 15, 0.72)),
        linear-gradient(0deg, rgba(26, 11, 15, 0.5), transparent);
}

.about-cta__inner {
    display: grid;
    justify-items: center;
    text-align: center;
}

.about-cta h2 {
    margin-top: 1.8rem;
    font-family: var(--about-serif);
    font-size: clamp(3.3rem, 7vw, 6.7rem);
    font-weight: 600;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.about-cta__inner > p:not(.about-eyebrow) {
    max-width: 620px;
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-cta__actions {
    display: flex;
    gap: 1rem;
    margin-top: 2.6rem;
}

.about-footer {
    background: #13070a;
    color: #fff;
}

.about-footer__inner {
    min-height: 8.5rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

.about-footer__brand {
    display: inline-flex;
    align-items: center;
    justify-self: start;
    gap: 0.7rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.about-footer__brand img {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    object-fit: cover;
}

.about-footer__inner > p {
    color: rgba(255, 255, 255, 0.34);
    font-size: 0.62rem;
}

.about-footer__links {
    display: flex;
    justify-self: end;
    gap: 1.5rem;
}

.about-footer__links a {
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-footer__links a:hover {
    color: #ff799a;
}

/* Motion */
.about-page .reveal,
.about-page .reveal-left,
.about-page .reveal-right {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-page .reveal,
.about-page .reveal-left {
    transform: translateY(34px);
}

.about-page .reveal-right {
    transform: translateY(34px);
}

.about-page .reveal.visible,
.about-page .reveal-left.visible,
.about-page .reveal-right.visible {
    opacity: 1;
    transform: translate(0);
}

@media (min-width: 900px) {
    .about-page .reveal-left {
        transform: translateX(-38px);
    }

    .about-page .reveal-right {
        transform: translateX(38px);
    }
}

@media (max-width: 1024px) {
    .about-shell {
        width: min(100% - 2.5rem, 1200px);
    }

    .about-hero::before {
        background: linear-gradient(90deg, rgba(20, 7, 11, 0.98) 0%, rgba(20, 7, 11, 0.88) 48%, rgba(20, 7, 11, 0.38) 100%);
    }

    .about-impact__grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-impact__intro {
        grid-column: 1 / -1;
        min-height: 7rem;
        padding: 1.5rem 0;
        border-right: 0;
        border-bottom: 1px solid var(--about-line);
    }

    .about-story__editorial {
        gap: 4rem;
    }

    .about-values__header {
        grid-template-columns: minmax(0, 1.1fr) minmax(16rem, 0.9fr);
        gap: 3rem;
    }

    .about-person {
        gap: 4rem;
    }

    .about-footer__inner {
        grid-template-columns: 1fr 1fr;
        padding-block: 2rem;
    }

    .about-footer__inner > p {
        grid-column: 1 / -1;
        grid-row: 2;
    }
}

@media (max-width: 1024px) {
    .about-gallery.is-gallery-ready .about-gallery__track figure {
        width: clamp(300px, 58vw, 520px);
    }

    .about-gallery.is-gallery-ready .about-gallery__track .about-gallery__tall {
        width: clamp(260px, 46vw, 410px);
    }
}

@media (max-width: 767px) {
    .about-shell {
        width: min(100% - 2rem, 1200px);
    }

    .about-hero {
        min-height: 780px;
        height: 100svh;
        align-items: end;
    }

    .about-hero::before {
        background: linear-gradient(0deg, rgba(20, 7, 11, 0.99) 0%, rgba(20, 7, 11, 0.88) 52%, rgba(20, 7, 11, 0.2) 100%);
    }

    .about-hero::after {
        inset: 0.75rem;
    }

    .about-hero__media img {
        width: 100%;
        height: 67%;
        object-position: center top;
    }

    .about-hero__inner {
        width: calc(100% - 2rem);
        min-width: 0;
        grid-template-columns: minmax(0, 1fr);
        align-items: end;
        padding: 8.5rem 0 4.5rem;
    }

    .about-hero h1 {
        font-size: clamp(3.35rem, 15vw, 5.5rem);
    }

    .about-hero h1 em {
        margin-left: 0;
    }

    .about-hero__lead {
        width: 100%;
        max-width: 31rem;
        margin-top: 1.6rem;
        font-size: 0.94rem;
        line-height: 1.7;
        overflow-wrap: break-word;
    }

    .about-hero__actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .about-hero__signature,
    .about-hero__scroll {
        display: none;
    }

    .about-impact__grid {
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
    }

    .about-impact__intro {
        padding-inline: 1rem;
    }

    .about-stat {
        min-height: 8.7rem;
        padding: 1.6rem 0.7rem;
        text-align: center;
    }

    .about-stat strong {
        justify-content: center;
        font-size: clamp(2rem, 10vw, 2.8rem);
    }

    .about-stat > span {
        font-size: 0.52rem;
        letter-spacing: 0.1em;
    }

    .about-story,
    .about-values,
    .about-team,
    .about-gallery {
        padding-block: 5.5rem;
    }

    .about-story__heading,
    .about-team__heading,
    .about-values__header {
        grid-template-columns: 1fr;
        gap: 2.2rem;
        padding-bottom: 3rem;
    }

    .about-story__editorial {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        padding-top: 3.5rem;
    }

    .about-story__portrait img {
        max-height: 540px;
    }

    .about-story__copy {
        padding-top: 0;
    }

    .about-story__moment {
        grid-column: auto;
        min-height: 29rem;
    }

    .about-story__moment::after {
        background: linear-gradient(0deg, rgba(26, 11, 15, 0.88), rgba(26, 11, 15, 0.08) 75%);
    }

    .about-story__moment figcaption {
        top: auto;
        right: 2rem;
        bottom: 2.5rem;
        left: 2rem;
        transform: none;
    }

    .about-values__list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-value,
    .about-value:first-child,
    .about-value:last-child {
        min-height: 16.5rem;
        padding: 1.6rem;
        border: 1px solid rgba(255, 255, 255, 0.13);
    }

    .about-value__number {
        top: 1.6rem;
        right: 1.6rem;
    }

    .about-value > .material-symbols-outlined {
        margin: 0 0 auto;
    }

    .about-value h3 {
        margin-top: 2.1rem;
    }

    .about-person,
    .about-person--reverse {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-person--reverse .about-person__photo,
    .about-person--reverse .about-person__content {
        grid-column: auto;
        grid-row: auto;
    }

    .about-person__photo {
        height: clamp(390px, 122vw, 530px);
    }

    .about-team__grid {
        gap: 4.5rem;
        margin-top: 3.5rem;
    }

    .about-team__promise {
        margin-top: 4.5rem;
    }

    .about-gallery__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .about-gallery__track figure {
        width: 78vw;
        height: 23rem;
    }

    .about-gallery__track .about-gallery__tall {
        width: 68vw;
        height: 29rem;
    }

    .about-gallery__manual-next {
        right: 0.75rem;
        width: 2.75rem;
        height: 2.75rem;
    }

    .about-gallery__marquee-viewport {
        -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
        mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
    }

    .about-gallery__marquee-track {
        padding: 1rem 0 1.75rem;
        animation-duration: 28s;
    }

    .about-gallery__marquee-group {
        gap: 0.75rem;
        padding-right: 0.75rem;
    }

    .about-gallery.is-gallery-ready .about-gallery__track {
        gap: 0.75rem;
        padding: 1rem 12vw 1.75rem;
    }

    .about-gallery.is-gallery-ready .about-gallery__track figure {
        width: 82vw;
        height: 21.5rem;
    }

    .about-gallery.is-gallery-ready .about-gallery__track .about-gallery__tall {
        width: 76vw;
        height: 26rem;
    }

    .about-gallery.is-gallery-ready .about-gallery__control {
        width: 2.65rem;
        height: 2.65rem;
        opacity: 0.9;
    }

    .about-gallery__control--prev {
        left: 0.45rem;
    }

    .about-gallery__control--next {
        right: 0.45rem;
    }

    .about-cta {
        min-height: 650px;
    }

    .about-cta__background {
        object-position: 50% 28%;
    }

    .about-cta h2 {
        font-size: clamp(3rem, 14vw, 5rem);
    }

    .about-cta__actions {
        width: 100%;
        max-width: 25rem;
        flex-direction: column;
    }

    .about-cta__actions .about-button,
    .about-hero__actions .about-button {
        min-height: 3.4rem;
        justify-content: center;
        text-align: center;
    }

    .about-footer__inner {
        grid-template-columns: 1fr;
        justify-items: center;
        padding-block: 2.5rem;
        text-align: center;
    }

    .about-footer__brand,
    .about-footer__links {
        justify-self: center;
    }

    .about-footer__inner > p {
        grid-column: auto;
        grid-row: auto;
    }
}

@media (max-width: 420px) {
    .about-impact__grid {
        grid-template-columns: 1fr;
    }

    .about-impact__intro {
        grid-column: auto;
    }

    .about-stat {
        min-height: 7rem;
        border-right: 0;
        border-bottom: 1px solid var(--about-line);
    }

    .about-footer__links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-hero__media img {
        transform: none;
        will-change: auto;
    }

    .about-hero__scroll i::after {
        animation: none;
    }

    .about-page .reveal,
    .about-page .reveal-left,
    .about-page .reveal-right {
        opacity: 1;
        transform: none;
    }

    .about-value,
    .about-value::before {
        transition: none;
    }

    .about-page .about-value.reveal.visible:hover {
        transform: none;
    }

    .about-gallery.is-gallery-ready .about-gallery__header,
    .about-gallery.is-gallery-ready .about-gallery__header > .about-text-link,
    .about-gallery.is-gallery-ready .about-gallery__stage,
    .about-gallery.is-gallery-ready .about-gallery__dots,
    .about-gallery.is-gallery-ready .about-gallery__track figure,
    .about-gallery.is-gallery-ready .about-gallery__track figure img,
    .about-gallery.is-gallery-ready .about-gallery__control,
    .about-gallery__dot {
        transition: none;
    }

    .about-gallery.is-gallery-ready .about-gallery__viewport {
        scroll-behavior: auto;
    }

    .about-gallery__marquee-track {
        animation: none;
    }
}
