/* Gibson — Mid-century apothecary editorial (warm paper + serif) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --paper: #f6f1e7;
    --paper-2: #ebe4d6;
    --ink: #1c1917;
    --ink-muted: #57534e;
    --sage: #d8e0d4;
    --forest: #2f4a3c;
    --rust: #b45309;
    --rust-light: #ea580c;
    --cream: #fffdf8;
    --line: rgba(28, 25, 23, 0.12);
    --shadow: 0 18px 40px rgba(28, 25, 23, 0.08);
    --radius: 14px;
    --radius-lg: 22px;
    --font-serif: "Fraunces", Georgia, serif;
    --font-sans: "DM Sans", system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.65;
    overflow-x: hidden;
    background-image:
        radial-gradient(ellipse 90% 60% at 100% 0%, rgba(180, 83, 9, 0.07), transparent 55%),
        radial-gradient(ellipse 70% 50% at 0% 100%, rgba(47, 74, 60, 0.08), transparent 50%);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 22px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    background: rgba(246, 241, 231, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: saturate(140%) blur(10px);
}

.navbar.scrolled {
    padding: 0.65rem 0;
    box-shadow: var(--shadow);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2.2vw, 1.28rem);
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.logo-icon {
    font-size: 1.25rem;
    color: var(--rust);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.25rem;
}

.nav-link {
    color: var(--ink-muted);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 0.95rem;
    border-radius: 999px;
    border: 1px solid transparent;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.65);
    border-color: var(--line);
}

.nav-link.active {
    color: var(--cream);
    background: var(--forest);
    border-color: var(--forest);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 6px;
}

.hamburger span {
    width: 26px;
    height: 2px;
    background: var(--ink);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 128px 20px 96px;
    overflow: hidden;
    background: var(--paper);
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.memphis-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.shape {
    position: absolute;
    border: 1px solid rgba(28, 25, 23, 0.06);
}

.shape-circle {
    border-radius: 50%;
}

.shape-1 {
    width: 220px;
    height: 220px;
    top: 12%;
    left: 6%;
    background: linear-gradient(145deg, rgba(216, 224, 212, 0.9), rgba(246, 241, 231, 0.2));
    opacity: 0.95;
}

.shape-2 {
    width: 140px;
    height: 140px;
    top: 52%;
    right: 10%;
    background: linear-gradient(160deg, rgba(180, 83, 9, 0.12), rgba(246, 241, 231, 0.3));
}

.shape-3 {
    width: 100px;
    height: 100px;
    bottom: 18%;
    left: 12%;
    background: var(--cream);
    box-shadow: var(--shadow);
}

.shape-triangle {
    width: 0;
    height: 0;
    border: none;
    background: transparent !important;
}

.shape-4 {
    width: 0;
    height: 0;
    border-left: 70px solid transparent;
    border-right: 70px solid transparent;
    border-bottom: 120px solid rgba(47, 74, 60, 0.12);
    top: 22%;
    right: 18%;
    filter: none;
}

.shape-5 {
    width: 0;
    height: 0;
    border-left: 55px solid transparent;
    border-right: 55px solid transparent;
    border-top: 95px solid rgba(180, 83, 9, 0.1);
    bottom: 28%;
    right: 22%;
}

.shape-zigzag {
    width: 180px;
    height: 14px;
    top: 38%;
    left: 4%;
    background: repeating-linear-gradient(
        90deg,
        var(--forest),
        var(--forest) 8px,
        transparent 8px,
        transparent 14px
    );
    opacity: 0.2;
    border: none;
}

.shape-squiggle {
    width: 200px;
    height: 200px;
    bottom: 8%;
    right: 8%;
    background: radial-gradient(circle, rgba(180, 83, 9, 0.08), transparent 65%);
    border-radius: 42% 58% 55% 45% / 48% 42% 58% 52%;
    border: none;
    animation: drift 18s ease-in-out infinite;
}

@keyframes drift {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-12px, -8px); }
}

.polka-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(28, 25, 23, 0.07) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.45;
}

.stripes {
    position: absolute;
    inset: 0;
    opacity: 0.035;
}

.stripes-diag {
    background: repeating-linear-gradient(
        -48deg,
        var(--ink),
        var(--ink) 1px,
        transparent 1px,
        transparent 16px
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.hero-badge {
    display: inline-block;
    padding: 0.45rem 1.1rem;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--ink-muted);
    margin-bottom: 1.5rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    box-shadow: var(--shadow);
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 7vw, 4.25rem);
    font-weight: 600;
    margin-bottom: 1.25rem;
    line-height: 1.05;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--rust);
    font-style: italic;
    font-weight: 500;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    color: var(--ink-muted);
    margin-bottom: 2.25rem;
    line-height: 1.75;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.btn {
    padding: 0.9rem 1.85rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    font-family: var(--font-sans);
    letter-spacing: 0.02em;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--forest);
    color: var(--cream);
    border-color: rgba(28, 25, 23, 0.15);
    box-shadow: 0 4px 0 rgba(28, 25, 23, 0.12);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 0 rgba(28, 25, 23, 0.12);
    background: #264032;
}

.btn-secondary {
    background: var(--cream);
    color: var(--ink);
    border-color: var(--line);
}

.btn-secondary:hover {
    border-color: rgba(180, 83, 9, 0.35);
    color: var(--rust);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 1.1rem 1.5rem;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.stat-value {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--rust);
    margin-bottom: 0.35rem;
}

.stat-label {
    color: var(--ink-muted);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--ink-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    animation: bounce 2.2s infinite;
}

.arrow {
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--rust);
    border-bottom: 2px solid var(--rust);
    transform: rotate(45deg);
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(7px); }
}

/* Sections */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    padding: 0.35rem 0.9rem;
    background: var(--sage);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--forest);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.85rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.1rem);
    font-weight: 600;
    margin-bottom: 0.65rem;
    color: var(--ink);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--ink-muted);
    max-width: 520px;
    margin: 0 auto;
}

/* Services */
.games-section {
    position: relative;
    background: var(--paper-2);
    border-top: 1px solid var(--line);
}

.games-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--forest), var(--rust), var(--forest));
    opacity: 0.35;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.75rem;
}

.game-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.game-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 50px rgba(28, 25, 23, 0.12);
}

.game-card.featured {
    border-color: rgba(47, 74, 60, 0.25);
}

.game-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.game-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.45s ease;
    position: relative;
}

.game-card:hover .game-placeholder {
    transform: scale(1.03);
}

.game-1 {
    background: linear-gradient(160deg, #cfe8d8, #e8f2eb);
}

.game-2 {
    background: linear-gradient(160deg, #f5e6d8, #f0dfd2);
}

.game-3 {
    background: linear-gradient(160deg, #e8e4f0, #ddd8ea);
}

.game-placeholder::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent 55%);
}

.game-icon {
    font-size: 3.75rem;
    position: relative;
    z-index: 1;
}

.game-overlay {
    position: absolute;
    top: 14px;
    right: 14px;
}

.game-badge {
    padding: 0.3rem 0.75rem;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--cream);
    color: var(--ink);
}

.game-badge.new {
    background: var(--forest);
    color: var(--cream);
    border-color: var(--forest);
}

.game-badge.popular {
    background: rgba(180, 83, 9, 0.12);
    color: var(--rust);
}

.game-badge.coming {
    background: var(--sage);
    color: var(--forest);
}

.game-content {
    padding: 1.5rem 1.65rem 1.65rem;
}

.game-platforms {
    display: flex;
    gap: 0.45rem;
    margin-bottom: 0.85rem;
    flex-wrap: wrap;
}

.platform {
    padding: 0.22rem 0.6rem;
    background: var(--paper);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--ink-muted);
    text-transform: uppercase;
    border-radius: 6px;
    border: 1px solid var(--line);
}

.game-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--ink);
}

.game-genre {
    color: var(--rust);
    font-size: 0.82rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-style: italic;
}

.game-description {
    color: var(--ink-muted);
    margin-bottom: 1.1rem;
    line-height: 1.65;
    font-size: 0.93rem;
}

.game-features {
    display: flex;
    gap: 0.4rem;
    margin-bottom: 1.1rem;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 0.28rem 0.6rem;
    background: var(--paper);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--ink);
    border-radius: 999px;
    border: 1px solid var(--line);
}

.game-link {
    color: var(--forest);
    text-decoration: none;
    font-weight: 700;
    transition: gap 0.2s ease, color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    border-bottom: 2px solid rgba(47, 74, 60, 0.25);
    padding-bottom: 2px;
}

.game-link:hover {
    color: var(--rust);
    gap: 0.55rem;
    border-bottom-color: rgba(180, 83, 9, 0.4);
}

/* About */
.about-section {
    background: var(--paper);
}

.about-content {
    display: grid;
    grid-template-columns: 1.12fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.about-description {
    color: var(--ink-muted);
    margin-bottom: 1.1rem;
    line-height: 1.78;
    font-size: 1.02rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.1rem;
    margin-top: 2rem;
}

.value-item {
    padding: 1.2rem;
    background: var(--cream);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 2px 0 rgba(28, 25, 23, 0.04);
}

.value-item:nth-child(1) { border-top: 3px solid var(--forest); }
.value-item:nth-child(2) { border-top: 3px solid var(--rust); }
.value-item:nth-child(3) { border-top: 3px solid #7c6f9c; }
.value-item:nth-child(4) { border-top: 3px solid var(--ink-muted); }

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.value-icon {
    font-size: 1.85rem;
    margin-bottom: 0.55rem;
}

.value-item h4 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--ink);
}

.value-item p {
    color: var(--ink-muted);
    font-size: 0.86rem;
}

.about-visual {
    position: relative;
    height: 400px;
}

.visual-card {
    position: absolute;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    transition: transform 0.4s ease;
    box-shadow: var(--shadow);
}

.card-1 {
    width: 56%;
    height: 56%;
    top: 0;
    left: 0;
    background: linear-gradient(145deg, var(--sage), var(--cream));
    z-index: 3;
}

.card-2 {
    width: 56%;
    height: 56%;
    bottom: 0;
    right: 0;
    background: linear-gradient(145deg, rgba(180, 83, 9, 0.12), var(--cream));
    z-index: 2;
}

.card-3 {
    width: 50%;
    height: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(180deg, #e8e4f0, var(--cream));
    z-index: 1;
}

.about-visual:hover .card-1 {
    transform: translate(-8px, -8px) rotate(-2deg);
}

.about-visual:hover .card-2 {
    transform: translate(8px, 8px) rotate(2deg);
}

.about-visual:hover .card-3 {
    transform: translate(-50%, -50%) scale(1.03);
}

/* Careers */
.careers-section {
    background: var(--paper-2);
    border-top: 1px solid var(--line);
}

.careers-intro {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2.5rem;
    color: var(--ink-muted);
    font-size: 1.02rem;
    line-height: 1.75;
}

.open-positions h3 {
    font-family: var(--font-serif);
    font-size: 1.65rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--ink);
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.position-card {
    padding: 1.5rem;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform 0.25s ease;
    box-shadow: var(--shadow);
}

.position-card:hover {
    transform: translateY(-4px);
}

.position-card h4 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.55rem;
    color: var(--ink);
}

.position-location {
    color: var(--ink-muted);
    font-size: 0.82rem;
    margin-bottom: 0.35rem;
}

.position-type {
    display: inline-block;
    padding: 0.22rem 0.6rem;
    background: var(--sage);
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--forest);
    border-radius: 999px;
    border: 1px solid var(--line);
    margin-bottom: 1rem;
}

.position-link {
    color: var(--rust);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.82rem;
}

.position-link:hover {
    text-decoration: underline;
}

/* Contact */
.contact-section {
    background: var(--paper-2);
    border-top: 1px solid var(--line);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.info-text h4 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    color: var(--ink);
}

.info-text p {
    color: var(--ink-muted);
    line-height: 1.7;
}

.info-text a {
    color: var(--forest);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 1px solid rgba(47, 74, 60, 0.25);
}

.info-text a:hover {
    color: var(--rust);
    border-bottom-color: rgba(180, 83, 9, 0.4);
}

.info-note {
    display: block;
    font-size: 0.78rem;
    opacity: 0.9;
    margin-top: 0.25rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.social-link {
    padding: 0.45rem 0.95rem;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 999px;
    text-decoration: none;
    color: var(--ink-muted);
    font-weight: 700;
    font-size: 0.75rem;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.social-link:hover {
    color: var(--rust);
    border-color: rgba(180, 83, 9, 0.35);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    padding: 1.75rem;
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 10px;
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(47, 74, 60, 0.45);
    box-shadow: 0 0 0 3px rgba(47, 74, 60, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 160px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

.form-group {
    position: relative;
}

/* Footer */
.footer {
    background: var(--forest);
    padding: 4rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer .logo {
    color: var(--cream);
}

.footer .logo-icon {
    color: #fbbf24;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.25rem;
}

.footer-title {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--cream);
}

.footer-description {
    color: rgba(255, 253, 248, 0.82);
    margin-bottom: 1rem;
    line-height: 1.55;
    font-size: 0.86rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links a {
    color: rgba(255, 253, 248, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.86rem;
    font-weight: 600;
}

.footer-links a:hover {
    color: #fbbf24;
}

.footer-links li {
    margin-bottom: 0.4rem;
}

.newsletter-form input {
    padding: 0.8rem 0.95rem;
    background: rgba(255, 253, 248, 0.08);
    border: 1px solid rgba(255, 253, 248, 0.2);
    border-radius: 10px;
    color: var(--cream);
    font-family: var(--font-sans);
    width: 100%;
    margin-bottom: 0.55rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 253, 248, 0.45);
}

.newsletter-form input:focus {
    outline: none;
    border-color: rgba(251, 191, 36, 0.55);
}

.footer .btn-primary {
    width: 100%;
    text-align: center;
    background: #fbbf24;
    color: var(--ink);
    border-color: rgba(28, 25, 23, 0.12);
}

.footer .btn-primary:hover {
    background: #fcd34d;
    color: var(--ink);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 253, 248, 0.12);
    color: rgba(255, 253, 248, 0.75);
    font-size: 0.8rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 968px) {
    .games-grid { grid-template-columns: 1fr; }
    .about-content { grid-template-columns: 1fr; gap: 2.5rem; }
    .contact-content { grid-template-columns: 1fr; gap: 2.25rem; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        flex-direction: column;
        background: var(--cream);
        width: 100%;
        padding: 1.25rem 1rem 1.5rem;
        gap: 0.35rem;
        transition: left 0.35s ease;
        border-bottom: 1px solid var(--line);
        box-shadow: var(--shadow);
    }
    .nav-menu.active { left: 0; }
    .nav-link { display: block; text-align: center; }
    .hero-buttons { flex-direction: column; }
    .btn { width: 100%; text-align: center; }
    .values-grid { grid-template-columns: 1fr; }
    .positions-grid { grid-template-columns: 1fr; }
    section { padding: 80px 0; }
    .about-visual { height: 300px; }
}

@media (max-width: 480px) {
    section { padding: 68px 0; }
    .hero { padding: 118px 16px 84px; }
    .contact-form { padding: 1.35rem; }
}
