.about {
    padding-top: 72px;
}

.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.about-hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(61,31,20,0.8) 0%, rgba(61,31,20,0.3) 100%);
}
.about-hero__content {
    position: relative;
    z-index: 1;
    padding: 0 max(24px, calc((100vw - 1200px) / 2 + 24px));
    color: white;
}
.about-hero__title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    color: white;
    margin: 8px 0;
}
.about-hero__sub {
    font-family: var(--font-body);
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    font-style: italic;
}

/* Kaksi korttia */
.about-cards {
    padding: 80px 24px;
    background: var(--cream-dark);
}
.about-cards__inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
@media (max-width: 760px) {
    .about-cards__inner { grid-template-columns: 1fr; }
}
.about-card {
    display: flex;
    flex-direction: column;
    background: var(--cream);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: box-shadow 0.3s, transform 0.3s;
}
.about-card:hover {
    box-shadow: 0 10px 36px rgba(61,31,20,0.14);
    transform: translateY(-4px);
}
.about-card__image-wrap {
    overflow: hidden;
    aspect-ratio: 16/9;
}
.about-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.about-card:hover .about-card__image {
    transform: scale(1.05);
}
.about-card__body {
    padding: 28px 32px 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.about-card__title {
    font-family: var(--font-display);
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 700;
    color: var(--deep-brown);
    margin: 8px 0 12px;
}
.about-card__text {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-light);
    flex: 1;
    margin-bottom: 20px;
}
.about-card__link {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--rust);
    letter-spacing: 0.03em;
}

.about-story {
    padding: 96px 24px;
    background: var(--cream);
}
.about-story__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-story__text h2 {
    font-size: clamp(26px, 3.5vw, 40px);
    margin-bottom: 20px;
}
.about-story__text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
    margin-bottom: 16px;
}
.about-story__text p em { color: var(--rust); font-style: italic; }
.about-story__links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}
.about-story__links .btn--ghost {
    background: transparent;
    color: var(--warm-brown);
    border-color: var(--warm-brown);
    backdrop-filter: none;
}
.about-story__links .btn--ghost:hover {
    background: var(--warm-brown);
    border-color: var(--warm-brown);
    color: white;
}
.about-story__img-wrap {
    overflow: hidden;
    aspect-ratio: 1;
    border-radius: 10px;
}
.about-story__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.about-story__img-wrap:hover .about-story__img {
    transform: scale(1.04);
}

.about-gallery {
    padding: 96px 24px;
    background: var(--cream-dark);
}
.about-gallery__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-gallery__img-wrap {
    overflow: hidden;
    aspect-ratio: 4/3;
    border-radius: 10px;
}
.about-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.about-gallery__img-wrap:hover .about-gallery__img {
    transform: scale(1.04);
}
.about-gallery__text h2 {
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 16px;
}
.about-gallery__text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}

@media (max-width: 900px) {
    .about-story__inner { grid-template-columns: 1fr; gap: 40px; }
    .about-gallery__inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 580px) {
    .about-story { padding: 64px 24px; }
    .about-gallery { padding: 64px 24px; }
}
