/* Style css file */

:root {
    --bg: #050505;
    --bg-alt: #111111;
    --accent: #9a200a;
    /* main VOLL red */
    --accent-soft: rgba(201, 59, 35, 0.2);
    --accent-2: #c93b23;
    /* keep same to avoid extra colors */
    --text: #fffefe;
    --muted: #9a9a9a;
    --border: rgba(255, 255, 255, 0.06);
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-pill: 999px;
    --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.75);
    --shadow-glow: 0 0 40px rgba(129, 22, 3, 0.4);
    --transition-fast: 0.18s ease-out;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

/* Prevent scroll when mobile nav is open */
body.nav-open {
    overflow: hidden;
}

body.modal-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.page {
    max-width: 100%;
    margin: 0 auto;
}

/* Top Nav */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    width: 100%;
    background: #0d0d0f;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
    max-width: 1280px;
    margin: 0 auto;
    height: 118px;
    padding: 0 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Logo */

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: opacity 0.15s ease;
}

.header-logo:hover {
    opacity: 0.8;
}

.header-logo img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    filter: invert(1);
}

/* Nav */

.header-nav {
    display: flex;
    align-items: center;
    gap: clamp(28px, 3.5vw, 56px);
    white-space: nowrap;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.header-nav a {
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.15s ease;
}

.header-nav a:hover {
    color: #fff;
}

.header-nav a.nav-current {
    color: #fff;
    position: relative;
}

.header-nav a.nav-current::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e8322b;
    border-radius: 999px;
}

/* Admin button */

.header-admin-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    flex-shrink: 0;
    transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.header-admin-btn:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

/* === HAMBURGER BUTTON === */

.header-burger {
    display: none;
    /* visible only on mobile */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(0, 0, 0, 0.8);
    cursor: pointer;
    padding: 0;
}

.header-burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 999px;
    transition: transform 0.18s ease-out, opacity 0.18s ease-out, width 0.18s ease-out;
}

/* Burger animation when open */

.header-burger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    width: 20px;
}

.header-burger.is-open span:nth-child(2) {
    opacity: 0;
}

.header-burger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    width: 20px;
}

/* === MOBILE NAV PANEL === */

.mobile-nav {
    display: none;
    position: fixed;
    inset: 80px 10.5vw auto 10.5vw;
    background: radial-gradient(circle at top, #202020 0, #050505 55%, #000 100%);
    padding: 16px 22px 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.95);
    z-index: 40;
    flex-direction: column;
    gap: 12px;
}

.mobile-nav a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 10px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0.85;
}

.mobile-nav a:last-child {
    border-bottom: none;
}

.mobile-nav a:hover {
    opacity: 1;
}

/* open state */
.mobile-nav.is-open {
    display: flex;
}

/* Hero */

.hero {
    position: relative;
    width: 100%;
    min-height: 860px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 220px 24px 56px;
    color: #07070a;
    overflow: visible;
}

.hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0), #f7f9fb 82%, #fff 100%);
    pointer-events: none;
}

.hero-copy {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 52px;
}

.hero-copy h1 {
    font-size: clamp(3.1rem, 3.2vw, 4.1rem);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-indent: 0.2em;
    font-weight: 700;
}

.hero-tagline {
    margin-top: 18px;
    color: #8f969e;
    font-size: clamp(0.92rem, 0.95vw, 1.05rem);
    font-weight: 700;
    letter-spacing: 0.34em;
    text-indent: 0.34em;
    text-transform: uppercase;
}

.hero-desc {
    margin-top: 40px;
    color: #5a6170;
    font-size: clamp(0.95rem, 1vw, 1.08rem);
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.01em;
    max-width: 560px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-art {
    position: relative;
    z-index: 1;
    width: min(1500px, 78vw);
    filter: drop-shadow(0 28px 42px rgba(75, 90, 105, 0.16));
}

.hero-art img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

/* Sections */

section {
    margin-bottom: 48px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 18px;
}

.section-title {
    font-size: 1.25rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.section-sub {
    font-size: 0.85rem;
    color: var(--muted);
    max-width: 26rem;
}

/* --- News --- */

.news-section {
    margin: 0;
    padding: 58px 24px 64px;
    background: #fff;
    color: #101010;
}

.news-shell {
    max-width: 1180px;
    margin: 0 auto;
}

.news-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.news-eyebrow {
    color: #8f969e;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.news-header h2 {
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.news-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.8fr);
    gap: 18px;
}

.news-card {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    min-height: 210px;
    overflow: hidden;
    border: 1px solid rgba(10, 10, 10, 0.08);
    background: #f5f7f9;
    box-shadow: 0 16px 36px rgba(22, 30, 42, 0.08);
}

.news-card-featured {
    grid-row: span 2;
    grid-template-columns: minmax(0, 1fr);
    min-height: 438px;
}

.news-media {
    min-height: 100%;
    overflow: hidden;
    background: #e9eef2;
}

.news-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-featured .news-media {
    height: 270px;
}

.news-card-featured .news-media img {
    object-fit: contain;
    object-position: center bottom;
    padding: 18px 18px 0;
}

.news-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.news-tag {
    color: #c93b23;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.news-body h3 {
    font-size: clamp(1.05rem, 1.7vw, 1.55rem);
    line-height: 1.16;
    margin-bottom: 10px;
}

.news-body p {
    color: #626a72;
    font-size: 0.92rem;
    line-height: 1.55;
}

/* --- Home games showcase --- */

.home-news-preview,
.legacy-featured-games {
    display: none;
}

.home-games {
    margin: 0;
    background:
        linear-gradient(180deg, #eef9ff 0%, #f8fbfd 45%, #ffffff 100%);
    color: #111;
}

@keyframes cinema-scroll {
    0%   { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.games-cinema {
    position: relative;
    min-height: 320px;
    overflow: hidden;
    background: #060608;
    contain: layout paint;
}

.games-cinema-track {
    display: flex;
    width: max-content;
    animation: cinema-scroll 28s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.games-cinema-track:hover {
    animation-play-state: paused;
}

.games-banner {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.94)),
        url("../media/images/team-view.png") center bottom / cover no-repeat;
    padding: 76px 24px 32px;
    text-align: center;
    color: #07111c;
}

.games-banner-eyebrow {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #e8322b;
    margin-bottom: 14px;
}

.games-banner-copy h2 {
    font-size: clamp(2.2rem, 4.4vw, 4.2rem);
    font-weight: 900;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 22px;
}

.games-banner-copy>p:not(.games-banner-eyebrow) {
    color: #17212d;
    font-size: clamp(1rem, 1.3vw, 1.22rem);
    font-weight: 600;
    max-width: 980px;
    margin: 0 auto;
    line-height: 1.65;
}

.games-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    max-width: 1500px;
    margin: 0 auto;
    padding: 48px 40px 86px;
}

.games-gallery-card {
    position: relative;
    min-height: 440px;
    overflow: hidden;
    border-radius: 24px;
    background: #111;
    border: 1px solid rgba(10, 22, 34, 0.08);
    box-shadow: 0 24px 70px rgba(13, 22, 32, 0.14);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.games-gallery-card:hover {
    transform: translateY(-8px);
    border-color: rgba(232, 50, 43, 0.24);
    box-shadow: 0 34px 92px rgba(13, 22, 32, 0.2);
}

.games-gallery-card img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.games-gallery-card:hover img {
    transform: scale(1.055);
}

.games-gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.02) 34%, rgba(0, 0, 0, 0.45) 68%, rgba(0, 0, 0, 0.86) 100%);
    pointer-events: none;
}

.games-gallery-info {
    position: absolute;
    left: 26px;
    right: 26px;
    bottom: 24px;
    z-index: 1;
    color: #fff;
}

.games-gallery-info span {
    display: inline-flex;
    margin-bottom: 8px;
    color: #ff4a40;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.games-gallery-info h3 {
    color: #fff;
    font-size: clamp(1.45rem, 2.1vw, 2.2rem);
    line-height: 1.05;
    text-transform: uppercase;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
}

.games-cinema::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(0,0,0,0.5) 0%, transparent 20%, transparent 80%, rgba(0,0,0,0.5) 100%);
    pointer-events: none;
    z-index: 1;
}

.games-panel {
    width: 340px;
    min-height: 320px;
    flex-shrink: 0;
    overflow: hidden;
    transform: skewX(-7deg) scale(1.08);
    transform-origin: center;
    border-left: 4px solid #08080b;
}

.games-panel img {
    width: 130%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transform: skewX(7deg) translateX(-10%);
    display: block;
}

.games-cinema-copy {
    position: absolute;
    z-index: 2;
    left: 50%;
    bottom: 48px;
    width: min(780px, calc(100% - 48px));
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
}

.games-cinema-copy h1,
.games-cinema-copy h2 {
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 900;
    margin-bottom: 14px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

.games-cinema-copy p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin: 0 auto;
    font-size: 0.97rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    line-height: 1.6;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

.game-showcase-shell,
.games-library,
.news-page-shell {
    max-width: 1180px;
    margin: 0 auto;
    padding: 72px 24px;
}

.showcase-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 16px;
    margin-bottom: 28px;
}

.showcase-heading .news-eyebrow {
    grid-column: 1 / -1;
}

.showcase-heading h2 {
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    line-height: 1.05;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.showcase-link {
    color: #e8322b;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.18s ease;
}

.showcase-link:hover {
    gap: 10px;
}

.game-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.game-showcase-card {
    overflow: hidden;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(22, 30, 42, 0.08);
    border: 1px solid rgba(10, 10, 10, 0.06);
    transition: transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1), box-shadow 0.28s ease;
    display: flex;
    flex-direction: column;
}

.game-showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 52px rgba(22, 30, 42, 0.16);
}

.game-showcase-card .img-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.game-showcase-card .img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.game-showcase-card:hover .img-wrap::after {
    opacity: 1;
}

.game-showcase-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.game-showcase-card:hover img {
    transform: scale(1.06);
}

.game-showcase-body {
    padding: 22px 22px 26px;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-showcase-body span,
.game-detail-body span {
    display: inline-block;
    color: #e8322b;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 10px;
    background: rgba(232, 50, 43, 0.08);
    padding: 4px 10px;
    border-radius: 999px;
}

.game-showcase-body h3 {
    color: #111;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.game-showcase-body p {
    color: #6b7280;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 20px;
}

.game-showcase-body a {
    align-self: flex-start;
    color: #e8322b;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-bottom: 2px solid transparent;
    transition: gap 0.18s ease, border-color 0.18s ease;
}

.game-showcase-body a::after {
    content: "→";
}

.game-showcase-body a:hover {
    border-color: #e8322b;
    gap: 10px;
}

/* --- Games page --- */

.games-page-hero {
    margin: 0;
    padding-top: 0;
    background: #050507;
    color: #fff;
}

.games-page-cinema {
    min-height: 720px;
    padding: 92px 0 0;
    display: flex;
    gap: 0;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(5, 5, 7, 0) 50%, #050507 88%, #050507 100%);
}

.games-page-cinema::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    background:
        linear-gradient(180deg, rgba(5, 5, 7, 0) 42%, rgba(5, 5, 7, 0.72) 78%, #050507 100%),
        linear-gradient(90deg, rgba(5, 5, 7, 0.8) 0%, rgba(5, 5, 7, 0) 12%, rgba(5, 5, 7, 0) 88%, rgba(5, 5, 7, 0.8) 100%);
    pointer-events: none;
}

.games-page-cinema .games-panel {
    width: 25vw;
    min-width: 260px;
    min-height: 580px;
    border-left: 4px solid #050507;
    border-right: 4px solid #050507;
    border-radius: 0;
    transform: skewX(-7deg) scale(1.08);
    transform-origin: center bottom;
    box-shadow: none;
    background: #111;
}

.games-page-cinema .games-panel:nth-child(1),
.games-page-cinema .games-panel:nth-child(4) {
    min-height: 610px;
}

.games-page-cinema .games-panel img {
    width: 130%;
    height: 100%;
    min-height: inherit;
    max-width: none;
    transform: skewX(7deg) translateX(-10%);
    object-fit: cover;
}

.games-page-cinema .games-cinema-copy {
    top: auto;
    bottom: 54px;
    z-index: 2;
    color: #fff;
}

.games-page-cinema .games-cinema-copy h1 {
    color: #fff;
    font-size: clamp(2.6rem, 4.5vw, 5rem);
    letter-spacing: 0.03em;
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.85);
}

.games-page-cinema .games-cinema-copy p {
    color: rgba(255, 255, 255, 0.78);
    max-width: 720px;
    font-size: clamp(1rem, 1.25vw, 1.22rem);
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.85);
}

.games-library {
    color: #111;
    background:
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    max-width: 1980px;
    padding: 110px clamp(24px, 4vw, 64px) 120px;
}

.games-library .showcase-heading {
    margin-bottom: 44px;
}

.games-library .news-eyebrow {
    font-size: 0.82rem;
    letter-spacing: 0.26em;
}

.games-library .showcase-heading h2 {
    max-width: 1180px;
    font-size: clamp(3rem, 5vw, 6.2rem);
    line-height: 0.95;
    letter-spacing: 0.05em;
}

.game-detail {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    gap: 0;
    overflow: hidden;
    margin-top: 42px;
    background: #fff;
    border: 1px solid rgba(10, 22, 34, 0.08);
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(22, 30, 42, 0.11);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.game-detail>img {
    align-self: stretch;
}

.game-detail:hover {
    transform: translateY(-7px);
    border-color: rgba(232, 50, 43, 0.16);
    box-shadow: 0 34px 92px rgba(22, 30, 42, 0.16);
}

.game-detail img {
    width: 100%;
    height: 100%;
    min-height: 0;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}


.game-detail-body {
    padding: clamp(44px, 5vw, 86px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 520px;
}

.game-detail-body h2 {
    color: #111;
    font-size: clamp(3rem, 4.6vw, 5.4rem);
    line-height: 1;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.game-detail-body p {
    color: #53606c;
    font-size: clamp(1.12rem, 1.35vw, 1.38rem);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 660px;
}

.game-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.game-detail-actions .btn-primary,
.game-detail-actions .btn-secondary {
    border-radius: 999px;
    padding: 16px 28px;
    font-size: 0.86rem;
    letter-spacing: 0.12em;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.game-detail-actions .btn-secondary {
    color: #111;
    border-color: rgba(10, 22, 34, 0.16);
    background: #fff;
}

.game-detail-actions .btn-secondary:hover {
    color: #e8322b;
    border-color: rgba(232, 50, 43, 0.28);
    background: rgba(232, 50, 43, 0.06);
}

.game-detail-actions .btn-primary:hover,
.game-detail-actions .btn-secondary:hover {
    transform: translateY(-2px);
}

.game-detail:nth-of-type(even) img {
    order: 2;
}

/* --- News page --- */

.news-page-hero {
    position: relative;
    isolation: isolate;
    min-height: 690px;
    margin: 0;
    padding: 150px clamp(28px, 7vw, 130px) 110px;
    display: grid;
    grid-template-columns: minmax(340px, 0.72fr) minmax(560px, 1fr);
    gap: clamp(40px, 7vw, 110px);
    align-items: center;
    background:
        radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.08), rgba(5, 5, 7, 0) 36%),
        linear-gradient(90deg, rgba(5, 5, 7, 0.92) 0%, rgba(5, 5, 7, 0.72) 45%, rgba(5, 5, 7, 0.48) 100%),
        linear-gradient(180deg, rgba(5, 5, 7, 0.24) 0%, rgba(5, 5, 7, 0.72) 100%),
        url("../media/images/team-graphic-2.png") center / cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.news-page-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -96px;
    z-index: 0;
    width: 118%;
    height: 180px;
    transform: translateX(-50%);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    background: #ffffff;
    pointer-events: none;
}

.news-page-hero>div {
    max-width: 900px;
    justify-self: start;
    order: 2;
    position: relative;
    z-index: 1;
}

.news-page-hero h1 {
    font-size: clamp(3.4rem, 4.5vw, 5.6rem);
    line-height: 1.02;
    text-transform: uppercase;
    letter-spacing: 0.035em;
    margin: 16px 0 24px;
    text-wrap: balance;
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.55);
}

.news-page-hero p:not(.news-eyebrow) {
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.05rem, 1.25vw, 1.28rem);
    line-height: 1.7;
    max-width: 660px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.58);
}

.news-page-hero img {
    width: 100%;
    max-width: 520px;
    justify-self: end;
    object-fit: contain;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 30px 46px rgba(0, 0, 0, 0.46));
}

.news-page-hero .news-eyebrow {
    color: #ff4a40;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.48);
}

.news-page-shell {
    background:
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    color: #111;
    max-width: 1500px;
    margin-top: -48px;
    position: relative;
    z-index: 2;
    padding: 0 clamp(24px, 4vw, 58px) 110px;
}

.news-feature {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(460px, 0.85fr);
    gap: 0;
    overflow: hidden;
    margin-bottom: 34px;
    border-radius: 28px;
    border: 1px solid rgba(10, 22, 34, 0.08);
    background: #fff;
    box-shadow: 0 24px 70px rgba(22, 30, 42, 0.1);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.news-feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 34px 92px rgba(22, 30, 42, 0.15);
}

.news-feature img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.news-feature:hover img {
    transform: scale(1.035);
}

.news-feature>div {
    padding: clamp(34px, 4.5vw, 68px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-feature h2 {
    font-size: clamp(2.4rem, 3.35vw, 4rem);
    line-height: 1.08;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.news-feature p {
    color: #53606c;
    font-size: clamp(1.05rem, 1.25vw, 1.28rem);
    line-height: 1.72;
}

.news-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.news-page-shell .news-card {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
    border-radius: 24px;
    background: #fff;
    border: 1px solid rgba(10, 22, 34, 0.08);
    box-shadow: 0 20px 56px rgba(22, 30, 42, 0.09);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.news-page-shell .news-card:hover {
    transform: translateY(-7px);
    border-color: rgba(232, 50, 43, 0.18);
    box-shadow: 0 30px 78px rgba(22, 30, 42, 0.14);
}

.news-page-shell .news-media {
    height: 280px;
    min-height: 0;
}

.news-page-shell .news-media img {
    display: block;
    transition: transform 0.5s ease;
}

.news-page-shell .news-card:hover .news-media img {
    transform: scale(1.045);
}

.news-page-shell .news-body {
    min-height: 240px;
    padding: 30px 28px 34px;
    justify-content: flex-start;
}

.news-page-shell .news-body h3 {
    font-size: clamp(1.45rem, 2vw, 2.1rem);
    line-height: 1.08;
    text-transform: uppercase;
}

.news-page-shell .news-body p {
    margin-top: 4px;
    font-size: 1rem;
    line-height: 1.65;
}

/* --- games --- */

.featured-shell {
    max-width: 100%;
    margin: 40px auto 0;
    padding: 22px 26px 24px;
    border-radius: 28px;
}

.featured-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.featured-top-row .section-title {
    font-size: 1.3rem;
}

.featured-view-all {
    border: none;
    background: transparent;
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.featured-view-all .arrow {
    font-size: 0.95rem;
}

.featured-view-all:hover {
    color: var(--accent-2);
}

/* Hero card */

.featured-hero {
    margin-top: 20px;
    border-radius: 22px;
    padding: 16px 18px;
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.8fr);
    gap: 18px;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

.featured-hero::before {
    content: "";
    position: absolute;
    inset: -20%;
    opacity: 0.8;
    pointer-events: none;
}

.featured-hero-cover {
    position: relative;
    overflow: hidden;
    background: #000;
    isolation: isolate;
}

.featured-hero-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-hero-cover::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    pointer-events: none;
}

.featured-chip {
    position: absolute;
    inset: 12px 12px auto auto;
    padding: 4px 11px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    z-index: 1;
}

.featured-hero-body {
    position: relative;
    z-index: 1;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6px 4px;
}

.featured-hero-body h3 {
    font-size: 1.3rem;
    margin-bottom: 2px;
}

.featured-meta {
    font-size: 0.78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}

.featured-summary {
    font-size: 0.88rem;
    color: var(--muted);
    max-width: 34rem;
}

/* Buttons */

.featured-actions {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 22px;
    border-radius: 999px;
    border: none;
    background: var(--accent-2);
    color: #fff;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-primary:hover {
    background: #ff5b37;
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    color: #f5f5f5;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    cursor: pointer;
    text-decoration: none;
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}

.btn-secondary:hover {
    background: #ffffff;
    color: #000;
    border-color: #ffffff;
}

/* Thumbnails row */
.featured-thumbs {
    margin-top: 16px;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
}

.featured-thumbs::-webkit-scrollbar {
    height: 6px;
}

.featured-thumbs::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
}

.featured-thumb {
    position: relative;
    flex: 0 0 300px;
    aspect-ratio: 3 / 4;
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
    border: 2px solid transparent;
    background: #000;
    cursor: pointer;
    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast),
        border-color var(--transition-fast);
}

.featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.featured-thumb:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.9);
}

.featured-thumb.active {
    border-color: var(--accent-2);
    box-shadow: var(--shadow-glow);
}


/* --- Team --- */

.team-section {
    max-width: 90%;
    margin: 40px auto 0;
    background: radial-gradient(circle at bottom, #202020 0, #050505 55%, #000 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.team-card {
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Photo + rank */

.team-photo {
    position: relative;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
}

.team-photo::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 40%;
}

.team-rank {
    position: absolute;
    left: 14px;
    bottom: 14px;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    background: rgba(0, 0, 0, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
}

/* Text/content */

.team-body {
    padding: 12px 14px 14px;
    font-size: 0.86rem;
}

.team-name {
    font-size: 1rem;
    margin-bottom: 2px;
}

.team-role {
    font-size: 0.78rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 8px;
}

.team-bio {
    font-size: 0.84rem;
    color: var(--muted);
    margin-bottom: 10px;
}

/* Tags */

.team-tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.7rem;
}

.team-tag {
    padding: 3px 8px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}


/* --- Contact / Support --- */

label {
    font-size: 0.78rem;
    color: var(--muted);
    display: block;
    margin-bottom: 4px;
}

input,
textarea,
select {
    width: 100%;
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.6);
    color: var(--text);
    font-family: inherit;
    font-size: 0.85rem;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

input:focus,
textarea:focus,
select:focus {
    border-color: var(--accent-2);
    box-shadow: 0 0 0 1px rgba(52, 213, 255, 0.5);
    background: rgba(0, 0, 0, 0.85);
}

textarea {
    min-height: 110px;
    resize: vertical;
}

.form-help {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 2px;
}

/* keep footer layout nice on wrap */
footer {
    margin: 20px 20px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.75rem;
    color: var(--muted);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

footer a {
    color: var(--muted);
}

footer a:hover {
    color: var(--accent-2);
}

.site-footer {
    display: block;
    margin: 0;
    padding: 0;
    border: none;
    color: rgba(255, 255, 255, 0.72);
    background: #0d0d0f;
}

.footer-cta {
    min-height: 260px;
    padding: 54px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.08)),
        url("../media/images/foxy.png") center bottom / contain no-repeat,
        linear-gradient(180deg, #80d9f0 0%, #63c8e7 100%);
}

.site-footer>.footer-cta {
    min-height: 560px;
    padding: 88px clamp(20px, 5vw, 92px);
    position: relative;
    color: #11141b;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.18)),
        url("../media/images/others/a3.png") center center / cover no-repeat;
}

.site-footer>.footer-cta--home {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.18)),
        url("../media/images/others/a3.png") center center / cover no-repeat;
}

.site-footer>.footer-cta--about {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.18)),
        url("../media/images/others/a6.png") center center / cover no-repeat;
}

.games-page .site-footer>.footer-cta {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.18)),
        url("../media/images/others/a1.png") center center / cover no-repeat;
}

.news-page .site-footer>.footer-cta {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.18)),
        url("../media/images/others/a2.png") center center / cover no-repeat;
}

.site-footer>.footer-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0) 42%);
    pointer-events: none;
}

.footer-cta h2 {
    max-width: 640px;
    font-size: clamp(1.6rem, 3vw, 3rem);
    line-height: 1.05;
    text-transform: uppercase;
}

.footer-cta .news-eyebrow {
    color: rgba(255, 255, 255, 0.86);
}

.site-footer>.footer-cta:not(.footer-cta--games):not(.footer-cta--home):not(.footer-cta--about) {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 28px;
}

.site-footer>.footer-cta:not(.footer-cta--games):not(.footer-cta--home):not(.footer-cta--about)>div {
    max-width: 680px;
    display: grid;
    justify-items: center;
}

.site-footer>.footer-cta:not(.footer-cta--games):not(.footer-cta--home):not(.footer-cta--about) h2 {
    max-width: 820px;
    margin-bottom: 24px;
    color: #0d0d0f;
    font-size: clamp(2rem, 4vw, 4.2rem);
    line-height: 1.03;
    letter-spacing: 0.04em;
}

.site-footer>.footer-cta:not(.footer-cta--games):not(.footer-cta--home):not(.footer-cta--about) .btn-primary {
    flex: 0 0 auto;
    align-self: center;
    border-radius: 999px;
    padding: 16px 28px;
    box-shadow: 0 14px 34px rgba(232, 50, 43, 0.28);
}

/* --- Home footer CTA redesign --- */

.footer-cta--games {
    min-height: 540px;
    padding: 60px clamp(24px, 5vw, 76px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 32px;
    position: relative;
    background:
        linear-gradient(90deg, rgba(5, 8, 18, 0.74) 0%, rgba(5, 8, 18, 0.46) 34%, rgba(5, 8, 18, 0.08) 70%),
        url("../media/images/foxy.png") center center / cover no-repeat;
}

.footer-cta--home {
    min-height: 540px;
    padding: 80px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.site-footer>.footer-cta--about {
    min-height: 560px;
    padding: 88px clamp(20px, 5vw, 92px);
    position: relative;
    color: #11141b;
}

.footer-cta-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 680px;
}

.site-footer>.footer-cta .footer-cta-body,
.site-footer>.footer-cta:not(.footer-cta--games):not(.footer-cta--home):not(.footer-cta--about)>div {
    width: min(100%, 880px);
    max-width: 880px;
    padding: 42px clamp(24px, 4vw, 58px) 46px;
    border: 1px solid rgba(255, 255, 255, 0.64);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 28px 80px rgba(28, 58, 86, 0.16);
    backdrop-filter: blur(12px);
}

.site-footer>.footer-cta .news-eyebrow,
.site-footer>.footer-cta .footer-cta-eyebrow {
    color: #e8322b;
}

.footer-cta--games .footer-cta-body {
    align-items: flex-start;
    text-align: left;
    max-width: 560px;
    padding: 34px 36px 38px;
    border-radius: 8px;
    background: rgba(5, 8, 18, 0.48);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(8px);
}

.footer-cta-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 160px;
    height: 160px;
    border-radius: 999px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
    border: 4px solid rgba(255, 255, 255, 0.6);
}

.footer-cta-logo img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.footer-cta-eyebrow {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 10px;
}

.footer-cta--home .footer-cta-eyebrow {
    color: #e8322b;
}

.footer-cta--about .footer-cta-eyebrow {
    color: #e8322b;
}

.footer-cta--home h2 {
    max-width: none;
    font-size: clamp(1.5rem, 2.3vw, 2.5rem);
    line-height: 1.1;
    margin-bottom: 28px;
    color: #0d0d0f;
    text-transform: uppercase;
}

.footer-cta--about h2 {
    max-width: 820px;
    margin-bottom: 18px;
    color: #0d0d0f;
    font-size: clamp(2rem, 4vw, 4.2rem);
    line-height: 1.03;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.footer-cta--games h2 {
    max-width: 540px;
    margin-bottom: 16px;
    font-size: clamp(2rem, 3.4vw, 3.6rem);
    letter-spacing: 0.02em;
}

.footer-cta-copy {
    max-width: 500px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(0.95rem, 1.15vw, 1.08rem);
    font-weight: 500;
    line-height: 1.65;
}

.footer-cta--about .footer-cta-copy {
    max-width: 680px;
    margin-bottom: 28px;
    color: #4b5968;
    font-size: clamp(1rem, 1.25vw, 1.16rem);
}

.footer-cta-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 44px;
}

.footer-cta-list li {
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.01em;
}

.footer-cta--games .footer-cta-list {
    gap: 12px;
    margin-bottom: 34px;
}

.footer-cta--games .footer-cta-list li {
    align-items: flex-start;
    line-height: 1.45;
}

.footer-cta--home .footer-cta-list li {
    color: #1a1a2e;
    justify-content: center;
}

.footer-cta--about .footer-cta-list {
    width: 100%;
    max-width: 760px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 34px;
}

.footer-cta--about .footer-cta-list li {
    min-height: 72px;
    justify-content: center;
    padding: 16px 18px;
    border: 1px solid rgba(232, 50, 43, 0.16);
    border-radius: 18px;
    color: #182333;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 10px 28px rgba(28, 58, 86, 0.08);
    text-align: left;
}

.footer-cta--about .footer-cta-list li::before {
    width: 8px;
    height: 8px;
}

.footer-cta--home .footer-cta-btn {
    align-self: center;
}

.site-footer>.footer-cta .footer-cta-btn {
    align-self: center;
    border-radius: 999px;
    box-shadow: 0 16px 34px rgba(232, 50, 43, 0.24);
}

.footer-cta--about .footer-cta-btn {
    align-self: center;
    border-radius: 999px;
    padding-inline: 30px;
    box-shadow: 0 16px 34px rgba(232, 50, 43, 0.24);
}

.footer-cta--games .footer-cta-btn {
    align-self: center;
}

.footer-cta-list li::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #e8322b;
    flex-shrink: 0;
}

.footer-cta--games .footer-cta-list li::before {
    margin-top: 0.42em;
}

.footer-cta-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #e8322b;
    color: #fff;
    padding: 14px 36px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.18s, transform 0.18s;
}

.footer-cta-btn span {
    font-size: 0.65em;
}

.footer-cta-btn:hover {
    background: #c9291e;
    transform: translateY(-1px);
}

.footer-main {
    padding: 40px 24px 52px;
    display: grid;
    justify-items: center;
    gap: 22px;
}

.footer-brand {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.footer-brand img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 34px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
    font-weight: 800;
}

.footer-links a:hover {
    color: #fff;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.42);
    font-weight: 700;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    transform: translateY(-1px);
}

.footer-social img {
    width: 28px;
    height: 28px;
    display: block;
}

.contact-page {
    background: #ffffff;
}

.contact-section {
    position: relative;
    margin: 0;
    padding: 0 0 96px;
    color: #11141b;
    background:
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.contact-hero {
    position: relative;
    isolation: isolate;
    width: 100%;
    max-width: none;
    min-height: 690px;
    margin: 0;
    padding: 150px clamp(28px, 7vw, 130px) 120px;
    display: grid;
    grid-template-columns: minmax(0, 900px);
    align-items: center;
    gap: clamp(40px, 7vw, 110px);
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 56% 38%, rgba(255, 255, 255, 0.12), rgba(5, 5, 7, 0) 36%),
        linear-gradient(90deg, rgba(5, 5, 7, 0.94) 0%, rgba(5, 5, 7, 0.76) 44%, rgba(5, 5, 7, 0.58) 100%),
        linear-gradient(180deg, rgba(5, 5, 7, 0.18) 0%, rgba(5, 5, 7, 0.8) 100%),
        url("../media/images/team-view.png") center / cover no-repeat;
}

.contact-hero::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -96px;
    z-index: 0;
    width: 118%;
    height: 180px;
    transform: translateX(-50%);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    background: #ffffff;
    pointer-events: none;
}

.contact-hero-copy {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.contact-hero .eyebrow {
    margin-bottom: 14px;
    color: #ff4a40;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.48);
}

.contact-hero h1 {
    max-width: 820px;
    font-size: clamp(3.4rem, 5.2vw, 6.4rem);
    line-height: 1.02;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    text-wrap: balance;
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.55);
}

.contact-hero-sub {
    max-width: 660px;
    margin-top: 24px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(1.05rem, 1.25vw, 1.28rem);
    font-weight: 600;
    line-height: 1.7;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.58);
}

.contact-split {
    position: relative;
    z-index: 2;
    width: min(1280px, calc(100% - clamp(36px, 8vw, 112px)));
    max-width: calc(100% - 36px);
    margin: 64px auto 0;
    display: grid;
    grid-template-columns: minmax(320px, 0.84fr) minmax(0, 1.16fr);
    overflow: hidden;
    border: 1px solid rgba(10, 22, 34, 0.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 28px 86px rgba(22, 30, 42, 0.13);
}

.hiring-section {
    position: relative;
    z-index: 1;
    margin: -1px 0 0;
    padding: 72px 24px 96px;
    background:
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    color: #11141b;
}

.hiring-header {
    width: min(1280px, calc(100% - clamp(36px, 8vw, 112px)));
    max-width: calc(100% - 36px);
    margin: 0 auto 34px;
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr);
    align-items: end;
    gap: 32px;
    text-align: left;
}

.hiring-header h2 {
    position: relative;
    margin-bottom: 0;
    color: #11141b;
    font-size: clamp(2.2rem, 3.3vw, 3.7rem);
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hiring-header h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -16px;
    width: 76px;
    height: 5px;
    border-radius: 999px;
    background: #e8322b;
}

.hiring-header p {
    max-width: 620px;
    margin: 0;
    color: #53606c;
    font-size: clamp(0.94rem, 1.08vw, 1.06rem);
    font-weight: 800;
    line-height: 1.65;
}

.hiring-header a {
    color: #e8322b;
    font-weight: 900;
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 0.18em;
}

.jobs-list {
    width: min(1280px, calc(100% - clamp(36px, 8vw, 112px)));
    max-width: calc(100% - 36px);
    margin: 0 auto;
    display: grid;
    gap: 12px;
}

.job-row {
    display: grid;
    grid-template-columns: minmax(220px, 1.45fr) minmax(110px, 0.6fr) minmax(160px, 0.74fr) auto;
    align-items: center;
    min-height: 78px;
    overflow: hidden;
    border: 1px solid rgba(10, 22, 34, 0.08);
    border-radius: 14px;
    background: #dfdfdf;
    color: #050505;
    box-shadow: 0 12px 34px rgba(22, 30, 42, 0.07);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.job-row:hover {
    transform: translateY(-3px);
    border-color: rgba(232, 50, 43, 0.18);
    box-shadow: 0 22px 54px rgba(22, 30, 42, 0.13);
}

.job-row strong,
.job-row span {
    display: flex;
    align-items: center;
    padding: 0 24px;
    min-width: 0;
}

.job-row strong {
    position: relative;
    font-size: clamp(1rem, 1.22vw, 1.22rem);
    line-height: 1.2;
}

.job-row strong::before {
    content: "";
    width: 8px;
    height: 36px;
    margin-right: 18px;
    border-radius: 999px;
    background: #e8322b;
    flex: 0 0 auto;
}

.job-row span {
    color: #8f8f8f;
    font-size: clamp(0.9rem, 1vw, 1.02rem);
    font-weight: 800;
}

.job-row span:first-of-type {
    color: #f1332e;
}

.job-details-btn {
    justify-self: end;
    min-width: 112px;
    margin-right: 14px;
    padding: 12px 20px;
    border: 0;
    border-radius: 999px;
    background: #e8322b;
    color: #fff;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 900;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease;
}

.job-details-btn:hover {
    background: #c9291e;
    transform: translateY(-1px);
}

.job-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.job-modal.is-open {
    display: flex;
}

.job-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 14, 18, 0.64);
}

.job-modal-card {
    position: relative;
    z-index: 1;
    width: min(1020px, 100%);
    max-height: min(86vh, 920px);
    overflow: auto;
    padding: clamp(46px, 6vw, 112px);
    border-radius: 18px;
    background: #fff;
    color: #050505;
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.26);
}

.job-modal-close {
    position: absolute;
    top: 20px;
    right: 22px;
    width: 36px;
    height: 36px;
    border: 0;
    background: transparent;
    color: #888;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.job-modal-card h2 {
    font-size: clamp(2.3rem, 4vw, 4.1rem);
    line-height: 1;
    letter-spacing: 0.01em;
    margin-bottom: 26px;
}

.job-modal-rule {
    width: 138px;
    height: 6px;
    margin-bottom: 28px;
    background: #f0242a;
}

.job-modal-meta {
    color: #969696;
    font-weight: 900;
    margin-bottom: 88px;
}

.job-modal-content {
    display: grid;
    gap: 28px;
    color: #050505;
}

.job-modal-content h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.job-modal-content ol {
    margin-left: 20px;
    font-size: clamp(0.98rem, 1.15vw, 1.16rem);
    line-height: 1.5;
}

.job-apply-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    min-height: 66px;
    margin: 34px auto 0;
    border: 0;
    border-radius: 8px;
    background: #f0242a;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease;
}

.job-apply-btn:hover {
    background: #d91920;
    transform: translateY(-1px);
}

.contact-info-panel {
    display: grid;
    grid-template-rows: minmax(300px, 1fr) auto;
    background: #0d0d0f;
    color: #fff;
}

.contact-photo {
    min-height: 420px;
    overflow: hidden;
    background: #08080a;
}

.contact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.contact-methods {
    display: grid;
    gap: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.contact-method {
    display: grid;
    gap: 5px;
    padding: 24px 26px;
    background: #0d0d0f;
    transition: background 0.18s ease;
}

.contact-method:hover {
    background: #18181c;
}

.contact-meta-label {
    display: block;
    color: #ff574a;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.contact-method strong {
    color: #fff;
    font-size: 1.02rem;
}

.contact-method small {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.86rem;
    line-height: 1.55;
}

.contact-panel {
    min-width: 0;
    padding: clamp(28px, 4vw, 58px);
    color: #11141b;
    background:
        linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.contact-panel-title {
    margin-bottom: 8px;
    color: #e8322b;
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.contact-panel h2 {
    margin-bottom: 28px;
    font-size: clamp(2rem, 3.2vw, 3.4rem);
    line-height: 1;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.contact-form-split label {
    margin-bottom: 7px;
    color: #4a5563;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.contact-form-split input,
.contact-form-split textarea,
.contact-form-split select {
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid #d6dbe1;
    border-radius: 8px;
    background: #fff;
    color: #11141b;
    font-size: 0.95rem;
}

.contact-form-split textarea {
    min-height: 156px;
}

.contact-form-split input:focus,
.contact-form-split textarea:focus,
.contact-form-split select:focus {
    border-color: #e8322b;
    box-shadow: 0 0 0 3px rgba(232, 50, 43, 0.12);
    background: #fff;
}

.contact-form-split .form-help {
    margin-top: 8px;
    color: #6b7280;
    font-size: 0.82rem;
}

.contact-submit {
    width: 100%;
    min-height: 52px;
}

.contact-panel .btn-primary {
    border: none;
    border-radius: 8px;
    background: #e8322b;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 900;
}

.contact-panel .btn-primary:hover {
    background: #c9291e;
}

.hidden-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}


/* --- ABOUT PAGE --- */

.nav-current {
    opacity: 1 !important;
}

/* HERO */

.company-hero {
    width: 100%;
    max-width: none;
    margin: 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
    min-height: 820px;
    padding-top: 118px;
    border-radius: 0;
    border: 0;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.82) 38%, rgba(247, 249, 252, 0.56) 100%),
        url("../media/images/others/a2.png") center right / contain no-repeat,
        linear-gradient(135deg, #ffffff 0%, #f7f9fc 100%);
    box-shadow: none;
}

.company-hero-media {
    position: relative;
    overflow: hidden;
    background: #07070a;
}

.company-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 702px;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: none;
}

.company-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 5, 7, 0.2), rgba(5, 5, 7, 0)),
        linear-gradient(180deg, rgba(5, 5, 7, 0), rgba(5, 5, 7, 0.22));
    pointer-events: none;
}

.company-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(52px, 5vw, 92px);
    position: relative;
    z-index: 1;
    color: #111;
}

.company-hero-content h1 {
    max-width: 760px;
    font-size: clamp(2.65rem, 4vw, 4.85rem);
    line-height: 1.02;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    margin-bottom: 22px;
}

.company-hero-sub {
    font-size: clamp(0.98rem, 1vw, 1.08rem);
    line-height: 1.75;
    color: #5c6875;
    max-width: 48rem;
}

.company-hero-divider {
    width: 100%;
    max-width: 48rem;
    height: 1px;
    margin: 24px 0;
    background: linear-gradient(90deg, rgba(10, 22, 34, 0.22), rgba(10, 22, 34, 0.03));
}

.company-hero-actions {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.company-hero-actions .btn-primary,
.company-hero-actions .btn-secondary {
    border-radius: 999px;
    padding: 14px 22px;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.company-hero-actions .btn-primary {
    box-shadow: 0 14px 34px rgba(201, 59, 35, 0.22);
}

.company-hero-actions .btn-secondary {
    color: #111;
    border-color: rgba(10, 22, 34, 0.16);
    background: #fff;
}

.company-hero-actions .btn-secondary:hover {
    color: #e8322b;
    border-color: rgba(232, 50, 43, 0.3);
    background: rgba(232, 50, 43, 0.06);
}

.company-hero .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: #e8322b;
    margin-bottom: 12px;
}

.company-hero-meta {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.8rem;
}

.company-hero-meta>div {
    min-width: 118px;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid rgba(10, 22, 34, 0.08);
    background: rgba(255, 255, 255, 0.72);
}

.company-meta-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.7rem;
    color: #8f969e;
}

.company-meta-value {
    font-weight: 500;
}

/* GENERIC SECTION WRAPPER */

.company-section {
    max-width: 1500px;
    margin: 56px auto 0;
    padding: 54px clamp(24px, 4vw, 58px);
    border-radius: 28px;
    border: 1px solid rgba(10, 22, 34, 0.08);
    background: #fff;
    box-shadow: 0 20px 60px rgba(22, 30, 42, 0.08);
    color: #111;
}

.company-section-alt {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.1fr);
    gap: 32px;
    align-items: center;
}

.company-section-label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: #e8322b;
    margin-bottom: 16px;
}

/* MISSION & VISION */

.company-split {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
    gap: 28px;
}

.company-split-title h2 {
    font-size: clamp(2.6rem, 4vw, 4.8rem);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.035em;
}

.company-split-body p {
    font-size: clamp(1rem, 1.15vw, 1.2rem);
    line-height: 1.72;
    color: #53606c;
    margin-bottom: 14px;
}

.company-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    font-size: 0.76rem;
}

.company-pill {
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    background: rgba(232, 50, 43, 0.07);
    border: 1px solid rgba(232, 50, 43, 0.14);
    color: #111;
    font-weight: 800;
}

/* VALUES / IDEAS */

.company-values-section {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(18px, 2vw, 28px);
    padding: clamp(18px, 2.4vw, 34px);
    background:
        linear-gradient(135deg, rgba(247, 249, 252, 0.94), rgba(255, 255, 255, 0.98)),
        radial-gradient(circle at 18% 18%, rgba(232, 50, 43, 0.1), transparent 28%),
        radial-gradient(circle at 84% 82%, rgba(80, 190, 225, 0.14), transparent 30%),
        #fff;
}

.company-values-section::before {
    display: none;
}

.company-values-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
    gap: clamp(20px, 2.4vw, 30px);
    align-items: center;
    min-height: 0;
    padding: clamp(24px, 2.4vw, 34px);
    border: 1px solid rgba(10, 22, 34, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 18px 46px rgba(22, 30, 42, 0.07);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.company-values-row:hover {
    transform: translateY(-3px);
    border-color: rgba(232, 50, 43, 0.18);
    box-shadow: 0 24px 56px rgba(22, 30, 42, 0.11);
}

.company-values-row-alt .company-values-art {
    order: 0;
}

.company-values-art {
    display: grid;
    place-items: center;
    min-height: 210px;
    border-radius: 16px;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.98) 0 32%, rgba(244, 248, 252, 0.92) 33% 100%);
    overflow: hidden;
}

.company-values-art img {
    width: min(390px, 86%);
    max-height: 230px;
    object-fit: contain;
    filter: drop-shadow(0 16px 24px rgba(22, 30, 42, 0.14));
    transition: transform 0.24s ease;
}

.company-values-row-alt .company-values-art img {
    width: min(230px, 56%);
    max-height: 240px;
}

.company-values-row:hover .company-values-art img {
    transform: translateY(-4px) scale(1.02);
}

.company-values-copy {
    display: flex;
    flex-direction: column;
    justify-content: start;
}

.company-values-copy h2 {
    max-width: 13.5ch;
    font-size: clamp(2.2rem, 3vw, 3.45rem);
    line-height: 1.04;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
}

.company-values-copy p {
    max-width: 34rem;
    color: #53606c;
    font-size: clamp(0.95rem, 0.95vw, 1.04rem);
    line-height: 1.68;
    font-weight: 600;
}

/* IDEAS */

.company-ideas-section {
    position: relative;
    width: 100%;
    margin: 56px 0 0;
    padding: clamp(72px, 7vw, 116px) clamp(28px, 6vw, 96px);
    overflow: hidden;
    background:
        radial-gradient(circle at 76% -18%, rgba(222, 228, 240, 0.68), transparent 36%),
        linear-gradient(180deg, #f7f8fb 0%, #ffffff 100%);
    color: #111;
}

.company-ideas-section::before {
    content: "";
    position: absolute;
    left: 22%;
    top: -120px;
    width: min(980px, 70vw);
    height: 430px;
    border: 8px dashed rgba(215, 222, 238, 0.48);
    border-color: transparent transparent rgba(215, 222, 238, 0.48) rgba(215, 222, 238, 0.48);
    border-radius: 50%;
    transform: rotate(10deg);
    pointer-events: none;
}

.company-ideas-section::after {
    content: "";
    position: absolute;
    right: -10%;
    bottom: -220px;
    width: min(780px, 62vw);
    height: 360px;
    border: 8px dashed rgba(215, 222, 238, 0.4);
    border-color: rgba(215, 222, 238, 0.4) transparent transparent transparent;
    border-radius: 50%;
    transform: rotate(-8deg);
    pointer-events: none;
}

.company-ideas-row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(210px, 330px) minmax(0, 1fr);
    gap: clamp(52px, 6vw, 98px);
    align-items: center;
    max-width: 1360px;
    margin: 0 auto;
}

.company-ideas-row+.company-ideas-row {
    margin-top: clamp(58px, 7vw, 96px);
}

.company-ideas-art {
    display: grid;
    place-items: center;
}

.company-ideas-art img {
    width: min(260px, 82%);
    max-height: 300px;
    object-fit: contain;
    filter: drop-shadow(0 18px 26px rgba(22, 30, 42, 0.16));
}

.company-ideas-copy h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 3.1vw, 3rem);
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 0;
    font-weight: 900;
}

.company-ideas-copy p {
    max-width: 68rem;
    color: #111;
    font-size: clamp(1.08rem, 1.35vw, 1.36rem);
    font-weight: 500;
    line-height: 1.7;
}

/* TIMELINE */

.company-story-section {
    position: relative;
    grid-template-columns: minmax(0, 1fr);
    gap: 34px;
    overflow: hidden;
    padding: clamp(44px, 5vw, 72px);
    background:
        radial-gradient(circle at 86% 8%, rgba(104, 205, 237, 0.18), transparent 34%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.company-story-section::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(10, 22, 34, 0.06);
    border-radius: 24px;
    pointer-events: none;
}

.company-story-heading {
    position: relative;
    z-index: 1;
    max-width: 920px;
}

.company-story-heading h2 {
    max-width: 880px;
    margin-bottom: 18px;
    font-size: clamp(2.4rem, 4.5vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: 0.035em;
    text-transform: uppercase;
}

.company-story-heading p {
    max-width: 720px;
    color: #53606c;
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    font-weight: 500;
    line-height: 1.75;
}

.company-story-visual {
    position: absolute;
    right: clamp(28px, 6vw, 92px);
    top: clamp(32px, 5vw, 66px);
    width: min(30vw, 360px);
    opacity: 0.9;
    filter: drop-shadow(0 26px 38px rgba(22, 30, 42, 0.14));
    pointer-events: none;
}

.company-story-visual img {
    width: 100%;
    display: block;
}

.company-timeline-shell h2 {
    font-size: clamp(2.4rem, 3.6vw, 4.2rem);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 0.035em;
    margin-bottom: 24px;
}

.company-timeline-label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: #e8322b;
    margin-bottom: 6px;
}

.company-timeline-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.company-timeline-item {
    min-height: 230px;
    padding: 24px 22px;
    border: 1px solid rgba(10, 22, 34, 0.08);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 18px 46px rgba(22, 30, 42, 0.07);
    backdrop-filter: blur(10px);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.company-timeline-item:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 50, 43, 0.2);
    box-shadow: 0 24px 60px rgba(22, 30, 42, 0.12);
}

.company-timeline-year {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #e8322b;
    display: block;
    margin-bottom: 18px;
}

.company-timeline-item h3 {
    margin-bottom: 10px;
    color: #101217;
    font-size: clamp(1.15rem, 1.4vw, 1.45rem);
    line-height: 1.2;
}

.company-timeline-text {
    font-size: 0.98rem;
    line-height: 1.65;
    color: #53606c;
}

.company-section-image img {
    width: 100%;
    min-height: 520px;
    border-radius: 24px;
    box-shadow: 0 24px 70px rgba(22, 30, 42, 0.14);
    object-fit: cover;
}

/* CRAFT / STUDIO */

.company-craft-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.3fr);
    gap: 26px;
}

.company-craft-text h2 {
    font-size: clamp(2.4rem, 3.8vw, 4.6rem);
    line-height: 1.04;
    text-transform: uppercase;
    letter-spacing: 0.035em;
    margin-bottom: 22px;
}

.company-craft-text p {
    font-size: clamp(1rem, 1.15vw, 1.18rem);
    line-height: 1.72;
    color: #53606c;
    margin-bottom: 14px;
}

.company-craft-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.company-card {
    border: 1px solid rgba(10, 22, 34, 0.08);
    border-radius: 20px;
    padding: 24px 24px;
    background: #f7f9fc;
    font-size: 0.98rem;
    color: #53606c;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.company-card:hover {
    transform: translateY(-4px);
    background: #fff;
    box-shadow: 0 20px 50px rgba(22, 30, 42, 0.1);
}

.company-card h3 {
    color: #111;
    font-size: 1.18rem;
    margin-bottom: 8px;
}

/* TEAM */

.company-team-section {
    text-align: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.98)),
        url("../media/images/team-graphic-2.png") center center / cover no-repeat;
}

.company-team-heading {
    max-width: 760px;
    margin: 0 auto 42px;
}

.company-team-heading h2 {
    font-size: clamp(2.5rem, 4vw, 4.8rem);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.035em;
    margin-bottom: 12px;
}

.company-team-heading p {
    color: #53606c;
    font-size: clamp(1rem, 1.15vw, 1.18rem);
    line-height: 1.65;
}

.company-team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
}

.company-team-member {
    display: grid;
    justify-items: center;
    gap: 8px;
}

.company-team-member img {
    width: clamp(150px, 12vw, 220px);
    aspect-ratio: 1;
    border-radius: 999px;
    object-fit: cover;
    border: 6px solid #fff;
    outline: 4px solid rgba(10, 22, 34, 0.82);
    box-shadow: 0 20px 46px rgba(22, 30, 42, 0.12);
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.company-team-member:hover img {
    transform: translateY(-6px);
    box-shadow: 0 28px 62px rgba(22, 30, 42, 0.18);
}

.company-team-member h3 {
    margin-top: 10px;
    color: #111;
    font-size: 1.05rem;
}

.company-team-member p {
    color: #53606c;
    font-size: 0.92rem;
    font-weight: 700;
}

/* PROCESS */

.company-process h2 {
    font-size: clamp(2.4rem, 3.8vw, 4.4rem);
    line-height: 1.02;
    text-transform: uppercase;
    letter-spacing: 0.035em;
    margin-bottom: 12px;
}

.company-process-sub {
    font-size: clamp(1rem, 1.15vw, 1.18rem);
    color: #53606c;
    line-height: 1.7;
    max-width: 44rem;
    margin-bottom: 28px;
}

.company-process-steps {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.company-step {
    border-radius: 22px;
    border: 1px solid rgba(10, 22, 34, 0.08);
    padding: 24px 22px;
    font-size: 0.95rem;
    line-height: 1.62;
    background: #f7f9fc;
    color: #53606c;
    transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.company-step:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 20px 54px rgba(22, 30, 42, 0.1);
}

.company-step-num {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #e8322b;
    margin-bottom: 8px;
}

.company-step h3 {
    color: #111;
    font-size: 1.18rem;
    margin-bottom: 8px;
}

/* PRIVACY PAGE */

.legal-hero,
.legal-shell {
    max-width: 1100px;
    margin-inline: auto;
}

.legal-hero {
    margin-top: 120px;
    padding: 34px 32px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(135deg, rgba(154, 32, 10, 0.28), rgba(0, 0, 0, 0.92)),
        radial-gradient(circle at top, #202020 0, #050505 70%, #000 100%);
    box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.legal-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.78rem;
    color: var(--muted);
    margin-bottom: 8px;
}

.legal-hero h1 {
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
}

.legal-hero-sub {
    max-width: 42rem;
    color: rgba(255, 255, 255, 0.8);
}

.legal-meta {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 32px;
}

.legal-meta-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.72rem;
    color: var(--muted);
    margin-bottom: 4px;
}

.legal-meta-value {
    font-size: 0.95rem;
    font-weight: 600;
}

.legal-shell {
    margin-top: 24px;
}

.legal-card {
    padding: 32px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: var(--shadow-soft);
}

.legal-prose {
    font-size: 0.96rem;
}

.legal-prose h2 {
    font-size: 1rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin: 28px 0 10px;
}

.legal-prose p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 14px;
}

.legal-prose ul {
    margin: 0 0 16px 22px;
    color: var(--muted);
}

.legal-prose li+li {
    margin-top: 8px;
}

.legal-prose a {
    color: #ffc7ba;
    text-decoration: underline;
    text-decoration-color: rgba(255, 199, 186, 0.45);
    text-underline-offset: 0.16em;
}

.legal-prose a:hover {
    color: #fff;
    text-decoration-color: rgba(255, 255, 255, 0.7);
}

.legal-note {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    .site-header {
        padding: 0 24px;
    }

    .header-nav {
        gap: 18px;
        font-size: 0.72rem;
    }

    .hero-art {
        width: min(1120px, 86vw);
    }

    .game-card-grid,
    .news-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .games-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .game-detail,
    .news-feature,
    .news-page-hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .news-page-hero {
        padding-inline: 28px;
    }

    .news-page-hero>div {
        justify-self: center;
        text-align: center;
        order: 0;
    }

    .news-page-hero p:not(.news-eyebrow) {
        margin-inline: auto;
    }

    .news-page-hero img {
        justify-self: center;
        max-width: 420px;
    }

    .news-feature img {
        min-height: 380px;
    }

    .games-page-cinema {
        min-height: 760px;
    }

    .games-page-cinema .games-panel:nth-child(n+4) {
        min-height: 580px;
    }

    .game-detail:nth-of-type(even) img {
        order: 0;
    }

    .game-detail,
    .game-detail-body {
        min-height: 0;
    }

    .game-detail img {
        aspect-ratio: 16 / 9;
    }

    .news-page-hero>div {
        justify-self: start;
    }

    .company-hero {
        grid-template-columns: minmax(0, 1fr);
        min-height: 0;
    }

    .company-hero-media {
        max-height: 420px;
    }

    .company-hero-media img {
        min-height: 420px;
    }

    .company-section-alt {
        grid-template-columns: minmax(0, 1fr);
    }

    .company-ideas-row {
        grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
        gap: 34px;
    }

    .company-values-section {
        grid-template-columns: minmax(0, 1fr);
    }

    .company-values-row {
        grid-template-columns: minmax(220px, 0.44fr) minmax(0, 1fr);
        align-items: center;
        min-height: 0;
    }

    .company-values-copy h2 {
        max-width: 16ch;
        font-size: clamp(2.15rem, 4.4vw, 3.6rem);
    }

    .company-values-art {
        min-height: 220px;
    }

    .company-craft-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .company-process-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .company-team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .hero {
        min-height: 760px;
        padding: 150px 22px 48px;
    }

    .header-inner {
        padding: 0 32px;
        height: 96px;
    }

    .about-grid {
        padding: 0 20px 0 0;
        gap: 16px;
    }

    .news-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .news-card-featured {
        min-height: 0;
    }

    .contact-split {
        grid-template-columns: minmax(0, 1fr);
        margin-top: 42px;
    }

    .contact-hero {
        grid-template-columns: minmax(0, 1fr);
        min-height: 620px;
        padding: 132px 32px 104px;
        gap: 30px;
    }

    .contact-info-panel {
        grid-template-rows: auto auto;
    }

    .job-row {
        grid-template-columns: minmax(0, 1fr) minmax(120px, 0.5fr) 126px;
    }

    .job-row span:nth-of-type(2) {
        display: none;
    }

    .contact-photo {
        min-height: 320px;
        max-height: none;
    }

    .contact-photo img {
        object-position: center top;
    }

    .featured-shell {
        margin: 32px 12px 0;
        padding: 18px 16px 20px;
    }

    .featured-hero {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 720px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .header-inner {
        height: 64px;
        padding: 0 20px;
        gap: 16px;
    }

    .header-burger {
        display: flex;
    }

    .header-nav {
        display: none;
    }

    .header-logo img {
        width: 32px;
        height: 32px;
    }

    .mobile-nav {
        inset: 64px 0 auto 0;
        border-radius: 0;
    }

    .hero {
        min-height: 680px;
        padding: 120px 20px 44px;
    }

    .hero-copy {
        margin-bottom: 24px;
    }

    .hero-copy h1 {
        font-size: clamp(2.4rem, 9vw, 4rem);
        letter-spacing: 0.16em;
        text-indent: 0.16em;
    }

    .hero-tagline {
        font-size: 0.82rem;
        letter-spacing: 0.22em;
        text-indent: 0.22em;
    }

    .hero-art {
        width: min(100%, 720px);
    }

    .hero-desc {
        font-size: 0.92rem;
        max-width: 420px;
        margin-top: 24px;
    }

    .news-section {
        padding: 42px 18px 48px;
    }

    .news-header {
        display: block;
    }

    .news-header h2 {
        margin-top: 8px;
        letter-spacing: 0.1em;
    }

    .news-card,
    .news-card-featured {
        grid-template-columns: minmax(0, 1fr);
    }

    .news-page-hero {
        min-height: 640px;
        padding: 120px 18px 52px;
    }

    .news-page-hero h1 {
        font-size: clamp(2.4rem, 10vw, 4.4rem);
    }

    .news-page-shell {
        margin-top: -34px;
        padding: 0 16px 72px;
    }

    .news-feature {
        border-radius: 20px;
        margin-bottom: 24px;
    }

    .news-feature img {
        min-height: 280px;
    }

    .news-feature>div {
        padding: 28px 22px 32px;
    }

    .news-feature h2 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .news-page-shell .news-card {
        border-radius: 18px;
    }

    .news-card .news-media,
    .news-card-featured .news-media {
        height: 210px;
    }

    .game-card-grid,
    .news-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .games-banner {
        padding: 54px 18px 22px;
    }

    .games-page-cinema {
        min-height: 560px;
        padding: 72px 0 0;
        justify-content: center;
    }

    .games-page-cinema .games-cinema-copy {
        position: absolute;
        top: auto;
        left: 50%;
        bottom: 36px;
        width: min(520px, calc(100% - 32px));
        transform: translateX(-50%);
        margin-bottom: 0;
    }

    .games-page-cinema .games-panel,
    .games-page-cinema .games-panel:nth-child(1),
    .games-page-cinema .games-panel:nth-child(4) {
        width: 44vw;
        min-width: 180px;
        min-height: 470px;
    }

    .games-page-cinema .games-panel:nth-child(n+4) {
        display: none;
    }

    .game-detail img {
        aspect-ratio: 16 / 9;
    }

    .games-library {
        padding: 60px 16px 72px;
    }

    .games-library .showcase-heading {
        margin-bottom: 28px;
    }

    .game-detail {
        border-radius: 18px;
        margin-top: 22px;
    }

    .game-detail-body {
        min-height: 0;
        padding: 32px 22px 34px;
    }

    .game-detail-body h2 {
        font-size: clamp(2.25rem, 12vw, 3.4rem);
        margin-bottom: 16px;
    }

    .game-detail-body p {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .game-detail-actions .btn-primary,
    .game-detail-actions .btn-secondary {
        padding: 13px 20px;
        font-size: 0.74rem;
    }

    .games-gallery {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
        padding: 28px 16px 48px;
    }

    .games-gallery-card {
        min-height: 360px;
        border-radius: 18px;
    }

    .showcase-heading {
        grid-template-columns: minmax(0, 1fr);
    }

    .footer-cta {
        min-height: 300px;
        flex-direction: column;
        text-align: center;
        background-size: min(640px, 100%) auto, auto, auto;
    }

    .site-footer>.footer-cta:not(.footer-cta--games):not(.footer-cta--home):not(.footer-cta--about) {
        align-items: center;
        justify-content: center;
        padding: 48px 18px;
        background-position: center center;
    }

    .site-footer>.footer-cta:not(.footer-cta--games):not(.footer-cta--home):not(.footer-cta--about) h2 {
        font-size: clamp(2rem, 10vw, 3.4rem);
    }

    .footer-cta--home {
        min-height: 420px;
        background-position: center center;
        background-size: cover;
    }

    .site-footer>.footer-cta--about {
        min-height: 520px;
        padding: 48px 16px;
        background-position: center center;
    }

    .footer-cta--games {
        min-height: 520px;
        padding: 34px 16px;
        background-position: center center;
        background-size: cover;
    }

    .footer-cta-logo {
        display: none;
    }

    .footer-cta--home .footer-cta-body {
        width: calc(100% - 32px);
        margin: 24px 16px 32px;
        padding: 32px 24px;
        align-items: center;
        text-align: center;
    }

    .footer-cta--about .footer-cta-body {
        width: 100%;
        padding: 32px 22px 36px;
        border-radius: 22px;
    }

    .footer-cta--about .footer-cta-list {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .footer-cta--about .footer-cta-list li {
        min-height: auto;
        justify-content: flex-start;
    }

    .footer-cta-art {
        max-height: 280px;
        padding: 0;
    }

    .footer-cta-body {
        padding: 36px 28px 52px;
        align-items: center;
        text-align: center;
    }

    .footer-cta--games .footer-cta-body {
        width: 100%;
        max-width: 520px;
        padding: 28px 22px 32px;
    }

    .footer-cta-btn {
        align-self: center;
    }

    .contact-section {
        padding: 0 0 56px;
    }

    .contact-panel {
        padding: 26px 18px 28px;
    }

    .contact-hero {
        width: 100%;
        min-height: 600px;
        margin: 0;
        padding: 112px 18px 92px;
        background-position: center;
    }

    .contact-hero h1 {
        font-size: clamp(2.35rem, 13vw, 4.4rem);
        letter-spacing: 0.02em;
    }

    .contact-hero-sub {
        margin-top: 18px;
        font-size: 0.98rem;
    }

    .contact-split {
        width: calc(100% - 28px);
        max-width: calc(100% - 28px);
        margin-top: 34px;
    }

    .hiring-section {
        margin-top: -1px;
        padding: 56px 14px 68px;
    }

    .hiring-header {
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
        margin-bottom: 32px;
        text-align: center;
    }

    .hiring-header h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hiring-header p {
        margin-inline: auto;
    }

    .job-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
        min-height: 0;
    }

    .job-row strong,
    .job-row span {
        padding: 14px 18px 0;
    }

    .job-row strong::before {
        height: 28px;
        margin-right: 12px;
    }

    .job-row span:nth-of-type(2) {
        display: flex;
        padding-top: 6px;
        padding-bottom: 14px;
    }

    .job-details-btn {
        min-height: 54px;
        width: calc(100% - 28px);
        margin: 12px 14px 14px;
        border-radius: 10px;
    }

    .job-modal {
        padding: 14px;
    }

    .job-modal-card {
        padding: 42px 22px 32px;
        border-radius: 14px;
    }

    .job-modal-meta {
        margin-bottom: 44px;
    }

    .contact-photo {
        min-height: 250px;
    }

    .contact-method {
        padding: 20px 18px;
    }

    .field-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
    }

    .team-section {
        max-width: 100%;
        margin-inline: 12px;
    }

    .company-hero-content {
        padding: 34px 22px 30px;
    }

    .company-hero-content h1 {
        font-size: clamp(2.1rem, 9vw, 3.15rem);
        letter-spacing: 0.025em;
    }

    .company-hero-divider {
        margin: 18px 0;
    }

    .company-hero-meta>div {
        flex: 1 1 130px;
    }

    .company-section {
        max-width: 100%;
        margin-inline: 12px;
        padding: 32px 20px;
        border-radius: 20px;
    }

    .company-ideas-section {
        margin-top: 34px;
        padding: 48px 20px;
    }

    .company-ideas-section::before {
        left: 6%;
        top: -90px;
        width: 760px;
        height: 300px;
        border-width: 6px;
    }

    .company-ideas-section::after {
        display: none;
    }

    .company-ideas-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
        text-align: center;
    }

    .company-ideas-row+.company-ideas-row {
        margin-top: 46px;
    }

    .company-ideas-art img {
        width: min(190px, 58%);
        max-height: 210px;
    }

    .company-ideas-copy h2 {
        margin-inline: auto;
        font-size: clamp(1.9rem, 8vw, 2.55rem);
    }

    .company-ideas-copy p {
        max-width: 34rem;
        margin-inline: auto;
        font-size: 1rem;
        line-height: 1.65;
    }

    .company-hero {
        max-width: none;
        margin-top: 0;
        padding-top: 64px;
        border-radius: 0;
    }

    .company-hero-media img {
        min-height: 280px;
    }

    .company-section-image img {
        min-height: 280px;
        border-radius: 18px;
    }

    .company-split,
    .company-values-row,
    .company-process-steps {
        grid-template-columns: minmax(0, 1fr);
    }

    .company-values-row {
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto 1fr;
        gap: 18px;
        text-align: center;
        padding: 20px;
    }

    .company-values-row-alt .company-values-art {
        order: 0;
    }

    .company-values-copy {
        align-items: center;
    }

    .company-values-copy h2 {
        max-width: 14ch;
        font-size: clamp(1.85rem, 8vw, 2.7rem);
        line-height: 1.06;
        margin-bottom: 12px;
    }

    .company-values-copy p {
        font-size: 0.94rem;
        line-height: 1.6;
    }

    .company-values-art {
        min-height: 170px;
    }

    .company-values-art img {
        width: min(300px, 84%);
        max-height: 180px;
    }

    .company-values-row-alt .company-values-art img {
        width: min(170px, 48%);
        max-height: 180px;
    }

    .company-team-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .legal-hero,
    .legal-shell {
        max-width: 100%;
        margin-inline: 12px;
    }

    .legal-hero {
        padding: 24px 18px;
    }

    .legal-hero h1 {
        font-size: 1.65rem;
        letter-spacing: 0.12em;
    }

    .legal-card {
        padding: 22px 18px;
    }
}

@media (max-width: 600px) {
    .featured-thumb {
        min-width: 110px;
        max-width: 120px;
        height: auto;
        flex-basis: 150px;
    }

    .hero-desc {
        font-size: 0.88rem;
        max-width: 340px;
        margin-top: 20px;
    }
}

@media (max-width: 520px) {
    .page {
        padding-inline: 0;
    }

    .hero {
        min-height: 610px;
        padding: 96px 14px 30px;
    }

    .hero-copy h1 {
        font-size: clamp(1.8rem, 10vw, 2.6rem);
        letter-spacing: 0.1em;
        text-indent: 0.1em;
    }

    .hero-tagline {
        font-size: 0.72rem;
        letter-spacing: 0.16em;
        text-indent: 0.16em;
        margin-top: 10px;
    }

    .hero-art {
        width: 100%;
    }

    .news-section {
        padding-inline: 12px;
    }

    .news-body {
        padding: 16px;
    }

    .news-card .news-media,
    .news-card-featured .news-media {
        height: 180px;
    }

    .games-cinema,
    .games-panel {
        min-height: 390px;
    }

    .games-cinema-copy {
        bottom: 22px;
    }

    .game-showcase-shell,
    .games-library,
    .news-page-shell {
        padding: 46px 12px;
    }

    .news-page-hero {
        min-height: 560px;
        padding: 112px 14px 34px;
    }

    .news-page-shell {
        margin-top: -22px;
        padding-top: 0;
    }

    .field-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* Landscape mobile — very little vertical space */
@media (orientation: landscape) and (max-height: 520px) {
    .hero {
        min-height: unset;
        padding: 80px 24px 32px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 24px;
    }

    .hero-copy {
        flex: 0 0 auto;
        text-align: left;
        margin-bottom: 0;
        max-width: 380px;
    }

    .hero-copy h1 {
        font-size: clamp(1.6rem, 5vw, 2.4rem);
        letter-spacing: 0.12em;
        text-indent: 0.12em;
    }

    .hero-tagline {
        font-size: 0.7rem;
        margin-top: 8px;
    }

    .hero-desc {
        font-size: 0.82rem;
        margin-top: 12px;
        max-width: 340px;
    }

    .hero-art {
        flex: 0 0 auto;
        width: min(45vw, 340px);
    }
}
