/* About page — extends homepage-2026 tokens */

.gh-about,
.gh-about * { box-sizing: border-box; }
.gh-about {
    width: 100%;
    max-width: 100vw;
    overflow: clip;
    color: var(--gh-ink);
    background:
        radial-gradient(ellipse 80% 50% at 100% 0%, rgba(225, 29, 46, 0.06), transparent 55%),
        linear-gradient(180deg, var(--gh-fog) 0%, #e7eaef 40%, var(--gh-fog) 100%);
}
.gh-about a { color: inherit; text-decoration: none; }
.gh-about img { display: block; max-width: 100%; }
.gh-about button,
.gh-about input { font: inherit; }
.gh-about button { cursor: pointer; }

/* Inner pages: sticky header starts on white */
.gh-about .gh-header.is-scrolled,
.gh-about .gh-header {
    color: var(--gh-ink);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--gh-line);
    backdrop-filter: blur(12px);
}
.gh-about .gh-header .gh-logo__default { display: none !important; }
.gh-about .gh-header .gh-logo__scrolled { display: block !important; }
.gh-about .gh-nav > a,
.gh-about .gh-nav .gh-nav__drop-toggle { opacity: 0.92; color: var(--gh-ink) !important; }
.gh-about .gh-nav > a:hover,
.gh-about .gh-nav__drop.is-open .gh-nav__drop-toggle,
.gh-about .gh-nav__drop:hover .gh-nav__drop-toggle,
.gh-about .gh-nav .gh-nav__drop-toggle:hover { color: var(--gh-red) !important; }
.gh-about .gh-menu-toggle { border-color: var(--gh-line); color: var(--gh-ink); }

/* Hero */
.gh-about-hero {
    position: relative;
    min-height: 72svh;
    display: flex;
    align-items: flex-end;
    color: var(--gh-white);
    background: var(--gh-ink);
    overflow: hidden;
}
.gh-about-hero__media {
    position: absolute;
    inset: 0;
    background: url('../images/about/plant.jpg') center center / cover no-repeat;
    transform: scale(1.06);
    animation: gh-hero-drift 18s ease-in-out infinite alternate;
}
@media (prefers-reduced-motion: reduce) {
    .gh-about-hero__media { animation: none; transform: scale(1); }
}
.gh-about-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 10, 14, 0.45) 0%, rgba(8, 10, 14, 0.72) 50%, rgba(8, 10, 14, 0.94) 100%),
        linear-gradient(90deg, rgba(8, 10, 14, 0.5) 0%, transparent 55%);
}
.gh-about-hero__content {
    position: relative;
    z-index: 1;
    padding: 120px 0 72px;
}
.gh-about-hero__crumbs {
    margin: 0 0 20px;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}
.gh-about-hero__crumbs a {
    color: rgba(255, 255, 255, 0.82);
    transition: color .2s ease;
}
.gh-about-hero__crumbs a:hover { color: #ff7a84; }
.gh-about-hero h1 {
    margin: 0;
    max-width: 16ch;
    font-family: var(--gh-display);
    font-size: clamp(36px, 5.5vw, 64px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--gh-white);
}
.gh-about-hero__lead {
    max-width: 46ch;
    margin: 22px 0 28px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.65;
}
.gh-about-hero .gh-reveal:nth-child(1) { transition-delay: .05s; }
.gh-about-hero .gh-reveal:nth-child(2) { transition-delay: .12s; }
.gh-about-hero .gh-reveal:nth-child(3) { transition-delay: .2s; }
.gh-about-hero .gh-reveal:nth-child(4) { transition-delay: .28s; }
.gh-about-hero .gh-reveal:nth-child(5) { transition-delay: .36s; }

/* Story pills */
.gh-about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 8px;
}
.gh-about-pills span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border: 1px solid var(--gh-line);
    border-radius: 999px;
    font-family: var(--gh-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gh-ink);
    background: var(--gh-white);
}

/* Stats strip */
.gh-about-stats {
    padding: 56px 0;
    color: var(--gh-white);
    background: var(--gh-ink);
}
.gh-about-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.gh-about-stat {
    text-align: center;
    padding: 12px 8px;
}
.gh-about-stat strong {
    display: block;
    margin-bottom: 8px;
    font-family: var(--gh-display);
    font-size: clamp(40px, 5vw, 56px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--gh-white);
}
.gh-about-stat span {
    display: block;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

/* Values grid */
.gh-about-values { background: var(--gh-white); }
.gh-about-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gh-about-value {
    padding: 32px 28px;
    border: 1px solid var(--gh-line);
    background: var(--gh-fog);
    transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.gh-about-value:hover {
    transform: translateY(-4px);
    border-color: rgba(225, 29, 46, 0.35);
    box-shadow: 0 16px 40px rgba(14, 16, 20, 0.08);
}
.gh-about-value__icon {
    display: block;
    margin-bottom: 18px;
    font-family: var(--gh-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gh-red);
}
.gh-about-value h3 {
    margin: 0 0 12px;
    font-family: var(--gh-display);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--gh-ink);
}
.gh-about-value p {
    margin: 0;
    color: var(--gh-mute);
    font-size: 15px;
    line-height: 1.65;
}

/* Factory grid */
.gh-about-factory { background: transparent; }
.gh-about-factory__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gh-about-factory__card {
    margin: 0;
    overflow: hidden;
    background: var(--gh-white);
    border: 1px solid var(--gh-line);
    transition: transform .35s ease, box-shadow .35s ease;
}
.gh-about-factory__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(14, 16, 20, 0.1);
}
.gh-about-factory__card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform .5s ease;
}
.gh-about-factory__card:hover img { transform: scale(1.05); }
.gh-about-factory__card figcaption {
    padding: 24px 22px 28px;
}
.gh-about-factory__card figcaption span {
    display: block;
    margin-bottom: 8px;
    font-family: var(--gh-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gh-red);
}
.gh-about-factory__card figcaption h3 {
    margin: 0 0 8px;
    font-family: var(--gh-display);
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.gh-about-factory__card figcaption p {
    margin: 0;
    color: var(--gh-mute);
    font-size: 14px;
    line-height: 1.6;
}

/* Journey */
.gh-about-journey {
    padding-bottom: 100px;
    color: var(--gh-white);
    background: #0c0e12;
    overflow: hidden;
}
.gh-about-journey .gh-section-head h2 { color: var(--gh-white); }
.gh-about-journey .gh-section-head p { color: rgba(255, 255, 255, 0.62); }
.gh-about-journey__track {
    display: grid;
    grid-template-columns: repeat(5, minmax(220px, 1fr));
    gap: 16px;
    padding: 0 max(24px, calc((100% - 1180px) / 2 + 24px));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(225, 29, 46, 0.5) transparent;
}
.gh-about-milestone {
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: border-color .3s ease, transform .35s ease;
}
.gh-about-milestone:hover {
    border-color: rgba(225, 29, 46, 0.55);
    transform: translateY(-6px);
}
.gh-about-milestone__media {
    flex: 1 1 auto;
    min-height: 180px;
    overflow: hidden;
}
.gh-about-milestone__media img {
    width: 100%;
    height: 100%;
    min-height: 180px;
    object-fit: cover;
    transition: transform .5s ease;
}
.gh-about-milestone:hover .gh-about-milestone__media img { transform: scale(1.06); }
.gh-about-milestone__body {
    padding: 22px 20px 26px;
}
.gh-about-milestone__year {
    display: inline-block;
    margin-bottom: 10px;
    font-family: var(--gh-display);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--gh-red);
}
.gh-about-milestone__body h3 {
    margin: 0 0 8px;
    font-family: var(--gh-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--gh-white);
}
.gh-about-milestone__body p {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
    line-height: 1.6;
}

/* Leadership strip */
.gh-about-leaders { background: var(--gh-white); }
.gh-about-leaders__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gh-about-leader {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 24px;
    border: 1px solid var(--gh-line);
    background: var(--gh-fog);
    transition: border-color .25s ease, transform .25s ease;
}
.gh-about-leader:hover {
    border-color: rgba(225, 29, 46, 0.35);
    transform: translateY(-3px);
}
.gh-about-leader__avatar {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    font-family: var(--gh-display);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--gh-white);
    background: var(--gh-ink);
}
.gh-about-leader__avatar--icon {
    font-size: 24px;
    background: var(--gh-red);
}
.gh-about-leader h3 {
    margin: 0 0 4px;
    font-family: var(--gh-display);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--gh-ink);
}
.gh-about-leader p {
    margin: 0;
    color: var(--gh-mute);
    font-size: 14px;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1100px) {
    .gh-about-stats__grid { grid-template-columns: repeat(2, 1fr); }
    .gh-about-values__grid,
    .gh-about-factory__grid,
    .gh-about-leaders__grid { grid-template-columns: 1fr 1fr; }
    .gh-about-journey__track {
        grid-template-columns: repeat(5, minmax(260px, 1fr));
    }
}

@media (max-width: 768px) {
    .gh-about-hero__content { padding: 100px 0 56px; }
    .gh-about-stats__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .gh-about-values__grid,
    .gh-about-factory__grid,
    .gh-about-leaders__grid { grid-template-columns: 1fr; }
    .gh-about .gh-craft { grid-template-columns: 1fr; }
    .gh-about .gh-craft__media { min-height: 320px; }
    .gh-about .gh-craft__content { padding: 48px 24px; }
}

@media (max-width: 480px) {
    .gh-about-stats__grid { grid-template-columns: 1fr; }
    .gh-about-leader { flex-direction: column; text-align: center; }
}
