/* Manufacturing Process — Ghasum 2026 theme */

.gh-mfg,
.gh-mfg * { box-sizing: border-box; }
.gh-mfg {
    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-mfg a { color: inherit; text-decoration: none; }
.gh-mfg img { display: block; max-width: 100%; }
.gh-mfg button { font: inherit; cursor: pointer; }

.gh-mfg .gh-header.is-scrolled,
.gh-mfg .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-mfg .gh-header .gh-logo__default { display: none !important; }
.gh-mfg .gh-header .gh-logo__scrolled { display: block !important; }
.gh-mfg .gh-nav > a,
.gh-mfg .gh-nav .gh-nav__drop-toggle { opacity: 0.92; color: var(--gh-ink) !important; }
.gh-mfg .gh-nav > a:hover,
.gh-mfg .gh-nav__drop.is-open .gh-nav__drop-toggle,
.gh-mfg .gh-nav__drop:hover .gh-nav__drop-toggle,
.gh-mfg .gh-nav .gh-nav__drop-toggle:hover { color: var(--gh-red) !important; }
.gh-mfg .gh-menu-toggle { border-color: var(--gh-line); color: var(--gh-ink); }

/* Hero */
.gh-mfg-hero {
    position: relative;
    min-height: 72svh;
    display: flex;
    align-items: flex-end;
    color: var(--gh-white);
    background: var(--gh-ink);
    overflow: hidden;
}
.gh-mfg-hero__media {
    position: absolute;
    inset: 0;
    background: url('../images/about/plant2.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-mfg-hero__media { animation: none; transform: scale(1); }
}
.gh-mfg-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 10, 14, 0.42) 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-mfg-hero__content {
    position: relative;
    z-index: 1;
    padding: 120px 0 72px;
    max-width: 720px;
}
.gh-mfg-hero h1 {
    margin: 0;
    max-width: 14ch;
    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) !important;
}
.gh-mfg-hero__lead {
    margin: 20px 0 28px;
    max-width: 46ch;
    color: rgba(255, 255, 255, 0.84);
    font-size: 17px;
    line-height: 1.65;
}

/* Intro */
.gh-mfg-intro {
    padding-block: 88px;
    background: var(--gh-white);
    border-bottom: 1px solid var(--gh-line);
}
.gh-mfg-intro__grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 48px;
    align-items: end;
}
.gh-mfg-intro__copy h2 {
    margin: 0 0 18px;
    font-family: var(--gh-display);
    font-size: clamp(34px, 4.5vw, 48px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--gh-ink) !important;
}
.gh-mfg-intro__copy p {
    margin: 0;
    max-width: 52ch;
    color: #4a5160;
    font-size: 16px;
    line-height: 1.7;
}
.gh-mfg-intro__stats {
    display: grid;
    gap: 14px;
}
.gh-mfg-stat {
    padding: 20px 22px;
    background: var(--gh-fog);
    border: 1px solid var(--gh-line);
    border-left: 3px solid var(--gh-red);
}
.gh-mfg-stat strong {
    display: block;
    margin-bottom: 4px;
    font-family: var(--gh-display);
    font-size: 28px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gh-ink);
}
.gh-mfg-stat span {
    color: #5a6270;
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Step cards */
.gh-mfg-steps {
    padding-block: 88px;
}
.gh-mfg-steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gh-mfg-step {
    display: flex;
    flex-direction: column;
    background: var(--gh-white);
    border: 1px solid var(--gh-line);
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.gh-mfg-step:hover {
    transform: translateY(-6px);
    border-color: rgba(225, 29, 46, 0.35);
    box-shadow: 0 20px 40px rgba(14, 16, 20, 0.1);
}
.gh-mfg-step__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #e4e7ec;
}
.gh-mfg-step__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .65s ease;
}
.gh-mfg-step:hover .gh-mfg-step__media img { transform: scale(1.06); }
.gh-mfg-step__num {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    padding: 6px 12px;
    background: var(--gh-red);
    color: var(--gh-white);
    font-family: var(--gh-display);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
}
.gh-mfg-step__body {
    padding: 22px 22px 26px;
    flex: 1;
}
.gh-mfg-step__body h3 {
    margin: 0 0 10px;
    font-family: var(--gh-display);
    font-size: 22px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--gh-ink) !important;
}
.gh-mfg-step__body p {
    margin: 0;
    color: #4a5160;
    font-size: 15px;
    line-height: 1.65;
}

/* Dark pipeline */
.gh-mfg-pipeline {
    position: relative;
    padding: 88px 0;
    color: var(--gh-white);
    background: #0c0e12;
    overflow: hidden;
}
.gh-mfg-pipeline__atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.gh-mfg-pipeline__atmosphere img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.8) contrast(1.05);
}
.gh-mfg-pipeline__atmosphere::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 10, 14, 0.88) 0%, rgba(8, 10, 14, 0.94) 100%),
        radial-gradient(ellipse 55% 45% at 88% 12%, rgba(225, 29, 46, 0.22), transparent 55%);
}
.gh-mfg-pipeline .gh-container {
    position: relative;
    z-index: 1;
}
.gh-mfg-pipeline__head {
    max-width: 640px;
    margin-bottom: 48px;
}
.gh-mfg-pipeline__head h2 {
    margin: 0 0 16px;
    font-family: var(--gh-display);
    font-size: clamp(34px, 4.5vw, 48px);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--gh-white) !important;
}
.gh-mfg-pipeline__head p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.7;
}
.gh-mfg-flow {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}
.gh-mfg-flow__item {
    padding: 22px 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: border-color .3s ease, background .3s ease, transform .3s ease;
}
.gh-mfg-flow__item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(225, 29, 46, 0.55);
    transform: translateY(-4px);
}
.gh-mfg-flow__num {
    display: block;
    margin-bottom: 12px;
    color: #ff7a84;
    font-family: var(--gh-display);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.12em;
}
.gh-mfg-flow__item strong {
    display: block;
    font-family: var(--gh-display);
    font-size: 15px;
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--gh-white) !important;
}

/* Pillars */
.gh-mfg-pillars {
    padding-block: 88px;
    background: var(--gh-white);
}
.gh-mfg-pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gh-mfg-pillar {
    padding: 32px 28px;
    background: var(--gh-fog);
    border: 1px solid var(--gh-line);
    transition: border-color .3s ease, transform .3s ease;
}
.gh-mfg-pillar:hover {
    border-color: rgba(225, 29, 46, 0.35);
    transform: translateY(-4px);
}
.gh-mfg-pillar__icon {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--gh-red);
    font-family: var(--gh-display);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.12em;
}
.gh-mfg-pillar h3 {
    margin: 0 0 10px;
    font-family: var(--gh-display);
    font-size: 24px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--gh-ink) !important;
}
.gh-mfg-pillar p {
    margin: 0;
    color: #4a5160;
    font-size: 15px;
    line-height: 1.65;
}

/* Resource links */
.gh-mfg-links {
    padding-block: 72px;
    border-top: 1px solid var(--gh-line);
}
.gh-mfg-links__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gh-mfg-link {
    display: block;
    padding: 28px 24px;
    background: var(--gh-white);
    border: 1px solid var(--gh-line);
    transition: border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.gh-mfg-link:hover {
    border-color: var(--gh-red);
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(14, 16, 20, 0.08);
}
.gh-mfg-link span {
    display: block;
    margin-bottom: 10px;
    color: var(--gh-red);
    font-family: var(--gh-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.gh-mfg-link strong {
    display: block;
    margin-bottom: 8px;
    font-family: var(--gh-display);
    font-size: 22px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--gh-ink);
}
.gh-mfg-link p {
    margin: 0;
    color: #5a6270;
    font-size: 14px;
    line-height: 1.55;
}

/* Section headings — beat Creote global h2 color */
.gh-mfg .gh-section-head h2 {
    color: var(--gh-ink) !important;
}
.gh-mfg .gh-section-head p {
    color: var(--gh-mute) !important;
}
.gh-mfg .gh-final-cta h2 {
    color: var(--gh-white) !important;
}
.gh-mfg .gh-final-cta p {
    color: rgba(255, 255, 255, 0.88) !important;
}

/* Reveal */
.gh-mfg .gh-reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease;
}
.gh-mfg .gh-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    .gh-mfg .gh-reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

@media (max-width: 1100px) {
    .gh-mfg-steps__grid { grid-template-columns: repeat(2, 1fr); }
    .gh-mfg-flow { grid-template-columns: repeat(3, 1fr); }
    .gh-mfg-pillars__grid,
    .gh-mfg-links__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .gh-mfg-hero__content { padding: 108px 0 56px; }
    .gh-mfg-intro { padding-block: 64px; }
    .gh-mfg-intro__grid { grid-template-columns: 1fr; gap: 32px; }
    .gh-mfg-steps,
    .gh-mfg-pillars { padding-block: 64px; }
    .gh-mfg-steps__grid { grid-template-columns: 1fr; }
    .gh-mfg-flow { grid-template-columns: repeat(2, 1fr); }
    .gh-mfg-pillars__grid,
    .gh-mfg-links__grid { grid-template-columns: 1fr; }
    .gh-mfg-pipeline { padding: 64px 0; }
}

@media (max-width: 480px) {
    .gh-mfg-flow { grid-template-columns: 1fr; }
}
