/* =========================================================
   Silvaluz, website institucional
   ========================================================= */
:root {
    --red: #e30613;
    --red-dark: #bd0010;
    --red-soft: #fff0f1;
    --charcoal: #242321;
    --charcoal-2: #1b1a19;
    --charcoal-3: #302f2c;
    --white: #ffffff;
    --warm-white: #f7f6f3;
    --soft: #eceae6;
    --surface: #ffffff;
    --text: #242321;
    --muted: #6d6b67;
    --muted-light: #aaa7a1;
    --border: #dfdcd6;
    --light-gold: #f2d39b;
    --success: #23744a;
    --danger: #bf2430;
    --radius-sm: 12px;
    --radius: 18px;
    --radius-lg: 26px;
    --radius-xl: 34px;
    --shadow-sm: 0 10px 35px rgba(35, 33, 30, 0.07);
    --shadow: 0 22px 70px rgba(35, 33, 30, 0.11);
    --container: 1320px;
    --header-height: 88px;
    --section-space: clamp(88px, 10vw, 148px);
    --font-display: "Manrope", "Inter", sans-serif;
    --font-body: "Inter", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 22px);
}

body {
    margin: 0;
    color: var(--text);
    background: var(--white);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
}

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

address {
    font-style: normal;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    font-family: var(--font-display);
    line-height: 1.12;
    letter-spacing: -0.035em;
}

h2 {
    font-size: clamp(2.35rem, 4.2vw, 4.3rem);
    margin-bottom: 24px;
}

h3 {
    font-size: clamp(1.2rem, 1.8vw, 1.65rem);
}

::selection {
    color: var(--white);
    background: var(--red);
}

:focus-visible {
    outline: 3px solid rgba(227, 6, 19, 0.4);
    outline-offset: 4px;
}

.container {
    width: min(calc(100% - 48px), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding-block: var(--section-space);
}

.section-tight {
    padding-block: clamp(58px, 7vw, 90px);
}

.section-soft {
    background: var(--warm-white);
}

.section-dark {
    color: var(--white);
    background: var(--charcoal-2);
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 9999;
    padding: 12px 18px;
    color: var(--white);
    background: var(--charcoal);
    border-radius: var(--radius-sm);
    transform: translateY(-150%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    color: var(--red);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.eyebrow-light {
    color: #ff767f;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--red);
    box-shadow: 0 0 0 5px rgba(227, 6, 19, 0.1);
}

.section-heading {
    max-width: 820px;
}

.section-heading p,
.company-copy p,
.team-intro-copy p,
.contact-copy > p,
.support-copy > p {
    color: var(--muted);
    font-size: clamp(1rem, 1.4vw, 1.1rem);
}

.section-heading-centered {
    margin: 0 auto clamp(48px, 7vw, 78px);
    text-align: center;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    transition: transform 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button:hover svg {
    transform: translate(2px, -2px);
}

.button-primary {
    color: var(--white);
    background: var(--red);
    box-shadow: 0 13px 28px rgba(227, 6, 19, 0.24);
}

.button-primary:hover {
    background: var(--red-dark);
    box-shadow: 0 17px 34px rgba(227, 6, 19, 0.3);
}

.button-secondary {
    color: var(--charcoal);
    background: var(--white);
    border-color: var(--border);
}

.button-secondary:hover,
.button-ghost:hover {
    border-color: #aaa69f;
    background: var(--warm-white);
}

.button-ghost {
    min-height: 42px;
    padding-inline: 12px;
    background: transparent;
}

.button-light {
    color: var(--charcoal);
    background: var(--white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.16);
}

.button-light:hover {
    background: #f8f7f4;
}

.button-outline-light {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.28);
}

.button-outline-light:hover {
    border-color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.08);
}

.button-small {
    min-height: 42px;
    padding: 11px 17px;
    font-size: 0.88rem;
}

.button-large {
    min-height: 56px;
    padding: 16px 26px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    color: var(--red);
    font-weight: 750;
}

.text-link svg {
    width: 18px;
    transition: transform 180ms ease;
}

.text-link:hover svg {
    transform: translateY(4px);
}

/* Header */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: var(--header-height);
    border-bottom: 1px solid transparent;
    transition: height 220ms ease, background-color 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
    height: 76px;
    background: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(36, 35, 33, 0.08);
    box-shadow: 0 10px 35px rgba(30, 29, 27, 0.06);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    height: 100%;
}

.brand {
    display: flex;
    width: 195px;
    flex: 0 0 auto;
}

.brand img {
    width: 100%;
    height: auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0 auto;
}

.nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    min-height: 44px;
    padding: 8px 12px;
    color: #4e4b47;
    border: 0;
    background: none;
    font-size: 0.91rem;
    font-weight: 650;
    cursor: pointer;
}

.nav-link::after {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 3px;
    left: 12px;
    height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 180ms ease;
}

.nav-link:hover,
.nav-link.is-active {
    color: var(--charcoal);
}

.nav-link:hover::after,
.nav-link.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link svg {
    width: 15px;
    height: 15px;
    transition: transform 180ms ease;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown.is-open .dropdown-toggle svg,
.nav-dropdown:hover .dropdown-toggle svg,
.nav-dropdown:focus-within .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    z-index: 10;
    display: grid;
    width: 250px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(36, 35, 33, 0.08);
    border-radius: 17px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    inset: -14px 0 auto;
    height: 16px;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu,
.nav-dropdown.is-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 13px;
    border-radius: 11px;
    color: #4d4a46;
    font-size: 0.9rem;
    font-weight: 650;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
    color: var(--red);
    background: var(--red-soft);
}

.dropdown-menu svg {
    width: 18px;
    height: 18px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 5px;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--white);
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--charcoal);
    border-radius: 2px;
}

.mobile-menu,
.mobile-menu-backdrop {
    display: none;
}

/* Hero */
.hero {
    min-height: 790px;
    padding-top: calc(var(--header-height) + 92px);
    padding-bottom: 105px;
    background:
            linear-gradient(rgba(36, 35, 33, 0.025) 1px, transparent 1px),
            linear-gradient(90deg, rgba(36, 35, 33, 0.025) 1px, transparent 1px),
            radial-gradient(circle at 82% 37%, rgba(227, 6, 19, 0.08), transparent 24%),
            radial-gradient(circle at 20% 10%, rgba(242, 211, 155, 0.15), transparent 23%),
            var(--warm-white);
    background-size: 44px 44px, 44px 44px, auto, auto, auto;
    overflow: hidden;
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(480px, 0.98fr);
    align-items: center;
    gap: clamp(48px, 6vw, 90px);
}

.hero-copy {
    max-width: 720px;
}

.hero-title {
    max-width: 760px;
    margin-bottom: 28px;
    font-size: clamp(3.2rem, 5.8vw, 6.5rem);
    font-weight: 800;
    letter-spacing: -0.065em;
}

.hero-title span {
    color: var(--red);
}

.hero-lead {
    max-width: 675px;
    margin-bottom: 34px;
    color: #5f5c58;
    font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    max-width: 700px;
    margin-top: 42px;
    padding-top: 28px;
    border-top: 1px solid rgba(36, 35, 33, 0.12);
}

.hero-trust > div {
    display: flex;
    align-items: center;
    gap: 11px;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.4;
}

.hero-trust > div + div {
    padding-left: 20px;
    border-left: 1px solid rgba(36, 35, 33, 0.1);
}

.hero-trust svg {
    width: 22px;
    height: 22px;
    color: var(--red);
}

.hero-trust strong {
    color: var(--charcoal);
    font-size: 0.82rem;
}

.hero-visual {
    position: relative;
    min-height: 585px;
    border-radius: var(--radius-xl);
    background: var(--charcoal-2);
    box-shadow: 0 42px 100px rgba(27, 26, 25, 0.23);
    isolation: isolate;
}

.visual-grid {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background-image:
            linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: linear-gradient(to bottom, black, transparent 95%);
}

.architectural-panel {
    position: absolute;
    inset: 52px 46px 64px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.12), 0 20px 60px rgba(0, 0, 0, 0.26);
}

.panel-topline {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    padding: 20px 22px;
    color: rgba(255, 255, 255, 0.52);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.59rem;
    letter-spacing: 0.12em;
}

.ceiling-track {
    position: absolute;
    top: 102px;
    left: 50%;
    width: 55%;
    height: 4px;
    background: #d5d1c7;
    transform: translateX(-50%) perspective(500px) rotateX(12deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.45);
}

.spot {
    position: absolute;
    top: -2px;
    width: 26px;
    height: 12px;
    background: #4c4a46;
    border-radius: 2px 2px 9px 9px;
}

.spot::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 50%;
    width: 8px;
    height: 34px;
    background: linear-gradient(#4c4a46, #282725);
    transform: translateX(-50%);
}

.spot::after {
    content: "";
    position: absolute;
    top: 37px;
    left: 50%;
    width: 22px;
    height: 17px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff4cf 0 26%, #b79655 30% 48%, #2d2c29 54%);
    transform: translateX(-50%);
    box-shadow: 0 12px 35px rgba(255, 225, 151, 0.42);
}

.spot-one { left: 8%; }
.spot-two { left: 47%; }
.spot-three { right: 8%; }

.room-plane {
    position: absolute;
    inset: 180px 25px 30px;
    background:
            linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 60%),
            linear-gradient(to top, rgba(255, 255, 255, 0.04), transparent 60%);
    clip-path: polygon(12% 2%, 88% 2%, 100% 100%, 0 100%);
}

.plane-line {
    position: absolute;
    height: 1px;
    background: rgba(255, 255, 255, 0.13);
    transform-origin: left;
}

.line-a { top: 35%; left: 8%; width: 84%; }
.line-b { top: 65%; left: 3%; width: 94%; }
.line-c { top: 86%; left: 0; width: 100%; }

.light-beam {
    position: absolute;
    top: -10%;
    width: 150px;
    height: 110%;
    clip-path: polygon(38% 0, 62% 0, 100% 100%, 0 100%);
    filter: blur(3px);
    opacity: 0.35;
}

.beam-a {
    left: 12%;
    background: linear-gradient(to bottom, rgba(255, 235, 177, 0.45), transparent 85%);
}

.beam-b {
    right: 10%;
    background: linear-gradient(to bottom, rgba(227, 6, 19, 0.22), transparent 85%);
}

.panel-caption {
    position: absolute;
    right: 22px;
    bottom: 18px;
    display: flex;
    align-items: flex-end;
    gap: 13px;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.66rem;
    line-height: 1.35;
}

.caption-number {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 0.8;
}

.floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 192px;
    padding: 14px 16px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(37, 36, 34, 0.74);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.23);
    backdrop-filter: blur(13px);
}

.floating-card small {
    display: block;
    margin-bottom: 1px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.63rem;
}

.floating-card > span:last-child {
    font-size: 0.78rem;
    font-weight: 700;
}

.floating-icon {
    display: grid;
    width: 36px;
    height: 36px;
    place-items: center;
    color: #ffb3b8;
    border-radius: 11px;
    background: rgba(227, 6, 19, 0.17);
}

.floating-icon svg { width: 17px; }
.floating-card-one { top: 25px; right: -26px; }
.floating-card-two { bottom: 24px; left: -32px; }
.floating-card-three { right: -38px; bottom: 94px; }

.since-badge {
    position: absolute;
    z-index: 4;
    top: 80px;
    left: 20px;
    display: grid;
    width: 96px;
    height: 96px;
    place-content: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 50%;
    background: rgba(227, 6, 19, 0.9);
    box-shadow: 0 16px 35px rgba(227, 6, 19, 0.25);
}

.since-badge strong {
    font-family: var(--font-display);
    font-size: 1.35rem;
    line-height: 1;
}

.since-badge span {
    margin-top: 4px;
    font-size: 0.6rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.circuit-line {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.circuit-line path {
    fill: none;
    stroke: rgba(227, 6, 19, 0.38);
    stroke-width: 1.5;
}

.circuit-line circle {
    fill: var(--red);
    filter: drop-shadow(0 0 6px var(--red));
}

.light-orbit {
    position: absolute;
    z-index: -1;
    border-radius: 50%;
    filter: blur(2px);
}

.light-orbit-one {
    top: -70px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.28), transparent 68%);
}

.light-orbit-two {
    bottom: -70px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(243, 217, 161, 0.2), transparent 70%);
}

.hero-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(8px);
    pointer-events: none;
}

.hero-light-one {
    right: -180px;
    bottom: -160px;
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.08), transparent 70%);
}

.scroll-hint {
    position: absolute;
    bottom: 26px;
    left: 50%;
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.scroll-hint svg {
    width: 16px;
    animation: scrollHint 1.8s ease-in-out infinite;
}

@keyframes scrollHint {
    0%, 100% { transform: translateY(-2px); }
    50% { transform: translateY(4px); }
}

/* Brand marquee */
.brand-strip {
    padding: 26px 0 30px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--white);
}

.brand-strip-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.brand-strip-heading p {
    margin: 0;
    color: var(--muted);
    font-size: 0.86rem;
}

.brand-strip-heading a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--red);
    font-size: 0.82rem;
    font-weight: 750;
}

.brand-strip-heading svg { width: 15px; }

.brand-marquee {
    overflow: hidden;
    outline: none;
    mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.brand-marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 42s linear infinite;
}

.brand-marquee:hover .brand-marquee-track,
.brand-marquee:focus-within .brand-marquee-track {
    animation-play-state: paused;
}

.marquee-group {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-right: 16px;
}

.marquee-logo {
    display: grid;
    width: 142px;
    height: 66px;
    padding: 13px 18px;
    place-items: center;
    border: 1px solid #ece9e4;
    border-radius: 13px;
    background: var(--white);
}

.marquee-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.65;
    transition: filter 180ms ease, opacity 180ms ease;
}

.marquee-logo:hover img,
.marquee-logo:focus-within img {
    filter: none;
    opacity: 1;
}

@keyframes marquee {
    to { transform: translateX(-50%); }
}

/* Stats */
.stats {
    background: var(--charcoal);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    min-height: 124px;
    padding: 10px clamp(24px, 3vw, 45px);
}

.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { padding-right: 0; }
.stat-item + .stat-item { border-left: 1px solid rgba(255, 255, 255, 0.14); }

.stat-item strong {
    display: block;
    margin-bottom: 9px;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 2.6vw, 3.2rem);
    font-weight: 750;
    line-height: 1.05;
}

.stat-item span {
    color: rgba(255, 255, 255, 0.57);
    font-size: 0.84rem;
}

/* Solutions */
.solutions {
    background: var(--white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.solution-card {
    position: relative;
    min-height: 360px;
    padding: 30px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--warm-white);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.solution-card:hover {
    z-index: 1;
    border-color: #c9c5be;
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}

.solution-card-wide {
    display: grid;
    grid-column: span 2;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    min-height: 400px;
    background: #f4f2ee;
}

.solution-card h3 {
    max-width: 280px;
    margin: 24px 0 14px;
}

.solution-card p {
    max-width: 420px;
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.solution-icon {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--red);
    border: 1px solid rgba(227, 6, 19, 0.13);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 9px 24px rgba(36, 35, 33, 0.06);
}

.solution-icon svg { width: 22px; }

.solution-number {
    position: absolute;
    top: 28px;
    right: 30px;
    color: #b3afa8;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.solution-card-dark {
    color: var(--white);
    border-color: var(--charcoal-2);
    background: var(--charcoal-2);
}

.solution-card-dark p { color: rgba(255, 255, 255, 0.58); }
.solution-card-dark .solution-icon { color: #ff8f96; background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.08); }
.solution-card-dark .solution-number { color: rgba(255, 255, 255, 0.35); }

.solution-card-accent {
    border-color: #ffd5d8;
    background: var(--red-soft);
}

.solution-visual {
    position: relative;
    align-self: end;
    min-height: 260px;
}

.circuit-modules {
    border-radius: 18px;
    background:
            linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.6) 1px, transparent 1px),
            #e8e5df;
    background-size: 24px 24px;
}

.circuit-modules svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.circuit-modules path {
    fill: none;
    stroke: rgba(227, 6, 19, 0.65);
    stroke-width: 2;
}

.circuit-modules circle { fill: var(--red); }

.module {
    position: absolute;
    z-index: 2;
    display: flex;
    gap: 8px;
    padding: 16px;
    border: 1px solid #cecbc4;
    border-radius: 13px;
    background: #faf9f6;
    box-shadow: 0 15px 30px rgba(36, 35, 33, 0.12);
}

.module span {
    display: block;
    width: 14px;
    height: 34px;
    border-radius: 4px;
    background: linear-gradient(#4d4b47 0 35%, #dedad3 35% 58%, #8f8b83 58%);
}

.module-a { top: 24px; right: 18px; }
.module-b { bottom: 28px; left: 36px; }
.module-c { right: 28px; bottom: 24px; width: 76px; height: 58px; background: linear-gradient(145deg, #33312e, #161514); }

.solution-mini-visual {
    position: absolute;
    right: 24px;
    bottom: 22px;
    left: 24px;
    height: 92px;
    border-radius: 15px;
    overflow: hidden;
}

.indoor-light {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    padding-top: 15px;
    background: linear-gradient(to bottom, #282725 0 42%, #dfd9cf 42%);
}

.indoor-light span {
    position: relative;
    width: 16px;
    height: 10px;
    border-radius: 2px 2px 8px 8px;
    background: #f4efe5;
    box-shadow: 0 12px 28px rgba(255, 220, 143, 0.76);
}

.indoor-light span::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 50%;
    width: 68px;
    height: 70px;
    background: linear-gradient(to bottom, rgba(255, 235, 181, 0.5), transparent);
    clip-path: polygon(45% 0, 55% 0, 100% 100%, 0 100%);
    transform: translateX(-50%);
}

.exterior-light {
    display: flex;
    align-items: flex-end;
    gap: 30px;
    padding: 0 26px 16px;
    background: linear-gradient(to bottom, #383734, #1d1c1b 74%, #777269 74%);
}

.exterior-light span {
    position: relative;
    width: 8px;
    height: 48px;
    background: #252422;
}

.exterior-light span::before {
    content: "";
    position: absolute;
    top: -7px;
    left: -7px;
    width: 22px;
    height: 15px;
    border-radius: 4px;
    background: #f2d49c;
    box-shadow: 0 0 20px rgba(255, 217, 143, 0.75);
}

.efficiency-meter {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
}

.efficiency-meter::before {
    content: "";
    display: block;
    height: 8px;
    background: rgba(255, 255, 255, 0.13);
    border-radius: 999px;
}

.efficiency-meter span {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--level);
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff616b, #ffbec2);
    box-shadow: 0 0 18px rgba(227, 6, 19, 0.42);
}

.efficiency-meter small {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.check-lines {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    display: grid;
    gap: 10px;
}

.check-lines span {
    position: relative;
    height: 9px;
    border-radius: 999px;
    background: #ddd9d2;
}

.check-lines span::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 70%;
    border-radius: inherit;
    background: var(--charcoal);
}

.check-lines span:nth-child(2)::before { width: 88%; }
.check-lines span:nth-child(3)::before { width: 52%; background: var(--red); }

.support-pulse {
    position: absolute;
    right: 30px;
    bottom: 30px;
    display: grid;
    width: 86px;
    height: 86px;
    place-items: center;
}

.support-pulse span {
    position: absolute;
    border: 1px solid rgba(227, 6, 19, 0.25);
    border-radius: 50%;
}

.support-pulse span:nth-child(1) { width: 30px; height: 30px; background: var(--red); box-shadow: 0 0 24px rgba(227, 6, 19, 0.35); }
.support-pulse span:nth-child(2) { width: 58px; height: 58px; }
.support-pulse span:nth-child(3) { width: 86px; height: 86px; }

/* Technical support */
.technical-support {
    overflow: hidden;
}

.support-glow,
.stores-glow {
    position: absolute;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.18), transparent 68%);
    pointer-events: none;
}

.support-glow { top: -300px; right: -210px; }

.support-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.84fr) minmax(520px, 1.16fr);
    align-items: center;
    gap: clamp(60px, 8vw, 112px);
}

.support-copy h2 {
    max-width: 650px;
}

.support-copy > p {
    color: rgba(255, 255, 255, 0.62);
}

.benefit-list {
    display: grid;
    gap: 14px;
    padding: 0;
    margin: 34px 0 38px;
    list-style: none;
}

.benefit-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.94rem;
}

.benefit-list svg {
    width: 22px;
    height: 22px;
    padding: 5px;
    color: #ffb2b7;
    border-radius: 50%;
    background: rgba(227, 6, 19, 0.18);
}

.project-desk {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background:
            linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
            #292826;
    background-size: 28px 28px;
    box-shadow: 0 36px 85px rgba(0, 0, 0, 0.32);
}

.desk-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 5px 18px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.62rem;
    letter-spacing: 0.12em;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    color: #bce7ce;
    border-radius: 999px;
    background: rgba(53, 139, 91, 0.16);
    letter-spacing: 0;
}

.status-pill svg { width: 13px; }

.desk-grid {
    display: grid;
    grid-template-columns: 1.06fr 0.94fr;
    min-height: 420px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 19px;
    background: rgba(16, 15, 14, 0.35);
}

.blueprint {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    background:
            linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
            #20201e;
    background-size: 22px 22px;
}

.bp-label {
    position: absolute;
    top: 17px;
    left: 18px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.58rem;
    letter-spacing: 0.12em;
}

.bp-room {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.room-one { top: 72px; left: 44px; width: 55%; height: 38%; }
.room-two { right: 28px; bottom: 50px; width: 48%; height: 36%; }
.room-three { bottom: 30px; left: 35px; width: 31%; height: 30%; }

.bp-point {
    position: absolute;
    z-index: 2;
    width: 11px;
    height: 11px;
    border: 3px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 18px rgba(227, 6, 19, 0.7);
}

.point-one { top: 110px; left: 90px; }
.point-two { top: 190px; right: 80px; }
.point-three { bottom: 80px; left: 120px; }

.blueprint svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.blueprint path {
    fill: none;
    stroke: rgba(227, 6, 19, 0.7);
    stroke-width: 1.5;
}

.blueprint circle { fill: var(--red); }

.materials-list {
    padding: 22px;
}

.list-title {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    color: var(--white);
    font-size: 0.78rem;
    font-weight: 700;
}

.list-title small {
    color: rgba(255, 255, 255, 0.36);
    font-weight: 500;
}

.material-row {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    align-items: center;
    gap: 11px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.material-row strong,
.material-row small {
    display: block;
}

.material-row strong {
    margin-bottom: 2px;
    font-size: 0.7rem;
}

.material-row small {
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.6rem;
}

.material-row > svg {
    width: 16px;
    color: #73c393;
}

.material-thumb {
    display: block;
    width: 42px;
    height: 42px;
    border-radius: 9px;
    background: #373634;
}

.thumb-a { background: radial-gradient(circle, #ffdda2 0 12%, #554932 14% 21%, #343331 24%); }
.thumb-b { background: linear-gradient(130deg, #dedbd5 0 32%, #5c5a55 32% 42%, #272624 42%); }
.thumb-c { background: linear-gradient(90deg, #302f2d 0 35%, #e30613 35% 49%, #54514d 49%); }

.desk-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 25px;
}

.desk-metrics div {
    display: grid;
    gap: 7px;
    padding: 12px 6px;
    place-items: center;
    text-align: center;
    color: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-size: 0.54rem;
}

.desk-metrics svg {
    width: 17px;
    color: #ff7e86;
}

/* Company */
.company-grid {
    display: grid;
    grid-template-columns: minmax(440px, 0.95fr) minmax(0, 1.05fr);
    align-items: center;
    gap: clamp(60px, 8vw, 120px);
}

.company-visual {
    position: relative;
    min-height: 620px;
    border-radius: 32px;
    background:
            linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
            var(--charcoal);
    background-size: 35px 35px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.company-visual::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 310px;
    height: 310px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.38), transparent 68%);
}

.company-year {
    position: absolute;
    top: 36px;
    left: 36px;
    z-index: 2;
}

.company-year small {
    display: block;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.company-year strong {
    display: block;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 7rem);
    letter-spacing: -0.07em;
    line-height: 1;
}

.company-graphic {
    position: absolute;
    inset: 180px 34px 80px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 20px;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015));
}

.building-line {
    position: absolute;
    bottom: 0;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 0;
}

.building-line::after {
    content: "";
    position: absolute;
    inset: 20px;
    background: repeating-linear-gradient(90deg, transparent 0 30px, rgba(255, 255, 255, 0.08) 30px 31px);
}

.building-line.line-one { left: 8%; width: 25%; height: 45%; }
.building-line.line-two { left: 32%; width: 39%; height: 72%; }
.building-line.line-three { right: 7%; width: 23%; height: 55%; }

.company-bulb {
    position: absolute;
    top: 18%;
    left: 50%;
    width: 145px;
    height: 145px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 233, 177, 0.35), rgba(255, 221, 133, 0.05) 52%, transparent 70%);
    transform: translateX(-50%);
    box-shadow: 0 0 90px rgba(255, 221, 133, 0.18);
}

.company-bulb span {
    position: absolute;
    inset: 40px 50px 34px;
    border: 4px solid var(--white);
    border-bottom: 0;
    border-radius: 40px 40px 17px 17px;
}

.company-bulb span::after {
    content: "";
    position: absolute;
    bottom: -16px;
    left: 50%;
    width: 30px;
    height: 20px;
    border-radius: 3px 3px 8px 8px;
    background: var(--white);
    transform: translateX(-50%);
}

.company-origin {
    position: absolute;
    right: 22px;
    bottom: 20px;
    display: grid;
    grid-template-columns: 34px auto;
    gap: 0 10px;
    padding: 12px 16px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 13px;
    background: rgba(25, 24, 23, 0.76);
    backdrop-filter: blur(10px);
}

.company-origin svg {
    grid-row: span 2;
    width: 20px;
    align-self: center;
    color: #ff8990;
}

.company-origin span { color: rgba(255, 255, 255, 0.45); font-size: 0.6rem; }
.company-origin strong { font-size: 0.75rem; }

.company-caption {
    position: absolute;
    right: 34px;
    bottom: 28px;
    left: 34px;
    display: flex;
    gap: 10px;
}

.company-caption span {
    padding: 7px 11px;
    color: rgba(255, 255, 255, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 0.6rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.company-copy p {
    margin-bottom: 18px;
}

/* Timeline */
.history .section-heading {
    margin-bottom: 70px;
}

.timeline {
    position: relative;
    padding: 0;
    margin: 0;
    list-style: none;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 205px;
    width: 2px;
    background: linear-gradient(var(--red), rgba(227, 6, 19, 0.08));
}

.timeline-item {
    display: grid;
    grid-template-columns: 170px 70px 1fr;
    gap: 0 0;
    min-height: 168px;
}

.timeline-date {
    padding-top: 4px;
    color: var(--red);
    font-family: var(--font-display);
    font-size: 0.79rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.timeline-marker {
    position: relative;
    display: flex;
    justify-content: center;
}

.timeline-marker span {
    position: relative;
    z-index: 2;
    display: block;
    width: 14px;
    height: 14px;
    border: 4px solid var(--warm-white);
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 1px var(--red), 0 0 22px rgba(227, 6, 19, 0.3);
}

.timeline-content {
    max-width: 780px;
    padding-bottom: 45px;
}

.timeline-content h3 {
    margin-bottom: 10px;
}

.timeline-content p {
    margin: 0;
    color: var(--muted);
}

/* Mission */
.mission-grid {
    display: grid;
    grid-template-columns: minmax(450px, 1fr) 1.08fr;
    gap: 20px;
}

.mission-main {
    position: relative;
    min-height: 590px;
    padding: clamp(36px, 5vw, 64px);
    color: var(--white);
    border-radius: 30px;
    background:
            linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
            var(--charcoal-2);
    background-size: 32px 32px;
    overflow: hidden;
}

.mission-main::after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -160px;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(227, 6, 19, 0.35), transparent 70%);
}

.mission-main h2 {
    position: relative;
    z-index: 1;
    font-size: clamp(2.5rem, 4.1vw, 4.35rem);
}

.mission-main p {
    position: relative;
    z-index: 1;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.62);
}

.mission-symbol {
    position: absolute;
    right: 42px;
    bottom: 36px;
    z-index: 2;
    display: grid;
    width: 95px;
    height: 95px;
    place-items: center;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(227, 6, 19, 0.78);
    box-shadow: 0 18px 40px rgba(227, 6, 19, 0.25);
}

.mission-symbol svg { width: 38px; height: 38px; }

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value-card {
    position: relative;
    min-height: 285px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: var(--warm-white);
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.value-card > span {
    position: absolute;
    top: 25px;
    right: 28px;
    color: #aaa69f;
    font-size: 0.65rem;
    letter-spacing: 0.12em;
}

.value-card > svg {
    width: 33px;
    height: 33px;
    margin-bottom: 52px;
    color: var(--red);
}

.value-card h3 { margin-bottom: 11px; }
.value-card p { margin: 0; color: var(--muted); font-size: 0.9rem; }

.values-closing {
    max-width: 860px;
    margin: 42px auto 0;
    color: var(--muted);
    text-align: center;
    font-size: 1.05rem;
}

/* Brands grid */
.brands-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 45px;
    margin-bottom: 42px;
}

.brand-counter {
    flex: 0 0 auto;
    min-width: 160px;
    padding-left: 26px;
    border-left: 1px solid var(--border);
}

.brand-counter strong {
    display: block;
    color: var(--red);
    font-family: var(--font-display);
    font-size: 2.3rem;
    line-height: 1;
}

.brand-counter span {
    color: var(--muted);
    font-size: 0.7rem;
}

.brand-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}

.brand-search {
    position: relative;
    display: flex;
    width: min(100%, 420px);
    align-items: center;
}

.brand-search > svg {
    position: absolute;
    left: 17px;
    width: 19px;
    color: var(--muted);
}

.brand-search input {
    width: 100%;
    height: 54px;
    padding: 0 48px 0 48px;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--white);
    outline: none;
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.brand-search input:focus {
    border-color: rgba(227, 6, 19, 0.6);
    box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.08);
}

.brand-search button {
    position: absolute;
    right: 10px;
    display: grid;
    width: 34px;
    height: 34px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--soft);
    cursor: pointer;
}

.brand-search button svg { width: 15px; }

.alphabet-filter {
    display: flex;
    gap: 5px;
}

.alphabet-filter button {
    display: grid;
    min-width: 38px;
    height: 38px;
    padding: 0 9px;
    place-items: center;
    color: var(--muted);
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--white);
    font-size: 0.74rem;
    font-weight: 700;
    cursor: pointer;
}

.alphabet-filter button:hover,
.alphabet-filter button.is-active {
    color: var(--white);
    border-color: var(--charcoal);
    background: var(--charcoal);
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.brand-card {
    position: relative;
    display: grid;
    min-height: 142px;
    padding: 20px;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: var(--white);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.brand-card:hover,
.brand-card:focus-within {
    z-index: 1;
    border-color: #c5c0b9;
    box-shadow: var(--shadow-sm);
    transform: translateY(-3px);
}

.brand-card img {
    width: 100%;
    height: 62px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.66;
    transition: filter 200ms ease, opacity 200ms ease, transform 200ms ease;
}

.brand-card:hover img,
.brand-card:focus-within img {
    filter: none;
    opacity: 1;
    transform: scale(1.035);
}

.brand-card span {
    position: absolute;
    right: 9px;
    bottom: 7px;
    left: 9px;
    color: #9c9891;
    font-size: 0.61rem;
    text-align: center;
}

.brand-empty {
    padding: 65px 25px;
    text-align: center;
    border: 1px dashed #cfcac2;
    border-radius: 20px;
}

.brand-empty > svg {
    width: 38px;
    height: 38px;
    margin: 0 auto 18px;
    color: var(--red);
}

.brand-empty h3 { margin-bottom: 8px; }
.brand-empty p { color: var(--muted); }

.brands-actions {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}

.brands-actions .button svg {
    transition: transform 180ms ease;
}

.brands-actions .button[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

/* Team */
.team-intro {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: clamp(60px, 9vw, 130px);
    margin-bottom: 60px;
}

.team-intro-copy {
    align-self: end;
}

.management-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.person-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 158px;
    padding: 24px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 23px;
    background: var(--warm-white);
}

.person-initials {
    display: grid;
    width: 76px;
    height: 76px;
    flex: 0 0 auto;
    place-items: center;
    color: var(--white);
    border-radius: 50%;
    background: var(--charcoal);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 750;
    letter-spacing: -0.03em;
}

.person-card h3 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.person-card p {
    margin: 0;
    color: var(--red);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.person-line {
    position: absolute;
    right: -15px;
    bottom: 28px;
    width: 110px;
    height: 1px;
    background: var(--red);
}

.person-line::before,
.person-line::after {
    content: "";
    position: absolute;
    top: -4px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--red);
}

.person-line::before { left: 0; }
.person-line::after { right: 0; }

.team-note {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    margin-top: 20px;
    padding: 32px;
    color: var(--white);
    border-radius: 24px;
    background: var(--charcoal);
}

.team-note-icon {
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 18px;
    background: rgba(227, 6, 19, 0.18);
}

.team-note-icon svg { color: #ff9299; }
.team-note h3 { margin-bottom: 9px; }
.team-note p { margin: 0; color: rgba(255, 255, 255, 0.58); font-size: 0.87rem; }

.team-locations {
    display: grid;
    gap: 6px;
}

.team-locations span {
    padding: 6px 11px;
    color: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    font-size: 0.65rem;
    text-align: center;
}

/* Stores */
.stores {
    overflow: hidden;
}

.stores-glow { right: -260px; bottom: -300px; }

.stores-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 56px;
}

.stores-header .section-heading { max-width: 850px; }
.stores-header > p { max-width: 390px; margin-bottom: 14px; color: rgba(255, 255, 255, 0.53); }

.stores-interface {
    display: grid;
    grid-template-columns: 330px 1fr;
    min-height: 580px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 28px;
    background: #292826;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28);
}

.store-tabs {
    padding: 14px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.12);
}

.store-tabs button {
    display: grid;
    width: 100%;
    grid-template-columns: 34px 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 22px 18px;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid transparent;
    border-radius: 17px;
    background: transparent;
    text-align: left;
    cursor: pointer;
    transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.store-tabs button + button { margin-top: 7px; }

.store-tabs button:hover,
.store-tabs button[aria-selected="true"] {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.07);
}

.store-tabs button[aria-selected="true"] .store-tab-number {
    color: #ff979e;
}

.store-tabs strong,
.store-tabs small {
    display: block;
}

.store-tabs strong { font-size: 0.92rem; }
.store-tabs small { margin-top: 2px; color: rgba(255, 255, 255, 0.38); font-size: 0.65rem; }
.store-tabs > button > svg { width: 17px; }
.store-tab-number { color: rgba(255, 255, 255, 0.25); font-family: var(--font-display); font-size: 0.68rem; font-weight: 700; }

.store-panels {
    min-width: 0;
}

.store-panel {
    min-height: 100%;
    padding: clamp(34px, 5vw, 65px);
    background:
            linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 32px 32px;
}

.store-panel[hidden] { display: none; }

.store-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-bottom: 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.store-panel-head span {
    color: #ff8990;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.store-panel-head h3 {
    margin: 7px 0 0;
    font-size: clamp(2.3rem, 4.2vw, 4rem);
}

.store-index {
    color: rgba(255, 255, 255, 0.12);
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 800;
    line-height: 0.75;
}

.store-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 22px;
}

.store-detail {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 15px;
    padding: 25px 25px 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.store-detail:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.08); }
.store-detail:nth-child(even) { padding-left: 25px; }

.store-detail > svg {
    width: 21px;
    color: #ff8b92;
}

.store-detail small {
    display: block;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.store-detail p,
.store-detail address,
.store-detail a {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.65;
}

.store-detail a:hover { color: var(--white); }
.store-detail strong { color: rgba(255, 255, 255, 0.53); font-weight: 500; }

.store-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    margin-top: 34px;
}

/* Contact */
.contact {
    background: var(--warm-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(350px, 0.72fr) minmax(600px, 1.28fr);
    align-items: start;
    gap: clamp(55px, 8vw, 115px);
}

.contact-copy {
    position: sticky;
    top: 120px;
}

.contact-copy h2 { font-size: clamp(2.8rem, 4.6vw, 4.8rem); }

.contact-direct {
    display: grid;
    gap: 10px;
    margin: 36px 0 30px;
}

.contact-direct > a {
    display: grid;
    grid-template-columns: 46px 1fr auto;
    align-items: center;
    gap: 13px;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: var(--white);
    transition: transform 180ms ease, border-color 180ms ease;
}

.contact-direct > a:hover {
    border-color: #c7c2ba;
    transform: translateX(4px);
}

.contact-direct > a > span {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    color: var(--red);
    border-radius: 13px;
    background: var(--red-soft);
}

.contact-direct small,
.contact-direct strong {
    display: block;
}

.contact-direct small { color: var(--muted); font-size: 0.68rem; }
.contact-direct strong { margin-top: 1px; font-size: 0.9rem; }
.contact-direct > a > svg { width: 17px; color: var(--muted); }

.contact-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    color: var(--muted);
    border: 1px dashed #cfc9c1;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.55);
}

.contact-note svg { width: 18px; flex: 0 0 auto; color: var(--red); }
.contact-note p { margin: 0; font-size: 0.75rem; }

.contact-form-wrap {
    padding: clamp(28px, 4.5vw, 52px);
    border: 1px solid var(--border);
    border-radius: 28px;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.form-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 35px;
}

.form-head span:first-child {
    color: var(--red);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.form-head h3 {
    margin: 7px 0 0;
    font-size: 1.85rem;
}

.form-step {
    color: #d6d1ca;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 21px 16px;
}

.form-field {
    min-width: 0;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-field label {
    display: block;
    margin-bottom: 7px;
    color: #514e49;
    font-size: 0.78rem;
    font-weight: 700;
}

.form-field label span { color: var(--red); }
.form-field label small { color: #9d9891; font-size: 0.65rem; font-weight: 500; }

.form-field input:not([type="checkbox"]),
.form-field select,
.form-field textarea {
    width: 100%;
    min-height: 51px;
    padding: 13px 15px;
    color: var(--text);
    border: 1px solid var(--border);
    border-radius: 12px;
    background: #fbfaf8;
    outline: none;
    transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

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

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: rgba(227, 6, 19, 0.6);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(227, 6, 19, 0.07);
}

.form-field [aria-invalid="true"] {
    border-color: var(--danger) !important;
    box-shadow: 0 0 0 3px rgba(191, 36, 48, 0.08) !important;
}

.field-error {
    min-height: 0;
    margin: 5px 0 0;
    color: var(--danger);
    font-size: 0.68rem;
}

.checkbox-field {
    display: grid;
    grid-template-columns: 20px 1fr;
    align-items: start;
    gap: 10px;
}

.checkbox-field input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--red);
}

.checkbox-field label {
    margin: 0;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.5;
}

.checkbox-field .field-error {
    grid-column: 2;
}

.inline-legal-link {
    padding: 0;
    color: var(--red);
    border: 0;
    background: none;
    font-size: inherit;
    text-decoration: underline;
    cursor: pointer;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid var(--border);
}

.form-footer p {
    margin: 0;
    color: #9a958e;
    font-size: 0.67rem;
}

.form-footer p span { color: var(--red); }

.form-success {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: 25px;
    padding: 18px;
    color: #1c5a39;
    border: 1px solid #b8ddc8;
    border-radius: 14px;
    background: #eef9f2;
}

.form-success[hidden] { display: none; }
.form-success > svg { width: 25px; flex: 0 0 auto; }
.form-success strong { display: block; margin-bottom: 3px; }
.form-success p { margin: 0; color: #4e765f; font-size: 0.8rem; }

/* CTA */
.final-cta {
    padding-block: clamp(70px, 9vw, 112px);
    color: var(--white);
    background: var(--red);
    overflow: hidden;
}

.cta-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 70px;
}

.cta-inner > div:first-child { max-width: 840px; }
.cta-inner h2 { margin-bottom: 18px; }
.cta-inner p { max-width: 730px; margin: 0; color: rgba(255, 255, 255, 0.75); }
.cta-inner .eyebrow-light { color: rgba(255, 255, 255, 0.72); }

.cta-actions {
    display: grid;
    gap: 10px;
    min-width: 240px;
}

.cta-circuit {
    position: absolute;
    inset: 0;
    background:
            linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
    background-size: 38px 38px;
    mask-image: linear-gradient(90deg, transparent, black 30%, black);
}

.cta-glow {
    position: absolute;
    top: -240px;
    right: -120px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.23), transparent 68%);
}

/* Footer */
.site-footer {
    color: rgba(255, 255, 255, 0.68);
    background: #171615;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(300px, 1.4fr) repeat(3, 0.7fr);
    gap: clamp(35px, 6vw, 90px);
    padding-block: 80px 65px;
}

.footer-brand img {
    width: 230px;
    height: auto;
    margin-bottom: 25px;
}

.footer-brand p {
    max-width: 370px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 0.83rem;
}

.footer-contacts {
    display: grid;
    gap: 8px;
    margin-top: 25px;
}

.footer-contacts a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    width: fit-content;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
}

.footer-contacts svg { width: 16px; color: #ff7f87; }

.footer-column {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-column h2 {
    margin-bottom: 14px;
    color: var(--white);
    font-size: 0.86rem;
    letter-spacing: 0;
}

.footer-column a,
.footer-column button {
    width: fit-content;
    padding: 0;
    color: rgba(255, 255, 255, 0.49);
    border: 0;
    background: none;
    font-size: 0.78rem;
    text-align: left;
    cursor: pointer;
    transition: color 160ms ease;
}

.footer-column a:hover,
.footer-column button:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    min-height: 76px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.7rem;
}

.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; gap: 20px; }
.footer-bottom button { padding: 0; color: rgba(255, 255, 255, 0.43); border: 0; background: none; cursor: pointer; }
.footer-bottom button:hover { color: var(--white); }

.back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    place-items: center;
    color: var(--white);
    border: 0;
    border-radius: 50%;
    background: var(--charcoal);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    cursor: pointer;
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease, background-color 180ms ease;
}

.back-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover { background: var(--red); }
.back-to-top svg { width: 19px; }

/* Legal dialog */
.legal-dialog {
    width: min(calc(100% - 32px), 680px);
    padding: 0;
    color: var(--text);
    border: 0;
    border-radius: 24px;
    background: var(--white);
    box-shadow: 0 35px 110px rgba(0, 0, 0, 0.34);
}

.legal-dialog::backdrop {
    background: rgba(20, 19, 18, 0.72);
    backdrop-filter: blur(6px);
}

.legal-dialog-inner {
    position: relative;
    padding: clamp(30px, 5vw, 52px);
}

.legal-dialog h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.legal-dialog p,
.legal-dialog li {
    color: var(--muted);
    font-size: 0.9rem;
}

.legal-dialog ul { padding-left: 20px; }

.legal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--warm-white);
    cursor: pointer;
}

.legal-close svg { width: 18px; }

.legal-notice {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 25px 0;
    padding: 14px;
    border: 1px dashed #d3cec6;
    border-radius: 12px;
    background: var(--warm-white);
}

.legal-notice svg { width: 19px; flex: 0 0 auto; color: var(--red); }

/* Reveal animations */
.js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 650ms cubic-bezier(.22, .7, .2, 1), transform 650ms cubic-bezier(.22, .7, .2, 1);
}

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

.js .hero-sequence {
    opacity: 0;
    transform: translateY(18px);
    animation: heroIn 700ms cubic-bezier(.22, .7, .2, 1) forwards;
}

.js .hero-sequence:nth-child(1) { animation-delay: 90ms; }
.js .hero-sequence:nth-child(2) { animation-delay: 170ms; }
.js .hero-sequence:nth-child(3) { animation-delay: 250ms; }
.js .hero-sequence:nth-child(4) { animation-delay: 330ms; }
.js .hero-sequence:nth-child(5) { animation-delay: 410ms; }
.hero-visual.hero-sequence { animation-delay: 250ms; }

@keyframes heroIn {
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1200px) {
    :root { --header-height: 82px; }
    .container { width: min(calc(100% - 40px), var(--container)); }
    .desktop-nav { gap: 0; }
    .nav-link { padding-inline: 9px; font-size: 0.84rem; }
    .header-actions .button-ghost { display: none; }
    .brand { width: 175px; }
    .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr); gap: 42px; }
    .floating-card-three { right: -15px; }
    .floating-card-one { right: -10px; }
    .support-grid { grid-template-columns: 0.8fr 1.2fr; gap: 45px; }
    .project-desk { padding: 14px; }
    .materials-list { padding: 16px; }
    .brand-grid { grid-template-columns: repeat(4, 1fr); }
    .contact-grid { grid-template-columns: 0.7fr 1.3fr; gap: 55px; }
}

@media (max-width: 1020px) {
    .desktop-nav,
    .header-actions { display: none; }
    .menu-toggle { display: block; margin-left: auto; }
    .mobile-menu,
    .mobile-menu-backdrop { display: block; }
    .mobile-menu-backdrop {
        position: fixed;
        inset: 0;
        z-index: 1001;
        background: rgba(20, 19, 18, 0.56);
        opacity: 0;
        visibility: hidden;
        transition: opacity 220ms ease, visibility 220ms ease;
        backdrop-filter: blur(4px);
    }
    .mobile-menu-backdrop.is-open { opacity: 1; visibility: visible; }
    .mobile-menu {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1002;
        width: min(88vw, 440px);
        height: 100dvh;
        padding: 22px;
        background: var(--white);
        box-shadow: -30px 0 80px rgba(0, 0, 0, 0.2);
        transform: translateX(105%);
        transition: transform 300ms cubic-bezier(.22, .7, .2, 1);
        overflow-y: auto;
    }
    .mobile-menu.is-open { transform: translateX(0); }
    .mobile-menu-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
    .mobile-menu-head img { width: 175px; }
    .mobile-menu-close { display: grid; width: 44px; height: 44px; padding: 0; place-items: center; border: 1px solid var(--border); border-radius: 50%; background: var(--warm-white); cursor: pointer; }
    .mobile-menu-close svg { width: 19px; }
    .mobile-menu-links { display: grid; padding: 24px 0; }
    .mobile-menu-links a { padding: 14px 5px; border-bottom: 1px solid var(--border); font-family: var(--font-display); font-size: 1.22rem; font-weight: 700; }
    .mobile-menu-actions { display: grid; gap: 10px; }
    .mobile-menu-contact { display: grid; gap: 9px; margin-top: 24px; padding: 18px; border-radius: 15px; background: var(--warm-white); }
    .mobile-menu-contact a { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 0.78rem; }
    .mobile-menu-contact svg { width: 16px; color: var(--red); }

    .hero { padding-top: calc(var(--header-height) + 70px); }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-copy { max-width: 850px; }
    .hero-title { max-width: 900px; font-size: clamp(3.4rem, 9vw, 6.2rem); }
    .hero-visual { min-height: 600px; margin-top: 20px; }
    .floating-card-one { right: 20px; }
    .floating-card-three { right: 20px; }
    .floating-card-two { left: 20px; }

    .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 35px; }
    .stat-item { min-height: 100px; }
    .stat-item:nth-child(3) { padding-left: 0; border-left: 0; }

    .solutions-grid { grid-template-columns: repeat(2, 1fr); }
    .solution-card-wide { grid-column: span 2; }

    .support-grid { grid-template-columns: 1fr; }
    .support-copy { max-width: 720px; }
    .project-desk { width: min(100%, 800px); }

    .company-grid { grid-template-columns: 1fr; }
    .company-visual { min-height: 590px; }
    .company-copy { max-width: 850px; }

    .mission-grid { grid-template-columns: 1fr; }
    .mission-main { min-height: 500px; }
    .value-card { min-height: 250px; }

    .brand-grid { grid-template-columns: repeat(4, 1fr); }
    .brand-toolbar { align-items: flex-start; flex-direction: column; }
    .alphabet-filter { flex-wrap: wrap; }

    .team-intro { grid-template-columns: 1fr; gap: 25px; }
    .team-intro-copy { max-width: 850px; }
    .management-grid { grid-template-columns: repeat(3, 1fr); }
    .person-card { align-items: flex-start; flex-direction: column; }
    .team-note { grid-template-columns: auto 1fr; }
    .team-locations { grid-column: 2; display: flex; flex-wrap: wrap; }

    .stores-header { align-items: flex-start; flex-direction: column; gap: 10px; }
    .stores-header > p { max-width: 650px; }
    .stores-interface { grid-template-columns: 260px 1fr; }
    .store-panel { padding: 35px; }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-copy { position: static; max-width: 740px; }
    .contact-direct { grid-template-columns: repeat(2, 1fr); }

    .cta-inner { grid-template-columns: 1fr; gap: 35px; }
    .cta-actions { display: flex; flex-wrap: wrap; min-width: 0; }
    .footer-grid { grid-template-columns: 1.25fr repeat(3, 0.75fr); gap: 35px; }
}

@media (max-width: 768px) {
    :root { --header-height: 74px; }
    .container { width: min(calc(100% - 30px), var(--container)); }
    .section { padding-block: clamp(72px, 15vw, 100px); }
    h2 { font-size: clamp(2.25rem, 10vw, 3.5rem); }
    .brand { width: 155px; }
    .site-header.is-scrolled { height: 68px; }

    .hero { min-height: auto; padding-top: calc(var(--header-height) + 55px); padding-bottom: 90px; }
    .hero-title { font-size: clamp(3rem, 13vw, 4.9rem); }
    .hero-lead { font-size: 1rem; }
    .hero-buttons { display: grid; }
    .hero-buttons .button { width: 100%; }
    .hero-trust { grid-template-columns: 1fr; gap: 13px; margin-top: 30px; }
    .hero-trust > div + div { padding-left: 0; border-left: 0; }
    .hero-trust > div { padding: 10px 0; border-bottom: 1px solid rgba(36, 35, 33, 0.08); }
    .hero-visual { min-height: 520px; border-radius: 26px; }
    .architectural-panel { inset: 45px 18px 52px; }
    .floating-card { min-width: 168px; padding: 11px; }
    .floating-card-one { top: 16px; right: 8px; }
    .floating-card-two { bottom: 14px; left: 8px; }
    .floating-card-three { display: none; }
    .since-badge { top: 75px; left: 8px; width: 78px; height: 78px; }
    .scroll-hint { display: none; }

    .brand-strip-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
    .marquee-logo { width: 125px; }

    .stats-grid { grid-template-columns: 1fr; row-gap: 0; }
    .stat-item { min-height: 0; padding: 25px 0; }
    .stat-item + .stat-item { border-top: 1px solid rgba(255, 255, 255, 0.14); border-left: 0; }
    .stat-item strong { font-size: 2.4rem; }

    .solutions-grid { grid-template-columns: 1fr; }
    .solution-card-wide { grid-column: auto; grid-template-columns: 1fr; }
    .solution-card { min-height: 340px; }
    .solution-card-wide { min-height: 620px; }

    .project-desk { padding: 10px; }
    .desk-grid { grid-template-columns: 1fr; }
    .blueprint { min-height: 350px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); }
    .materials-list { padding: 20px; }

    .company-visual { min-height: 510px; }
    .company-year { top: 28px; left: 28px; }
    .company-graphic { inset: 155px 20px 72px; }
    .company-caption { right: 20px; left: 20px; overflow-x: auto; }

    .history .section-heading { margin-bottom: 50px; }
    .timeline::before { left: 8px; }
    .timeline-item { grid-template-columns: 36px 1fr; min-height: 0; }
    .timeline-date { grid-column: 2; margin-bottom: 8px; }
    .timeline-marker { grid-row: span 2; justify-content: flex-start; }
    .timeline-content { grid-column: 2; padding-bottom: 45px; }

    .mission-main { min-height: 590px; padding: 35px 28px; }
    .mission-symbol { right: 26px; bottom: 25px; }
    .values-grid { grid-template-columns: 1fr; }

    .brands-header { align-items: flex-start; flex-direction: column; gap: 20px; }
    .brand-counter { padding-left: 0; border-left: 0; }
    .brand-search { width: 100%; }
    .brand-grid { grid-template-columns: repeat(2, 1fr); }
    .alphabet-filter { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 5px; }
    .alphabet-filter button { flex: 0 0 auto; }

    .management-grid { grid-template-columns: 1fr; }
    .person-card { align-items: center; flex-direction: row; }
    .team-note { grid-template-columns: 1fr; }
    .team-locations { grid-column: auto; }

    .stores-interface { grid-template-columns: 1fr; }
    .store-tabs { display: flex; gap: 7px; padding: 10px; overflow-x: auto; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    .store-tabs button { min-width: 230px; margin: 0 !important; }
    .store-panel { padding: 30px 22px; }
    .store-details-grid { grid-template-columns: 1fr; }
    .store-detail,
    .store-detail:nth-child(even),
    .store-detail:nth-child(odd) { padding: 22px 0; border-right: 0; }
    .store-panel-head h3 { font-size: 2.4rem; }
    .store-index { font-size: 4rem; }
    .store-actions { display: grid; }

    .contact-direct { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 28px 20px; }
    .form-grid { grid-template-columns: 1fr; }
    .form-field-full { grid-column: auto; }
    .form-footer { align-items: stretch; flex-direction: column; }
    .form-footer .button { width: 100%; }

    .cta-actions { display: grid; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-brand { grid-column: 1 / -1; }
    .footer-bottom { align-items: flex-start; flex-direction: column; padding-block: 25px; }
    .footer-bottom div { flex-wrap: wrap; gap: 10px 18px; }
}

@media (max-width: 480px) {
    .container { width: min(calc(100% - 24px), var(--container)); }
    .menu-toggle { width: 44px; height: 44px; }
    .mobile-menu { width: 94vw; padding: 18px; }
    .hero-title { font-size: clamp(2.7rem, 14vw, 4rem); }
    .hero-visual { min-height: 440px; }
    .architectural-panel { inset: 40px 12px 45px; }
    .ceiling-track { width: 64%; }
    .panel-caption { display: none; }
    .floating-card { min-width: 148px; }
    .floating-card > span:last-child { font-size: 0.68rem; }
    .floating-icon { width: 31px; height: 31px; }
    .since-badge { top: 69px; width: 70px; height: 70px; }
    .since-badge strong { font-size: 1.12rem; }

    .solution-card { padding: 25px; }
    .solution-card-wide { min-height: 580px; }
    .module-a { right: 10px; }
    .module-b { left: 15px; }

    .desk-topbar { align-items: flex-start; flex-direction: column; gap: 8px; }
    .desk-metrics { grid-template-columns: 1fr; }

    .company-visual { min-height: 470px; }
    .company-year strong { font-size: 4.6rem; }
    .company-graphic { inset: 145px 13px 70px; }
    .company-caption span { font-size: 0.52rem; }

    .mission-main { min-height: 650px; }
    .brand-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
    .brand-card { min-height: 116px; padding: 14px; }
    .brand-card img { height: 52px; }

    .team-locations { display: grid; }
    .person-card { padding: 18px; }
    .person-initials { width: 62px; height: 62px; }

    .store-tabs button { min-width: 215px; padding: 17px 15px; }
    .store-panel-head { align-items: center; }
    .store-index { font-size: 3rem; }
    .store-panel-head h3 { font-size: 2rem; }

    .contact-direct > a { grid-template-columns: 42px minmax(0, 1fr); }
    .contact-direct > a > svg { display: none; }
    .contact-direct strong { overflow-wrap: anywhere; }
    .form-head h3 { font-size: 1.55rem; }
    .form-step { font-size: 2rem; }

    .footer-grid { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
    .brand-marquee-track { animation: none; }
    .js .reveal,
    .js .hero-sequence { opacity: 1; transform: none; }
}
