/* About Page — Design Match */

/* Hero */
.about-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: var(--green-darker);
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.about-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    display: block;
    transform: scale(1.02);
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        95deg,
        rgba(7, 18, 12, 0.96) 0%,
        rgba(7, 18, 12, 0.88) 38%,
        rgba(7, 18, 12, 0.62) 58%,
        rgba(7, 18, 12, 0.35) 100%
    );
}

.about-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding-left: clamp(24px, 5vw, 64px);
    padding-right: clamp(24px, 4vw, 48px);
}

.about-hero-content {
    max-width: 560px;
    text-align: left;
}

.about-hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.about-hero-video-frame {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    border-radius: 20px;
    overflow: hidden;
    background: var(--green-darker);
    aspect-ratio: 5 / 4;
    max-height: 380px;
    box-shadow:
        0 28px 64px rgba(0, 0, 0, 0.28),
        0 0 0 1px rgba(201, 169, 98, 0.24),
        0 0 56px rgba(201, 169, 98, 0.12);
}

.about-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 42%;
    display: block;
    background: #07120c;
    transform: scale(1.02);
}

.about-hero-video-shine {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.08) 0%,
        transparent 42%,
        transparent 68%,
        rgba(0, 0, 0, 0.14) 100%
    );
}

.about-hero-video-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.about-hero-video-frame::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 23px;
    padding: 1px;
    background: linear-gradient(145deg, rgba(201, 169, 98, 0.55), rgba(201, 169, 98, 0.08));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-breadcrumb a {
    color: var(--text-muted);
    transition: color 0.3s;
}

.about-breadcrumb a:hover { color: var(--gold); }
.about-breadcrumb span:last-child { color: var(--gold); }

.about-hero-title {
    font-family: var(--font-serif);
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 600;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 12px;
}

.about-hero-title em {
    display: block;
    font-style: normal;
    color: var(--gold);
    font-size: clamp(36px, 4.5vw, 52px);
}

.about-hero-tagline {
    font-family: var(--font-serif);
    font-size: clamp(18px, 2.5vw, 24px);
    color: var(--gold);
    margin-bottom: 20px;
}

.about-hero-desc {
    font-size: 14.5px;
    line-height: 1.85;
    color: var(--text-muted);
    max-width: 480px;
    margin-bottom: 32px;
}

.about-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: flex-start;
}

.about-hero-feature {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    text-align: left;
    min-width: 100px;
}

.about-hero-feature svg {
    width: 36px;
    height: 36px;
    color: var(--gold);
}

.about-hero-feature span {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.3px;
}

/* Our Story */
.about-story {
    padding: 100px 0;
    background: var(--white);
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-story-content .section-text {
    margin-bottom: 18px;
}

.about-story-visual {
    position: relative;
}

.about-story-image-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.about-story-image {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.about-story-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin: -40px 16px 0;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.about-story-card {
    padding: 20px 14px;
    text-align: center;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.about-story-card:last-child { border-right: none; }

.about-story-card svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
    margin: 0 auto 10px;
    display: block;
}

.about-story-card strong {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 4px;
    line-height: 1.3;
}

.about-story-card span {
    font-size: 10px;
    color: #777;
    line-height: 1.4;
    display: block;
}

/* Our Commitment */
.about-commitment-wrap {
    padding: 0 0 100px;
    background: var(--white);
}

.about-commitment {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--green-dark);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-commitment-content {
    padding: 56px 48px;
}

.about-commitment-content .section-label {
    color: var(--gold);
}

.about-commitment-title {
    font-family: var(--font-serif);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 600;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 20px;
}

.about-commitment-text {
    font-size: 14px;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.about-commitment-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-commitment-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-commitment-item svg {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: var(--gold);
    margin-top: 2px;
}

.about-commitment-item strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.about-commitment-item span {
    font-size: 12px;
    color: var(--text-muted);
}

.about-commitment-visual {
    position: relative;
    min-height: 400px;
}

.about-commitment-gallery {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 12px;
    height: 100%;
    min-height: 400px;
    padding: 16px;
    background: linear-gradient(160deg, #0f2a1c 0%, #07120c 100%);
}

.about-commitment-photo {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(201, 169, 98, 0.18);
    min-height: 0;
}

.about-commitment-photo--main {
    grid-row: 1 / -1;
}

.about-commitment-img {
    width: 100%;
    height: 100%;
    min-height: 368px;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.about-commitment-photo--accent {
    background: #faf8f4;
}

.about-commitment-photo--accent .about-commitment-img {
    object-fit: contain;
    object-position: center center;
    padding: 10px;
    min-height: 368px;
    box-sizing: border-box;
}

.about-commitment-image-wrap {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-commitment-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    display: block;
}

.about-fresh-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle at 35% 30%, var(--gold-light), var(--gold));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--green-dark);
    font-weight: 700;
    font-size: 9px;
    line-height: 1.2;
    box-shadow: 0 8px 24px rgba(201, 169, 98, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.about-fresh-badge small {
    font-size: 7px;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
}

.about-fresh-badge span {
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
}

/* Why Choose Bar */
.about-why-bar {
    background: #f0ebe3;
    padding: 28px 0;
    border-top: 1px solid rgba(201, 169, 98, 0.15);
    border-bottom: 1px solid rgba(201, 169, 98, 0.15);
}

.about-why-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}

.about-why-heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--gold-dark);
    white-space: nowrap;
}

.about-why-items {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.about-why-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 28px;
    text-align: left;
}

.about-why-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--green-dark);
    line-height: 1.4;
}

.about-why-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-why-icon svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
}

.about-why-divider {
    width: 1px;
    height: 40px;
    background: rgba(201, 169, 98, 0.35);
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-hero-grid,
    .about-story-grid,
    .about-commitment {
        grid-template-columns: 1fr;
    }

    .about-hero-visual {
        justify-content: center;
    }

    .about-hero-video-frame {
        max-width: 420px;
        max-height: 340px;
        margin: 0 auto;
    }

    .about-hero-desc { max-width: 100%; }
    .about-hero-features { justify-content: center; }

    .about-story-cards {
        grid-template-columns: repeat(2, 1fr);
        margin: -30px 8px 0;
    }

    .about-story-card:nth-child(2) { border-right: none; }
    .about-story-card { border-bottom: 1px solid rgba(0,0,0,0.06); }
    .about-story-card:nth-child(3),
    .about-story-card:nth-child(4) { border-bottom: none; }

    .about-commitment-visual { min-height: 320px; }

    .about-commitment-gallery {
        min-height: 320px;
        padding: 12px;
        gap: 10px;
    }

    .about-commitment-img { min-height: 296px; }
    .about-commitment-photo--accent .about-commitment-img { min-height: 296px; }

    .about-why-inner { flex-direction: column; align-items: flex-start; }
    .about-why-items { justify-content: center; width: 100%; }
    .about-why-divider { display: none; }
    .about-why-item { padding: 12px 16px; }
}

@media (max-width: 768px) {
    .about-hero { padding: 110px 0 60px; min-height: auto; }
    .about-hero-video-frame { max-width: 360px; max-height: 300px; }
    .about-story-cards { grid-template-columns: 1fr; margin: 16px 0 0; }
    .about-story-card { border-right: none !important; border-bottom: 1px solid rgba(0,0,0,0.06) !important; }
    .about-story-card:last-child { border-bottom: none !important; }
    .about-commitment-content { padding: 36px 28px; }

    .about-commitment-gallery {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
    }

    .about-commitment-photo--main {
        grid-row: auto;
    }

    .about-commitment-img,
    .about-commitment-photo--accent .about-commitment-img {
        min-height: 220px;
    }
    .about-why-items { flex-direction: column; align-items: stretch; }
    .about-why-item { padding: 12px 0; }
}
