/* ===================================================
   NewOmi International — Corporate Design System
   =================================================== */

:root {
    /* Monochrome palette — black, white, gray */
    --ink: #0a0a0f;
    --ink-soft: #14141c;
    --ink-muted: #52525b;
    --white: #ffffff;
    --cream: #ffffff;
    --cream-deep: #f5f5f7;
    --champagne: #e8e8ec;
    --surface: #ffffff;
    --surface-alt: #f5f5f7;

    --text: #0a0a0f;
    --text-secondary: #52525b;
    --text-muted: #71717a;
    --text-inverse: rgba(255, 255, 255, 0.92);

    --primary: #0a0a0f;
    --primary-light: #52525b;
    --primary-dark: #050508;
    --primary-glow: rgba(10, 10, 15, 0.1);

    --secondary: #52525b;
    --secondary-light: #71717a;
    --secondary-dark: #3f3f46;

    --accent: #0a0a0f;
    --accent-light: #52525b;
    --accent-dark: #050508;
    --accent-glow: rgba(10, 10, 15, 0.12);

    --bronze: #0a0a0f;
    --bronze-light: #52525b;
    --bronze-dark: #050508;
    --bronze-glow: rgba(10, 10, 15, 0.1);

    --border: #e4e4e7;
    --border-strong: #d4d4d8;
    --border-dark: rgba(255, 255, 255, 0.12);

    --navy: #0a0a0f;
    --navy-mid: #14141c;
    --navy-light: #52525b;
    --off-white: var(--cream);
    --gold: #0a0a0f;
    --gold-light: #52525b;
    --gold-dark: #050508;

    --font-display: 'Manrope', system-ui, sans-serif;
    --font-body: 'Manrope', system-ui, sans-serif;

    --container: 1440px;
    --topbar-h: 38px;
    --header-h: 72px;
    --total-header: calc(var(--topbar-h) + var(--header-h));

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --btn-radius: var(--radius-sm);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --shadow-xs: 0 1px 2px rgba(10, 10, 15, 0.04);
    --shadow-sm: 0 4px 16px rgba(10, 10, 15, 0.06);
    --shadow-md: 0 12px 40px rgba(10, 10, 15, 0.08);
    --shadow-lg: 0 24px 64px rgba(10, 10, 15, 0.1);
    --shadow-bronze: 0 8px 32px rgba(10, 10, 15, 0.12);
    --shadow-accent: 0 8px 32px rgba(10, 10, 15, 0.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--cream);
    font-feature-settings: 'kern' 1, 'liga' 1;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}

.site-main {
    flex: 1 0 auto;
}

::selection {
    background: var(--champagne);
    color: var(--ink);
}

:focus-visible {
    outline: 2px solid var(--bronze);
    outline-offset: 3px;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section { padding: 6rem 0; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bronze-dark);
    margin-bottom: 0.875rem;
}

.section-label::before {
    content: '';
    width: 20px;
    height: 1px;
    background: var(--bronze);
}

.section-title {
    font-family: var(--font-body);
    font-size: clamp(2rem, 4.2vw, 2.875rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 1rem auto 0;
    line-height: 1.75;
}

.section-head {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-head--light .section-title { color: var(--white); }
.section-head--light .section-label { color: var(--gold-light); }
.section-head--light .section-desc { color: rgba(255,255,255,0.65); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9375rem 1.875rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: var(--btn-radius);
    transition: background 0.2s, box-shadow 0.2s, color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.btn--primary {
    background: var(--accent);
    color: var(--white);
    box-shadow: var(--shadow-accent);
}

.btn--primary:hover {
    background: var(--accent-dark);
    box-shadow: var(--shadow-accent);
}

.btn--primary:active {
    transform: translateY(0);
}

.btn--outline {
    background: var(--white);
    color: var(--text);
    border: 1.5px solid var(--border-strong);
    box-shadow: var(--shadow-xs);
}

.btn--outline:hover {
    border-color: var(--bronze);
    color: var(--bronze-dark);
    box-shadow: var(--shadow-sm);
}

.btn--light {
    background: var(--white);
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}

.btn--light:hover {
    background: var(--champagne);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--full { width: 100%; }

.header__btn,
.filter__btn,
.product-card__btn,
.product-slider__nav,
.global-band__cta,
.back-to-top {
    border-radius: var(--btn-radius);
}

.btn__loader {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ===================================================
   Top Bar
   =================================================== */

.topbar {
    background: var(--ink);
    color: rgba(255,255,255,0.72);
    font-size: 0.75rem;
    font-weight: 500;
    height: var(--topbar-h);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 110;
}

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar__left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.topbar__badge {
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bronze-light);
    font-size: 0.625rem;
}

.topbar__sep {
    width: 1px;
    height: 12px;
    background: rgba(255,255,255,0.2);
}

.topbar__link {
    transition: color 0.2s;
}

.topbar__link:hover { color: var(--white); }

/* ===================================================
   Header
   =================================================== */

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-h);
    background: rgba(250, 248, 245, 0.82);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border-bottom: 1px solid transparent;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.header.is-scrolled {
    background: rgba(255, 255, 255, 0.94);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-xs);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 2rem;
}

.header__logo img {
    height: 34px;
    width: auto;
    filter: brightness(0) saturate(100%);
    transition: opacity 0.2s;
}

.header__logo:hover img { opacity: 0.72; }

.nav__list {
    display: flex;
    gap: 0.25rem;
}

.nav__item {
    position: relative;
}

.nav__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    letter-spacing: 0;
    transition: color 0.2s, background 0.2s;
    position: relative;
    padding: 0.5rem 0.875rem;
    border-radius: var(--btn-radius);
}

.nav__link.is-active,
.nav__link:hover {
    color: var(--ink);
    background: var(--cream-deep);
}

.nav__trigger svg {
    transition: transform 0.2s;
}

.nav__item.is-open .nav__trigger svg {
    transform: rotate(180deg);
}

.nav__dropdown {
    position: absolute;
    top: calc(100% + 0.625rem);
    left: 0;
    min-width: 240px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px) scale(0.98);
    transition: all 0.22s var(--ease);
    z-index: 120;
}

.nav__item.is-open .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.nav__dropdown:not(.nav__mega) a {
    display: block;
    padding: 0.625rem 0.875rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: var(--btn-radius);
    transition: background 0.15s, color 0.15s;
}

.nav__dropdown:not(.nav__mega) a:hover {
    background: var(--cream-deep);
    color: var(--ink);
}

.header__cta {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.6875rem 1.375rem;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--btn-radius);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    flex-shrink: 0;
}

.header__cta:hover {
    background: var(--accent-dark);
    box-shadow: var(--shadow-accent);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
    padding: 2px 0;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--navy);
    transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2) { opacity: 0; }
.nav-toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    position: fixed;
    inset: var(--total-header) 0 0 0;
    background: var(--white);
    z-index: 99;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 0.25rem;
}

.mobile-nav[hidden] { display: none; }

.mobile-nav__group {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.mobile-nav__link {
    font-size: 1.0625rem;
    font-weight: 500;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.mobile-nav__link--sub {
    padding-left: 1rem;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.mobile-nav .btn { margin-top: 1.5rem; }

/* ===================================================
   Hero
   =================================================== */

.hero {
    background: var(--white);
    padding: 4rem 0 5rem;
    border-bottom: 1px solid var(--border);
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero__label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero__year {
    font-size: 0.6875rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    padding-left: 1rem;
    border-left: 1px solid var(--border);
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 600;
    line-height: 1.12;
    color: var(--navy);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero__lead {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 2rem;
}

.hero__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.hero__metrics {
    display: flex;
    gap: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.metric strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.metric span {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero__showcase {
    background: var(--off-white);
    border: 1px solid var(--border);
    padding: 1.5rem;
}

.hero__showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.hero__showcase-header span {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.hero__showcase-header a {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold-dark);
    transition: color 0.2s;
}

.hero__showcase-header a:hover { color: var(--navy); }

.hero__products {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-product {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: var(--white);
    border: 1px solid var(--border);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.hero-product:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.hero-product__img {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    background: var(--surface-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-product__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-product__info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-product__cat {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.hero-product__name {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--navy);
}

/* ===================================================
   Trust Bar
   =================================================== */

.trust {
    background: var(--navy);
    padding: 2.5rem 0;
}

.trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.trust-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.trust-item__icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-dark);
    color: var(--gold-light);
}

.trust-item strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.trust-item p {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

/* ===================================================
   Corporate
   =================================================== */

.corporate {
    background: var(--off-white);
}

.corporate__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.corp-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2rem;
    position: relative;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.corp-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.corp-card__num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--surface-alt);
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
}

.corp-card__title {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.corp-card__text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.corporate__statement {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-left: 3px solid var(--gold);
}

.corporate__statement blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    font-weight: 500;
    line-height: 1.4;
    color: var(--navy);
    font-style: italic;
}

.corporate__statement p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ===================================================
   Categories
   =================================================== */

.categories {
    background: var(--navy);
    padding: 6rem 0;
}

.categories__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.category-card {
    background: var(--navy-mid);
    border: 1px solid var(--border-dark);
    overflow: hidden;
    display: grid;
    grid-template-rows: 240px auto;
    transition: border-color 0.3s;
}

.category-card:hover {
    border-color: rgba(10, 10, 15,0.4);
}

.category-card__visual {
    position: relative;
    overflow: hidden;
    background: var(--navy-light);
}

.category-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.5s var(--ease), opacity 0.3s;
}

.category-card:hover .category-card__visual img {
    transform: scale(1.05);
    opacity: 1;
}

.category-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--navy-mid) 0%, transparent 60%);
}

.category-card__body {
    padding: 1.75rem;
}

.category-card__count {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-light);
}

.category-card__title {
    font-family: var(--font-display);
    font-size: 1.625rem;
    font-weight: 600;
    color: var(--white);
    margin: 0.5rem 0 0.75rem;
}

.category-card__desc {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

.category-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gold-light);
    transition: gap 0.2s, color 0.2s;
}

.category-card__link:hover {
    color: var(--white);
    gap: 0.625rem;
}

/* ===================================================
   Products
   =================================================== */

.products {
    background: var(--white);
}

.products__head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: end;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
}

.products__intro {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

.filter {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter__btn {
    padding: 0.625rem 1.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--btn-radius);
    transition: all 0.2s;
}

.filter__btn:hover {
    color: var(--text);
    border-color: var(--text-muted);
}

.filter__btn.is-active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.product-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s, border-color 0.3s;
}

.product-card.is-hidden { display: none; }

.product-card:hover {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.product-card__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem 0;
}

.product-card__index {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.08em;
}

.product-card__badge {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: rgba(10, 10, 15,0.12);
    padding: 0.25rem 0.625rem;
    border-radius: 2px;
}

.product-card__image-wrap {
    aspect-ratio: 1;
    margin: 0.75rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
}

.product-card:hover .product-card__image {
    transform: scale(1.03);
}

.product-card__body {
    padding: 0 1.25rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card__name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.product-card__subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold-dark);
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
}

.product-card__desc {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__btn {
    width: 100%;
    padding: 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--btn-radius);
    transition: all 0.2s;
}

.product-card__btn:hover {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* ===================================================
   CTA Band
   =================================================== */

.cta-band {
    background: var(--gold);
    padding: 3.5rem 0;
}

.cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cta-band__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.375rem;
}

.cta-band__text {
    font-size: 0.9375rem;
    color: rgba(12,18,34,0.7);
}

/* ===================================================
   Contact
   =================================================== */

.contact {
    background: var(--off-white);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 4rem;
    align-items: start;
}

.contact__desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 1rem 0 2rem;
    max-width: 440px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 1.125rem 1.25rem;
}

.contact-card__label {
    display: block;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.375rem;
}

.contact-card a,
.contact-card span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--navy);
}

.contact-card a:hover { color: var(--gold-dark); }

.contact__form {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2rem;
}

.form-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.form-header h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.form-header p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.form-group { margin-bottom: 1.125rem; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 0.375rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 0.875rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text);
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
}

.form-input:focus {
    border-color: var(--navy);
    background: var(--white);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.form-feedback {
    padding: 0.75rem 1rem;
    margin-bottom: 0.75rem;
    font-size: 0.8125rem;
    border-radius: 2px;
}

.form-feedback.is-success {
    background: #f5f5f7;
    color: #0a0a0f;
    border: 1px solid #d4d4d8;
}

.form-feedback.is-error {
    background: #f5f5f7;
    color: #52525b;
    border: 1px solid #d4d4d8;
}

/* ===================================================
   Footer
   =================================================== */

.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.55);
    padding: 4rem 0 2rem;
    flex-shrink: 0;
    margin-top: auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-dark);
}

.footer__brand img {
    height: 28px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 1;
    margin-bottom: 1rem;
}

.footer__brand p {
    font-size: 0.8125rem;
    line-height: 1.65;
    max-width: 260px;
}

.footer__col h4 {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer__col nav {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer__col a {
    font-size: 0.8125rem;
    transition: color 0.2s;
}

.footer__col a:hover { color: var(--white); }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 0.75rem;
}

.footer__legal {
    display: flex;
    gap: 1.25rem;
}

.footer__legal a {
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.6875rem;
    text-transform: uppercase;
}

.footer__legal a:hover { color: var(--white); }

/* ===================================================
   Modal
   =================================================== */

.modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    border: none;
    padding: 0;
    background: rgba(12,18,34,0.75);
    backdrop-filter: blur(4px);
}

.modal::backdrop { background: transparent; }

.modal__inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: var(--white);
    max-width: 880px;
    width: 100%;
    max-height: 85vh;
    overflow: auto;
    animation: modalIn 0.35s var(--ease);
}

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

.modal__close {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 2px;
    transition: background 0.2s;
}

.modal__close:hover { background: rgba(255,255,255,0.2); }

.modal__image-wrap {
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    border-right: 1px solid var(--border);
}

.modal__image {
    max-height: 360px;
    width: auto;
    object-fit: contain;
}

.modal__info {
    padding: 2.5rem 2rem;
}

.modal__category {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.modal__title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0.5rem 0 0.25rem;
    line-height: 1.2;
}

.modal__subtitle {
    font-size: 0.875rem;
    color: var(--gold-dark);
    font-weight: 500;
    margin-bottom: 1rem;
}

.modal__desc {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.modal__ingredients h3 {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 0.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--border);
}

.modal__ingredients p {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================================
   Reveal
   =================================================== */

.reveal {
    opacity: 1;
    transform: none;
}

.reveal.is-visible {
    opacity: 1;
    transform: none;
}

/* ===================================================
   Responsive
   =================================================== */

@media (max-width: 1024px) {
    .hero__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .trust__grid { grid-template-columns: repeat(2, 1fr); }
    .corporate__grid { grid-template-columns: 1fr; }
    .corporate__statement { grid-template-columns: 1fr; gap: 1.5rem; }
    .categories__grid { grid-template-columns: 1fr; }
    .products__head { grid-template-columns: 1fr; gap: 1rem; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .contact__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer__top { grid-template-columns: 1fr 1fr; }
    .modal__content { grid-template-columns: 1fr; }
    .modal__image-wrap { border-right: none; border-bottom: 1px solid var(--border); }
}

@media (max-width: 768px) {
    .section { padding: 4rem 0; }

    .nav, .header__actions { display: none; }
    .nav-toggle { display: flex; }

    .trust__grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .product-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .cta-band__inner { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
    .footer__top { grid-template-columns: 1fr; gap: 2rem; }
    .footer__bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
    .hero__metrics { gap: 1.5rem; }
    .topbar__right { display: none; }
}

@media (max-width: 480px) {
    .hero__actions { flex-direction: column; }
    .hero__actions .btn { width: 100%; justify-content: center; }
    .contact__form { padding: 1.25rem; }
}

/* ===================================================
   Page Layout
   =================================================== */

.page-hero {
    background: var(--navy);
    color: var(--white);
    padding: 3rem 0;
}

.page-hero__inner {
    max-width: var(--container);
    text-align: left;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
}

.breadcrumb a:hover { color: var(--white); }
.breadcrumb__sep { opacity: 0.4; }

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    line-height: 1.15;
}

.page-hero__subtitle {
    margin-top: 0.75rem;
    color: rgba(255,255,255,0.65);
    max-width: 640px;
    line-height: 1.7;
}

.page-content {
    padding: 3.5rem 0 5rem;
}

.prose { max-width: 820px; }
.prose .lead {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.prose p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.prose a {
    color: var(--gold-dark);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.prose h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy);
    margin: 2rem 0 0.75rem;
}

.section-cta { text-align: center; margin-top: 2rem; }

/* Home */
.home-hero {
    background: var(--white);
    padding: 4rem 0;
    border-bottom: 1px solid var(--border);
}

.home-hero__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: start;
}

.home-hero__tag {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 1rem;
}

.home-hero__title {
    font-family: var(--font-body);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 1rem;
}

.home-hero__lead {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.75rem;
}

.home-hero__actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.discover-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.discover-card {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.25rem;
    background: var(--off-white);
    border: 1px solid var(--border);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.discover-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow-sm);
}

.discover-card__label {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.discover-card strong {
    font-family: var(--font-display);
    font-size: 1.125rem;
    color: var(--navy);
}

.discover-card__link {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.brand-statement {
    background: var(--navy);
    padding: 3rem 0;
}

.brand-statement__inner h2 {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}

.stats-band {
    background: var(--off-white);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 0;
}

.stats-band__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.stats-band__item strong {
    display: block;
    font-family: var(--font-body);
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.1;
    margin-bottom: 0.35rem;
}

.stats-band__item span {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.home-product-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.home-product-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    overflow: hidden;
}

.home-product-card__img {
    aspect-ratio: 1;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem;
}

.home-product-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-product-card__body {
    padding: 0.875rem 1rem 1rem;
}

.home-product-card__body span {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
}

.home-product-card__body h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--navy);
    margin-top: 0.25rem;
}

.global-band {
    background: var(--gold);
    padding: 3rem 0;
}

.global-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.global-band__tag {
    font-size: 0.8125rem;
    font-weight: 600;
    color: rgba(12,18,34,0.6);
    margin-bottom: 0.5rem;
}

.global-band h2 {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.5vw, 1.625rem);
    color: var(--navy);
    max-width: 640px;
    line-height: 1.35;
}

.home-news__tag {
    text-align: center;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gold-dark);
    margin-bottom: 1.5rem;
}

.home-news__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.news-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2rem;
}

.news-card__label {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.news-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy);
    margin: 0.5rem 0 0.75rem;
}

.news-card p {
    color: var(--text-secondary);
    font-size: 0.875rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.news-card a {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gold-dark);
}

/* Corporate pages */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 2rem 0;
}

.vm-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 1.5rem;
}

.vm-card h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

/* History page */
.page-history .page-hero {
    background:
        linear-gradient(135deg, var(--navy) 0%, #14141c 48%, #1e1e28 100%);
    padding: 3.75rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-history .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 90% at 0% 50%, rgba(10, 10, 15, 0.18), transparent 58%),
        radial-gradient(ellipse 40% 70% at 100% 0%, rgba(10, 10, 15, 0.1), transparent 50%);
    pointer-events: none;
}

.page-history .page-hero__inner {
    position: relative;
}

.page-history .page-content {
    padding-top: 2.75rem;
}

.history-page {
    display: flex;
    flex-direction: column;
    gap: 3.75rem;
}

.history-page .vision-mission-grid {
    margin: 0;
}

/* Stagger children when parent enters view */
.history-page .reveal-child {
    opacity: 0;
    transform: translateY(18px);
    transition:
        opacity 0.55s var(--ease),
        transform 0.55s var(--ease);
    transition-delay: var(--delay, 0s);
}

.history-page .reveal.is-visible .reveal-child {
    opacity: 1;
    transform: translateY(0);
}

/* Section dividers */
.history-divider {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    width: 100%;
}

.history-divider__dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.4s, transform 0.4s var(--ease-spring);
}

.history-divider.is-visible .history-divider__dot {
    opacity: 1;
    transform: scale(1);
}

.history-divider__dot--pulse {
    box-shadow: 0 0 0 0 rgba(10, 10, 15, 0.45);
}

.history-divider.is-animated .history-divider__dot--pulse {
    animation: historyDotPulse 2.4s ease-in-out infinite;
}

.history-divider__line {
    flex: 1;
    height: 1px;
    background: rgba(10, 10, 15, 0.08);
    overflow: hidden;
}

.history-divider__line-fill {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), rgba(10, 10, 15, 0.2));
    transform: scaleX(0);
    transform-origin: left center;
}

.history-divider__line--reverse .history-divider__line-fill {
    transform-origin: right center;
}

.history-divider.is-animated .history-divider__line-fill {
    animation: historyLineGrow 1s var(--ease) forwards;
}

.history-divider.is-animated .history-divider__line--reverse .history-divider__line-fill {
    animation-delay: 0.18s;
}

.history-divider__label {
    flex-shrink: 0;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.5s var(--ease) 0.25s, transform 0.5s var(--ease) 0.25s;
}

.history-divider.is-animated .history-divider__label {
    opacity: 1;
    transform: translateY(0);
}

@keyframes historyLineGrow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

@keyframes historyDotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(10, 10, 15, 0.35); }
    50% { box-shadow: 0 0 0 8px rgba(10, 10, 15, 0); }
}

.history-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(240px, 0.8fr);
    gap: 2rem;
    align-items: start;
    padding: 2rem 2.25rem;
    background:
        linear-gradient(135deg, rgba(10, 10, 15, 0.07) 0%, rgba(255, 255, 255, 0.92) 42%, rgba(10, 10, 15, 0.03) 100%);
    border: 1px solid rgba(10, 10, 15, 0.14);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(10, 10, 15, 0.04);
}

.history-intro__content.prose {
    max-width: none;
}

.history-intro__aside {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.history-stat {
    padding: 1.25rem 1.375rem;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.05) 0%, var(--white) 100%);
    border: 1px solid rgba(10, 10, 15, 0.16);
    border-radius: var(--radius-md);
    transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.history-stat:hover {
    transform: translateY(-2px);
    border-color: rgba(10, 10, 15, 0.32);
    box-shadow: 0 10px 28px rgba(10, 10, 15, 0.1);
}

.history-stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--navy) 20%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.history-stat span {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.vm-card--history {
    border-radius: var(--radius-md);
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.vm-card--history:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(10, 10, 15, 0.07);
}

.vision-mission-grid .vm-card--history:first-child {
    background: linear-gradient(145deg, rgba(10, 10, 15, 0.1) 0%, rgba(255, 255, 255, 0.98) 55%);
    border-color: rgba(10, 10, 15, 0.22);
}

.vision-mission-grid .vm-card--history:last-child {
    background: linear-gradient(145deg, rgba(10, 10, 15, 0.05) 0%, rgba(255, 255, 255, 0.98) 55%);
    border-color: rgba(10, 10, 15, 0.1);
}

.vm-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--btn-radius);
    background: rgba(10, 10, 15, 0.1);
    color: var(--primary-dark);
}

.history-section {
    padding: 2.25rem 2rem;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.025) 0%, rgba(10, 10, 15, 0.04) 100%);
    border: 1px solid rgba(10, 10, 15, 0.06);
    border-radius: var(--radius-lg);
}

.history-section__head {
    margin-bottom: 2rem;
}

.history-section__title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--navy);
    letter-spacing: -0.02em;
}

.history-timeline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0;
    position: relative;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 0.6875rem;
    top: 0.5rem;
    bottom: 0.5rem;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), rgba(10, 10, 15, 0.15));
    transform: scaleY(0);
    transform-origin: top center;
}

.history-timeline.is-animated::before {
    animation: historyTimelineDraw 1.4s var(--ease) forwards;
}

@keyframes historyTimelineDraw {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

.history-timeline__item {
    display: grid;
    grid-template-columns: 7.5rem minmax(0, 1fr);
    gap: 1.5rem;
    padding: 0 0 2rem 0;
    position: relative;
}

.history-timeline__item:last-child {
    padding-bottom: 0;
}

.history-timeline__item::before {
    content: '';
    position: absolute;
    left: 0.6875rem;
    top: 0.45rem;
    width: 12px;
    height: 12px;
    margin-left: -5px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--primary);
    box-shadow: 0 0 0 4px rgba(10, 10, 15, 0.12);
    z-index: 1;
    transform: scale(0);
    opacity: 0;
}

.history-timeline.is-animated .history-timeline__item::before {
    animation: historyTimelineDot 0.45s var(--ease-spring) forwards;
    animation-delay: calc(0.35s + var(--delay, 0s));
}

@keyframes historyTimelineDot {
    from { transform: scale(0); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.history-timeline__year {
    padding-left: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-dark);
    line-height: 1.6;
}

.history-timeline__body {
    padding: 1.375rem 1.5rem;
    background: var(--white);
    border: 1px solid rgba(10, 10, 15, 0.12);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius-md);
    box-shadow: 0 8px 24px rgba(10, 10, 15, 0.04);
    transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.history-timeline__item:hover .history-timeline__body {
    transform: translateX(4px);
    box-shadow: 0 12px 32px rgba(10, 10, 15, 0.1);
    border-color: rgba(10, 10, 15, 0.22);
}

.history-timeline__body h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.history-timeline__body p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.history-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.95fr);
    gap: 2rem;
    align-items: start;
    padding: 2rem 2.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(10, 10, 15, 0.05) 100%);
    border: 1px solid rgba(10, 10, 15, 0.07);
    border-radius: var(--radius-lg);
}

.history-story .prose {
    max-width: none;
}

.history-story .prose h2 {
    margin-top: 0;
}

.history-pillars {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.history-pillar {
    padding: 1.25rem 1.375rem;
    background: var(--white);
    border: 1px solid rgba(10, 10, 15, 0.08);
    border-radius: var(--radius-md);
    transition: transform 0.25s var(--ease), border-color 0.25s, box-shadow 0.25s;
}

.history-pillar:hover {
    transform: translateY(-2px);
    border-color: rgba(10, 10, 15, 0.25);
    box-shadow: 0 10px 28px rgba(10, 10, 15, 0.08);
}

.history-pillar:nth-child(1) .history-pillar__icon {
    background: rgba(10, 10, 15, 0.14);
    color: var(--primary-dark);
}

.history-pillar:nth-child(2) .history-pillar__icon {
    background: rgba(10, 10, 15, 0.07);
    color: var(--navy);
}

.history-pillar:nth-child(3) .history-pillar__icon {
    background: rgba(10, 10, 15, 0.1);
    color: var(--primary-dark);
}

.history-pillar__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-bottom: 0.75rem;
    border-radius: var(--btn-radius);
}

.history-pillar h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.375rem;
}

.history-pillar p {
    font-size: 0.8125rem;
    line-height: 1.65;
    color: var(--text-muted);
}

.history-global__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2.5rem;
    align-items: stretch;
    padding: 2.75rem 3rem;
    background: linear-gradient(145deg, var(--navy) 0%, #14141c 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.history-global__inner::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: min(420px, 55%);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 10, 15, 0.12) 0%, transparent 68%);
    pointer-events: none;
}

.history-global__inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(10, 10, 15, 0.06) 50%,
        transparent 60%
    );
    transform: translateX(-120%);
    pointer-events: none;
}

.history-global__inner.is-animated::before {
    animation: historyGlobalShimmer 2.2s var(--ease) 0.3s forwards;
}

@keyframes historyGlobalShimmer {
    to { transform: translateX(120%); }
}

.history-global__content,
.history-global__panel {
    position: relative;
    z-index: 1;
}

.history-global__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 0.5rem;
}

.history-global__content .section-label {
    color: rgba(255, 255, 255, 0.72);
}

.history-global__content .section-label::before {
    background: var(--primary);
}

.history-global__content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin: 0.5rem 0 1.125rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.history-global__content p {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
    max-width: 58ch;
    margin: 0;
}

.history-global__panel {
    display: flex;
    align-items: stretch;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
}

.history-global__panel-head {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.history-global__panel-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--btn-radius);
    background: rgba(10, 10, 15, 0.15);
    color: var(--primary);
}

.history-global__panel-label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.history-countries {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.625rem;
}

.history-countries li {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.625rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-align: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--btn-radius);
    opacity: 0;
    transform: translateY(10px) scale(0.96);
    transition:
        opacity 0.4s var(--ease),
        transform 0.4s var(--ease-spring),
        background 0.25s,
        border-color 0.25s;
    transition-delay: var(--delay, 0s);
}

.history-countries li:last-child:nth-child(odd) {
    grid-column: 2;
    max-width: none;
    margin: 0;
    width: auto;
}

.history-global.is-visible .history-countries li {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.history-countries li:hover {
    background: rgba(10, 10, 15, 0.16);
    border-color: rgba(10, 10, 15, 0.4);
}

/* Full-bleed image banners between sections */
.history-banner {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: clamp(220px, 28vw, 360px);
    overflow: hidden;
    border-radius: 0;
}

.history-banner__media {
    position: absolute;
    inset: 0;
}

.history-banner__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 1.2s var(--ease);
}

.history-banner.is-visible .history-banner__media img {
    transform: scale(1);
}

.history-banner:hover .history-banner__media img {
    transform: scale(1.06);
}

.history-banner__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10, 10, 15, 0.82) 0%, rgba(10, 10, 15, 0.45) 42%, rgba(10, 10, 15, 0.2) 100%);
}

.history-banner--mint .history-banner__overlay {
    background:
        linear-gradient(90deg, rgba(0, 40, 28, 0.84) 0%, rgba(10, 10, 15, 0.5) 45%, rgba(10, 10, 15, 0.22) 100%);
}

.history-banner--warm .history-banner__overlay {
    background:
        linear-gradient(90deg, rgba(10, 10, 15, 0.78) 0%, rgba(0, 60, 40, 0.42) 50%, rgba(10, 10, 15, 0.18) 100%);
}

.history-banner__caption {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 2rem);
    min-height: clamp(220px, 28vw, 360px);
    justify-content: center;
    color: var(--white);
}

.history-banner__tag {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.35rem 0.75rem;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(10, 10, 15, 0.28);
    border: 1px solid rgba(10, 10, 15, 0.45);
    border-radius: 999px;
}

.history-banner__title {
    font-family: var(--font-display);
    font-size: clamp(1.375rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    max-width: 18ch;
}

.history-banner__subtitle {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    max-width: 42ch;
}

.history-cta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.03) 0%, rgba(10, 10, 15, 0.06) 100%);
    border: 1px solid rgba(10, 10, 15, 0.12);
    border-radius: var(--radius-lg);
}

.history-cta__link {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.375rem 1.5rem;
    background: var(--white);
    border: 1px solid rgba(10, 10, 15, 0.08);
    border-radius: var(--radius-md);
    transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
}

.history-cta__link::after {
    content: '→';
    margin-top: 0.375rem;
    font-size: 1rem;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s, transform 0.25s var(--ease);
}

.history-cta__link:hover {
    border-color: rgba(10, 10, 15, 0.35);
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.04) 0%, var(--white) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(10, 10, 15, 0.12);
}

.history-cta__link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.history-cta__link strong {
    font-size: 0.9375rem;
    color: var(--navy);
}

.history-cta__link span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

@media (prefers-reduced-motion: reduce) {
    .history-page .reveal-child,
    .history-divider__label,
    .history-countries li {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .history-banner__media img {
        transform: none;
        transition: none;
    }

    .history-timeline::before,
    .history-timeline__item::before,
    .history-divider__line-fill,
    .history-global__inner::before {
        animation: none !important;
        transform: none;
    }

    .history-timeline.is-animated::before {
        transform: scaleY(1);
    }

    .history-timeline.is-animated .history-timeline__item::before {
        transform: scale(1);
        opacity: 1;
    }

    .history-divider.is-animated .history-divider__line-fill {
        transform: scaleX(1);
    }
}

@media (max-width: 1024px) {
    .history-intro,
    .history-story,
    .history-global__inner {
        grid-template-columns: 1fr;
    }

    .history-intro,
    .history-story,
    .history-section {
        padding: 1.5rem;
    }

    .history-intro__aside {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .history-stat {
        flex: 1 1 140px;
    }

    .history-cta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .history-page {
        gap: 2.5rem;
    }

    .history-timeline__item {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding-left: 1.75rem;
    }

    .history-timeline__year {
        padding-left: 0;
    }

    .history-global__inner {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

    .history-global__content {
        padding-right: 0;
    }

    .history-global__panel {
        padding: 1.5rem;
    }

    .history-countries {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .history-countries li:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }

    .history-banner__title {
        max-width: none;
    }

    .history-banner__caption {
        padding-inline: 1.25rem;
    }

    .history-cta {
        padding: 1rem;
    }
}

.board-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.board-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.125rem;
    height: 100%;
    background: var(--white);
    border: 1px solid rgba(10, 10, 15, 0.08);
    border-radius: var(--radius-lg);
    padding: 2rem 1.75rem 1.75rem;
    box-shadow:
        0 1px 2px rgba(10, 10, 15, 0.04),
        0 12px 32px rgba(10, 10, 15, 0.04);
    transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s, background 0.3s, color 0.3s;
    overflow: hidden;
}

.board-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid transparent;
    transition: border-color 0.3s;
    pointer-events: none;
}

.board-card:hover {
    transform: translateY(-4px);
    background: #f0f0f2;
    border-color: rgba(10, 10, 15, 0.16);
    box-shadow: 0 16px 40px rgba(10, 10, 15, 0.08);
}

.board-card:hover::after {
    border-color: rgba(10, 10, 15, 0.06);
}

.board-card__num {
    position: absolute;
    top: 1rem;
    right: 1.125rem;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: rgba(10, 10, 15, 0.2);
    transition: color 0.3s;
}

.board-card:hover .board-card__num {
    color: rgba(10, 10, 15, 0.35);
}

.board-card__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(10, 10, 15, 0.06);
    border: 1px solid rgba(10, 10, 15, 0.1);
    color: #0a0a0f;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.board-card:hover .board-card__avatar {
    background: rgba(10, 10, 15, 0.1);
    border-color: rgba(10, 10, 15, 0.18);
    color: #0a0a0f;
}

.board-card__meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
}

.board-card__role {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0a0a0f;
    line-height: 1.3;
    transition: color 0.3s;
}

.board-card__focus {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    padding: 0.25rem 0.625rem;
    background: rgba(10, 10, 15, 0.05);
    border: 1px solid rgba(10, 10, 15, 0.08);
    border-radius: 999px;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.board-card:hover .board-card__focus {
    background: rgba(10, 10, 15, 0.08);
    border-color: rgba(10, 10, 15, 0.14);
    color: #52525b;
}

.board-card__quote {
    margin: 0;
    padding: 0;
    border: none;
    flex: 1;
    display: flex;
    align-items: center;
}

.board-card__quote p {
    margin: 0;
    font-family: var(--font-body, inherit);
    font-size: 0.9375rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1.75;
    color: var(--text-secondary);
    letter-spacing: -0.01em;
    transition: color 0.3s;
}

.board-card:hover .board-card__quote p {
    color: #3f3f46;
}

.theme-glass.page-board .board-card:hover {
    background: #f0f0f2;
    border-color: rgba(10, 10, 15, 0.16);
    box-shadow: 0 16px 40px rgba(10, 10, 15, 0.08);
}

.board-section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.board-section-head--compact {
    margin-bottom: 1.75rem;
}

.board-section-head__title {
    margin: 0.625rem 0 0;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0a0a0f;
    line-height: 1.15;
}

.board-section-head__desc {
    margin: 0.875rem 0 0;
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-secondary);
}

.board-pillars {
    padding-top: 0.5rem;
}

.board-pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.board-pillar {
    position: relative;
    padding: 1.75rem 1.625rem;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.03) 0%, var(--white) 100%);
    border: 1px solid rgba(10, 10, 15, 0.1);
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.board-pillar:hover {
    transform: translateY(-3px);
    border-color: rgba(10, 10, 15, 0.22);
    box-shadow: 0 14px 36px rgba(10, 10, 15, 0.07);
}

.board-pillar__num {
    display: block;
    margin-bottom: 0.875rem;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: rgba(10, 10, 15, 0.28);
}

.board-pillar h3 {
    margin: 0 0 0.625rem;
    font-size: 1.0625rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #0a0a0f;
}

.board-pillar p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.board-band {
    margin-top: 0.25rem;
}

.board-band__inner {
    padding: 2.25rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0f 0%, #14141c 48%, #1e1e28 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.board-band__label {
    margin: 0 0 0.875rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.board-band__quote {
    margin: 0;
    padding: 0;
    border: none;
    max-width: 56ch;
    margin-inline: auto;
}

.board-band__quote p {
    margin: 0;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    font-weight: 500;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: -0.01em;
}

/* Legacy — keep for glass theme compat */
.board-card--featured {
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.07) 0%, rgba(255, 255, 255, 0.98) 48%);
    border-color: rgba(10, 10, 15, 0.18);
}

.board-card__head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.board-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--btn-radius);
    background: rgba(10, 10, 15, 0.12);
    color: var(--primary-dark);
}

.board-card--featured .board-card__icon {
    width: 44px;
    height: 44px;
    background: rgba(10, 10, 15, 0.16);
}

.board-card--featured .board-card__quote p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: none;
}

/* Board page */
.page-board .page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #14141c 48%, #1e1e28 100%);
    padding: 3.75rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-board .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 90% at 0% 50%, rgba(10, 10, 15, 0.18), transparent 58%),
        radial-gradient(ellipse 40% 70% at 100% 0%, rgba(10, 10, 15, 0.1), transparent 50%);
    pointer-events: none;
}

.page-board .page-hero__inner {
    position: relative;
}

.page-board .page-content {
    padding-top: 2.75rem;
}

.board-page {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.board-intro {
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.06) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(10, 10, 15, 0.14);
    border-radius: var(--radius-lg);
}

.board-intro__text {
    margin: 0.625rem 0 0;
    max-width: 62ch;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.board-page .reveal-child,
.board-page .board-card.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.5s var(--ease),
        transform 0.5s var(--ease);
    transition-delay: var(--delay, 0s);
}

.board-page .reveal.is-visible .reveal-child,
.board-page .board-card.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 900px) {
    .board-grid,
    .board-pillars__grid {
        grid-template-columns: 1fr;
    }

    .board-card {
        padding: 1.75rem 1.5rem;
    }

    .board-band__inner {
        padding: 1.75rem 1.5rem;
    }
}

/* Global network page */
.page-global .page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #14141c 48%, #1e1e28 100%);
    padding: 3.75rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-global .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 90% at 0% 50%, rgba(10, 10, 15, 0.18), transparent 58%),
        radial-gradient(ellipse 40% 70% at 100% 0%, rgba(10, 10, 15, 0.1), transparent 50%);
    pointer-events: none;
}

.page-global .page-hero__inner {
    position: relative;
}

.page-global .page-content {
    padding-top: 2.75rem;
}

.global-page {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.global-page .reveal-child,
.global-page .global-region.reveal,
.global-page .global-cta__link.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.5s var(--ease),
        transform 0.5s var(--ease);
    transition-delay: var(--delay, 0s);
}

.global-page .reveal.is-visible .reveal-child,
.global-page .global-region.reveal.is-visible,
.global-page .global-cta__link.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.global-intro {
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.06) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(10, 10, 15, 0.14);
    border-radius: var(--radius-lg);
}

.global-intro__lead {
    margin: 0.625rem 0 0.875rem;
    max-width: 68ch;
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.8;
    color: var(--navy);
}

.global-intro__text {
    margin: 0;
    max-width: 68ch;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.global-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.global-stat {
    padding: 1.25rem 1.375rem;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.05) 0%, var(--white) 100%);
    border: 1px solid rgba(10, 10, 15, 0.16);
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.global-stat:hover {
    transform: translateY(-2px);
    border-color: rgba(10, 10, 15, 0.32);
    box-shadow: 0 10px 28px rgba(10, 10, 15, 0.1);
}

.global-stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--navy) 20%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.global-stat span {
    display: block;
    margin-top: 0.375rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.global-regions__head {
    margin-bottom: 1.5rem;
}

.global-regions__head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-top: 0.375rem;
}

.global-regions__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.global-region {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.75rem;
    background: var(--white);
    border: 1px solid rgba(10, 10, 15, 0.08);
    border-radius: var(--radius-md);
    transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.global-region:hover {
    transform: translateY(-3px);
    border-color: rgba(10, 10, 15, 0.22);
    box-shadow: 0 14px 36px rgba(10, 10, 15, 0.07);
}

.global-region__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--btn-radius);
    background: rgba(10, 10, 15, 0.12);
    color: var(--primary-dark);
}

.global-region h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}

.global-region p {
    margin: 0;
    font-size: 0.9375rem;
    font-style: normal;
    line-height: 1.75;
    color: var(--text-secondary);
}

.global-network__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2.5rem;
    align-items: stretch;
    padding: 2.75rem 3rem;
    background: linear-gradient(145deg, var(--navy) 0%, #14141c 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.global-network__inner::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: min(420px, 55%);
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 10, 15, 0.12) 0%, transparent 68%);
    pointer-events: none;
}

.global-network__content,
.global-network__panel {
    position: relative;
    z-index: 1;
}

.global-network__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.global-network__content .section-label {
    color: rgba(255, 255, 255, 0.72);
}

.global-network__content .section-label::before {
    background: var(--primary);
}

.global-network__content h2 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    margin: 0.5rem 0 1.125rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.global-network__content p {
    margin: 0;
    font-size: 0.9375rem;
    font-style: normal;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
    max-width: 58ch;
}

.global-network__panel {
    display: flex;
    align-items: stretch;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    overflow: visible;
    min-height: 0;
}

.global-map {
    position: relative;
    width: 100%;
    flex: 1;
}

.global-map__svg {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 2 / 1;
}

.global-map__land path {
    fill: rgba(255, 255, 255, 0.16);
    stroke: rgba(255, 255, 255, 0.32);
    stroke-width: 0.6;
    stroke-linejoin: round;
}

.global-map__network {
    pointer-events: auto;
}

.global-map__links {
    pointer-events: none;
}

.global-map__nodes {
    pointer-events: auto;
}

.global-map__point {
    pointer-events: all;
    cursor: default;
}

.global-map__label-bg {
    fill: rgba(10, 10, 15, 0.82);
    opacity: 0;
    transition: opacity 0.18s ease;
}

.global-map__label {
    fill: rgba(255, 255, 255, 0.92);
    font-size: 8px;
    font-weight: 600;
    font-family: Manrope, system-ui, sans-serif;
    opacity: 0;
    transition: opacity 0.18s ease;
    pointer-events: none;
}

.global-map__point.is-hub .global-map__label,
.global-map__point.is-hub .global-map__label-bg {
    opacity: 1;
}

.global-map__point.is-hub .global-map__label {
    font-size: 10px;
    font-weight: 700;
}

.global-map__point:hover .global-map__label,
.global-map__point:hover .global-map__label-bg,
.global-map__point:focus-within .global-map__label,
.global-map__point:focus-within .global-map__label-bg {
    opacity: 1;
}

.global-countries {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.625rem;
}

.global-countries li {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.625rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    text-align: center;
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--btn-radius);
    transition: background 0.25s, border-color 0.25s;
}

.global-countries li:hover {
    background: rgba(10, 10, 15, 0.16);
    border-color: rgba(10, 10, 15, 0.4);
}

.global-cta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.03) 0%, rgba(10, 10, 15, 0.06) 100%);
    border: 1px solid rgba(10, 10, 15, 0.12);
    border-radius: var(--radius-lg);
}

.global-cta__link {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.375rem 1.5rem;
    background: var(--white);
    border: 1px solid rgba(10, 10, 15, 0.08);
    border-radius: var(--radius-md);
    transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
}

.global-cta__link::after {
    content: '→';
    margin-top: 0.375rem;
    font-size: 1rem;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s, transform 0.25s var(--ease);
}

.global-cta__link:hover {
    border-color: rgba(10, 10, 15, 0.35);
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.04) 0%, var(--white) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(10, 10, 15, 0.12);
}

.global-cta__link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.global-cta__link strong {
    font-size: 0.9375rem;
    color: var(--navy);
}

.global-cta__link span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .global-stats,
    .global-regions__grid,
    .global-network__inner,
    .global-cta {
        grid-template-columns: 1fr;
    }

    .global-network__inner {
        padding: 2rem 1.5rem;
    }

    .global-countries {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .global-page {
        gap: 2.5rem;
    }

    .global-intro {
        padding: 1.5rem;
    }

    .global-intro__lead,
    .global-intro__text {
        max-width: none;
    }
}

/* Principles page */
.page-principles .page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #14141c 48%, #1e1e28 100%);
    padding: 3.75rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-principles .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 90% at 0% 50%, rgba(10, 10, 15, 0.18), transparent 58%),
        radial-gradient(ellipse 40% 70% at 100% 0%, rgba(10, 10, 15, 0.1), transparent 50%);
    pointer-events: none;
}

.page-principles .page-hero__inner {
    position: relative;
}

.page-principles .page-content {
    padding-top: 2.75rem;
}

.principles-page {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.principles-page .reveal-child,
.principles-page .principle-card.reveal,
.principles-page .principles-commitment.reveal,
.principles-page .principles-cta__link.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.5s var(--ease),
        transform 0.5s var(--ease);
    transition-delay: var(--delay, 0s);
}

.principles-page .reveal.is-visible .reveal-child,
.principles-page .principle-card.reveal.is-visible,
.principles-page .principles-commitment.reveal.is-visible,
.principles-page .principles-cta__link.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.principles-intro {
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.06) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(10, 10, 15, 0.14);
    border-radius: var(--radius-lg);
}

.principles-intro__lead {
    margin: 0.625rem 0 0.875rem;
    max-width: 68ch;
    font-size: 1.0625rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1.8;
    color: var(--navy);
}

.principles-intro__text {
    margin: 0;
    max-width: 68ch;
    font-size: 1rem;
    font-style: normal;
    line-height: 1.8;
    color: var(--text-secondary);
}

.principles-section__head,
.principles-commitments__head {
    margin-bottom: 1.5rem;
}

.principles-section__head h2,
.principles-commitments__head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-top: 0.375rem;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.principle-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.75rem;
    background: var(--white);
    border: 1px solid rgba(10, 10, 15, 0.08);
    border-radius: var(--radius-md);
    transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.principle-card:hover {
    transform: translateY(-3px);
    border-color: rgba(10, 10, 15, 0.22);
    box-shadow: 0 14px 36px rgba(10, 10, 15, 0.07);
}

.principle-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--btn-radius);
    background: rgba(10, 10, 15, 0.12);
    color: var(--primary-dark);
}

.principle-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}

.principle-card p {
    margin: 0;
    font-size: 0.9375rem;
    font-style: normal;
    line-height: 1.75;
    color: var(--text-secondary);
}

.principles-commitments__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.principles-commitment {
    padding: 2rem 2.25rem;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.04) 0%, rgba(10, 10, 15, 0.06) 100%);
    border: 1px solid rgba(10, 10, 15, 0.14);
    border-radius: var(--radius-lg);
    transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.principles-commitment:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(10, 10, 15, 0.1);
}

.principles-commitment h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.principles-commitment p {
    margin: 0;
    font-size: 0.9375rem;
    font-style: normal;
    line-height: 1.8;
    color: var(--text-secondary);
}

.principles-cta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.03) 0%, rgba(10, 10, 15, 0.06) 100%);
    border: 1px solid rgba(10, 10, 15, 0.12);
    border-radius: var(--radius-lg);
}

.principles-cta__link {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.375rem 1.5rem;
    background: var(--white);
    border: 1px solid rgba(10, 10, 15, 0.08);
    border-radius: var(--radius-md);
    transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
}

.principles-cta__link::after {
    content: '→';
    margin-top: 0.375rem;
    font-size: 1rem;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s, transform 0.25s var(--ease);
}

.principles-cta__link:hover {
    border-color: rgba(10, 10, 15, 0.35);
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.04) 0%, var(--white) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(10, 10, 15, 0.12);
}

.principles-cta__link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.principles-cta__link strong {
    font-size: 0.9375rem;
    color: var(--navy);
}

.principles-cta__link span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .principles-grid,
    .principles-commitments__grid,
    .principles-cta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .principles-page {
        gap: 2.5rem;
    }

    .principles-intro,
    .principles-commitment {
        padding: 1.5rem;
    }

    .principles-intro__lead,
    .principles-intro__text {
        max-width: none;
    }
}

/* Social responsibility page */
.page-social .page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #14141c 48%, #1e1e28 100%);
    padding: 3.75rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-social .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 90% at 0% 50%, rgba(10, 10, 15, 0.18), transparent 58%),
        radial-gradient(ellipse 40% 70% at 100% 0%, rgba(10, 10, 15, 0.1), transparent 50%);
    pointer-events: none;
}

.page-social .page-hero__inner {
    position: relative;
}

.page-social .page-content {
    padding-top: 2.75rem;
}

.social-page {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.social-page .reveal-child,
.social-page .social-project.reveal,
.social-page .social-cta__link.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.5s var(--ease),
        transform 0.5s var(--ease);
    transition-delay: var(--delay, 0s);
}

.social-page .reveal.is-visible .reveal-child,
.social-page .social-project.reveal.is-visible,
.social-page .social-cta__link.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.social-intro {
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.06) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(10, 10, 15, 0.14);
    border-radius: var(--radius-lg);
}

.social-intro__lead {
    margin: 0.625rem 0 0.875rem;
    max-width: 68ch;
    font-size: 1.0625rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1.8;
    color: var(--navy);
}

.social-intro__text {
    margin: 0;
    max-width: 68ch;
    font-size: 1rem;
    font-style: normal;
    line-height: 1.8;
    color: var(--text-secondary);
}

.social-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.social-stat {
    padding: 1.25rem 1.375rem;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.05) 0%, var(--white) 100%);
    border: 1px solid rgba(10, 10, 15, 0.16);
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.social-stat:hover {
    transform: translateY(-2px);
    border-color: rgba(10, 10, 15, 0.32);
    box-shadow: 0 10px 28px rgba(10, 10, 15, 0.1);
}

.social-stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--navy) 20%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.social-stat span {
    display: block;
    margin-top: 0.375rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.social-projects__head {
    margin-bottom: 1.5rem;
}

.social-projects__head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-top: 0.375rem;
}

.social-projects__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.social-project {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    padding: 1.75rem;
    background: var(--white);
    border: 1px solid rgba(10, 10, 15, 0.08);
    border-radius: var(--radius-md);
    transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.social-project:hover {
    transform: translateY(-3px);
    border-color: rgba(10, 10, 15, 0.22);
    box-shadow: 0 14px 36px rgba(10, 10, 15, 0.07);
}

.social-project__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.social-project__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--btn-radius);
    background: rgba(10, 10, 15, 0.12);
    color: var(--primary-dark);
}

.social-project__tag {
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-dark);
    padding: 0.35rem 0.65rem;
    background: rgba(10, 10, 15, 0.1);
    border-radius: 999px;
}

.social-project h3 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--navy);
}

.social-project p {
    margin: 0;
    font-size: 0.9375rem;
    font-style: normal;
    line-height: 1.75;
    color: var(--text-secondary);
}

.social-cta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.03) 0%, rgba(10, 10, 15, 0.06) 100%);
    border: 1px solid rgba(10, 10, 15, 0.12);
    border-radius: var(--radius-lg);
}

.social-cta__link {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.375rem 1.5rem;
    background: var(--white);
    border: 1px solid rgba(10, 10, 15, 0.08);
    border-radius: var(--radius-md);
    transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
}

.social-cta__link::after {
    content: '→';
    margin-top: 0.375rem;
    font-size: 1rem;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s, transform 0.25s var(--ease);
}

.social-cta__link:hover {
    border-color: rgba(10, 10, 15, 0.35);
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.04) 0%, var(--white) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(10, 10, 15, 0.12);
}

.social-cta__link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.social-cta__link strong {
    font-size: 0.9375rem;
    color: var(--navy);
}

.social-cta__link span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .social-stats,
    .social-projects__grid,
    .social-cta {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .social-page {
        gap: 2.5rem;
    }

    .social-intro {
        padding: 1.5rem;
    }

    .social-intro__lead,
    .social-intro__text {
        max-width: none;
    }
}

/* Environment policy page */
.page-environment .page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #14141c 48%, #1e1e28 100%);
    padding: 3.75rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-environment .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 90% at 0% 50%, rgba(10, 10, 15, 0.18), transparent 58%),
        radial-gradient(ellipse 40% 70% at 100% 0%, rgba(10, 10, 15, 0.1), transparent 50%);
    pointer-events: none;
}

.page-environment .page-hero__inner {
    position: relative;
}

.page-environment .page-content {
    padding-top: 2.75rem;
}

.environment-page {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.environment-page .reveal-child,
.environment-page .environment-policy.reveal,
.environment-page .environment-cta__link.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.5s var(--ease),
        transform 0.5s var(--ease);
    transition-delay: var(--delay, 0s);
}

.environment-page .reveal.is-visible .reveal-child,
.environment-page .environment-policy.reveal.is-visible,
.environment-page .environment-cta__link.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.environment-intro {
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.06) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(10, 10, 15, 0.14);
    border-radius: var(--radius-lg);
}

.environment-intro__lead {
    margin: 0.625rem 0 0.875rem;
    max-width: 68ch;
    font-size: 1.0625rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1.8;
    color: var(--navy);
}

.environment-intro__text {
    margin: 0;
    max-width: 68ch;
    font-size: 1rem;
    font-style: normal;
    line-height: 1.8;
    color: var(--text-secondary);
}

.environment-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.environment-stat {
    padding: 1.25rem 1.375rem;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.05) 0%, var(--white) 100%);
    border: 1px solid rgba(10, 10, 15, 0.16);
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.environment-stat:hover {
    transform: translateY(-2px);
    border-color: rgba(10, 10, 15, 0.32);
    box-shadow: 0 10px 28px rgba(10, 10, 15, 0.1);
}

.environment-stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--navy) 20%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.environment-stat span {
    display: block;
    margin-top: 0.375rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.environment-policies__head {
    margin-bottom: 1.5rem;
}

.environment-policies__head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-top: 0.375rem;
}

.environment-policies__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.environment-policy {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem 1.625rem;
    background: var(--white);
    border: 1px solid rgba(10, 10, 15, 0.08);
    border-radius: var(--radius-md);
    transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.environment-policy:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: none;
    justify-self: stretch;
}

.environment-policy:hover {
    transform: translateY(-2px);
    border-color: rgba(10, 10, 15, 0.22);
    box-shadow: 0 12px 32px rgba(10, 10, 15, 0.06);
}

.environment-policy__num {
    flex-shrink: 0;
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--primary-dark);
    padding-top: 0.2rem;
}

.environment-policy__body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.environment-policy__body p {
    margin: 0;
    font-size: 0.9375rem;
    font-style: normal;
    line-height: 1.75;
    color: var(--text-secondary);
}

.environment-band__inner {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem 2.25rem;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.1) 0%, rgba(10, 10, 15, 0.04) 100%);
    border: 1px solid rgba(10, 10, 15, 0.18);
    border-radius: var(--radius-lg);
}

.environment-band__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--btn-radius);
    background: rgba(10, 10, 15, 0.16);
    color: var(--primary-dark);
}

.environment-band__inner h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.625rem;
}

.environment-band__inner p {
    margin: 0;
    max-width: 62ch;
    font-size: 0.9375rem;
    font-style: normal;
    line-height: 1.8;
    color: var(--text-secondary);
}

.environment-cta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.03) 0%, rgba(10, 10, 15, 0.06) 100%);
    border: 1px solid rgba(10, 10, 15, 0.12);
    border-radius: var(--radius-lg);
}

.environment-cta__link {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.375rem 1.5rem;
    background: var(--white);
    border: 1px solid rgba(10, 10, 15, 0.08);
    border-radius: var(--radius-md);
    transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
}

.environment-cta__link::after {
    content: '→';
    margin-top: 0.375rem;
    font-size: 1rem;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s, transform 0.25s var(--ease);
}

.environment-cta__link:hover {
    border-color: rgba(10, 10, 15, 0.35);
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.04) 0%, var(--white) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(10, 10, 15, 0.12);
}

.environment-cta__link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.environment-cta__link strong {
    font-size: 0.9375rem;
    color: var(--navy);
}

.environment-cta__link span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .environment-stats,
    .environment-policies__grid,
    .environment-cta {
        grid-template-columns: 1fr;
    }

    .environment-policy:last-child:nth-child(odd) {
        grid-column: auto;
        max-width: none;
    }
}

@media (max-width: 640px) {
    .environment-page {
        gap: 2.5rem;
    }

    .environment-intro,
    .environment-band__inner {
        padding: 1.5rem;
    }

    .environment-intro__lead,
    .environment-intro__text,
    .environment-band__inner p {
        max-width: none;
    }
}

/* Certificates page */
.page-certificates .page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #14141c 48%, #1e1e28 100%);
    padding: 3.75rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-certificates .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 90% at 0% 50%, rgba(10, 10, 15, 0.18), transparent 58%),
        radial-gradient(ellipse 40% 70% at 100% 0%, rgba(10, 10, 15, 0.1), transparent 50%);
    pointer-events: none;
}

.page-certificates .page-hero__inner {
    position: relative;
}

.page-certificates .page-content {
    padding-top: 2.75rem;
}

.certificates-page {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.certificates-page .reveal-child,
.certificates-page .cert-card.reveal,
.certificates-page .certificates-cta__link.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.5s var(--ease),
        transform 0.5s var(--ease);
    transition-delay: var(--delay, 0s);
}

.certificates-page .reveal.is-visible .reveal-child,
.certificates-page .cert-card.reveal.is-visible,
.certificates-page .certificates-cta__link.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.certificates-intro {
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.06) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(10, 10, 15, 0.14);
    border-radius: var(--radius-lg);
}

.certificates-intro__lead {
    margin: 0.625rem 0 0.875rem;
    max-width: 68ch;
    font-size: 1.0625rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1.8;
    color: var(--navy);
}

.certificates-intro__text {
    margin: 0;
    max-width: 68ch;
    font-size: 1rem;
    font-style: normal;
    line-height: 1.8;
    color: var(--text-secondary);
}

.certificates-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.certificates-stat {
    padding: 1.25rem 1.375rem;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.05) 0%, var(--white) 100%);
    border: 1px solid rgba(10, 10, 15, 0.16);
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.certificates-stat:hover {
    transform: translateY(-2px);
    border-color: rgba(10, 10, 15, 0.32);
    box-shadow: 0 10px 28px rgba(10, 10, 15, 0.1);
}

.certificates-stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--navy) 20%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.certificates-stat span {
    display: block;
    margin-top: 0.375rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.certificates-section__head {
    margin-bottom: 1.5rem;
}

.certificates-section__head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-top: 0.375rem;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.certificates-page .cert-card {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    padding: 1.75rem 1.5rem;
    background: var(--white);
    border: 1px solid rgba(10, 10, 15, 0.08);
    border-radius: var(--radius-md);
    text-align: left;
    transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.certificates-page .cert-card:hover {
    transform: translateY(-3px);
    border-color: rgba(10, 10, 15, 0.22);
    box-shadow: 0 14px 36px rgba(10, 10, 15, 0.07);
}

.certificates-page .cert-card__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--btn-radius);
    background: rgba(10, 10, 15, 0.12);
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
}

.certificates-page .cert-card__code {
    display: block;
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 0;
}

.certificates-page .cert-card h3 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
}

.certificates-page .cert-card p {
    margin: 0;
    font-size: 0.8125rem;
    font-style: normal;
    line-height: 1.65;
    color: var(--text-muted);
}

.certificates-band__inner {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem 2.25rem;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.04) 0%, rgba(10, 10, 15, 0.08) 100%);
    border: 1px solid rgba(10, 10, 15, 0.16);
    border-radius: var(--radius-lg);
}

.certificates-band__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--btn-radius);
    background: rgba(10, 10, 15, 0.16);
    color: var(--primary-dark);
}

.certificates-band__inner h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.625rem;
}

.certificates-band__inner p {
    margin: 0 0 1rem;
    max-width: 52ch;
    font-size: 0.9375rem;
    font-style: normal;
    line-height: 1.8;
    color: var(--text-secondary);
}

.certificates-band__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-dark);
    transition: color 0.2s, gap 0.2s;
}

.certificates-band__link:hover {
    color: var(--navy);
    gap: 0.5rem;
}

.certificates-cta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.03) 0%, rgba(10, 10, 15, 0.06) 100%);
    border: 1px solid rgba(10, 10, 15, 0.12);
    border-radius: var(--radius-lg);
}

.certificates-cta__link {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.375rem 1.5rem;
    background: var(--white);
    border: 1px solid rgba(10, 10, 15, 0.08);
    border-radius: var(--radius-md);
    transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
}

.certificates-cta__link::after {
    content: '→';
    margin-top: 0.375rem;
    font-size: 1rem;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s, transform 0.25s var(--ease);
}

.certificates-cta__link:hover {
    border-color: rgba(10, 10, 15, 0.35);
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.04) 0%, var(--white) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(10, 10, 15, 0.12);
}

.certificates-cta__link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.certificates-cta__link strong {
    font-size: 0.9375rem;
    color: var(--navy);
}

.certificates-cta__link span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .certificates-stats,
    .certificates-grid,
    .certificates-cta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .certificates-page {
        gap: 2.5rem;
    }

    .certificates-intro,
    .certificates-band__inner {
        padding: 1.5rem;
    }

    .certificates-intro__lead,
    .certificates-intro__text,
    .certificates-band__inner p {
        max-width: none;
    }

    .certificates-stats,
    .certificates-grid,
    .certificates-cta {
        grid-template-columns: 1fr;
    }
}

/* Handbook page */
.page-handbook .page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #14141c 48%, #1e1e28 100%);
    padding: 3.75rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-handbook .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 90% at 0% 50%, rgba(10, 10, 15, 0.18), transparent 58%),
        radial-gradient(ellipse 40% 70% at 100% 0%, rgba(10, 10, 15, 0.1), transparent 50%);
    pointer-events: none;
}

.page-handbook .page-hero__inner {
    position: relative;
}

.page-handbook .page-content {
    padding-top: 2.75rem;
}

.handbook-page {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.handbook-page .reveal-child,
.handbook-page .handbook-card.reveal,
.handbook-page .handbook-cta__link.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.5s var(--ease),
        transform 0.5s var(--ease);
    transition-delay: var(--delay, 0s);
}

.handbook-page .reveal.is-visible .reveal-child,
.handbook-page .handbook-card.reveal.is-visible,
.handbook-page .handbook-cta__link.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.handbook-intro {
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.06) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(10, 10, 15, 0.14);
    border-radius: var(--radius-lg);
}

.handbook-intro__lead {
    margin: 0.625rem 0 0.875rem;
    max-width: 68ch;
    font-size: 1.0625rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1.8;
    color: var(--navy);
}

.handbook-intro__text {
    margin: 0;
    max-width: 68ch;
    font-size: 1rem;
    font-style: normal;
    line-height: 1.8;
    color: var(--text-secondary);
}

.handbook-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.handbook-stat {
    padding: 1.25rem 1.375rem;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.05) 0%, var(--white) 100%);
    border: 1px solid rgba(10, 10, 15, 0.16);
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.handbook-stat:hover {
    transform: translateY(-2px);
    border-color: rgba(10, 10, 15, 0.32);
    box-shadow: 0 10px 28px rgba(10, 10, 15, 0.1);
}

.handbook-stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--navy) 20%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.handbook-stat span {
    display: block;
    margin-top: 0.375rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.handbook-section__head {
    margin-bottom: 1.5rem;
}

.handbook-section__head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-top: 0.375rem;
}

.handbook-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.handbook-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.75rem;
    background: var(--white);
    border: 1px solid rgba(10, 10, 15, 0.08);
    border-radius: var(--radius-md);
    transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.handbook-card:hover {
    transform: translateY(-3px);
    border-color: rgba(10, 10, 15, 0.22);
    box-shadow: 0 14px 36px rgba(10, 10, 15, 0.07);
}

.handbook-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--btn-radius);
    background: rgba(10, 10, 15, 0.12);
    color: var(--primary-dark);
}

.handbook-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}

.handbook-card p {
    margin: 0;
    font-size: 0.9375rem;
    font-style: normal;
    line-height: 1.75;
    color: var(--text-secondary);
}

.handbook-band__inner {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem 2.25rem;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.1) 0%, rgba(10, 10, 15, 0.04) 100%);
    border: 1px solid rgba(10, 10, 15, 0.18);
    border-radius: var(--radius-lg);
}

.handbook-band__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--btn-radius);
    background: rgba(10, 10, 15, 0.16);
    color: var(--primary-dark);
}

.handbook-band__inner h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.625rem;
}

.handbook-band__inner p {
    margin: 0 0 1rem;
    max-width: 52ch;
    font-size: 0.9375rem;
    font-style: normal;
    line-height: 1.8;
    color: var(--text-secondary);
}

.handbook-band__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-dark);
    transition: color 0.2s, gap 0.2s;
}

.handbook-band__link:hover {
    color: var(--navy);
    gap: 0.5rem;
}

.handbook-cta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.03) 0%, rgba(10, 10, 15, 0.06) 100%);
    border: 1px solid rgba(10, 10, 15, 0.12);
    border-radius: var(--radius-lg);
}

.handbook-cta__link {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.375rem 1.5rem;
    background: var(--white);
    border: 1px solid rgba(10, 10, 15, 0.08);
    border-radius: var(--radius-md);
    transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
}

.handbook-cta__link::after {
    content: '→';
    margin-top: 0.375rem;
    font-size: 1rem;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s, transform 0.25s var(--ease);
}

.handbook-cta__link:hover {
    border-color: rgba(10, 10, 15, 0.35);
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.04) 0%, var(--white) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(10, 10, 15, 0.12);
}

.handbook-cta__link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.handbook-cta__link strong {
    font-size: 0.9375rem;
    color: var(--navy);
}

.handbook-cta__link span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .handbook-stats,
    .handbook-grid,
    .handbook-cta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .handbook-page {
        gap: 2.5rem;
    }

    .handbook-intro,
    .handbook-band__inner {
        padding: 1.5rem;
    }

    .handbook-intro__lead,
    .handbook-intro__text,
    .handbook-band__inner p {
        max-width: none;
    }

    .handbook-stats,
    .handbook-grid,
    .handbook-cta {
        grid-template-columns: 1fr;
    }
}

/* Departments page */
.page-departments .page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #14141c 48%, #1e1e28 100%);
    padding: 3.75rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-departments .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 90% at 0% 50%, rgba(10, 10, 15, 0.18), transparent 58%),
        radial-gradient(ellipse 40% 70% at 100% 0%, rgba(10, 10, 15, 0.1), transparent 50%);
    pointer-events: none;
}

.page-departments .page-hero__inner {
    position: relative;
}

.page-departments .page-content {
    padding-top: 2.75rem;
}

.departments-page {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.departments-page .reveal-child,
.departments-page .department-card.reveal,
.departments-page .departments-cta__link.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.5s var(--ease),
        transform 0.5s var(--ease);
    transition-delay: var(--delay, 0s);
}

.departments-page .reveal.is-visible .reveal-child,
.departments-page .department-card.reveal.is-visible,
.departments-page .departments-cta__link.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.departments-intro {
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.06) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(10, 10, 15, 0.14);
    border-radius: var(--radius-lg);
}

.departments-intro__lead {
    margin: 0.625rem 0 0.875rem;
    max-width: 68ch;
    font-size: 1.0625rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1.8;
    color: var(--navy);
}

.departments-intro__text {
    margin: 0;
    max-width: 68ch;
    font-size: 1rem;
    font-style: normal;
    line-height: 1.8;
    color: var(--text-secondary);
}

.departments-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.departments-stat {
    padding: 1.25rem 1.375rem;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.05) 0%, var(--white) 100%);
    border: 1px solid rgba(10, 10, 15, 0.16);
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.departments-stat:hover {
    transform: translateY(-2px);
    border-color: rgba(10, 10, 15, 0.32);
    box-shadow: 0 10px 28px rgba(10, 10, 15, 0.1);
}

.departments-stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--navy) 20%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.departments-stat span {
    display: block;
    margin-top: 0.375rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.departments-section__head {
    margin-bottom: 1.5rem;
}

.departments-section__head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-top: 0.375rem;
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.department-card {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.75rem;
    background: var(--white);
    border: 1px solid rgba(10, 10, 15, 0.08);
    border-radius: var(--radius-md);
    transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.department-card:hover {
    transform: translateY(-3px);
    border-color: rgba(10, 10, 15, 0.22);
    box-shadow: 0 14px 36px rgba(10, 10, 15, 0.07);
}

.department-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--btn-radius);
    background: rgba(10, 10, 15, 0.12);
    color: var(--primary-dark);
}

.department-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}

.department-card p {
    margin: 0;
    font-size: 0.9375rem;
    font-style: normal;
    line-height: 1.75;
    color: var(--text-secondary);
}

.departments-band__inner {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem 2.25rem;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.04) 0%, rgba(10, 10, 15, 0.08) 100%);
    border: 1px solid rgba(10, 10, 15, 0.16);
    border-radius: var(--radius-lg);
}

.departments-band__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--btn-radius);
    background: rgba(10, 10, 15, 0.16);
    color: var(--primary-dark);
}

.departments-band__inner h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.625rem;
}

.departments-band__inner p {
    margin: 0 0 1rem;
    max-width: 52ch;
    font-size: 0.9375rem;
    font-style: normal;
    line-height: 1.8;
    color: var(--text-secondary);
}

.departments-band__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-dark);
    transition: color 0.2s, gap 0.2s;
}

.departments-band__link:hover {
    color: var(--navy);
    gap: 0.5rem;
}

.departments-cta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.03) 0%, rgba(10, 10, 15, 0.06) 100%);
    border: 1px solid rgba(10, 10, 15, 0.12);
    border-radius: var(--radius-lg);
}

.departments-cta__link {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.375rem 1.5rem;
    background: var(--white);
    border: 1px solid rgba(10, 10, 15, 0.08);
    border-radius: var(--radius-md);
    transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
}

.departments-cta__link::after {
    content: '→';
    margin-top: 0.375rem;
    font-size: 1rem;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s, transform 0.25s var(--ease);
}

.departments-cta__link:hover {
    border-color: rgba(10, 10, 15, 0.35);
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.04) 0%, var(--white) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(10, 10, 15, 0.12);
}

.departments-cta__link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.departments-cta__link strong {
    font-size: 0.9375rem;
    color: var(--navy);
}

.departments-cta__link span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .departments-stats,
    .departments-grid,
    .departments-cta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .departments-page {
        gap: 2.5rem;
    }

    .departments-intro,
    .departments-band__inner {
        padding: 1.5rem;
    }

    .departments-intro__lead,
    .departments-intro__text,
    .departments-band__inner p {
        max-width: none;
    }

    .departments-stats,
    .departments-grid,
    .departments-cta {
        grid-template-columns: 1fr;
    }
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2rem;
}

.project-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 1.75rem;
}

.project-card h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.project-card p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.cert-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 1.5rem;
    text-align: center;
}

.cert-card span {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.cert-card p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.policy-list {
    list-style: none;
    margin-top: 1rem;
}

.policy-list li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

.policy-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
}

.event-group { margin-bottom: 3rem; }

.event-group__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.75rem;
}

.event-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 1.25rem;
}

.event-card h3 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.35rem;
}

.event-card time {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.journal-feature {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2rem;
    margin-bottom: 2rem;
}

.journal-feature__label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.journal-feature h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--navy);
    margin: 0.75rem 0;
}

.faq { margin-top: 2.5rem; }

.faq__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.faq__intro {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.faq__item {
    background: var(--white);
    border: 1px solid var(--border);
    margin-bottom: 0.5rem;
}

.faq__item summary {
    padding: 1rem 1.25rem;
    font-weight: 500;
    cursor: pointer;
    color: var(--navy);
}

.faq__item p {
    padding: 0 1.25rem 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.65;
}

@media (max-width: 1024px) {
    .home-hero__grid { grid-template-columns: 1fr; }
    .home-product-slider { grid-template-columns: repeat(2, 1fr); }
    .project-grid { grid-template-columns: 1fr; }
    .cert-grid { grid-template-columns: repeat(2, 1fr); }
    .vision-mission-grid { grid-template-columns: 1fr; }
    .history-intro__aside { flex-direction: column; }
    .history-stat { flex: none; }
    .stats-band__grid { grid-template-columns: repeat(2, 1fr); }
    .home-news__grid { grid-template-columns: 1fr; }
    .global-band__inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
    .discover-grid { grid-template-columns: 1fr; }
    .home-product-slider { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }
}

/* ===================================================
   UI/UX Refresh — warm luxury system
   =================================================== */

.page-hero {
    background: linear-gradient(145deg, var(--ink) 0%, #14141c 50%, var(--ink-soft) 100%);
    padding: 3.5rem 0;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 85% 20%, rgba(10, 10, 15,0.14), transparent 55%);
    pointer-events: none;
}

.page-hero__inner { position: relative; }

.page-hero__title {
    letter-spacing: -0.025em;
    font-optical-sizing: auto;
}

.home-hero {
    background:
        radial-gradient(ellipse 90% 70% at 0% 0%, rgba(10, 10, 15, 0.08), transparent 50%),
        radial-gradient(ellipse 60% 50% at 100% 100%, rgba(10, 10, 15,0.08), transparent 50%),
        var(--cream);
    padding: 5rem 0 4.5rem;
    border-bottom: none;
}

.home-hero__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--bronze-dark);
    background: var(--bronze-glow);
    padding: 0.375rem 0.875rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.home-hero__title {
    font-size: clamp(2.125rem, 4.5vw, 3.125rem);
    letter-spacing: -0.03em;
    line-height: 1.08;
    margin-bottom: 1.25rem;
}

.home-hero__lead {
    font-size: 1.0625rem;
    max-width: 540px;
}

.home-hero__panel {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.discover-grid { gap: 0.875rem; }

.discover-card {
    border-radius: var(--radius-md);
    padding: 1.375rem;
    background: var(--cream);
    border-color: transparent;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s;
}

.discover-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: var(--white);
    border-color: var(--border);
}

.discover-card strong {
    font-size: 1.1875rem;
    letter-spacing: -0.01em;
}

.brand-statement {
    background: var(--ink);
    padding: 3.5rem 0;
    position: relative;
}

.brand-statement::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--bronze), transparent);
    opacity: 0.35;
}

.stats-band {
    background: var(--white);
    padding: 3rem 0;
}

.stats-band__item {
    padding: 1rem;
    border-radius: var(--radius-md);
    transition: background 0.2s;
}

.stats-band__item:hover {
    background: var(--cream);
}

.stats-band__item strong {
    font-size: 2.25rem;
    color: var(--bronze-dark);
}

.home-product-slider { gap: 1.125rem; }

.home-product-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    border-color: var(--border);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.home-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.home-product-card__img {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.global-band {
    background: transparent;
    padding: 3.5rem 0;
}

.global-band h2 { color: var(--white); }
.global-band__tag { color: rgba(255,255,255,0.75); }

.home-news__grid { gap: 1.5rem; }

.news-card {
    border-radius: var(--radius-md);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.news-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.trust {
    background: var(--ink-soft);
    padding: 3rem 0;
}

.trust-item {
    padding: 1rem;
    border-radius: var(--radius-md);
    transition: background 0.2s;
}

.trust-item:hover { background: rgba(255,255,255,0.04); }

.trust-item__icon {
    border-radius: var(--btn-radius);
    background: rgba(10, 10, 15,0.12);
    border-color: rgba(10, 10, 15,0.25);
    color: var(--bronze-light);
}

.product-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--white);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-card__image-wrap {
    border-radius: var(--btn-radius);
    border-color: var(--border);
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.product-card__badge {
    border-radius: 999px;
    background: var(--bronze-glow);
    color: var(--bronze-dark);
}

.product-card__btn {
    border-radius: var(--btn-radius);
    font-weight: 600;
}

.product-card__btn:hover {
    background: var(--bronze);
    border-color: var(--bronze);
    color: var(--white);
}

.filter__btn {
    border-radius: var(--btn-radius);
    padding: 0.6875rem 1.375rem;
    font-weight: 600;
}

.filter__btn.is-active {
    background: var(--ink);
    box-shadow: var(--shadow-sm);
}

.contact__form,
.contact-card,
.board-card,
.project-card,
.vm-card,
.cert-card,
.event-card,
.faq__item,
.journal-feature {
    border-radius: var(--radius-md);
}

.contact__form {
    box-shadow: var(--shadow-sm);
}

.form-input {
    border-radius: var(--btn-radius);
    padding: 0.8125rem 1rem;
    background: var(--cream);
}

.form-input:focus {
    border-color: var(--bronze);
    box-shadow: 0 0 0 3px var(--bronze-glow);
    background: var(--white);
}

.faq__item {
    border-radius: var(--btn-radius);
    overflow: hidden;
}

.faq__item summary {
    font-weight: 600;
    list-style: none;
}

.faq__item summary::-webkit-details-marker { display: none; }

.faq__item[open] summary {
    color: var(--bronze-dark);
    background: var(--cream);
}

.footer {
    background: var(--ink);
}

.modal__content {
    border-radius: var(--radius-md);
    overflow: hidden;
}

.modal__image-wrap {
    background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

.mobile-nav {
    background: rgba(250,248,245,0.98);
    backdrop-filter: blur(12px);
}

.mobile-nav__group { color: var(--bronze); }

.nav-toggle span { background: var(--ink); }

/* Subtle page load feel */
.site-main { /* no page load animation */ }

/* Contact page */
.page-contact .page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #14141c 48%, #1e1e28 100%);
    padding: 3.75rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-contact .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 90% at 0% 50%, rgba(10, 10, 15, 0.18), transparent 58%),
        radial-gradient(ellipse 40% 70% at 100% 0%, rgba(10, 10, 15, 0.1), transparent 50%);
    pointer-events: none;
}

.page-contact .page-hero__inner {
    position: relative;
}

.page-contact .page-content {
    padding-top: 2.75rem;
}

.contact-page {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-page .reveal-child,
.contact-page .contact-channel.reveal,
.contact-page .contact-cta__link.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.5s var(--ease),
        transform 0.5s var(--ease);
    transition-delay: var(--delay, 0s);
}

.contact-page .reveal.is-visible .reveal-child,
.contact-page .contact-channel.reveal.is-visible,
.contact-page .contact-cta__link.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-intro {
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.06) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(10, 10, 15, 0.14);
    border-radius: var(--radius-lg);
}

.contact-intro__lead {
    margin: 0.625rem 0 0.875rem;
    max-width: 68ch;
    font-size: 1.0625rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1.8;
    color: var(--navy);
}

.contact-intro__text {
    margin: 0;
    max-width: 68ch;
    font-size: 1rem;
    font-style: normal;
    line-height: 1.8;
    color: var(--text-secondary);
}

.contact-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.contact-stat {
    padding: 1.25rem 1.375rem;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.05) 0%, var(--white) 100%);
    border: 1px solid rgba(10, 10, 15, 0.16);
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.contact-stat:hover {
    transform: translateY(-2px);
    border-color: rgba(10, 10, 15, 0.32);
    box-shadow: 0 10px 28px rgba(10, 10, 15, 0.1);
}

.contact-stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--navy) 20%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-stat span {
    display: block;
    margin-top: 0.375rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.contact-channels__head {
    margin-bottom: 1.5rem;
}

.contact-channels__head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-top: 0.375rem;
}

.contact-channels__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

.contact-channel {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid rgba(10, 10, 15, 0.08);
    border-radius: var(--radius-md);
    transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.contact-channel:hover {
    transform: translateY(-3px);
    border-color: rgba(10, 10, 15, 0.22);
    box-shadow: 0 14px 36px rgba(10, 10, 15, 0.07);
}

.contact-channel__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--btn-radius);
    background: rgba(10, 10, 15, 0.12);
    color: var(--primary-dark);
}

.contact-channel__label {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.contact-channel__value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.4;
    word-break: break-word;
}

a.contact-channel__value:hover {
    color: var(--primary-dark);
}

.contact-channel__text {
    margin: 0;
    font-size: 0.8125rem;
    font-style: normal;
    line-height: 1.65;
    color: var(--text-secondary);
}

.contact-main {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.contact-page .contact__form {
    padding: 2rem;
    background: var(--white);
    border: 1px solid rgba(10, 10, 15, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(10, 10, 15, 0.04);
}

.contact-page .form-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(10, 10, 15, 0.14);
}

.contact-form__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--btn-radius);
    background: rgba(10, 10, 15, 0.12);
    color: var(--primary-dark);
}

.contact-page .form-input {
    border-radius: var(--btn-radius);
}

.contact-page .form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 10, 15, 0.12);
}

.contact-faq {
    padding: 2rem;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.02) 0%, var(--white) 100%);
    border: 1px solid rgba(10, 10, 15, 0.08);
    border-radius: var(--radius-lg);
}

.contact-faq__head {
    margin-bottom: 1.25rem;
}

.contact-faq__head h2 {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.2vw, 1.5rem);
    color: var(--navy);
    letter-spacing: -0.02em;
    margin-top: 0.375rem;
}

.contact-faq__intro {
    margin: 0.625rem 0 0;
    font-size: 0.875rem;
    font-style: normal;
    line-height: 1.7;
    color: var(--text-secondary);
}

.contact-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.contact-faq__item {
    background: var(--white);
    border: 1px solid rgba(10, 10, 15, 0.08);
    border-radius: var(--btn-radius);
    overflow: hidden;
    transition: border-color 0.2s;
}

.contact-faq__item:hover {
    border-color: rgba(10, 10, 15, 0.2);
}

.contact-faq__item summary {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
    font-weight: 600;
    font-style: normal;
    color: var(--navy);
    cursor: pointer;
    list-style: none;
}

.contact-faq__item summary::-webkit-details-marker {
    display: none;
}

.contact-faq__item[open] summary {
    color: var(--primary-dark);
    background: rgba(10, 10, 15, 0.06);
}

.contact-faq__item p {
    margin: 0;
    padding: 0 1.25rem 1rem;
    font-size: 0.875rem;
    font-style: normal;
    line-height: 1.7;
    color: var(--text-secondary);
}

.contact-faq__item p a {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.contact-faq__item p a:hover {
    color: var(--navy);
}

.contact-band__inner {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2rem 2.25rem;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.04) 0%, rgba(10, 10, 15, 0.08) 100%);
    border: 1px solid rgba(10, 10, 15, 0.16);
    border-radius: var(--radius-lg);
}

.contact-band__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--btn-radius);
    background: rgba(10, 10, 15, 0.16);
    color: var(--primary-dark);
}

.contact-band__inner h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 0.625rem;
}

.contact-band__inner p {
    margin: 0 0 1rem;
    max-width: 52ch;
    font-size: 0.9375rem;
    font-style: normal;
    line-height: 1.8;
    color: var(--text-secondary);
}

.contact-band__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-dark);
    transition: color 0.2s, gap 0.2s;
}

.contact-band__link:hover {
    color: var(--navy);
    gap: 0.5rem;
}

.contact-cta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.03) 0%, rgba(10, 10, 15, 0.06) 100%);
    border: 1px solid rgba(10, 10, 15, 0.12);
    border-radius: var(--radius-lg);
}

.contact-cta__link {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.375rem 1.5rem;
    background: var(--white);
    border: 1px solid rgba(10, 10, 15, 0.08);
    border-radius: var(--radius-md);
    transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
}

.contact-cta__link::after {
    content: '→';
    margin-top: 0.375rem;
    font-size: 1rem;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s, transform 0.25s var(--ease);
}

.contact-cta__link:hover {
    border-color: rgba(10, 10, 15, 0.35);
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.04) 0%, var(--white) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(10, 10, 15, 0.12);
}

.contact-cta__link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.contact-cta__link strong {
    font-size: 0.9375rem;
    color: var(--navy);
}

.contact-cta__link span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .contact-stats,
    .contact-channels__grid,
    .contact-cta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .contact-main {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

@media (max-width: 640px) {
    .contact-page {
        gap: 2.5rem;
    }

    .contact-intro,
    .contact-band__inner,
    .contact-page .contact__form,
    .contact-faq {
        padding: 1.5rem;
    }

    .contact-intro__lead,
    .contact-intro__text,
    .contact-band__inner p {
        max-width: none;
    }

    .contact-stats,
    .contact-channels__grid,
    .contact-cta {
        grid-template-columns: 1fr;
    }
}

/* Products, events, journal pages — shared subpage patterns */
.page-products .page-hero,
.page-events .page-hero,
.page-journal .page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, #14141c 48%, #1e1e28 100%);
    padding: 3.75rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.page-products .page-hero::before,
.page-events .page-hero::before,
.page-journal .page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 90% at 0% 50%, rgba(10, 10, 15, 0.18), transparent 58%),
        radial-gradient(ellipse 40% 70% at 100% 0%, rgba(10, 10, 15, 0.1), transparent 50%);
    pointer-events: none;
}

.page-products .page-content,
.page-events .page-content,
.page-journal .page-content {
    padding-top: 2.75rem;
}

.product-empty--page {
    grid-column: 1 / -1;
    padding: 2.5rem 1.5rem;
    text-align: center;
}

.events-page,
.journal-page {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.events-intro,
.journal-intro {
    padding: 1.75rem 2rem;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.06) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1px solid rgba(10, 10, 15, 0.14);
    border-radius: var(--radius-lg);
}

.events-intro__lead,
.journal-intro__lead {
    margin: 0.625rem 0 0;
    max-width: 68ch;
    font-size: 1.0625rem;
    font-weight: 500;
    font-style: normal;
    line-height: 1.8;
    color: var(--navy);
}

.events-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.events-stat {
    padding: 1.25rem 1.375rem;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.05) 0%, var(--white) 100%);
    border: 1px solid rgba(10, 10, 15, 0.16);
    border-radius: var(--radius-md);
    text-align: center;
}

.events-stat strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--navy) 20%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.events-stat span {
    display: block;
    margin-top: 0.375rem;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.page-events .event-card {
    border-radius: var(--radius-md);
    transition: transform 0.25s var(--ease), box-shadow 0.25s, border-color 0.25s;
}

.page-events .event-card:hover {
    transform: translateY(-2px);
    border-color: rgba(10, 10, 15, 0.22);
    box-shadow: 0 10px 28px rgba(10, 10, 15, 0.06);
}

.page-events .event-card time.is-upcoming {
    color: var(--primary-dark);
    font-weight: 600;
}

.events-cta,
.journal-cta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(10, 10, 15, 0.03) 0%, rgba(10, 10, 15, 0.06) 100%);
    border: 1px solid rgba(10, 10, 15, 0.12);
    border-radius: var(--radius-lg);
}

.events-cta__link,
.journal-cta__link {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.375rem 1.5rem;
    background: var(--white);
    border: 1px solid rgba(10, 10, 15, 0.08);
    border-radius: var(--radius-md);
    transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}

.events-cta__link::after,
.journal-cta__link::after {
    content: '→';
    margin-top: 0.375rem;
    font-size: 1rem;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.25s, transform 0.25s var(--ease);
}

.events-cta__link:hover,
.journal-cta__link:hover {
    border-color: rgba(10, 10, 15, 0.35);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(10, 10, 15, 0.12);
}

.events-cta__link:hover::after,
.journal-cta__link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.events-cta__link strong,
.journal-cta__link strong {
    font-size: 0.9375rem;
    color: var(--navy);
}

.events-cta__link span,
.journal-cta__link span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.page-journal .journal-feature,
.page-journal .journal-list {
    border-radius: var(--radius-lg);
}

@media (max-width: 1024px) {
    .events-stats,
    .events-cta,
    .journal-cta {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .events-intro,
    .journal-intro {
        padding: 1.5rem;
    }

    .events-stats,
    .events-cta,
    .journal-cta {
        grid-template-columns: 1fr;
    }
}
