:root {
    --gh-red: #e11d2e;
    --gh-red-dark: #b91220;
    --gh-ink: #0e1014;
    --gh-steel: #1c2028;
    --gh-mute: #5a616c;
    --gh-line: #d5d9e0;
    --gh-fog: #eef0f3;
    --gh-white: #ffffff;
    --gh-display: "Barlow Condensed", "Spartan", sans-serif;
    --gh-body: "Manrope", "Spartan", sans-serif;
}

html { scroll-behavior: smooth; }
body.home {
    margin: 0;
    background: var(--gh-fog);
    color: var(--gh-ink);
    font-family: var(--gh-body);
    font-size: 16px;
    line-height: 1.6;
}
body.home,
body.home #page,
body.home #wrapper_full,
body.home .content_all_warpper {
    max-width: 100vw;
    overflow-x: hidden;
}
body.gh-modal-open { overflow: hidden; }

.gh-home,
.gh-home * { box-sizing: border-box; }
.gh-home {
    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-home a { color: inherit; text-decoration: none; }
.gh-home img { display: block; max-width: 100%; }
.gh-home button,
.gh-home input { font: inherit; }
.gh-home button { cursor: pointer; }
.gh-home h1,
.gh-home h2,
.gh-home h3,
.gh-home p {
    max-width: 100%;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
}

.gh-container {
    width: min(100% - 48px, 1180px);
    margin-inline: auto;
}
.gh-section { padding: 100px 0; }

.gh-btn {
    min-height: 52px;
    border: 1px solid transparent;
    border-radius: 2px;
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--gh-white);
    background: transparent;
    font-family: var(--gh-display);
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.gh-btn:hover { transform: translateY(-1px); }
.gh-btn--primary {
    background: var(--gh-red);
    color: var(--gh-white) !important;
}
.gh-btn--primary:hover { background: var(--gh-red-dark); }
.gh-btn--dark {
    background: var(--gh-ink);
    color: var(--gh-white) !important;
}
.gh-btn--dark:hover { background: var(--gh-red); }
.gh-btn--light {
    background: var(--gh-white);
    color: var(--gh-ink) !important;
}
.gh-btn--ghost {
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--gh-white) !important;
}
.gh-btn--ghost:hover {
    background: var(--gh-white);
    color: var(--gh-ink) !important;
    border-color: var(--gh-white);
}
.gh-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.gh-eyebrow {
    margin: 0 0 16px;
    color: var(--gh-red);
    font-family: var(--gh-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.gh-section-head {
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
}
.gh-section-head--row {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    text-align: left;
    margin-bottom: 36px;
}
.gh-section-head--light h2 { color: var(--gh-white); }
.gh-section-head--light p { color: rgba(255, 255, 255, 0.62); }
.gh-section-head h2,
.gh-craft h2,
.gh-faq h2,
.gh-final-cta h2,
.gh-modal__dialog h2 {
    margin: 0;
    font-family: var(--gh-display);
    font-size: clamp(36px, 5vw, 52px);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--gh-ink);
}
.gh-section-head p,
.gh-craft__content > p,
.gh-faq__intro > p {
    margin: 16px 0 0;
    color: var(--gh-mute);
    font-size: 16px;
    line-height: 1.7;
}
.gh-text-link {
    color: var(--gh-ink);
    font-family: var(--gh-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-bottom: 2px solid var(--gh-red);
    padding-bottom: 4px;
}

/* Header */
.gh-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    height: 84px;
    color: var(--gh-white);
    transition: background .25s ease, box-shadow .25s ease, height .25s ease, color .25s ease;
}
.gh-header.is-scrolled {
    height: 72px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--gh-ink);
    box-shadow: 0 1px 0 var(--gh-line);
}
.gh-header__inner {
    height: 100%;
    display: grid;
    grid-template-columns: 180px 1fr auto;
    align-items: center;
    gap: 28px;
}
.gh-logo {
    width: 168px;
    height: 52px;
    display: flex;
    align-items: center;
}
.gh-logo img { width: 100%; height: auto; }
.gh-logo .gh-logo__scrolled { display: none; }
.gh-header.is-scrolled .gh-logo .gh-logo__default { display: none; }
.gh-header.is-scrolled .gh-logo .gh-logo__scrolled { display: block; }
.gh-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
}
.gh-nav > a,
.gh-nav .gh-nav__drop-toggle {
    font-family: var(--gh-display) !important;
    font-size: 15px !important;
    line-height: 1 !important;
    font-weight: 600 !important;
    letter-spacing: 0.06em !important;
    text-transform: uppercase !important;
    opacity: 0.88;
    color: inherit !important;
    background: transparent;
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
    text-decoration: none !important;
    -webkit-appearance: none;
    appearance: none;
    font-synthesis: none;
}
.gh-nav > a:hover,
.gh-nav__drop.is-open .gh-nav__drop-toggle,
.gh-nav__drop:hover .gh-nav__drop-toggle,
.gh-nav .gh-nav__drop-toggle:hover {
    opacity: 1;
    color: var(--gh-red) !important;
}
.gh-nav__drop {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    padding-bottom: 0;
}
.gh-nav__panel {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    width: min(92vw, 760px);
    padding: 20px 22px 22px;
    margin-top: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    background: var(--gh-white);
    color: var(--gh-ink);
    border: 1px solid #d5d9e0;
    border-radius: 3px;
    box-shadow: 0 18px 40px rgba(14, 16, 20, 0.12);
    z-index: 40;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .15s ease, visibility .15s ease;
}
/* Invisible bridge so cursor can reach the panel without closing */
.gh-nav__panel::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -14px;
    height: 14px;
}
.gh-nav__drop.is-open .gh-nav__panel,
.gh-nav__drop:hover .gh-nav__panel,
.gh-nav__drop:focus-within .gh-nav__panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}
.gh-nav__panel-group {
    display: grid;
    gap: 8px;
    align-content: start;
}
.gh-nav__panel-title {
    margin: 0 0 2px;
    color: var(--gh-ink) !important;
    font-family: var(--gh-display) !important;
    font-size: 16px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    letter-spacing: 0.04em !important;
    text-transform: uppercase !important;
    opacity: 1 !important;
}
.gh-nav__panel a {
    color: #3a404a !important;
    font-family: var(--gh-body) !important;
    font-size: 15px !important;
    line-height: 1.35 !important;
    font-weight: 500 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    opacity: 1 !important;
    padding: 4px 0;
}
.gh-nav__panel a:hover {
    color: var(--gh-red) !important;
}
.gh-header.is-scrolled .gh-nav__panel {
    top: calc(100% + 10px);
}
.gh-header__cta { min-height: 44px; padding-inline: 18px; }
.gh-menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 2px;
    background: transparent;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
}
.gh-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
    pointer-events: none;
}
.gh-header.is-scrolled .gh-menu-toggle { border-color: var(--gh-line); }
[aria-expanded="true"].gh-menu-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
[aria-expanded="true"].gh-menu-toggle span:nth-child(2) { opacity: 0; }
[aria-expanded="true"].gh-menu-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.gh-nav-backdrop {
    display: none;
    position: fixed;
    inset: 72px 0 0 0;
    background: rgba(14, 16, 20, 0.4);
    z-index: 125;
}
.gh-nav-backdrop.is-visible { display: block; }

/* Hero — one composition */
.gh-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: flex-end;
    color: var(--gh-white);
    background: var(--gh-ink);
    overflow: hidden;
}
.gh-hero__media {
    position: absolute;
    inset: 0;
    background: url('../images/sliders/banner.webp') center center / cover no-repeat;
    transform: scale(1.06);
    animation: gh-hero-drift 18s ease-in-out infinite alternate;
}
.gh-hero__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 10, 14, 0.35) 0%, rgba(8, 10, 14, 0.55) 42%, rgba(8, 10, 14, 0.92) 100%),
        linear-gradient(90deg, rgba(8, 10, 14, 0.55) 0%, transparent 55%);
}
.gh-hero__content {
    position: relative;
    z-index: 1;
    padding: 120px 0 72px;
}
.gh-hero__content > * {
    max-width: 720px;
}
.gh-hero__brand {
    margin: 0 0 18px;
    font-family: var(--gh-display);
    font-size: clamp(42px, 8vw, 88px);
    line-height: 0.92;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--gh-white);
}
.gh-hero h1 {
    margin: 0;
    max-width: 16ch;
    font-family: var(--gh-display);
    font-size: clamp(28px, 4.2vw, 44px);
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
}
.gh-hero__lead {
    max-width: 42ch;
    margin: 22px 0 28px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 17px;
    line-height: 1.65;
}
@keyframes gh-hero-drift {
    from { transform: scale(1.06) translate3d(0, 0, 0); }
    to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

/* Partners */
.gh-partners {
    background: var(--gh-ink);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
}
.gh-partners__track {
    width: max-content;
    min-height: 88px;
    display: flex;
    align-items: center;
    animation: gh-marquee 32s linear infinite;
}
.gh-partner { width: 180px; padding: 0 24px; }
.gh-partner img {
    width: 120px;
    max-height: 48px;
    margin: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.55;
}
@keyframes gh-marquee {
    to { transform: translateX(-50%); }
}

/* Collections — full-bleed strip, interactive */
.gh-collections { padding-bottom: 0; }
.gh-collection-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    min-height: 480px;
}
.gh-collection {
    position: relative;
    overflow: hidden;
    color: var(--gh-white) !important;
    min-height: 420px;
}
.gh-collection img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}
.gh-collection::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(8, 10, 14, 0.88) 100%);
}
.gh-collection:hover img { transform: scale(1.06); }
.gh-collection__copy {
    position: absolute;
    z-index: 1;
    left: 28px;
    right: 28px;
    bottom: 28px;
}
.gh-collection__copy span {
    display: block;
    margin-bottom: 10px;
    font-family: var(--gh-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #ff7a84;
}
.gh-collection h3 {
    margin: 0 0 8px;
    font-family: var(--gh-display);
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--gh-white);
}
.gh-collection p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Products — list, not cards */
.gh-products { background: transparent; }
.gh-product-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--gh-line);
}
.gh-product-list a {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 22px 0;
    border-bottom: 1px solid var(--gh-line);
    transition: color .2s ease;
}
.gh-product-list a:hover { color: var(--gh-red); }
.gh-product-list img {
    width: 120px;
    height: 96px;
    object-fit: cover;
}
.gh-product-list h3 {
    margin: 0 0 4px;
    font-family: var(--gh-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.gh-product-list p {
    margin: 0;
    color: var(--gh-mute);
    font-size: 14px;
}
.gh-product-list > li > a > span {
    font-family: var(--gh-display);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gh-red);
}

/* Craft */
.gh-craft {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    padding: 0;
    min-height: 640px;
    background: var(--gh-white);
}
.gh-craft__media {
    position: relative;
    min-height: 520px;
    overflow: hidden;
}
.gh-craft__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}
.gh-craft__media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 40%;
    background: linear-gradient(0deg, rgba(14, 16, 20, 0.35), transparent);
}
.gh-craft__panel {
    display: flex;
    align-items: center;
    background:
        linear-gradient(135deg, #f7f8fa 0%, #eef1f5 55%, #e8ebf0 100%);
}
.gh-craft__content {
    padding: 72px clamp(32px, 5vw, 72px);
    max-width: 540px;
}
.gh-craft__points {
    list-style: none;
    margin: 28px 0 36px;
    padding: 0;
    border-top: 1px solid var(--gh-line);
}
.gh-craft__points li {
    padding: 16px 0;
    border-bottom: 1px solid var(--gh-line);
    color: var(--gh-mute);
    font-size: 14px;
    line-height: 1.5;
}
.gh-craft__points strong {
    display: block;
    margin-bottom: 4px;
    color: var(--gh-ink);
    font-family: var(--gh-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Process */
.gh-process {
    position: relative;
    color: var(--gh-white);
    background: #0c0e12;
    overflow: hidden;
}
.gh-process__atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.gh-process__atmosphere img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    filter: saturate(0.85) contrast(1.05);
}
.gh-process__atmosphere::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 10, 14, 0.82) 0%, rgba(8, 10, 14, 0.88) 45%, rgba(8, 10, 14, 0.94) 100%),
        linear-gradient(90deg, rgba(8, 10, 14, 0.55) 0%, transparent 45%, rgba(8, 10, 14, 0.4) 100%),
        radial-gradient(ellipse 60% 50% at 12% 18%, rgba(225, 29, 46, 0.28), transparent 55%);
}
.gh-process .gh-container { position: relative; z-index: 1; }
.gh-eyebrow--light { color: #ff7a84; }

.gh-process__intro {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 56px;
}
.gh-process__intro h2 {
    margin: 0;
    max-width: 14ch;
    color: var(--gh-white);
    font-family: var(--gh-display);
    font-size: clamp(36px, 5vw, 56px);
    line-height: 0.98;
    font-weight: 800;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}
.gh-process__intro-side {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding-bottom: 6px;
}
.gh-process__intro-side p {
    margin: 0;
    max-width: 34ch;
    color: rgba(255, 255, 255, 0.68);
    font-size: 16px;
    line-height: 1.7;
}

.gh-steps {
    list-style: none;
    margin: 0;
    padding: 28px 0 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    position: relative;
}
.gh-step {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    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, background .3s ease;
}
.gh-step:hover {
    border-color: rgba(225, 29, 46, 0.55);
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.05);
}
.gh-step__media {
    position: relative;
    flex: 1 1 auto;
    min-height: 210px;
    overflow: hidden;
}
.gh-step__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}
.gh-step:hover .gh-step__media img { transform: scale(1.08); }
.gh-step__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(12, 14, 18, 0.55) 100%);
}
.gh-step__body {
    position: relative;
    padding: 22px 20px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.gh-step__body::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gh-red);
    transition: width .35s ease;
}
.gh-step:hover .gh-step__body::before { width: 100%; }
.gh-step__num {
    display: block;
    margin-bottom: 12px;
    color: #ff7a84;
    font-family: var(--gh-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.16em;
}
.gh-step h3 {
    margin: 0 0 10px;
    color: var(--gh-white);
    font-family: var(--gh-display);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.gh-step p {
    margin: 0;
    color: rgba(255, 255, 255, 0.58);
    font-size: 13px;
    line-height: 1.55;
}
.gh-steps::before {
    content: "";
    position: absolute;
    top: 5px;
    left: 4%;
    right: 4%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(225, 29, 46, 0.65), transparent);
    z-index: 2;
    pointer-events: none;
}
.gh-step::after {
    content: "";
    position: absolute;
    top: -28px;
    left: 50%;
    width: 12px;
    height: 12px;
    margin-left: -6px;
    border-radius: 50%;
    background: var(--gh-red);
    box-shadow: 0 0 0 4px rgba(225, 29, 46, 0.28);
    z-index: 3;
}

/* Industries */
.gh-industries { padding-bottom: 0; }
.gh-industry-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}
.gh-industry {
    position: relative;
    min-height: 420px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--gh-white) !important;
    overflow: hidden;
    background: var(--industry-image) center / cover no-repeat;
}
.gh-industry::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 10, 14, 0.15), rgba(8, 10, 14, 0.9));
    transition: background .3s ease;
}
.gh-industry:hover::before {
    background: linear-gradient(180deg, rgba(177, 18, 32, 0.25), rgba(14, 16, 20, 0.92));
}
.gh-industry > * { position: relative; z-index: 1; }
.gh-industry span {
    margin-bottom: auto;
    font-family: var(--gh-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
}
.gh-industry h3 {
    margin: 0 0 8px;
    color: var(--gh-white);
    font-family: var(--gh-display);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.gh-industry p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
}

/* Proof */
.gh-proof {
    background: var(--gh-white);
    padding: 88px 0;
}
.gh-proof__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
}
.gh-quote {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}
.gh-quote p {
    margin: 0 0 28px;
    font-family: var(--gh-display);
    font-size: clamp(26px, 3.2vw, 36px);
    line-height: 1.25;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--gh-ink);
}
.gh-quote footer strong {
    display: block;
    font-family: var(--gh-display);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.gh-quote footer span {
    display: block;
    margin-top: 4px;
    color: var(--gh-mute);
    font-size: 13px;
}
.gh-proof__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--gh-line);
    border: 1px solid var(--gh-line);
}
.gh-proof__stats > div {
    padding: 28px 24px;
    background: var(--gh-fog);
    text-align: center;
}
.gh-proof__stats strong {
    display: block;
    font-family: var(--gh-display);
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    color: var(--gh-ink);
}
.gh-proof__stats span {
    display: block;
    margin-top: 10px;
    color: var(--gh-mute);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* FAQ */
.gh-faq { background: transparent; }
.gh-faq__layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 64px;
    align-items: start;
}
.gh-faq__intro .gh-btn { margin-top: 28px; }
.gh-accordion { border-top: 1px solid var(--gh-line); }
.gh-faq-item { border-bottom: 1px solid var(--gh-line); }
.gh-faq-item button {
    width: 100%;
    min-height: 72px;
    padding: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 0;
    color: var(--gh-ink);
    background: transparent;
    text-align: left;
    font-family: var(--gh-display);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.gh-faq-item button i { color: var(--gh-red); font-size: 14px; }
.gh-faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .3s ease;
}
.gh-faq-answer p {
    min-height: 0;
    overflow: hidden;
    margin: 0;
    color: var(--gh-mute);
    font-size: 15px;
    line-height: 1.7;
}
.gh-faq-item.is-open .gh-faq-answer { grid-template-rows: 1fr; }
.gh-faq-item.is-open .gh-faq-answer p { padding-bottom: 22px; }

/* Final CTA */
.gh-final-cta {
    position: relative;
    padding: 100px 0;
    color: var(--gh-white);
    overflow: hidden;
    background: var(--gh-red);
}
.gh-final-cta__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(255, 255, 255, 0.18), transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(0, 0, 0, 0.18), transparent 45%);
}
.gh-final-cta__inner {
    position: relative;
    max-width: 720px;
    text-align: center;
}
.gh-final-cta h2 {
    color: var(--gh-white);
    margin-inline: auto;
}
.gh-final-cta p {
    margin: 18px auto 32px;
    max-width: 44ch;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
}
.gh-final-cta .gh-actions { justify-content: center; }

/* Footer */
.gh-footer {
    color: rgba(255, 255, 255, 0.62);
    background: #0a0b0e;
}
.gh-footer__top {
    padding: 80px 0 64px;
    display: grid;
    grid-template-columns: 1.5fr repeat(4, 1fr);
    gap: 40px;
}
.gh-footer__brand img {
    width: 168px;
    margin-bottom: 22px;
}
.gh-footer__brand p,
.gh-footer__top > div:last-child p {
    margin: 0;
    font-size: 13px;
    line-height: 1.7;
}
.gh-footer h3 {
    margin: 0 0 18px;
    color: var(--gh-white);
    font-family: var(--gh-display);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.gh-footer__top > div:not(.gh-footer__brand) > a {
    display: block;
    margin: 0 0 12px;
    font-size: 13px;
    transition: color .2s ease;
}
.gh-footer__top a:hover { color: var(--gh-white); }
.gh-footer__social {
    display: flex;
    gap: 8px;
    margin-top: 22px;
}
.gh-footer__social a {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    color: var(--gh-white);
}
.gh-footer__social a:hover {
    background: var(--gh-red);
    border-color: var(--gh-red);
}
.gh-footer__bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.gh-footer__bottom .gh-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* WhatsApp FAB — see gh-footer.css */
.gh-mobile-cta { display: none; }

/* Modal */
.gh-modal {
    position: fixed;
    z-index: 300;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 24px;
    visibility: hidden;
    opacity: 0;
    transition: opacity .2s ease, visibility .2s ease;
}
.gh-modal.is-open {
    visibility: visible;
    opacity: 1;
}
.gh-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 10, 14, 0.78);
    backdrop-filter: blur(4px);
}
.gh-modal__dialog {
    position: relative;
    width: min(100%, 520px);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 40px;
    border-radius: 2px;
    background: var(--gh-white);
    transform: translateY(12px);
    transition: transform .25s ease;
}
.gh-modal.is-open .gh-modal__dialog { transform: translateY(0); }
.gh-modal__dialog > p:not(.gh-eyebrow) {
    margin: 12px 0 24px;
    color: var(--gh-mute);
    font-size: 14px;
    line-height: 1.65;
}
.gh-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--gh-line);
    border-radius: 2px;
    color: var(--gh-ink);
    background: var(--gh-white);
}
.gh-quote-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}
.gh-quote-form label {
    margin-top: 6px;
    color: var(--gh-ink);
    font-family: var(--gh-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.gh-quote-form input {
    width: 100%;
    height: 50px;
    padding: 0 14px;
    border: 1px solid var(--gh-line);
    border-radius: 2px;
    color: var(--gh-ink);
    background: var(--gh-white);
    outline: 0;
}
.gh-quote-form input:focus {
    border-color: var(--gh-red);
    box-shadow: 0 0 0 3px rgba(225, 29, 46, 0.1);
}
.gh-quote-form .gh-btn { margin-top: 14px; }

/* Motion */
.gh-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}
.gh-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.gh-hero .gh-reveal:nth-child(1) { transition-delay: .05s; }
.gh-hero .gh-reveal:nth-child(2) { transition-delay: .15s; }
.gh-hero .gh-reveal:nth-child(3) { transition-delay: .25s; }
.gh-hero .gh-reveal:nth-child(4) { transition-delay: .35s; }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .gh-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .gh-partners__track,
    .gh-hero__media { animation: none; }
    .gh-hero__media { transform: none; }
}

@media (max-width: 1100px) {
    .gh-header__inner {
        grid-template-columns: 160px 1fr auto;
        gap: 16px;
    }
    .gh-nav { gap: 18px; }
    .gh-header__cta { display: none; }
    .gh-collection-strip,
    .gh-industry-strip { grid-template-columns: repeat(2, 1fr); }
    .gh-steps { grid-template-columns: repeat(3, 1fr); }
    .gh-steps::before,
    .gh-step::after { display: none; }
    .gh-footer__top { grid-template-columns: 1.3fr repeat(2, 1fr); }
}

@media (max-width: 820px) {
    .gh-container { width: min(100% - 36px, 720px); }
    .gh-section { padding: 72px 0; }
    .gh-header { height: 72px; }
    .gh-header__inner {
        position: relative;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .gh-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        width: 100%;
        max-height: calc(100dvh - 72px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding: 12px 18px 20px;
        display: flex;
        flex-direction: column;
        gap: 0;
        color: var(--gh-ink);
        background: var(--gh-white);
        box-shadow: 0 16px 28px rgba(14, 16, 20, 0.12);
        transform: translateY(-12px);
        visibility: hidden;
        opacity: 0;
        transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
        z-index: 9990;
    }
    .gh-nav.is-open {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }
    .gh-nav > a,
    .gh-nav .gh-nav__drop-toggle {
        padding: 14px 8px;
        border-bottom: 1px solid var(--gh-fog);
        text-align: left;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .gh-nav .gh-nav__drop-toggle::after {
        content: "";
        width: 8px;
        height: 8px;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
        transition: transform .2s ease;
        flex-shrink: 0;
        margin-left: 12px;
    }
    .gh-nav__drop.is-open .gh-nav__drop-toggle::after {
        transform: rotate(-135deg);
        margin-top: 4px;
    }
    .gh-nav__drop {
        display: block;
        width: 100%;
        height: auto;
        padding-bottom: 0;
    }
    .gh-nav__panel,
    .gh-nav__drop.is-open .gh-nav__panel,
    .gh-nav__drop:hover .gh-nav__panel,
    .gh-nav__drop:focus-within .gh-nav__panel {
        position: static;
        transform: none;
        left: auto;
        width: 100%;
        max-width: none;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: none;
        box-shadow: none;
        border: 0;
        padding: 0 8px 8px;
        margin: 0;
        grid-template-columns: 1fr !important;
        gap: 0;
    }
    .gh-nav__drop.is-open .gh-nav__panel {
        display: flex !important;
        flex-direction: column;
        pointer-events: auto;
    }
    .gh-nav__panel::before { display: none; }
    .gh-nav__panel-group {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 4px 0 8px;
        border-bottom: 1px solid var(--gh-fog);
        gap: 0;
    }
    .gh-nav__panel-group:last-child { border-bottom: 0; }
    .gh-nav__panel-title {
        display: block;
        width: 100%;
        padding: 10px 0 6px !important;
        margin: 0 !important;
    }
    .gh-nav__panel a {
        display: block;
        width: 100%;
        min-height: 40px;
        padding: 8px 0 8px 12px !important;
        line-height: 1.4;
        text-align: left;
    }
    .gh-menu-toggle { display: flex; min-width: 48px; min-height: 48px; }
    .gh-nav > a,
    .gh-nav .gh-nav__drop-toggle { min-height: 48px; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
    .gh-nav__panel a { min-height: 44px !important; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
    .gh-hero__content {
        padding: 110px 0 48px;
    }
    .gh-hero__content > * {
        max-width: none;
    }
    .gh-craft { grid-template-columns: 1fr; }
    .gh-craft__media { min-height: 420px; }
    .gh-process__intro {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }
    .gh-process__intro h2 { max-width: none; }
    .gh-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .gh-steps::before,
    .gh-step::after { display: none; }
    .gh-step {
        min-height: 0;
        display: grid;
        grid-template-columns: 140px 1fr;
    }
    .gh-step__media {
        min-height: 140px;
        height: 100%;
    }
    .gh-step__body { padding: 18px 16px; }
    .gh-proof__grid,
    .gh-faq__layout { grid-template-columns: 1fr; gap: 40px; }
    .gh-section-head--row {
        display: block;
    }
    .gh-section-head--row .gh-text-link {
        display: inline-block;
        margin-top: 18px;
    }
}

@media (max-width: 600px) {
    .gh-container { width: calc(100% - 28px); }
    .gh-section { padding: 60px 0; }
    .gh-section-head { text-align: left; margin-bottom: 32px; }
    .gh-actions { width: 100%; }
    .gh-actions .gh-btn { width: 100%; }
    .gh-logo { width: 140px; }
    .gh-hero { min-height: 100svh; }
    .gh-hero__media { background-position: 70% center; }
    .gh-collection-strip,
    .gh-industry-strip { grid-template-columns: 1fr; }
    .gh-collection,
    .gh-industry { min-height: 360px; }
    .gh-step {
        grid-template-columns: 1fr;
        min-height: 340px;
    }
    .gh-step__media { min-height: 180px; }
    .gh-product-list a {
        grid-template-columns: 88px 1fr;
        gap: 16px;
    }
    .gh-product-list img {
        width: 88px;
        height: 72px;
    }
    .gh-product-list > li > a > span { display: none; }
    .gh-product-list h3 { font-size: 22px; }
    .gh-craft__content { padding: 48px 24px; }
    .gh-proof { padding: 60px 0; }
    .gh-proof__stats strong { font-size: 34px; }
    .gh-final-cta { padding: 72px 0; }
    .gh-footer { padding-bottom: 70px; }
    .gh-footer__top {
        padding-block: 56px 44px;
        grid-template-columns: repeat(2, 1fr);
        gap: 36px 20px;
    }
    .gh-footer__brand { grid-column: 1 / -1; }
    .gh-footer__bottom .gh-container {
        display: grid;
        text-align: center;
    }
    .gh-mobile-cta {
        position: fixed;
        z-index: 90;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 58px;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 0;
        color: var(--gh-white);
        background: var(--gh-red);
        font-family: var(--gh-display);
        font-size: 15px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }
    .gh-modal { padding: 12px; }
    .gh-modal__dialog {
        max-height: calc(100vh - 24px);
        padding: 32px 22px 24px;
    }
}
