/* ===================================================================
   OREZA — Noir Collection
   Global design system & styles
   =================================================================== */

:root {
    /* Palette — monochrome luxury */
    --black: #0a0a0b;
    --ink: #141416;
    --graphite: #1c1c1f;
    --steel: #2a2a2e;
    --smoke: #6b6b70;
    --silver: #b9b9be;
    --platinum: #e6e6e8;
    --white: #ffffff;
    --paper: #f6f5f3;

    /* Accent — polished silver gradient tokens */
    --accent: #c8c8cd;
    --accent-bright: #f2f2f4;

    /* Typography */
    --font-display: "Cormorant Garamond", "Times New Roman", serif;
    --font-sans: "Jost", "Helvetica Neue", Arial, sans-serif;

    /* Metrics */
    --header-h: 84px;
    --maxw: 1320px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);

    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.35);
}

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

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

body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--white);
    line-height: 1.6;
    font-weight: 300;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

/* ---------- Typography helpers ---------- */
.eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--smoke);
}

.display {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: 0.01em;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.08;
}

.section {
    padding: clamp(72px, 11vw, 160px) 0;
}

.container {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 64px);
}

.center {
    text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 400;
    padding: 16px 34px;
    border-radius: 40px;
    transition: all 0.45s var(--ease);
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn--solid {
    background: var(--ink);
    color: var(--white);
}

.btn--solid:hover {
    background: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
}

.btn--ghost {
    border-color: rgba(255, 255, 255, 0.45);
    color: var(--white);
}

.btn--ghost:hover {
    background: var(--white);
    color: var(--ink);
}

.btn--line {
    padding: 0;
    border-radius: 0;
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px;
    gap: 0.5em;
}

.btn--line .arrow {
    transition: transform 0.4s var(--ease);
}

.btn--line:hover .arrow {
    transform: translateX(6px);
}

/* ===================================================================
   Header
   =================================================================== */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    height: var(--header-h);
    z-index: 100;
    display: flex;
    align-items: center;
    transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

.site-header__inner {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 64px);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.brand {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 0.34em;
    text-indent: 0.34em;
    color: var(--white);
    transition: color 0.5s var(--ease);
    justify-self: center;
    grid-column: 2;
}

.nav {
    display: flex;
    gap: 38px;
    grid-column: 1;
}

.nav a {
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    padding: 6px 0;
    transition: color 0.4s var(--ease);
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.4s var(--ease);
}

.nav a:hover::after {
    width: 100%;
}

.header-actions {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 22px;
}

.icon-btn {
    color: var(--white);
    display: inline-flex;
    transition: color 0.4s var(--ease), opacity 0.4s var(--ease);
    opacity: 0.9;
}

.icon-btn:hover {
    opacity: 1;
}

.icon-btn svg {
    width: 20px;
    height: 20px;
}

/* Scrolled / solid header */
.site-header.is-solid {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.site-header.is-solid .brand,
.site-header.is-solid .nav a,
.site-header.is-solid .icon-btn {
    color: var(--ink);
}

.site-header.is-solid .nav a {
    color: rgba(20, 20, 22, 0.78);
}

/* Pages with a light hero use the solid theme from the start */
.theme-light .site-header:not(.is-solid) .brand,
.theme-light .site-header:not(.is-solid) .nav a,
.theme-light .site-header:not(.is-solid) .icon-btn {
    color: var(--ink);
}

/* Hamburger */
.burger {
    display: none;
    width: 26px;
    height: 18px;
    position: relative;
}

.burger span {
    position: absolute;
    left: 0;
    height: 1.5px;
    width: 100%;
    background: var(--white);
    transition: all 0.4s var(--ease);
}

.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.burger span:nth-child(3) { bottom: 0; }

.site-header.is-solid .burger span { background: var(--ink); }

.is-open .burger span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.is-open .burger span:nth-child(2) { opacity: 0; }
.is-open .burger span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ===================================================================
   Hero
   =================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    color: var(--white);
    overflow: hidden;
}

.hero__media {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 35%, rgba(0, 0, 0, 0.7) 100%);
}

.hero__content {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 64px) clamp(70px, 12vh, 130px);
    text-align: center;
}

.hero__eyebrow {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(2.6rem, 7vw, 6rem);
    margin-bottom: 18px;
}

.hero__sub {
    font-size: clamp(1rem, 1.4vw, 1.2rem);
    font-weight: 300;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.9);
    max-width: 620px;
    margin: 0 auto 38px;
}

.hero__cta {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-hint {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.62rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.scroll-hint::after {
    content: "";
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent);
    animation: scrollPulse 2.4s var(--ease) infinite;
}

@keyframes scrollPulse {
    0% { transform: scaleY(0); transform-origin: top; }
    45% { transform: scaleY(1); transform-origin: top; }
    55% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ===================================================================
   Generic feature / split sections
   =================================================================== */
.lead {
    max-width: 760px;
    margin: 0 auto;
}

.lead .eyebrow { margin-bottom: 22px; }

.lead h2 {
    font-size: clamp(2rem, 4.4vw, 3.6rem);
    margin-bottom: 26px;
}

.lead p {
    font-size: 1.08rem;
    color: var(--steel);
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: clamp(40px, 6vw, 100px);
}

.split--reverse .split__media { order: 2; }

.split__media img {
    width: 100%;
    border-radius: 4px;
    box-shadow: var(--shadow-soft);
}

.split__body .eyebrow { margin-bottom: 18px; }

.split__body h2 {
    font-size: clamp(1.8rem, 3.4vw, 3rem);
    margin-bottom: 22px;
}

.split__body p {
    color: var(--steel);
    margin-bottom: 28px;
    font-size: 1.05rem;
}

/* Dark section variant */
.section--dark {
    background: var(--black);
    color: var(--platinum);
}

.section--dark .lead p,
.section--dark .split__body p {
    color: var(--silver);
}

.section--paper { background: var(--paper); }

/* ===================================================================
   Collection cards
   =================================================================== */
.collection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 60px;
}

.card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: var(--ink);
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: flex-end;
}

.card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}

.card:hover img { transform: scale(1.06); }

.card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.75) 100%);
}

.card__label {
    position: relative;
    z-index: 2;
    padding: 30px;
    color: var(--white);
}

.card__label h3 {
    font-size: 1.7rem;
    margin-bottom: 6px;
}

.card__label span {
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.85;
}

/* ===================================================================
   Strip / banner
   =================================================================== */
.banner {
    position: relative;
    min-height: 78vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.banner::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(0, 0, 0, 0.4);
}

.banner__inner { padding: 0 24px; }

.banner h2 {
    font-size: clamp(2.2rem, 5vw, 4.4rem);
    margin-bottom: 22px;
}

.banner p {
    max-width: 560px;
    margin: 0 auto 34px;
    color: rgba(255, 255, 255, 0.9);
}

/* ===================================================================
   Footer
   =================================================================== */
.site-footer {
    background: var(--black);
    color: var(--silver);
    padding: clamp(60px, 8vw, 110px) 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .brand-mark {
    font-family: var(--font-display);
    font-size: 1.8rem;
    letter-spacing: 0.3em;
    color: var(--white);
    margin-bottom: 18px;
}

.footer-brand p {
    font-size: 0.92rem;
    max-width: 320px;
    color: var(--smoke);
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 400;
}

.footer-col a {
    display: block;
    font-size: 0.9rem;
    color: var(--smoke);
    padding: 6px 0;
    transition: color 0.3s var(--ease);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 30px;
    font-size: 0.78rem;
    color: var(--smoke);
}

.footer-bottom .socials {
    display: flex;
    gap: 18px;
}

.footer-bottom .socials a:hover { color: var(--white); }

/* ===================================================================
   Reveal animations
   =================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 1s var(--ease), transform 1s var(--ease);
}

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

.reveal[data-delay="1"] { transition-delay: 0.12s; }
.reveal[data-delay="2"] { transition-delay: 0.24s; }
.reveal[data-delay="3"] { transition-delay: 0.36s; }

@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; }
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 980px) {
    .split,
    .split--reverse { grid-template-columns: 1fr; }
    .split--reverse .split__media { order: 0; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ===================================================================
   Product page — OREZA NOIR
   =================================================================== */
.product-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--header-h) + 40px) 20px 80px;
    background:
        radial-gradient(120% 90% at 50% 18%, #2a2a30 0%, #131316 46%, #060607 100%);
    color: var(--platinum);
    overflow: hidden;
}

.product-hero::before {
    /* soft spotlight behind the watch */
    content: "";
    position: absolute;
    width: 70vmin;
    height: 70vmin;
    top: 46%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(220, 220, 230, 0.16) 0%, transparent 62%);
    filter: blur(10px);
    pointer-events: none;
}

.product-hero__eyebrow {
    color: var(--silver);
    margin-bottom: 16px;
    position: relative;
}

.product-hero__title {
    font-size: clamp(2.4rem, 6vw, 5rem);
    color: var(--white);
    margin-bottom: 6px;
    position: relative;
}

.product-hero__tag {
    font-size: 0.8rem;
    letter-spacing: 0.34em;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 26px;
    position: relative;
}

/* The live watch — real product photo with animated hands overlaid */
.watch-photo {
    position: relative;
    width: min(94vw, 1000px);
    margin-top: 12px;
    /* fade the photo edges into the section background to hide the seam */
    -webkit-mask-image: radial-gradient(120% 120% at 50% 46%, #000 58%, transparent 86%);
    mask-image: radial-gradient(120% 120% at 50% 46%, #000 58%, transparent 86%);
}

.watch-photo > img {
    width: 100%;
    height: auto;
    display: block;
}

/* hands overlay sits exactly over the photo (same box & aspect) */
.watch-hands {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
}

/* Hands are driven each frame by JS (requestAnimationFrame) via the
   SVG transform attribute, so no CSS transition is applied here. */

/* Rolex-style model label pill at the foot of the hero */
.watch-pill {
    position: absolute;
    left: 50%;
    bottom: clamp(4px, 4%, 40px);
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.96);
    color: var(--ink);
    padding: 14px 30px;
    border-radius: 6px;
    font-size: 0.74rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    white-space: nowrap;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.45);
}

/* Spec section */
.specs {
    background: var(--ink);
    color: var(--platinum);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 clamp(40px, 8vw, 120px);
    margin-top: 50px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.spec-row dt {
    color: var(--smoke);
    font-size: 0.92rem;
    letter-spacing: 0.04em;
}

.spec-row dd {
    color: var(--white);
    font-size: 0.96rem;
    text-align: right;
}

/* Detail feature with measured callouts */
.feature-points {
    margin-top: 30px;
    display: grid;
    gap: 22px;
}

.feature-points li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-points .num {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--smoke);
    min-width: 36px;
}

.feature-points h4 {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.feature-points p {
    font-size: 0.95rem;
    margin: 0;
}

/* Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 50px;
}

.gallery img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 3px;
    transition: transform 0.8s var(--ease);
}

.gallery a { overflow: hidden; border-radius: 3px; display: block; }
.gallery a:hover img { transform: scale(1.05); }

.gallery .span-2 { grid-column: span 2; aspect-ratio: auto; }

/* Price / buy block */
.buy {
    text-align: center;
}

.buy .price {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ink);
    margin: 10px 0 6px;
}

.buy .note {
    font-size: 0.85rem;
    color: var(--smoke);
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .spec-grid { grid-template-columns: 1fr; gap: 0; }
    .gallery { grid-template-columns: 1fr 1fr; }
    .gallery .span-2 { grid-column: span 2; }
}

/* ===================================================================
   Language switcher (Rolex-style)
   =================================================================== */
.lang-switch { position: relative; display: inline-flex; }

.lang-toggle {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    line-height: 1;
}

.lang-toggle svg { width: 18px; height: 18px; }
.lang-current { font-weight: 400; }

.lang-panel {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    width: min(88vw, 360px);
    background: var(--white);
    color: var(--ink);
    border-radius: 10px;
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.3);
    padding: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    max-height: 70vh;
    overflow-y: auto;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0.35s;
}

.lang-switch.is-open .lang-panel {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.lang-option {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 0.86rem;
    letter-spacing: 0.01em;
    color: var(--ink);
    transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

button.lang-option { width: 100%; }
button.lang-option:hover { background: var(--paper); }

.lang-option.is-active { background: var(--ink); color: var(--white); }

.lang-option.is-disabled { cursor: default; }
.lang-option.is-disabled .lang-name { color: var(--silver); }

.lang-name { line-height: 1.2; }

.lang-soon {
    font-size: 0.58rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--smoke);
    margin-top: 3px;
}

/* ===================================================================
   Collection — model cards (incl. "coming soon")
   =================================================================== */
.models {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.model-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}

a.model-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.model-card__media {
    position: relative;
    aspect-ratio: 4 / 5;
    background: #0e0e11;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.model-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease);
}

a.model-card:hover .model-card__media img { transform: scale(1.05); }

.model-card__info {
    padding: 22px 24px 26px;
    text-align: left;
}

.model-card__info h3 { font-size: 1.45rem; margin-bottom: 6px; }

.model-card__tag {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--smoke);
}

.model-card__cta {
    display: inline-block;
    margin-top: 16px;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
}

/* coming-soon variant */
.model-card.is-soon {
    background: #0d0d10;
    border-color: rgba(255, 255, 255, 0.08);
}

.model-card.is-soon .model-card__media {
    background: radial-gradient(120% 100% at 50% 35%, #1d1d23 0%, #0a0a0c 70%);
}

.soon-icon { color: rgba(255, 255, 255, 0.26); }
.soon-icon svg { width: 64px; height: 64px; }

.model-card.is-soon .model-card__info h3 {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 0.92rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 8px;
}

@media (max-width: 980px) {
    .models { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    :root { --header-h: 68px; }

    .nav,
    .header-actions .desktop-only { display: none; }

    .burger { display: block; }

    .nav.is-mobile {
        display: flex;
        position: fixed;
        inset: var(--header-h) 0 0 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 30px clamp(20px, 5vw, 64px);
        transform: translateX(100%);
        transition: transform 0.5s var(--ease);
        z-index: 99;
    }

    .nav.is-mobile.is-open-menu { transform: none; }

    .nav.is-mobile a {
        color: var(--ink);
        font-size: 1.1rem;
        padding: 18px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }

    .models { grid-template-columns: 1fr 1fr; gap: 14px; }
    .model-card__info { padding: 16px 16px 20px; }
    .model-card__info h3 { font-size: 1.2rem; }
}

@media (max-width: 480px) {
    .lang-panel { grid-template-columns: 1fr; }
}
