/* ==========================================================================
   GLOBO LIGHTING v3 — Design System
   Concept: Editoriale bianco, tipografia monumentale Ubuntu, accento sabbia
   Palette: #FFFFFF | #F5F3EE (warm white) | #D4B896 (sabbia) | #2A2A2A | #888
   Font: Ubuntu 300/400/500/700 (font ufficiale del brand reale)
   Firma: numeri indicizzati giganti + ticker orizzontale
   ========================================================================== */

:root {
    --white:      #FFFFFF;
    --warm:       #F5F3EE;
    --warm2:      #EDEAE4;
    --sand:       #D4B896;
    --sand-dark:  #B89860;
    --black:      #1A1A1A;
    --dark:       #2A2A2A;
    --mid:        #666666;
    --light:      #AAAAAA;
    --border:     #E0DDD8;
    --border-dark: #C8C8C0;
    --ease:       cubic-bezier(0.16, 1, 0.3, 1);
    --t:          all 0.5s var(--ease);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Ubuntu', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.gl3-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s ease;
}

.gl3-nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.gl3-nav-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand */
.gl3-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--black);
}

.gl3-brand-mark {
    width: 36px;
    height: 36px;
    border: 1px solid var(--sand);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--sand-dark);
    flex-shrink: 0;
}

.gl3-brand-footer .gl3-brand-mark { border-color: rgba(212,184,150,0.4); }

.gl3-brand-text {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    line-height: 1.3;
    color: var(--black);
}

.gl3-brand-sub { font-weight: 300; opacity: 0.55; }

/* Nav links */
.gl3-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
}

.gl3-nl {
    display: block;
    padding: 6px 16px;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--mid);
    text-decoration: none;
    transition: color 0.25s;
    position: relative;
}

.gl3-nl::after {
    content: '';
    position: absolute;
    bottom: 0; left: 16px; right: 16px;
    height: 1px;
    background: var(--sand);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease);
}

.gl3-nl:hover, .gl3-nl.is-active { color: var(--black); }
.gl3-nl:hover::after, .gl3-nl.is-active::after { transform: scaleX(1); }

.gl3-nl-cta {
    display: block;
    margin-left: 8px;
    padding: 8px 22px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--white);
    background: var(--black);
    text-decoration: none;
    transition: var(--t);
}

.gl3-nl-cta:hover, .gl3-nl-cta.is-active { background: var(--dark); color: var(--white); }

/* Hamburger */
.gl3-hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.gl3-hamburger span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--black);
    transition: var(--t);
}

/* ==========================================================================
   HERO — Tipografia monumentale
   ========================================================================== */
.gl3-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 32px 80px;
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.gl3-hero-label {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sand-dark);
    margin-bottom: 32px;
}

.gl3-hero-label span { margin: 0 8px; opacity: 0.5; }

.gl3-hero-headline {
    font-family: 'Ubuntu', sans-serif;
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 0 24px;
}

.gl3-hero-word { display: block; overflow: hidden; }

/* Ogni parola si rivela dal basso */
.gl3-hw-1 { animation: wordUp 0.9s var(--ease) 0.1s both; }
.gl3-hw-2 { animation: wordUp 0.9s var(--ease) 0.22s both; color: var(--sand-dark); }
.gl3-hw-3 { animation: wordUp 0.9s var(--ease) 0.34s both; }
.gl3-hw-4 { animation: wordUp 0.9s var(--ease) 0.46s both; }

@keyframes wordUp {
    from { opacity: 0; transform: translateY(60px); }
    to   { opacity: 1; transform: translateY(0); }
}

.gl3-hero-sub {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: wordUp 0.9s var(--ease) 0.6s both;
}

.gl3-hero-sub p {
    font-size: 1rem;
    font-weight: 300;
    color: var(--mid);
    max-width: 380px;
    line-height: 1.7;
    margin: 0;
}

/* Ticker orizzontale (firma) */
.gl3-hero-ticker {
    position: absolute;
    bottom: 40px;
    left: 0;
    right: 0;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--border-dark);
    pointer-events: none;
}

.gl3-hero-ticker span {
    display: inline-block;
    animation: ticker 18s linear infinite;
}

.gl3-hero-ticker span:nth-child(2) { animation-delay: -9s; }

@keyframes ticker {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ==========================================================================
   NUMERI
   ========================================================================== */
.gl3-numbers {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.gl3-numbers-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.gl3-number-item {
    padding: 48px 32px;
    border-right: 1px solid var(--border);
    text-align: center;
}

.gl3-number-item:last-child { border-right: none; }

.gl3-number-val {
    font-family: 'Ubuntu', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--black);
    line-height: 1;
}

.gl3-number-val sup {
    font-size: 0.45em;
    font-weight: 300;
    vertical-align: super;
    color: var(--sand-dark);
}

.gl3-number-lbl {
    font-size: 0.78rem;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--mid);
    margin-top: 10px;
    text-transform: uppercase;
}

/* ==========================================================================
   SEZIONE EDITORIALE (Filosofia)
   ========================================================================== */
.gl3-editorial {
    background: var(--white);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.gl3-editorial-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
}

/* Light-rays motif — raggi di luce dall'angolo (tema brand, eco dei coni luminosi) */
.gl3-beam {
    --beam-size: clamp(22rem, 38vw, 44rem);
    width: var(--beam-size);
    height: var(--beam-size);
    position: absolute;
    top: -18%;
    right: -4%;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    background:
        repeating-conic-gradient(from 182deg at 100% 0%,
            rgba(184,152,96,0.30) 0deg 0.6deg,
            transparent 0.6deg 4.2deg),
        radial-gradient(65% 65% at 100% 0%, rgba(212,184,150,0.10) 0%, transparent 72%);
    -webkit-mask-image: radial-gradient(95% 95% at 100% 0%, #000 12%, transparent 80%);
    mask-image: radial-gradient(95% 95% at 100% 0%, #000 12%, transparent 80%);
}

.gl3-ed-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.gl3-ed-left, .gl3-ed-right { display: flex; flex-direction: column; justify-content: center; }

/* ==========================================================================
   SEZIONI GENERICHE
   ========================================================================== */
.gl3-section { padding: 100px 0; }
.gl3-section-white { background: var(--white); }
.gl3-section-warm  { background: var(--warm); }

.gl3-section-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
}

.gl3-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* ==========================================================================
   TIPOGRAFIA
   ========================================================================== */
.gl3-caption {
    display: block;
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sand-dark);
    margin-bottom: 12px;
}

.gl3-section-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--black);
    letter-spacing: -0.01em;
}

.gl3-body-lead {
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.8;
}

.gl3-body-text {
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.75;
}

/* ==========================================================================
   PULSANTI E LINK
   ========================================================================== */
.gl3-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--white);
    background: var(--black);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--t);
}

.gl3-btn:hover { background: var(--dark); color: var(--white); transform: translateY(-2px); }

.gl3-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--black);
    background: transparent;
    border: 1px solid var(--black);
    text-decoration: none;
    transition: var(--t);
}

.gl3-btn-outline:hover { background: var(--black); color: var(--white); }

.gl3-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: var(--black);
    text-decoration: none;
    border-bottom: 1px solid var(--sand);
    padding-bottom: 3px;
    transition: all 0.3s;
}

.gl3-link:hover { color: var(--sand-dark); border-color: var(--sand-dark); }
.gl3-link i { font-size: 0.7rem; transition: transform 0.3s; }
.gl3-link:hover i { transform: translateX(4px); }

/* ==========================================================================
   PRODOTTI
   ========================================================================== */
.gl3-products {
    background: var(--warm);
    padding: 100px 0;
    overflow: hidden;
}

.gl3-products-header {
    max-width: 1320px;
    margin: 0 auto 48px;
    padding: 0 32px;
    position: relative;
}

.gl3-products-header .gl3-beam { top: -40%; right: -4%; }

.gl3-product-grid {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    grid-template-rows: auto auto;
    gap: 2px;
}

.gl3-pcard {
    background: var(--white);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--t);
}

.gl3-pcard:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.06); }
.gl3-pcard:hover .gl3-psvg { transform: scale(1.04); }

.gl3-pcard-lg { grid-row: 1 / 3; }

.gl3-pcard-visual {
    background: var(--warm);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex: 1;
    min-height: 200px;
}

.gl3-pcard-lg .gl3-pcard-visual { min-height: 360px; }

.gl3-psvg {
    width: 60%;
    max-width: 240px;
    height: auto;
    transition: transform 0.6s var(--ease);
}

.gl3-pcard-info {
    padding: 24px 28px;
    border-top: 1px solid var(--border);
}

.gl3-pcard-cat {
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sand-dark);
}

.gl3-pcard-name {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--black);
    margin: 8px 0 6px;
}

.gl3-pcard-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
   CTA BAND (Home — sezione cataloghi)
   ========================================================================== */
.gl3-cta-band {
    background: var(--white);
    border-top: 1px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    overflow: hidden;
}

.gl3-cta-left {
    padding: 80px 64px 80px 32px;
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.gl3-cta-left .gl3-beam {
    --beam-size: clamp(18rem, 26vw, 26rem);
    top: -16%;
    right: auto;
    left: -8%;
    background:
        repeating-conic-gradient(from 273deg at 0% 0%,
            rgba(184,152,96,0.30) 0deg 0.6deg,
            transparent 0.6deg 4.2deg),
        radial-gradient(65% 65% at 0% 0%, rgba(212,184,150,0.10) 0%, transparent 72%);
    -webkit-mask-image: radial-gradient(95% 95% at 0% 0%, #000 12%, transparent 80%);
    mask-image: radial-gradient(95% 95% at 0% 0%, #000 12%, transparent 80%);
}

.gl3-cta-left .gl3-body-text { margin: 20px 0 32px; }

.gl3-cta-right {
    background: var(--warm);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    border-left: 1px solid var(--border);
}

.gl3-cta-svg { width: 100%; max-width: 480px; height: auto; }

/* ==========================================================================
   PAGE HERO (pagine interne)
   ========================================================================== */
.gl3-page-hero {
    padding: 140px 32px 64px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
}

.gl3-page-hero-light { background: var(--white); }

.gl3-ph-inner {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.gl3-ph-inner .gl3-beam {
    --beam-size: clamp(20rem, 32vw, 34rem);
    position: absolute;
    top: -85%;
    right: -2%;
    z-index: 0;
}

.gl3-ph-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-top: 12px;
    position: relative;
    z-index: 1;
}

/* ==========================================================================
   AZIENDA — Quote
   ========================================================================== */
.gl3-quote {
    border-left: 3px solid var(--sand);
    padding: 32px 40px;
    background: var(--warm);
    margin: 0;
}

.gl3-quote p {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.3rem;
    font-weight: 300;
    font-style: italic;
    color: var(--dark);
    line-height: 1.6;
    margin: 0 0 16px;
}

.gl3-quote p em { font-style: normal; font-weight: 500; color: var(--black); }

.gl3-quote cite {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sand-dark);
    font-style: normal;
}

/* Pillar */
.gl3-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-top: 48px;
}

.gl3-pillar {
    background: var(--white);
    padding: 40px 36px;
    border-top: 2px solid var(--sand);
    transition: var(--t);
}

.gl3-pillar:hover { background: var(--warm2); }

.gl3-pillar-mark {
    width: 40px;
    height: 3px;
    background: var(--sand);
    margin-bottom: 24px;
}

.gl3-pillar-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 12px;
}

.gl3-pillar-text {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--mid);
    line-height: 1.7;
    margin: 0;
}

/* Timeline */
.gl3-timeline {
    margin-top: 48px;
    border-top: 1px solid var(--border);
}

.gl3-tl-item {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 48px;
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
    align-items: start;
}

.gl3-tl-year {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--sand-dark);
    line-height: 1;
}

.gl3-tl-body h5 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 8px;
}

.gl3-tl-body p {
    font-size: 0.88rem;
    font-weight: 300;
    color: var(--mid);
    margin: 0;
    line-height: 1.7;
}

/* ==========================================================================
   CATALOGHI
   ========================================================================== */
.gl3-cat-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.gl3-filter {
    padding: 10px 24px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    background: transparent;
    border: 1px solid var(--border-dark);
    color: var(--mid);
    cursor: pointer;
    transition: var(--t);
}

.gl3-filter:hover, .gl3-filter.active {
    background: var(--black);
    border-color: var(--black);
    color: var(--white);
}

.gl3-cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

.gl3-cat-item {
    background: var(--white);
    overflow: hidden;
    transition: var(--t);
}

.gl3-cat-item:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.06); }

.gl3-cat-cover {
    position: relative;
    overflow: hidden;
}

.gl3-cat-cover svg {
    display: block;
    width: 100%;
    transition: transform 0.6s var(--ease);
}

.gl3-cat-item:hover .gl3-cat-cover svg { transform: scale(1.03); }

.gl3-cat-hover {
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s;
}

.gl3-cat-item:hover .gl3-cat-hover { opacity: 1; }

.gl3-btn-dl {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    transition: background 0.3s;
}

.gl3-btn-dl:hover { background: var(--warm); color: var(--black); }

.gl3-cat-meta {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
}

.gl3-cat-tag {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sand-dark);
    font-weight: 400;
}

.gl3-cat-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--black);
    margin: 8px 0 4px;
}

.gl3-cat-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--mid);
    margin: 0;
}

/* ==========================================================================
   CONTATTI
   ========================================================================== */
.gl3-contact-layout {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
    padding-top: 48px;
}

.gl3-contact-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 16px;
}

.gl3-contact-list { margin-top: 36px; }

.gl3-contact-row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.gl3-contact-row:first-child { border-top: 1px solid var(--border); }

.gl3-contact-label {
    font-weight: 500;
    color: var(--black);
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.gl3-contact-row a { color: var(--mid); text-decoration: none; transition: color 0.3s; }
.gl3-contact-row a:hover { color: var(--sand-dark); }

.gl3-form-title {
    font-family: 'Ubuntu', sans-serif;
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--black);
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.gl3-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.gl3-form-group { margin-bottom: 24px; }

.gl3-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--mid);
    margin-bottom: 8px;
}

.gl3-field {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--border-dark);
    padding: 10px 2px;
    font-family: 'Ubuntu', sans-serif;
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--black);
    transition: border-color 0.3s;
    outline: none;
}

.gl3-field:focus { border-bottom-color: var(--sand-dark); }
.gl3-field::placeholder { color: var(--light); }
.gl3-textarea { resize: vertical; min-height: 120px; }

.gl3-form-msg {
    margin-top: 16px;
    padding: 12px 16px;
    font-size: 0.9rem;
    border-left: 3px solid;
}

.gl3-form-msg.success { background: #f4faf4; color: #2d6a2d; border-color: #4caf50; }
.gl3-form-msg.error   { background: #fdf4f4; color: #8b2020; border-color: #e53935; }

.gl3-map-container { width: 100%; height: 440px; filter: grayscale(0.4); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.gl3-footer {
    background: var(--black);
    color: rgba(255,255,255,0.5);
    border-top: 1px solid rgba(255,255,255,0.06);
}

.gl3-footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

.gl3-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    padding: 64px 0 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.gl3-footer .gl3-brand-text { color: rgba(255,255,255,0.85); }
.gl3-footer .gl3-brand-sub  { color: rgba(255,255,255,0.35); }
.gl3-footer .gl3-brand-mark { border-color: rgba(212,184,150,0.3); color: var(--sand); }

.gl3-footer-tagline {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    line-height: 1.6;
    margin: 20px 0 24px;
}

.gl3-footer-socials { display: flex; gap: 12px; }

.gl3-footer-socials a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.35);
    text-decoration: none;
    font-size: 0.78rem;
    transition: var(--t);
}

.gl3-footer-socials a:hover { border-color: var(--sand); color: var(--sand); }

.gl3-footer-col h6 {
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 20px;
}

.gl3-footer-col ul { list-style: none; }
.gl3-footer-col li { margin-bottom: 10px; }

.gl3-footer-col a {
    font-size: 0.88rem;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.3s;
}

.gl3-footer-col a:hover { color: var(--sand); }

.gl3-footer-contact p {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255,255,255,0.4);
    line-height: 1.7;
    margin-bottom: 6px;
}

.gl3-footer-contact a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.3s; }
.gl3-footer-contact a:hover { color: var(--sand); }

.gl3-footer-bottom {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.gl3-footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.2); margin: 0; }

.gl3-footer-bottom div { display: flex; gap: 20px; }
.gl3-footer-bottom a { font-size: 0.78rem; color: rgba(255,255,255,0.2); text-decoration: none; transition: color 0.3s; }
.gl3-footer-bottom a:hover { color: rgba(255,255,255,0.5); }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.active { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.34s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1100px) {
    .gl3-cta-band { grid-template-columns: 1fr; }
    .gl3-cta-right { display: none; }
    .gl3-cta-left { padding: 80px 32px; max-width: 100%; }

    .gl3-product-grid {
        grid-template-columns: 1fr;
    }
    .gl3-pcard-lg { grid-row: auto; }
}

@media (max-width: 900px) {
    .gl3-numbers-inner { grid-template-columns: repeat(2, 1fr); }
    .gl3-number-item:nth-child(2) { border-right: none; }
    .gl3-number-item:nth-child(3) { border-right: 1px solid var(--border); }
    .gl3-number-item:nth-child(1),
    .gl3-number-item:nth-child(2) { border-bottom: 1px solid var(--border); }

    .gl3-ed-content { grid-template-columns: 1fr; gap: 40px; }
    .gl3-two-col { grid-template-columns: 1fr; gap: 40px; }
    .gl3-pillars { grid-template-columns: 1fr; }
    .gl3-cat-grid { grid-template-columns: 1fr; }
    .gl3-contact-layout { grid-template-columns: 1fr; gap: 40px; }
    .gl3-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .gl3-hero-headline { font-size: clamp(3rem, 10vw, 6rem); }
}

@media (max-width: 768px) {
    .gl3-nav-links {
        position: fixed;
        top: 68px; left: 0; right: 0;
        background: var(--white);
        border-top: 1px solid var(--border);
        flex-direction: column;
        gap: 0;
        padding: 16px 0;
        transform: translateY(-110%);
        transition: transform 0.4s var(--ease);
        z-index: 999;
    }

    .gl3-nav-links.is-open { transform: translateY(0); }

    .gl3-nl, .gl3-nl-cta {
        display: block;
        padding: 14px 32px;
        margin: 0;
        font-size: 1rem;
    }

    .gl3-nl::after { display: none; }

    .gl3-hamburger { display: flex; }

    .gl3-hero { padding: 100px 24px 60px; }
    .gl3-hero-sub { flex-direction: column; align-items: flex-start; gap: 24px; }

    .gl3-tl-item { grid-template-columns: 80px 1fr; gap: 24px; }
    .gl3-form-row { grid-template-columns: 1fr; }
    .gl3-footer-grid { grid-template-columns: 1fr; }
    .gl3-footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .gl3-section { padding: 64px 0; }
    .gl3-editorial { padding: 64px 0; }
    .gl3-products { padding: 64px 0; }
    .gl3-numbers-inner { grid-template-columns: 1fr 1fr; }
    .gl3-number-item { padding: 32px 16px; }
}

@media (prefers-reduced-motion: reduce) {
    .gl3-hw-1, .gl3-hw-2, .gl3-hw-3, .gl3-hw-4, .gl3-hero-sub { animation: none; opacity: 1; }
    .gl3-hero-ticker span { animation: none; }
    .reveal { opacity: 1; transform: none; transition: none; }
}
