/* Hakk?m?zda */
.about-page {
    padding-bottom: 0;
    background:
        radial-gradient(ellipse at top left, rgba(150, 99, 63, 0.05), transparent 36%),
        #fbf8f4;
}

.about-page__hero {
    position: relative;
    min-height: clamp(320px, 52vw, 520px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: linear-gradient(145deg, #5f3a24 0%, #7a5033 42%, #2f241c 100%);
}

.about-page__hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.about-page__hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(120deg, rgba(26, 18, 12, 0.78) 0%, rgba(26, 18, 12, 0.42) 48%, rgba(26, 18, 12, 0.2) 100%),
        linear-gradient(to top, rgba(26, 18, 12, 0.7) 0%, transparent 48%);
}

.about-page__hero-inner {
    position: relative;
    z-index: 1;
    padding-top: 4.5rem;
    padding-bottom: 2.75rem;
    color: #fff;
}

.about-page__hero-copy {
    max-width: 38rem;
}

.about-page__eyebrow {
    margin: 0 0 0.65rem;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(245, 197, 66, 0.95);
}

.about-page__eyebrow--dark {
    color: var(--color-accent, #f37021);
}

.about-page__hero-title {
    margin: 0 0 0.85rem;
    font-family: var(--font-display);
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.about-page__hero-lead {
    margin: 0 0 1.35rem;
    max-width: 34rem;
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
}

.about-page__hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.about-page__hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.7rem;
    padding: 0.65rem 1.2rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease;
}

.about-page__hero-btn:hover {
    transform: translateY(-1px);
}

.about-page__hero-btn--primary {
    background: #f5c542;
    color: #3b2718;
}

.about-page__hero-btn--ghost {
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
}

.about-page__stats-band {
    margin-top: -1.5rem;
    position: relative;
    z-index: 2;
}

.about-page__stats {
    list-style: none;
    margin: 0;
    padding: 1.15rem 1.25rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    border-radius: 1.15rem;
    background: #fff;
    border: 1px solid #ebdcd0;
    box-shadow: 0 18px 40px rgba(74, 46, 22, 0.08);
}

@media (min-width: 768px) {
    .about-page__stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        padding: 1.35rem 1.5rem;
    }
}

.about-page__stats li {
    text-align: center;
}

.about-page__stats strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    color: var(--color-primary, #96633f);
}

.about-page__stats span {
    display: block;
    margin-top: 0.2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #8b735e;
}

.about-page__body {
    padding-top: 2.75rem;
    padding-bottom: 1rem;
}

.about-page__story {
    display: grid;
    gap: 2rem;
    margin-bottom: 1rem;
}

@media (min-width: 900px) {
    .about-page__story {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
        gap: 3rem;
        align-items: center;
    }
}

.about-page__section-title {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.5vw, 2.1rem);
    font-weight: 800;
    color: #2f241c;
    letter-spacing: -0.02em;
}

.about-page__quote {
    margin: 0 0 1.25rem;
    padding: 0.85rem 0 0.85rem 1rem;
    border-left: 3px solid #f5c542;
    font-family: var(--font-script, var(--font-display));
    font-size: 1.35rem;
    line-height: 1.35;
    color: #5c4033;
}

.about-page__prose p {
    margin: 0 0 1rem;
    color: #4b5563;
    font-size: 0.9875rem;
    line-height: 1.8;
}

.about-page__prose p:last-child {
    margin-bottom: 0;
}

.about-page__story-media {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 1.35rem;
    aspect-ratio: 4 / 5;
    background: #f3ebe3;
    box-shadow: 0 22px 48px rgba(74, 46, 22, 0.14);
}

.about-page__story-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-page__story-media figcaption {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #5c4033;
}

/* --- Yolculugumuz (yatay scroll-trigger) --- */
.about-journey {
    margin-top: 2rem;
    background: #fff;
    border-top: 1px solid #f0e7dc;
    border-bottom: 1px solid #f0e7dc;
}

.about-journey__header {
    max-width: 40rem;
    margin: 0 auto 1.75rem;
    text-align: center;
}

.about-journey__eyebrow,
.about-values__eyebrow,
.about-gallery__eyebrow,
.about-contact__eyebrow {
    margin: 0 0 0.55rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-accent, #f37021);
}

.about-journey__title,
.about-values__title,
.about-gallery__title,
.about-contact__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    font-weight: 800;
    color: #2f241c;
    letter-spacing: -0.02em;
}

.about-gallery__title {
    color: #2f241c;
}

.about-journey__lead {
    margin: 0.75rem auto 0;
    max-width: 34rem;
    font-size: 1rem;
    line-height: 1.65;
    color: #6b7280;
}

.about-journey__pin {
    padding: 3rem 0 2.5rem;
}

.about-journey__sticky {
    position: relative;
}

.about-journey__viewport {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0.5rem 1rem 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.about-journey__viewport::-webkit-scrollbar {
    display: none;
}

.about-journey__track {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0.25rem 0.75rem;
    display: flex;
    gap: 1rem;
    width: max-content;
    min-width: 100%;
}

.about-journey__step {
    flex: 0 0 min(78vw, 20rem);
    padding: 1.35rem 1.25rem 1.4rem;
    border-radius: 1.15rem;
    background: #fbf8f4;
    border: 1px solid #ebdcd0;
    opacity: 0.45;
    transform: translateY(18px) scale(0.98);
    transition: opacity 0.45s ease, transform 0.45s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.about-journey__step.is-active {
    opacity: 1;
    transform: none;
    border-color: #e0c4a8;
    box-shadow: 0 16px 36px rgba(74, 46, 22, 0.1);
}

.about-journey__step.is-passed {
    opacity: 0.72;
    transform: none;
}

.about-journey__step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.35rem;
    height: 2.35rem;
    margin-bottom: 0.85rem;
    border-radius: 999px;
    border: 2px solid #f37021;
    background: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    color: #7a5033;
    letter-spacing: 0.04em;
}

.about-journey__year {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent, #f37021);
}

.about-journey__card-title {
    margin: 0 0 0.45rem;
    font-size: 1.15rem;
    font-weight: 800;
    color: #2f241c;
}

.about-journey__card-text {
    margin: 0;
    font-size: 0.925rem;
    line-height: 1.65;
    color: #6b7280;
}

.about-journey__progress {
    display: none;
}

@media (min-width: 900px) {
    .about-journey--horizontal .about-journey__pin {
        height: calc(100vh * max(var(--journey-steps), 2));
        padding: 0;
    }

    .about-journey--horizontal .about-journey__sticky {
        position: sticky;
        top: 0;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 1.25rem;
        padding: 4.5rem 0 2.5rem;
        overflow: hidden;
        background:
            radial-gradient(ellipse at 12% 20%, rgba(245, 197, 66, 0.12), transparent 42%),
            #fff;
    }

    .about-journey--horizontal .about-journey__header {
        margin-bottom: 0.5rem;
    }

    .about-journey--horizontal .about-journey__viewport {
        overflow: hidden;
        padding: 0.75rem 0 0.25rem;
    }

    .about-journey--horizontal .about-journey__track {
        gap: 1.35rem;
        padding-left: max(1rem, calc((100vw - 1120px) / 2));
        padding-right: 4rem;
        will-change: transform;
    }

    .about-journey--horizontal .about-journey__step {
        flex-basis: min(28rem, 42vw);
        padding: 1.6rem 1.5rem 1.7rem;
    }

    .about-journey--horizontal .about-journey__progress {
        display: block;
        width: min(1120px, calc(100% - 2rem));
        margin: 0.5rem auto 0;
        height: 3px;
        border-radius: 999px;
        background: #f0e4d8;
        overflow: hidden;
    }

    .about-journey--horizontal .about-journey__progress-bar {
        display: block;
        height: 100%;
        width: 0;
        border-radius: inherit;
        background: linear-gradient(90deg, #f37021, #f5c542);
        transition: width 0.05s linear;
    }
}

@media (prefers-reduced-motion: reduce) {
    .about-journey__step {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* --- Degerler --- */
.about-values {
    position: relative;
    padding: 4rem 0;
    background:
        linear-gradient(180deg, #fff 0%, #fbf8f4 100%);
    border-top: 1px solid #f0e7dc;
}

.about-values__layout {
    display: grid;
    gap: 2.25rem;
    align-items: start;
}

@media (min-width: 960px) {
    .about-values__layout {
        grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
        gap: 3.5rem;
    }
}

.about-values__header {
    max-width: 26rem;
}

@media (min-width: 960px) {
    .about-values__header {
        position: sticky;
        top: 6.5rem;
        padding-top: 0.35rem;
    }
}

.about-values__lead {
    margin: 0.85rem 0 0;
    font-size: 1rem;
    line-height: 1.7;
    color: #6b7280;
}

.about-values__media {
    margin: 1.35rem 0 0;
    overflow: hidden;
    border-radius: 1.15rem;
    aspect-ratio: 4 / 3;
    background: #f3ebe3;
    border: 1px solid #ebdcd0;
    box-shadow: 0 16px 36px rgba(74, 46, 22, 0.1);
}

.about-values__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-values__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
    border-top: 1px solid #ebdcd0;
}

.about-values__item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.35rem 0;
    border-bottom: 1px solid #ebdcd0;
    transition: background-color 0.2s ease, padding-left 0.25s ease;
}

@media (min-width: 640px) {
    .about-values__item {
        gap: 1.35rem;
        padding: 1.55rem 0.35rem 1.55rem 0;
    }

    .about-values__item:hover {
        padding-left: 0.55rem;
        background: linear-gradient(90deg, rgba(243, 235, 227, 0.55), transparent 70%);
    }
}

.about-values__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1;
    color: #c4a484;
    position: relative;
}

.about-values__index::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.35rem;
    width: 1.1rem;
    height: 2px;
    background: #f5c542;
}

.about-values__body {
    min-width: 0;
    padding-top: 0.1rem;
}

.about-values__item-title {
    margin: 0 0 0.4rem;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: #2f241c;
    letter-spacing: -0.015em;
}

.about-values__item-text {
    margin: 0;
    max-width: 36rem;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #6b7280;
}

/* --- Atoelye / Galeri --- */
.about-gallery {
    position: relative;
    padding: 4rem 0 4.25rem;
    background:
        radial-gradient(ellipse at 88% 12%, rgba(245, 197, 66, 0.14), transparent 40%),
        linear-gradient(180deg, #fff 0%, #fbf8f4 100%);
    color: #2f241c;
    overflow: hidden;
    border-top: 1px solid #f0e7dc;
}

.about-gallery::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(150, 99, 63, 0.04) 1px, transparent 1px),
        linear-gradient(0deg, rgba(150, 99, 63, 0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 80%);
    pointer-events: none;
}

.about-gallery > * {
    position: relative;
    z-index: 1;
}

.about-gallery__header {
    display: grid;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .about-gallery__header {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        align-items: end;
        gap: 2rem;
        margin-bottom: 2.4rem;
    }
}

.about-gallery__eyebrow {
    color: var(--color-accent, #f37021);
}

.about-gallery__lead {
    margin: 0;
    max-width: 28rem;
    font-size: 0.9875rem;
    line-height: 1.7;
    color: #6b7280;
}

@media (min-width: 768px) {
    .about-gallery__lead {
        justify-self: end;
        text-align: right;
    }
}

.about-gallery__stage {
    display: grid;
    gap: 0.65rem;
}

@media (min-width: 900px) {
    .about-gallery__stage {
        grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
        grid-template-rows: minmax(0, 1fr);
        gap: 0.75rem;
        align-items: stretch;
        height: calc(100vh - 16rem);
        max-height: 700px;
        min-height: 24rem;
    }

    .about-gallery__stage--solo {
        grid-template-columns: 1fr;
        min-height: 14rem;
        max-width: 40rem;
    }
}

.about-gallery__more {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0.65rem;
}

@media (min-width: 768px) {
    .about-gallery__more {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.75rem;
        margin-top: 0.75rem;
    }
}

.about-gallery__featured {
    margin: 0;
    position: relative;
    overflow: hidden;
    border-radius: 0.95rem;
    min-height: 11rem;
    aspect-ratio: 16 / 11;
    background: #f3ebe3;
    box-shadow: 0 12px 28px rgba(74, 46, 22, 0.1);
    border: 1px solid #ebdcd0;
}

@media (min-width: 900px) {
    .about-gallery__featured {
        min-height: 100%;
        aspect-ratio: auto;
        height: 100%;
    }
}

.about-gallery__featured img,
.about-gallery__tile img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-gallery__featured:hover img,
.about-gallery__tile:hover img {
    transform: scale(1.045);
}

.about-gallery__rail {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 900px) {
    .about-gallery__rail {
        grid-template-columns: 1fr;
        grid-auto-rows: 1fr;
        height: 100%;
    }
}

.about-gallery__tile {
    margin: 0;
    overflow: hidden;
    border-radius: 0.85rem;
    aspect-ratio: 4 / 3;
    background: #f3ebe3;
    border: 1px solid #ebdcd0;
}

@media (min-width: 900px) {
    .about-gallery__rail .about-gallery__tile {
        aspect-ratio: auto;
        min-height: 0;
        height: 100%;
    }
}

.about-gallery__caption {
    position: absolute;
    left: 0.75rem;
    right: 0.75rem;
    bottom: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    padding: 0.65rem 0.8rem;
    border-radius: 0.7rem;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    color: #2f241c;
    border: 1px solid rgba(235, 220, 208, 0.9);
}

.about-gallery__caption span {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent, #f37021);
}

.about-gallery__caption strong {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 800;
}

/* ??? ?leti?im ??? */
.about-contact {
    padding: 3rem 0;
    background: #fbf8f4;
}

.about-contact__panel {
    display: grid;
    gap: 1.5rem;
    padding: 1.75rem 1.4rem;
    border-radius: 1.35rem;
    background: #fff;
    border: 1px solid #ebdcd0;
    box-shadow: 0 14px 30px rgba(74, 46, 22, 0.06);
}

@media (min-width: 768px) {
    .about-contact__panel {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
        gap: 2rem;
        padding: 2.25rem 2.15rem;
        align-items: center;
    }
}

.about-contact__text {
    margin: 0.75rem 0 1.25rem;
    color: #6b7280;
    line-height: 1.65;
}

.about-contact__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.7rem;
    padding: 0.65rem 1.2rem;
    border-radius: 999px;
    background: var(--color-primary, #96633f);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 800;
    text-decoration: none;
}

.about-contact__btn:hover {
    background: var(--color-primary-dark, #7a5033);
    color: #fff;
}

.about-contact__list {
    margin: 0;
    display: grid;
    gap: 0.85rem;
}

.about-contact__list > div {
    padding: 0.95rem 1rem;
    border-radius: 0.9rem;
    background: #faf7f3;
    border: 1px solid #f0e4d8;
}

.about-contact__list dt {
    margin: 0 0 0.2rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #9ca3af;
}

.about-contact__list dd {
    margin: 0;
    color: #374151;
    font-weight: 600;
}

.about-contact__list a {
    color: var(--color-primary, #96633f);
    text-decoration: none;
}

.about-contact__list a:hover {
    text-decoration: underline;
}

/* ??? CTA ??? */
.about-cta {
    padding: 0 0 3.5rem;
    background: #fbf8f4;
}

.about-cta__inner {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 1.35rem;
    background:
        radial-gradient(ellipse at 18% 18%, rgba(245, 197, 66, 0.24), transparent 42%),
        linear-gradient(145deg, #5f3a24 0%, #7a5033 45%, #2f241c 100%);
    color: #fff;
}

.about-cta__inner h2 {
    margin: 0 0 0.6rem;
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    font-weight: 800;
}

.about-cta__inner p {
    margin: 0 auto 1.35rem;
    max-width: 32rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
}

.about-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.85rem;
    padding: 0.75rem 1.45rem;
    border-radius: 999px;
    background: #f5c542;
    color: #3b2718;
    font-size: 0.875rem;
    font-weight: 800;
    text-decoration: none;
}

.about-cta__btn:hover {
    background: #ffd25f;
    color: #3b2718;
}
