/* 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;
    background: radial-gradient(circle at top, #202020 0, #050505 55%, #000 100%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

/* Prevent scroll when mobile nav is open */
body.nav-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: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background: linear-gradient(to right,
            rgba(0, 0, 0, 0.95) 0%,
            rgba(20, 20, 20, 0.9) 45%,
            rgba(0, 0, 0, 0.95) 100%);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
}

.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    height: 100px;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.20em;
    position: relative;
}

/* Nav groups */

.header-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    white-space: nowrap;
}

.header-nav a {
    font-weight: 500;
    color: #f3f3f3;
    opacity: 0.75;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: opacity var(--transition-fast), border-color var(--transition-fast);
}

.header-nav a:hover {
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.65);
}

/* Center logo */

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-inline: 16px;
}

.header-logo img {
    width: 60px;
    height: 60px;
}

.header-logo span {
    font-size: 1.1rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
}

/* === 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 0 0 0;
    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%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slideshow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slideshow .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slideshow img {
    border-radius: 20px;
}

.slideshow .slide.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(20, 12, 106, 0.467);
    mix-blend-mode: multiply;
    z-index: 1;
}

/* 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;
}

/* --- games --- */

.featured-shell {
    max-width: 90%;
    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, 1.5fr);
    gap: 18px;
    align-items: stretch;
    position: relative;
    overflow: hidden;
}

.featured-hero::before {
    content: "";
    position: absolute;
    inset: -30%;
    opacity: 0.8;
    pointer-events: none;
}

.featured-hero-cover {
    position: relative;
    overflow: hidden;
    background: #000;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
    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;
}

/* Själva thumbnail-knappen */
.featured-thumb {
    position: relative;
    flex: 0 0 300px;
    /* basbredd istället för 400px */
    aspect-ratio: 3 / 4;
    /* håller formen */
    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);
}

/* Bilden fyller alltid thumben */
.featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* beskär snyggt, ändra till 'contain' om du vill se hela bilden */
    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;
}

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;
    gap: 10px;
    flex-wrap: wrap;
}

footer a {
    color: var(--muted);
}

footer a:hover {
    color: var(--accent-2);
}

.contact-section {
    margin-top: 40px;
}

.contact-hero {
    text-align: center;
    padding: 40px 18px 32px;
    background: radial-gradient(circle at top, #202020 0, #050505 55%, #000 100%);
    border-radius: 28px 28px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: none;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
}

.contact-hero h2 {
    font-size: 2rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.contact-hero-sub {
    max-width: 34rem;
    margin: 0 auto;
    font-size: 0.9rem;
    color: var(--muted);
}

.contact-hero-meta {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    font-size: 0.8rem;
}

.contact-meta-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.7rem;
    color: var(--muted);
    margin-bottom: 2px;
}

.contact-meta-value {
    font-weight: 500;
}

/* Split layout: full-width image + white form panel */

.contact-split {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
    gap: 0;
    border-radius: 0 0 28px 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-top: none;
    background: #000;
    box-shadow: var(--shadow-soft);
}

/* Left image */

.contact-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Right form panel (light) */

.contact-panel {
    background: #f8f8f8;
    color: #111;
    padding: 26px 30px;
}

.contact-panel-title {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: #444;
}

.contact-form-split label {
    color: #666;
}

.contact-form-split input,
.contact-form-split textarea,
.contact-form-split select {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #d0d0d0;
    color: #111;
}

.contact-form-split input:focus,
.contact-form-split textarea:focus,
.contact-form-split select:focus {
    border-color: var(--accent-2);
    box-shadow: 0 0 0 1px rgba(201, 59, 35, 0.5);
    background: #ffffff;
}

.contact-submit {
    width: 100%;
}

.contact-panel .btn-primary {
    background: #05435e;
    color: #fff;
    padding: 10px 10px;
    font-size: 1rem;
    border-radius: 0;
    border: none;
}


/* --- ABOUT PAGE --- */

.nav-current {
    opacity: 1 !important;
}

/* HERO */

.company-hero {
    max-width: 90%;
    margin: 40px auto 0;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.4fr);
}

.company-hero-media {
    position: relative;
    overflow: hidden;
}

.company-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.company-hero-overlay {
    position: absolute;
    inset: 0;
    mix-blend-mode: multiply;
}

.company-hero-content {
    padding: 32px 30px 28px;
    position: relative;
    z-index: 1;
}

.company-hero-content h1 {
    font-size: 2.1rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
}

.company-hero-sub {
    font-size: 0.95rem;
    color: var(--muted);
    max-width: 52rem;
}

.company-hero-actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.company-hero-actions .btn-primary,
.company-hero-actions .btn-secondary {
    font-size: 0.78rem;
}

.company-hero .eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 6px;
}

.company-hero-meta {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    font-size: 0.8rem;
}

.company-meta-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.7rem;
    color: var(--muted);
}

.company-meta-value {
    font-weight: 500;
}

/* GENERIC SECTION WRAPPER */

.company-section {
    max-width: 90%;
    margin: 40px auto 0;
    padding: 28px 0 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.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: var(--muted);
    margin-bottom: 10px;
}

/* 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: 1.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.company-split-body p {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 10px;
}

.company-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    font-size: 0.76rem;
}

.company-pill {
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

/* TIMELINE */

.company-timeline-shell h2 {
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 12px;
}

.company-timeline-label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.75rem;
    color: var(--muted);
    margin-bottom: 6px;
}

.company-timeline-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
}

.company-timeline-item {
    border-left: 2px solid rgba(255, 255, 255, 0.16);
    padding-left: 14px;
}

.company-timeline-year {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--muted);
    display: block;
    margin-bottom: 2px;
}

.company-timeline-text {
    font-size: 0.88rem;
    color: var(--muted);
}

.company-section-image img {
    width: 100%;
    box-shadow: var(--shadow-soft);
    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: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 10px;
}

.company-craft-text p {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 10px;
}

.company-craft-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.company-card {
    border: 1px solid rgba(255, 255, 255, 0.09);
    padding: 12px 14px;
    background: radial-gradient(circle at top, #202020 0, #050505 70%);
    font-size: 0.85rem;
}

.company-card h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

/* PROCESS */

.company-process h2 {
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
}

.company-process-sub {
    font-size: 0.9rem;
    color: var(--muted);
    max-width: 34rem;
    margin-bottom: 16px;
}

.company-process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.company-step {
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 14px;
    font-size: 0.85rem;
    background: rgba(0, 0, 0, 0.8);
}

.company-step-num {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}

.company-step h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    .company-hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .company-hero-media {
        max-height: 260px;
    }

    .company-section-alt {
        grid-template-columns: minmax(0, 1fr);
    }

    .company-craft-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 900px) {
    .hero {
        padding: 22px;
    }

    .about-grid,
    .header-inner {
        padding: 0 20px;
        gap: 16px;
    }

    .header-nav-left,
    .header-nav-right {
        gap: 16px;
        font-size: 0.78rem;
    }

    .header-logo span {
        font-size: 0.95rem;
        letter-spacing: 0.18em;
    }

    .contact-split {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-photo {
        max-height: 340px;
    }

    .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 {
        padding: 0 16px;
        gap: 12px;
        justify-content: space-between;
    }

    /* På mobil: visa burger, göm desktop-navigering */
    .header-burger {
        display: flex;
    }

    .header-nav-left,
    .header-nav-right {
        display: none;
    }

    .header-logo {
        margin-inline: 0;
    }

    .contact-hero {
        padding: 28px 14px 22px;
    }

    .contact-hero h2 {
        font-size: 1.4rem;
        letter-spacing: 0.16em;
    }

    .contact-panel {
        padding: 20px 16px;
    }

    .team-section {
        max-width: 100%;
        margin-inline: 12px;
    }

    .company-hero-content {
        padding: 22px 18px 20px;
    }

    .company-hero-content h1 {
        font-size: 1.6rem;
        letter-spacing: 0.12em;
    }

    .company-section {
        max-width: 100%;
        margin-inline: 12px;
    }
}

@media (max-width: 600px) {
    .featured-thumb {
        min-width: 110px;
        max-width: 120px;
        height: auto;
    }

    .featured-thumb {
        flex-basis: 150px;
    }

    .hero {
        height: 70vh;
    }
}

@media (max-width: 520px) {
    .page {
        padding-inline: 12px;
    }

    .hero {
        padding: 18px 14px;
        border-radius: 24px;
    }

    .field-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }
}