/* ---------------------------------------------------------
   URWIND 2026 - ULTIMATE B2B SHOWROOM STYLESHEET
   --------------------------------------------------------- */

:root {
    --black: #0B0B0B;
    --ink: #0B0B0B;
    --dark: #141414;
    --steel: #8A8A8A;
    --steel-light: #A8A8A8;
    --line: rgba(255, 255, 255, 0.08);
    --soft-line: rgba(201, 162, 39, 0.12);
    --white: #FFFFFF;
    --paper: #FFFFFF;
    --blackish: #0B0B0B;
    --light-gold: #C9A227;
    --red: #E60000;
    --red-dark: #C40000;
    --red-glow: rgba(230, 0, 0, 0.32);
    --red-glow-subtle: rgba(230, 0, 0, 0.1);
    --gold: #C9A227;
    --gray: #C9A227;
    --site-header-height: 150px;
    --page-hero-min-height: clamp(580px, 80vh, 760px);
    --page-hero-padding-top: calc(var(--site-header-height) + 72px);
    --page-hero-padding-bottom: 64px;
    --page-hero-padding-x: 5vw;
    --green: #15803d;
    --green-bg: #dcf8e9;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.08);
    --shadow-dark: 0 20px 48px rgba(0, 0, 0, 0.4);
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: var(--white);
}

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

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

button,
input,
select,
textarea {
    font-family: var(--font-body);
}

/* ---------------------------------------------------------
   NORMAL PAGE SCROLL LAYOUT
   --------------------------------------------------------- */

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    overflow-x: hidden;
    background-color: var(--white);
}

.scroll-container {
    position: relative;
    width: 100%;
    height: auto;
    overflow: visible;
}

.scroll-section {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 100vh;
    height: auto;
    padding-top: var(--site-header-height);
    padding-bottom: 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white);
    opacity: 1;
    pointer-events: auto;
    z-index: auto;
    transform: none;
    transition: none;
}

.scroll-section.active {
    opacity: 1;
    pointer-events: auto;
    z-index: auto;
    transform: translateY(0);
}

.scroll-section.past {
    opacity: 1;
    pointer-events: auto;
    z-index: auto;
    transform: none;
}

/* ---------------------------------------------------------
   DYNAMIC SIDE NAVIGATION DOTS
   --------------------------------------------------------- */

.side-scroll-nav {
    position: fixed;
    right: 28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 120;
    display: none;
    flex-direction: column;
    gap: 14px;
    pointer-events: auto;
}

.side-nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: 2px solid transparent;
    padding: 0;
    cursor: pointer;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Red glow and scaling for active indicator dot */
.side-nav-dot.active {
    background: var(--red);
    transform: scale(1.6);
    box-shadow: 0 0 10px var(--red-glow), 0 0 1px var(--white);
    border-color: var(--white);
}

.side-nav-dot:hover:not(.active) {
    background: var(--white);
    transform: scale(1.2);
}

/* Tooltip names for navigation clarity */
.side-nav-dot::after {
    content: attr(title);
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    background: rgba(9, 9, 11, 0.95);
    border: 1px solid var(--line);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.side-nav-dot:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

/* ---------------------------------------------------------
   HEADER & NAVIGATION
   --------------------------------------------------------- */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: block;
    color: var(--white);
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.site-header.is-scrolled {
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.36);
}

.header-main-row {
    min-height: 98px;
    display: grid;
    grid-template-columns: minmax(172px, 220px) minmax(340px, 1fr) auto;
    align-items: center;
    gap: clamp(18px, 2.6vw, 34px);
    padding: 18px clamp(24px, 4vw, 52px);
    background: linear-gradient(180deg, #050505 0%, #000 100%);
}

.header-brand {
    display: inline-grid;
    justify-items: center;
    width: fit-content;
    color: var(--white);
    line-height: 1;
    text-transform: uppercase;
}

.header-brand:hover {
    color: var(--white);
}

.header-brand-word {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: clamp(38px, 3.4vw, 52px);
    font-weight: 900;
    line-height: 0.9;
    transform: scaleX(0.88);
    transform-origin: center;
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.08);
}

.header-brand-est {
    margin-top: 5px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 10px;
    font-style: italic;
    text-transform: none;
    color: var(--white);
    opacity: 0.92;
}

.header-search {
    width: min(100%, 780px);
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-self: center;
    overflow: hidden;
    background: #172225;
    border: 1px solid #172225;
    border-radius: 4px;
}

.header-search:focus-within {
    border-color: rgba(255, 212, 0, 0.8);
    box-shadow: 0 0 0 3px rgba(255, 212, 0, 0.12);
}

.header-search input {
    flex: 1;
    min-width: 0;
    min-height: 54px;
    padding: 0 20px;
    color: var(--white);
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 15px;
    font-weight: 700;
}

.header-search input::placeholder {
    color: var(--white);
    opacity: 1;
}

.header-search button {
    display: grid;
    place-items: center;
    width: 46px;
    height: 44px;
    margin-right: 5px;
    color: #111;
    background: #f6f6f6;
    border: 0;
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease;
}

.header-search button:hover {
    color: #000;
    background: var(--gold);
}

.header-search svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
}

.header-help-card {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 22px;
    color: #050505;
    background: var(--white);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    white-space: nowrap;
}

.header-help-card:hover {
    color: #050505;
    background: var(--gold);
}

.header-help-card svg {
    width: 34px;
    height: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-quote-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
}

.header-quote-icon:hover {
    color: #050505;
    background: var(--gold);
    border-color: var(--gold);
}

.header-quote-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: var(--red);
    background: transparent;
    border: 2px solid var(--red);
    clip-path: polygon(50% 0, 100% 28%, 82% 100%, 50% 76%, 18% 100%, 0 28%);
    font-size: 0;
    position: relative;
}

.brand-mark::before {
    content: "";
    width: 12px;
    height: 12px;
    border: 2px solid var(--red);
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg) translateY(-2px);
}

.brand-text {
    display: grid;
    line-height: 1.1;
}

.brand-text strong {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.brand-text small {
    color: var(--steel-light);
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-nav-row {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 clamp(16px, 2vw, 32px);
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    overflow: visible;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(6px, 0.7vw, 14px);
    width: 100%;
    max-width: 1320px;
    min-width: 0;
}

.main-nav a,
.nav-dropdown > button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--white);
    background: transparent;
    border: 0;
    padding: 0 7px;
    font-size: 13.5px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active,
.nav-dropdown > button.active,
.nav-dropdown:hover > button {
    color: var(--gold);
}

.nav-cta {
    min-width: 118px;
    min-height: 36px !important;
    justify-content: center;
    padding: 0 14px !important;
    border-radius: 4px !important;
    text-align: center;
    color: #050505 !important;
    background: var(--gold) !important;
    font-weight: 800 !important;
}

.nav-cta:hover {
    color: var(--white) !important;
    background: var(--red) !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(230, 0, 0, 0.35);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > button::after {
    content: "";
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
}

.dropdown-panel {
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    display: grid;
    min-width: 240px;
    padding: 8px;
    opacity: 0;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0 0 6px 6px;
    box-shadow: var(--shadow-dark);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown.is-open .dropdown-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(4px);
}

.dropdown-panel a {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 12.5px;
    border-radius: 6px;
    color: #e4e4e7;
}

.dropdown-panel a:hover {
    color: #050505;
    background: var(--gold);
}

.menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    background: var(--white);
}

/* ---------------------------------------------------------
   HERO SECTION DESIGN (DARK PRESET)
   --------------------------------------------------------- */

#hero-sec {
    background-color: var(--black);
    color: var(--white);
}

#hero-sec .scroll-indicator {
    display: none;
}

.hero-backdrop-glow {
    position: absolute;
    top: 15%;
    right: 8%;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(230, 0, 0, 0.2) 0%, rgba(230, 0, 0, 0.04) 55%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    filter: blur(30px);
}

.hero-section {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5vw;
}

.hero-content {
    max-width: 720px;
    text-align: left;
}

.eyebrow {
    display: inline-block;
    color: var(--red);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.12;
    margin: 0 0 16px;
}

h1 {
    font-size: 58px;
    letter-spacing: -1.5px;
    color: var(--white);
}

h2 {
    font-size: 38px;
    letter-spacing: -0.8px;
    color: var(--ink);
}

/* Dark Theme overrides */
#hero-sec h2,
#stats-sec h2,
#cta-sec h2 {
    color: var(--white);
}

h3 {
    font-size: 21px;
    color: var(--ink);
}

#hero-sec h3,
#cta-sec h3 {
    color: var(--white);
}

p {
    margin: 0 0 20px;
    color: var(--steel);
    font-size: 14.5px;
}

.hero-content p {
    font-size: 16.5px;
    line-height: 1.65;
    color: #d4d4d8;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 40px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 12px 24px;
    color: var(--white);
    background: var(--red);
    border: 1px solid var(--red);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover {
    background: var(--red-dark);
    border-color: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--red-glow);
}

.btn-glow {
    box-shadow: 0 8px 24px rgba(230, 0, 0, 0.3);
}

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

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

.btn-large {
    min-height: 52px;
    padding: 14px 32px;
    font-size: 15px;
}

.hero-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
}

.hero-points span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #e4e4e7;
}

.point-icon {
    color: var(--red);
    flex-shrink: 0;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glove-glowing-ring {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    border: 2px dashed rgba(230, 0, 0, 0.2);
    animation: rotateRing 40s linear infinite;
    pointer-events: none;
}

.floating-hero-glove {
    position: relative;
    max-width: 90%;
    max-height: 440px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.7)) drop-shadow(0 0 20px rgba(230, 0, 0, 0.12));
}

@keyframes rotateRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    z-index: 10;
    pointer-events: none;
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid var(--steel);
    border-radius: 10px;
    position: relative;
}

.scroll-mouse .wheel {
    width: 3px;
    height: 6px;
    background: var(--red);
    border-radius: 2px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

.scroll-text {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--steel);
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 10px); }
}

/* ---------------------------------------------------------
   GLOBAL SECTIONS STRUCTURE (ALTERNATING THEMES)
   --------------------------------------------------------- */

.section {
    padding: 48px 5vw;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.compact-section {
    padding: 32px 5vw;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 40px;
}

.section-heading.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.heading-accent {
    width: 48px;
    height: 3px;
    background: var(--red);
    margin: 12px auto 0;
    border-radius: 2px;
}

.heading-accent.left {
    margin-left: 0;
    margin-right: auto;
}

/* ---------------------------------------------------------
   PRIVATE LABEL LAUNCH SYSTEM
   --------------------------------------------------------- */

#launch-sec {
    color: var(--white);
    background:
        linear-gradient(135deg, rgba(9, 9, 11, 0.96) 0%, rgba(18, 18, 24, 0.98) 52%, rgba(42, 12, 15, 0.96) 100%);
}

.launch-system {
    display: grid;
    grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
    gap: clamp(32px, 5vw, 76px);
    align-items: center;
}

.launch-copy {
    max-width: 560px;
}

.launch-copy h2 {
    color: var(--white);
    font-size: clamp(38px, 5vw, 72px);
    letter-spacing: 0;
    margin-bottom: 18px;
}

.launch-copy p {
    max-width: 520px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 16px;
    line-height: 1.65;
}

.launch-proof-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 26px 0;
}

.launch-proof-row span {
    min-height: 78px;
    display: grid;
    align-content: center;
    gap: 2px;
    padding: 14px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.launch-proof-row strong {
    color: var(--gold);
    font-family: var(--font-heading);
    font-size: 24px;
    line-height: 1;
}

.launch-board {
    position: relative;
    display: grid;
    grid-template-columns: minmax(260px, 0.95fr) minmax(280px, 1.05fr);
    grid-template-rows: 1fr auto;
    gap: 16px;
    min-height: 500px;
}

.launch-board-media {
    position: relative;
    grid-row: 1 / 3;
    min-height: 500px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: #050506;
}

.launch-board-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.82) 100%),
        linear-gradient(90deg, rgba(230, 0, 0, 0.16), transparent 55%);
    z-index: 2;
}

.launch-board-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.launch-steps {
    display: grid;
    gap: 12px;
}

.launch-step {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 14px;
    min-height: 142px;
    padding: 22px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.065);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.launch-step > span {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: #050505;
    background: var(--gold);
    border-radius: 4px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 900;
}

.launch-step strong {
    display: block;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 22px;
    line-height: 1.1;
    margin-bottom: 8px;
}

.launch-step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

.launch-capability-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-content: start;
}

.launch-capability-row span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
}

/* ---------------------------------------------------------
   SERVICES SECTION (LIGHT COMPANION CARD DESIGN)
   --------------------------------------------------------- */

#services-sec {
    background-color: var(--white);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    position: relative;
    padding: 32px 24px;
    background: var(--white);
    border: 1px solid #e4e4e7;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 0, 0, 0.3);
    box-shadow: var(--shadow-md);
}

.service-icon-wrapper {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    color: var(--red);
    background: rgba(230, 0, 0, 0.06);
    border: 1px solid rgba(230, 0, 0, 0.15);
    border-radius: 8px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-icon-wrapper svg {
    width: 22px;
    height: 22px;
}

.service-card:hover .service-icon-wrapper {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 13.5px;
    color: var(--steel);
    margin: 0;
    line-height: 1.5;
}

.service-hover-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: transform 0.35s ease;
}

.service-card:hover .service-hover-indicator {
    transform: scaleX(1);
}

/* ---------------------------------------------------------
   PRODUCT CATEGORIES SECTION (LIGHT TILE MOSAIC)
   --------------------------------------------------------- */

#categories-sec {
    background-color: #fafafa;
}

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

.catalog-tile {
    position: relative;
    min-height: 140px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 16px;
    border: 1px solid #e4e4e7;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
}

.tile-image-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.tile-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.5s ease;
}

.catalog-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(9, 9, 11, 0.8) 95%);
    z-index: 2;
}

.tile-content {
    position: relative;
    z-index: 3;
    width: 100%;
}

.catalog-tile strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 14px;
    color: var(--white);
    margin-bottom: 2px;
}

.tile-action {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 9px;
    font-weight: 850;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
}

.catalog-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 0, 0, 0.25);
    box-shadow: var(--shadow-md);
}

.catalog-tile:hover .tile-image-container img {
    transform: scale(1.06);
}

.catalog-tile:hover .tile-action {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------------------------------------------------
   FEATURED PRODUCTS SHOWROOM (LIGHT MATTE SHADOWS)
   --------------------------------------------------------- */

#products-sec {
    background-color: var(--white);
}

.showroom-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.premium-product-card {
    position: relative;
    background: var(--white);
    border: 1px solid #e4e4e7;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.premium-product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(230, 0, 0, 0.25);
    box-shadow: var(--shadow-md);
}

.premium-product-card .card-media {
    position: relative;
    aspect-ratio: 1.15;
    background: #fcfcfc;
    overflow: hidden;
    display: grid;
    place-items: center;
    border-bottom: 1px solid #f1f1f4;
}

.premium-product-card .card-media img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.premium-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    background: var(--red);
    color: var(--white);
    font-size: 8px;
    font-weight: 800;
    padding: 3px 6px;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.premium-product-card .product-body {
    padding: 20px;
}

.premium-product-card h3 {
    font-size: 17.5px;
    margin-bottom: 8px;
}

.premium-product-card p {
    font-size: 13px;
    color: var(--steel);
    margin-bottom: 16px;
    min-height: 54px;
    line-height: 1.45;
}

.product-specs-bullet {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.product-specs-bullet span {
    font-size: 10px;
    font-weight: 700;
    color: var(--steel);
    background: #f4f4f5;
    padding: 3px 6px;
    border-radius: 4px;
    border: 1px solid #e4e4e7;
}

.stack-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.mini-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 14px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--white);
    background: var(--red);
    border: 1px solid var(--red);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mini-button:hover {
    background: var(--red-dark);
}

.mini-button.outline {
    background: transparent;
    color: var(--ink);
    border-color: #cbd5e1;
}

.mini-button.outline:hover {
    border-color: var(--ink);
    background: rgba(0, 0, 0, 0.02);
}

.premium-product-card:hover .card-media img {
    transform: scale(1.05);
}

/* ---------------------------------------------------------
   STATS BAND SECTION (DARK HIGHLIGHT ACCENT)
   --------------------------------------------------------- */

#stats-sec {
    background-color: var(--black);
    color: var(--white);
}

.stats-section-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5vw;
}

.stats-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: rgba(24, 24, 31, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 36px;
}

.stat-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px;
    text-align: center;
}

.stat-box strong {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.plus-sign {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--red);
    line-height: 1;
}

.stat-box span:last-child {
    display: block;
    width: 100%;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--steel-light);
    margin-top: 6px;
}

/* ---------------------------------------------------------
   ABOUT US & QUALITY SECTIONS (LIGHT & CLEAN)
   --------------------------------------------------------- */

#about-sec {
    background-color: var(--white);
}

.about-process-grid,
.quality-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 54px;
    align-items: center;
}

.about-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.elegant-list {
    display: grid;
    gap: 20px;
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
}

.elegant-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.list-bullet {
    display: grid;
    place-items: center;
    width: 18px;
    height: 18px;
    border: 2px solid var(--red);
    border-radius: 50%;
    margin-top: 3px;
    flex-shrink: 0;
    position: relative;
}

.list-bullet::after {
    content: "";
    width: 6px;
    height: 6px;
    background-color: var(--red);
    border-radius: 50%;
}

.elegant-list li strong {
    display: block;
    font-size: 15px;
    color: var(--ink);
    margin-bottom: 2px;
}

.elegant-list li p {
    font-size: 13px;
    color: var(--steel);
    margin: 0;
    line-height: 1.45;
}

.factory-card,
.quality-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border: 1px solid #e4e4e7;
    box-shadow: var(--shadow-md);
}

.image-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(9, 9, 11, 0.1) 0%, rgba(230, 0, 0, 0.05) 100%);
    z-index: 2;
}

.factory-card img,
.quality-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quality-info-card {
    max-width: 620px;
}

#quality-sec {
    background-color: var(--white);
    border-top: 1px solid #f1f1f4;
}

/* ---------------------------------------------------------
   MANUFACTURING PROCESS (LIGHT BLUE/GRAY MATTE)
   --------------------------------------------------------- */

#process-sec {
    background-color: #fafafa;
}

.process-mini-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.process-card-step {
    background: var(--white);
    border: 1px solid #e4e4e7;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.process-card-step:hover {
    transform: translateY(-4px);
    border-color: rgba(230, 0, 0, 0.25);
    box-shadow: var(--shadow-md);
}

.process-media-wrapper {
    position: relative;
    aspect-ratio: 1.35;
    overflow: hidden;
    border-bottom: 1px solid #f1f1f4;
}

.process-media-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.process-step-number {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    background: var(--red);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 3px;
}

.process-body-content {
    padding: 16px;
}

.process-body-content strong {
    display: block;
    font-size: 14px;
    color: var(--ink);
    margin-bottom: 4px;
}

.process-body-content p {
    font-size: 11.5px;
    color: var(--steel);
    margin: 0;
    line-height: 1.45;
}

/* ---------------------------------------------------------
   GALLERY MOSAIC
   --------------------------------------------------------- */

#gallery-sec {
    background-color: var(--white);
}

.gallery-mosaic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4 / 3;
    border: 1px solid #e4e4e7;
    padding: 0;
    cursor: pointer;
    background: #000;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.5s ease;
}

.gallery-hover-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    background: linear-gradient(180deg, transparent 50%, rgba(9, 9, 11, 0.9) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-hover-overlay span {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
}

.zoom-icon {
    color: var(--red);
    display: grid;
    place-items: center;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-hover-overlay {
    opacity: 1;
}

/* ---------------------------------------------------------
   BLOG SECTION
   --------------------------------------------------------- */

#blog-sec {
    background-color: #fafafa;
}

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

.premium-blog-card {
    background: var(--white);
    border: 1px solid #e4e4e7;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.premium-blog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 0, 0, 0.25);
    box-shadow: var(--shadow-md);
}

.premium-blog-card .card-media {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-bottom: 1px solid #f1f1f4;
}

.premium-blog-card .card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-date {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(9, 9, 11, 0.85);
    color: var(--white);
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 3px;
}

.premium-blog-card .blog-body {
    padding: 24px;
}

.premium-blog-card h3 {
    font-size: 18px;
    color: var(--ink);
    margin-bottom: 10px;
    line-height: 1.35;
}

.premium-blog-card p {
    font-size: 13px;
    color: var(--steel);
    margin-bottom: 20px;
    min-height: 54px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 800;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-read-more:hover {
    color: var(--ink);
}

.blog-read-more svg {
    transition: transform 0.25s ease;
}

.blog-read-more:hover svg {
    transform: translateX(3px);
}

/* ---------------------------------------------------------
   CTA STRIP SECTION (DARK HERO COMPANION STYLE)
   --------------------------------------------------------- */

#cta-sec {
    background-color: var(--black);
    color: var(--white);
}

.premium-cta-strip {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 5vw;
}

.cta-inner {
    position: relative;
    background: rgba(24, 24, 31, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 48px 60px;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 36px;
    align-items: center;
    overflow: hidden;
}

.cta-glow-dot {
    position: absolute;
    top: 50%;
    right: 5%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(230, 0, 0, 0.15) 0%, transparent 65%);
    pointer-events: none;
    filter: blur(25px);
}

.cta-inner h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.cta-inner p {
    font-size: 15px;
    color: var(--steel-light);
    margin: 0;
    max-width: 580px;
    line-height: 1.55;
}

.cta-action-btn {
    display: flex;
    justify-content: flex-end;
}

/* ---------------------------------------------------------
   FOOTER SECTION
   --------------------------------------------------------- */

.site-footer {
    position: relative;
    z-index: 10;
    padding: 64px 5vw 28px;
    color: #e5e5e5;
    background: #060608;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.75fr 0.85fr 1.05fr;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
}

.site-footer h3 {
    font-family: var(--font-heading);
    font-size: 16.5px;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 700;
}

.site-footer p,
.site-footer a {
    color: var(--steel-light);
    font-size: 13.5px;
}

.site-footer a {
    display: block;
    margin-bottom: 8px;
}

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

.footer-brand {
    margin-bottom: 16px;
}

.site-footer p {
    font-size: 13.5px;
    line-height: 1.55;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    margin: 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    color: #cbd5e1;
    font-weight: 700;
}

.social-links a:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.newsletter-form {
    display: grid;
    gap: 10px;
}

.newsletter-form input {
    width: 100%;
    min-height: 40px;
    padding: 8px 12px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    outline: 0;
}

.newsletter-form input:focus {
    border-color: var(--red);
}

.newsletter-form button {
    min-height: 40px;
    background: var(--red);
    border: 1px solid var(--red);
    color: var(--white);
    border-radius: 6px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(230, 0, 0, 0.15);
    transition: all 0.25s ease;
}

.newsletter-form button:hover {
    background: var(--red-dark);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
    padding-top: 20px;
    color: var(--steel);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    font-size: 12.5px;
}

.footer-bottom a {
    display: inline;
}

/* ---------------------------------------------------------
   INNER PAGES COMPATIBILITY LAYOUTS
   --------------------------------------------------------- */

.page-hero {
    min-height: var(--page-hero-min-height);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--page-hero-padding-top) var(--page-hero-padding-x) var(--page-hero-padding-bottom);
    color: var(--white);
    background: linear-gradient(180deg, #09090b 0%, #18181f 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

main > .section:first-child {
    padding-top: calc(var(--site-header-height) + 40px);
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 16.5px;
    color: var(--steel-light);
    max-width: 760px;
}

.form-section {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 40px;
    padding: 64px 5vw;
}

.contact-panel,
.panel-form {
    background: var(--white);
    border: 1px solid #e4e4e7;
    border-radius: 10px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    color: var(--ink);
}

.panel-form input,
.panel-form select,
.panel-form textarea {
    width: 100%;
    min-height: 44px;
    padding: 10px 14px;
    color: var(--ink);
    background: #f8f9fa;
    border: 1px solid #e4e4e7;
    border-radius: 6px;
    outline: 0;
    transition: border-color 0.25s ease;
}

.panel-form input:focus,
.panel-form select:focus,
.panel-form textarea:focus {
    border-color: var(--red);
    background: var(--white);
}

.alert {
    padding: 12px 16px;
    border-radius: 6px;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 13.5px;
}

.alert.success {
    color: var(--green);
    background: var(--green-bg);
    border: 1px solid rgba(21, 128, 61, 0.15);
}

.alert.error {
    color: var(--red);
    background: rgba(230, 0, 0, 0.06);
    border: 1px solid rgba(230, 0, 0, 0.12);
}

/* ---------------------------------------------------------
   LIGHTBOX OVERLAY
   --------------------------------------------------------- */

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(9, 9, 11, 0.94);
    backdrop-filter: blur(8px);
}

.lightbox.is-open {
    display: flex;
}

.lightbox img {
    max-height: 84vh;
    max-width: 86vw;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: var(--shadow-dark);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lightbox button {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    color: var(--white);
    background: var(--red);
    border: 0;
    border-radius: 6px;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(230, 0, 0, 0.3);
}

/* ---------------------------------------------------------
   ADMIN PANEL BACKEND STYLES (PRESERVED EXACTLY)
   --------------------------------------------------------- */

.admin-body {
    min-height: 100vh;
    background: #f1f1ef;
    color: #151515 !important;
}

.admin-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 260px;
    padding: 22px;
    color: var(--white);
    background: #0d0d0d;
    overflow-y: auto;
}

.admin-brand {
    margin-bottom: 26px;
}

.admin-sidebar nav {
    display: grid;
    gap: 6px;
}

.admin-sidebar nav a {
    padding: 11px 12px;
    color: #d7d7d7;
    border-radius: 8px;
}

.admin-sidebar nav a.active,
.admin-sidebar nav a:hover {
    color: var(--white);
    background: rgba(230, 0, 0, .22);
}

.admin-main {
    margin-left: 260px;
    padding: 28px;
}

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

.admin-topbar h1 {
    margin: 0;
    font-size: 36px;
}

.admin-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-user a {
    padding: 8px 12px;
    background: var(--white);
    border: 1px solid var(--soft-line);
    border-radius: 8px;
    font-weight: 800;
}

.admin-card-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    margin-bottom: 22px;
}

.admin-stat-card,
.admin-panel,
.lead-card {
    background: var(--white);
    border: 1px solid var(--soft-line);
    box-shadow: 0 8px 22px rgba(0, 0, 0, .05);
}

.admin-stat-card {
    padding: 22px;
}

.admin-stat-card span {
    display: block;
    color: #666;
    font-weight: 800;
}

.admin-stat-card strong {
    font-size: 34px;
}

.admin-columns {
    display: grid;
    grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr);
    gap: 22px;
    align-items: start;
}

.admin-panel {
    padding: 22px;
}

.panel-title {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 18px;
}

.panel-title h2 {
    margin: 0;
    font-size: 24px;
}

.panel-meta {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #7a7a7a;
}

.admin-form {
    display: grid;
    gap: 14px;
}

.admin-form.wide {
    max-width: 1000px;
}

.admin-form label {
    display: grid;
    gap: 7px;
    color: #454545;
    font-weight: 800;
}

.admin-form small {
    color: #777;
    font-weight: 700;
}

.checkbox-row {
    display: flex !important;
    align-items: center;
    gap: 10px !important;
    min-height: 46px;
}

.checkbox-row input {
    width: auto;
}

.admin-secondary {
    color: var(--red);
    font-weight: 900;
}

.responsive-table {
    width: 100%;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--soft-line);
    vertical-align: top;
}

th {
    color: #5d5d5d;
    font-size: 13px;
    text-transform: uppercase;
}

.admin-thumb {
    width: 68px;
    height: 58px;
    border-radius: 8px;
}

.admin-preview {
    width: 180px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
}

.admin-thumb--lg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-pill {
    display: inline-flex;
    padding: 5px 9px;
    color: #222;
    background: #ececeb;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 900;
}

.table-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.table-actions a,
.table-actions button {
    min-height: 34px;
    padding: 7px 10px;
    color: var(--ink);
    background: #f1f1f0;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 800;
}

.lead-list {
    display: grid;
    gap: 16px;
}

.lead-card {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 18px;
    padding: 18px;
}

.lead-card h3 {
    margin-bottom: 8px;
}

.lead-actions {
    display: grid;
    gap: 10px;
}

.lead-actions button.danger,
.table-actions button,
.gallery-admin-grid .danger {
    background: #f7eeee;
    color: #7b0d12;
    border-color: #f0caca;
    box-shadow: none;
}

.file-links {
    display: flex;
    gap: 10px;
}

.file-links a {
    color: var(--red);
    font-weight: 900;
}

.gallery-admin-grid,
.image-manage-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.gallery-admin-grid article,
.image-manage-grid label {
    display: grid;
    gap: 8px;
    padding: 10px;
    background: #f6f6f4;
    border: 1px solid var(--soft-line);
    border-radius: 8px;
}

.gallery-admin-grid img,
.image-manage-grid img {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
}

.login-body {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    color: var(--white);
    background: linear-gradient(135deg, #070707, #242424 58%, #7a1217);
}

.login-card {
    display: grid;
    gap: 14px;
    width: min(440px, 100%);
    padding: 30px;
    background: rgba(13, 13, 13, .92);
    border: 1px solid rgba(255, 255, 255, .12);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .35);
}

.login-card h1 {
    margin: 12px 0 0;
    font-size: 36px;
}

.login-card p,
.login-card small {
    color: #cfcfcf;
}

.admin-footer {
    margin-top: 30px;
    color: #777;
}

/* ---------------------------------------------------------
   RESPONSIVE DESIGN BREAKPOINTS
   --------------------------------------------------------- */

@media (max-width: 1200px) {
    h1 {
        font-size: 46px;
    }
    
    .hero-section {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 32px;
    }

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .showroom-products {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-mini-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-mosaic {
        grid-template-columns: repeat(3, 1fr);
    }

    .cta-inner {
        padding: 36px;
    }

    .launch-system {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .launch-copy {
        max-width: 760px;
    }

    .launch-board {
        grid-template-columns: minmax(260px, 0.8fr) minmax(280px, 1.2fr);
    }
}

@media (max-width: 991px) {
    :root {
        --site-header-height: 136px;
    }

    .menu-toggle {
        display: block;
    }

    .header-main-row {
        min-height: 116px;
        grid-template-columns: 1fr auto;
        gap: 14px;
        padding: 16px;
    }

    .header-brand {
        justify-self: start;
    }

    .header-search {
        grid-column: 1 / -1;
        order: 3;
        width: 100%;
        max-width: none;
        min-height: 48px;
    }

    .header-search input {
        min-height: 48px;
    }

    .header-help-card {
        display: none;
    }

    .header-actions {
        gap: 10px;
        flex: 0 0 auto;
    }

    .header-nav-row {
        min-height: 0;
        position: relative;
        padding: 0;
        border-top: 0;
    }

    .main-nav {
        position: absolute;
        top: 0;
        left: 16px;
        right: 16px;
        width: auto;
        max-width: none;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        background: rgba(9, 9, 11, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 8px;
        box-shadow: var(--shadow-dark);
        gap: 4px;
    }

    .main-nav.is-open {
        display: flex;
    }

    .main-nav a,
    .nav-dropdown > button {
        min-height: 40px;
        justify-content: space-between;
        padding: 0 12px;
    }

    .nav-cta {
        min-height: 42px !important;
        margin-top: 4px;
    }

    .dropdown-panel {
        position: static;
        transform: none;
        opacity: 1;
        pointer-events: auto;
        box-shadow: none;
        margin-top: 4px;
        border: 0;
        background: rgba(255, 255, 255, 0.03);
    }

    .nav-dropdown:hover .dropdown-panel {
        transform: none;
    }

    .launch-board {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .launch-board-media {
        grid-row: auto;
        min-height: 320px;
    }

    .launch-proof-row {
        max-width: 620px;
    }

    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 24px;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-points {
        justify-items: center;
    }

    .hero-visual {
        order: -1;
        margin-bottom: 16px;
    }

    .floating-hero-glove {
        max-height: 300px;
    }

    .about-process-grid,
    .quality-section {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .factory-card,
    .quality-image {
        order: -1;
    }

    .stats-band {
        grid-template-columns: repeat(2, 1fr);
        padding: 24px;
    }

    .cta-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .cta-action-btn {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .admin-sidebar {
        position: static;
        width: auto;
        margin-bottom: 20px;
    }

    .admin-main {
        margin-left: 0;
    }

    .admin-sidebar nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    :root {
        --site-header-height: 0px;
    }

    h1 {
        font-size: 34px;
    }

    h2 {
        font-size: 26px;
    }

    .site-header {
        position: sticky;
        width: 100%;
        max-width: 100%;
    }

    .header-main-row {
        position: relative;
        min-height: 104px;
        padding-right: 72px;
    }

    .header-brand-word {
        font-size: 30px;
    }

    .header-brand {
        margin-left: 54px;
    }

    .header-quote-icon {
        width: 42px;
        height: 42px;
    }

    .menu-toggle {
        position: fixed;
        top: 16px;
        left: 16px;
        right: auto;
        z-index: 999;
        display: flex !important;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.9);
        border-color: rgba(255, 255, 255, 0.65);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
        flex: 0 0 40px;
    }

    .menu-toggle span {
        margin: 2px 0;
        background: #fff;
    }

    .hero-actions {
        align-items: stretch;
    }

    .page-hero,
    main > .section:first-child {
        padding-top: 48px;
    }

    .launch-system {
        gap: 24px;
    }

    .launch-copy h2 {
        font-size: 34px;
    }

    .launch-copy p {
        font-size: 14px;
    }

    .launch-proof-row {
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 20px 0;
    }

    .launch-proof-row span {
        min-height: 58px;
    }

    .launch-board-media {
        min-height: 260px;
    }

    .launch-step {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 12px;
        min-height: auto;
        padding: 18px;
    }

    .launch-step > span {
        width: 42px;
        height: 42px;
    }

    .launch-step strong {
        font-size: 19px;
    }

    /* Restore normal scrolling on mobile devices */
    html, body {
        height: auto !important;
        overflow: visible !important;
        overflow-x: hidden !important;
    }

    .scroll-container {
        height: auto;
        overflow: visible !important;
        overflow-x: hidden !important;
        scroll-snap-type: none;
    }

    .scroll-section,
    .site-footer {
        position: relative !important;
        inset: auto !important;
        width: 100% !important;
        height: auto !important;
        padding: 60px 0 30px !important;
        min-height: auto !important;
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        scroll-snap-align: none;
        top: auto !important;
        z-index: auto !important;
        box-shadow: none !important;
        pointer-events: auto !important;
    }

    .service-grid,
    .catalog-grid,
    .showroom-products,
    .process-mini-grid,
    .gallery-mosaic,
    .blog-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .stats-band {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .admin-sidebar nav {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 28px;
    }

    .header-quote-icon {
        display: none;
    }

    .hero-section,
    .hero-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .hero-section {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-content h1,
    .hero-content p {
        max-width: min(330px, 100%);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }
}

/* ---------------------------------------------------------
   HOME REDESIGN - REAL PHOTO MANUFACTURING LAYOUT
   --------------------------------------------------------- */

.home-redesign {
    overflow: hidden;
    color: #111114;
    background: #fff;
}

.home-redesign *,
.home-redesign *::before,
.home-redesign *::after {
    letter-spacing: 0;
}

.home-section-shell {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.home-photo-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--site-header-height) + 56px) 0 56px;
    overflow: hidden;
    color: #fff;
    background: #050505;
}

.home-hero-image,
.home-final-cta > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero-image {
    opacity: 0.78;
    filter: saturate(0.9) contrast(1.08);
}

.home-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.62) 46%, rgba(0, 0, 0, 0.2) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.04) 48%);
}

.home-hero-inner {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 44px;
    align-items: end;
}

.home-hero-copy {
    max-width: 780px;
}

.home-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    color: #d6ad52;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.home-kicker::before {
    content: "";
    width: 9px;
    height: 9px;
    background: #d6ad52;
    border-radius: 50%;
}

.home-kicker.dark {
    color: #9a6a21;
}

.home-hero-copy h1,
.home-final-content h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 58px;
    line-height: 1.02;
    font-weight: 800;
    text-wrap: balance;
}

.home-hero-copy p {
    max-width: 660px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    line-height: 1.7;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.home-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.home-btn-primary {
    color: #111114;
    background: #d6ad52;
    box-shadow: 0 14px 32px rgba(154, 106, 33, 0.22);
}

.home-btn-primary:hover {
    color: #111114;
    background: #c59a3f;
    transform: translateY(-2px);
}

.home-btn-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.home-btn-light:hover {
    color: #111114;
    background: #fff;
    transform: translateY(-2px);
}

.home-btn-dark {
    color: #fff;
    background: #111114;
}

.home-btn-dark:hover {
    color: #fff;
    background: #9a6a21;
}

.home-hero-metrics {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.52);
    backdrop-filter: blur(16px);
}

.home-hero-metrics span {
    min-height: 78px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.08);
    font-size: 13px;
    font-weight: 800;
}

.home-hero-metrics strong {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 34px;
    line-height: 1;
}

.home-intro-band {
    padding: 42px 0 48px;
    color: #fff;
    background: #111114;
}

.home-intro-band h2 {
    color: #fff;
}

.home-intro-grid,
.factory-proof-grid,
.quality-split-grid,
.company-profile-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
    gap: 54px;
    align-items: center;
}

.home-intro-grid h2,
.home-section-heading h2,
.factory-proof-copy h2,
.quality-copy h2,
.company-profile-grid h2 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    text-wrap: balance;
}

.home-intro-grid p,
.factory-proof-copy p,
.quality-copy p,
.company-profile-grid p,
.process-card p,
.market-grid p,
.product-line-card p {
    margin: 0;
    color: #63636b;
    font-size: 15px;
    line-height: 1.75;
}

.home-intro-grid p {
    color: rgba(255, 255, 255, 0.72);
}

.product-line-section,
.process-section,
.quality-split-section,
.company-profile-section {
    padding: 92px 0;
}

.home-section-heading {
    max-width: 720px;
    margin-bottom: 32px;
}

.home-section-heading.split {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
}

.home-text-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border: 1px solid rgba(17, 17, 20, 0.16);
    border-radius: 6px;
    color: #111114;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.home-text-link:hover {
    color: #fff;
    border-color: #111114;
    background: #111114;
}

.product-line-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.product-line-card {
    position: relative;
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    overflow: hidden;
    border-radius: 8px;
    color: #fff;
    background: #111114;
}

.product-line-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.82) 100%);
}

.product-line-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.86;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.product-line-card:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.product-line-label,
.product-line-card p {
    position: relative;
    z-index: 2;
}

.product-line-label {
    margin-bottom: 10px;
    font-family: var(--font-heading);
    font-size: 25px;
    line-height: 1.1;
    font-weight: 800;
}

.product-line-card p {
    color: rgba(255, 255, 255, 0.78);
}

.factory-proof-section {
    padding: 92px 0;
    color: #fff;
    background: #0b0b0d;
}

.factory-proof-media,
.quality-photo-stack {
    position: relative;
    min-height: 520px;
}

.factory-proof-media img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    border-radius: 8px;
}

.factory-proof-copy p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
}

.factory-proof-list {
    display: grid;
    gap: 10px;
    margin-top: 28px;
}

.factory-proof-list span {
    min-height: 52px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 255, 255, 0.05);
    font-weight: 800;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.process-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 22px;
    border: 1px solid rgba(17, 17, 20, 0.08);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 44px rgba(17, 17, 20, 0.06);
}

.process-card span {
    color: #9a6a21;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
}

.process-card h3,
.market-grid h3 {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 23px;
    line-height: 1.15;
}

.quality-split-section {
    background: #fff;
}

.quality-copy {
    max-width: 620px;
}

.quality-chip-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 28px;
}

.quality-chip-grid span {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 12px 14px;
    border: 1px solid rgba(17, 17, 20, 0.08);
    border-radius: 6px;
    color: #222226;
    background: #f6f6f3;
    font-size: 13px;
    font-weight: 800;
}

.quality-photo-main,
.quality-photo-small {
    position: absolute;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 52px rgba(17, 17, 20, 0.16);
}

.quality-photo-main {
    top: 0;
    right: 0;
    width: 86%;
    height: 72%;
}

.quality-photo-small {
    left: 0;
    bottom: 0;
    width: 56%;
    height: 42%;
    border: 8px solid #fff;
}

.market-section {
    padding: 44px 0;
    background: #111114;
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(214, 173, 82, 0.32);
}

.market-grid article {
    min-height: 210px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px;
    color: #fff;
    background: rgba(17, 17, 20, 0.92);
}

.market-grid span {
    color: #d6ad52;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.market-grid h3 {
    color: #fff;
}

.market-grid p {
    color: rgba(255, 255, 255, 0.82);
}

.company-profile-section {
    background: #fff;
}

.company-profile-grid {
    align-items: start;
}

.company-profile-grid .home-btn {
    margin-top: 26px;
}

.home-final-cta {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #fff;
    background: #080809;
}

.home-final-cta > img {
    opacity: 0.52;
    filter: saturate(0.85) contrast(1.12);
}

.home-final-shade {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.62);
}

.home-final-content {
    position: relative;
    z-index: 1;
    width: min(900px, calc(100% - 40px));
    text-align: center;
}

.home-final-content h2 {
    font-size: 44px;
}

.home-final-content .home-btn {
    margin-top: 28px;
}

.home-artwork-hero {
    min-height: auto;
    display: block;
    padding: calc(var(--site-header-height) + 14px) 0 18px;
    background: #050505;
}

.home-hero-frame {
    position: relative;
    width: 100%;
    height: clamp(340px, calc(100vh - var(--site-header-height) - 150px), 640px);
    min-height: 0;
    overflow: hidden;
    background: #050505;
}

.home-hero-slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

.home-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

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

.home-hero-tabs {
    width: min(1180px, calc(100% - 40px));
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 10px auto 0;
    padding: 6px;
    overflow-x: auto;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    scrollbar-width: none;
}

.home-hero-tabs::-webkit-scrollbar {
    display: none;
}

.home-hero-tabs button {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0 14px;
    color: rgba(255, 255, 255, 0.78);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.home-hero-tabs button:hover,
.home-hero-tabs button:focus-visible,
.home-hero-tabs button.is-active {
    color: #050505;
    background: #d6ad52;
    border-color: #d6ad52;
}

.home-category-accordion {
    position: relative;
    color: var(--white);
    padding: 0;
    background: var(--white);
    border-top: 1px solid rgba(17, 17, 20, 0.08);
    border-bottom: 1px solid rgba(17, 17, 20, 0.08);
}

.home-category-panel-row {
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 0;
    min-height: 440px;
    overflow: hidden;
    background: #050505;
}

.home-category-panel {
    position: relative;
    isolation: isolate;
    z-index: 1;
    flex: 0.72 1 0;
    min-width: 0;
    display: flex;
    align-items: flex-end;
    padding: 30px 24px;
    overflow: hidden;
    color: var(--white);
    clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    transition: flex 1.15s cubic-bezier(0.18, 0.82, 0.2, 1), filter 0.8s ease, opacity 0.8s ease, clip-path 1.15s cubic-bezier(0.18, 0.82, 0.2, 1);
}

.home-category-panel + .home-category-panel {
    margin-left: -18px;
}

.home-category-panel:not(.is-active) {
    padding-inline: 16px;
}

.home-category-panel:first-child {
    border-left: 0;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 0 100%);
}

.home-category-panel:last-child {
    clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%);
}

.home-category-panel.is-active {
    z-index: 2;
    flex: 2.75 1 0;
    clip-path: polygon(2% 0, 100% 0, 98% 100%, 0 100%);
}

.home-category-panel.is-active:last-child {
    clip-path: polygon(2% 0, 100% 0, 100% 100%, 0 100%);
}

.home-category-panel img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.95) contrast(1.08);
    transform: scale(1.06);
    transition: transform 1.15s cubic-bezier(0.18, 0.82, 0.2, 1), filter 0.8s ease;
}

.home-category-panel.is-active img {
    filter: saturate(1.08) contrast(1.08);
    transform: scale(1);
}

.home-category-shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.08) 0%, rgba(5, 5, 5, 0.42) 48%, rgba(5, 5, 5, 0.78) 100%),
        linear-gradient(90deg, rgba(230, 0, 0, 0.28) 0%, rgba(11, 11, 11, 0.02) 46%, rgba(201, 162, 39, 0.24) 100%);
    transition: background 0.9s ease, opacity 0.9s ease;
}

.home-category-panel:not(.is-active) .home-category-shade {
    background:
        linear-gradient(180deg, rgba(5, 5, 5, 0.18) 0%, rgba(5, 5, 5, 0.5) 56%, rgba(5, 5, 5, 0.82) 100%),
        linear-gradient(90deg, rgba(17, 17, 20, 0.32), rgba(17, 17, 20, 0.14));
}

.home-category-panel::after {
    content: "";
    position: absolute;
    left: 28px;
    right: 28px;
    bottom: 24px;
    height: 3px;
    background: linear-gradient(90deg, var(--red), var(--gray));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.9s ease 0.18s;
}

.home-category-panel.is-active::after {
    transform: scaleX(1);
}

.home-category-content {
    display: grid;
    justify-items: start;
    width: min(420px, 100%);
    transform: translateY(10px);
    transition: transform 0.85s ease;
}

.home-category-panel.is-active .home-category-content {
    transform: translateY(0);
}

.home-category-count {
    margin-bottom: 8px;
    color: var(--light-gold);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.home-category-content strong {
    font-family: var(--font-heading);
    font-size: clamp(24px, 2.4vw, 42px);
    line-height: 0.95;
    font-weight: 800;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.48);
}

.home-category-panel:not(.is-active) .home-category-content strong {
    font-size: clamp(17px, 1.35vw, 22px);
    line-height: 1;
}

.home-category-content em {
    max-width: 360px;
    margin-top: 14px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 14px;
    font-style: normal;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.72s ease, transform 0.72s ease;
}

.home-category-action {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 0 14px;
    color: var(--white);
    background: rgba(230, 0, 0, 0.92);
    border: 1px solid rgba(201, 162, 39, 0.32);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.72s ease, transform 0.72s ease, background-color 0.35s ease;
}

.home-category-panel.is-active .home-category-content em,
.home-category-panel.is-active .home-category-action {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.22s;
}

.home-category-panel:hover,
.home-category-panel:focus-visible {
    z-index: 3;
    color: var(--white);
    filter: brightness(1.08);
    outline: 0;
}

.home-category-panel:focus-visible {
    box-shadow: inset 0 0 0 3px var(--light-gold);
}

/* ══════════════════════════════════════════════
   HOT CATEGORY SECTION
══════════════════════════════════════════════ */
.hot-category-section {
    display: grid;
    grid-template-columns: 480px 1fr;
    min-height: 520px;
    background: #fff;
    border-top: 1px solid rgba(17,17,20,0.07);
    border-bottom: 1px solid rgba(17,17,20,0.07);
    overflow: hidden;
}

/* Left hero */
.hot-cat-hero {
    position: relative;
    overflow: hidden;
}

.hot-cat-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0 220px 220px 0;
}

.hot-cat-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0.75) 100%);
    border-radius: 0 220px 220px 0;
}

.hot-cat-hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 48px 44px;
}

.hot-cat-kicker {
    display: inline-block;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--light-gold, #C9A227);
    margin-bottom: 14px;
}

.hot-cat-hero-content h2 {
    margin: 0 0 32px;
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
}

.hot-cat-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--light-gold, #C9A227);
    color: #111;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 26px;
    border-radius: 40px;
    width: fit-content;
    transition: background 0.2s, transform 0.2s;
}

.hot-cat-btn:hover {
    background: #c49638;
    transform: translateY(-2px);
}

/* Right products */
.hot-cat-products {
    padding: 44px 48px;
    display: flex;
    flex-direction: column;
}

/* Tabs */
.hot-cat-tabs {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 36px;
}

.hot-cat-tab {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 28px;
    font-weight: 900;
    color: #111;
    padding: 0;
    transition: color 0.2s;
    font-family: var(--font-heading, inherit);
    letter-spacing: -0.01em;
}

.hot-cat-tab.is-active {
    color: var(--light-gold, #C9A227);
}

.hot-cat-tab:hover {
    color: var(--light-gold, #C9A227);
}

.hot-cat-tab-divider {
    color: #bbb;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
}

/* Product grid — 2 columns like reference */
.hot-cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    flex: 1;
}

.hot-cat-grid[hidden] {
    display: none;
}

.hot-cat-grid.is-active {
    display: grid;
}

/* Cards — clean white, no border */
.hot-cat-card {
    text-decoration: none;
    color: var(--blackish, #111);
    background: #fff;
    border: none;
    border-radius: 0;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    transition: transform 0.25s;
}

.hot-cat-card:hover {
    transform: translateY(-4px);
}

.hot-cat-card-img {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f7f7f7;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hot-cat-card-img img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    display: block;
    transition: transform 0.35s ease;
}

.hot-cat-card:hover .hot-cat-card-img img {
    transform: scale(1.08);
}

.hot-cat-card-info {
    padding: 16px 8px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.hot-cat-card-info h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: var(--blackish, #111);
    line-height: 1.3;
}

.hot-cat-stars {
    display: flex;
    gap: 2px;
    justify-content: center;
}

.hot-cat-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #111;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 11px 22px;
    border-radius: 30px;
    margin-top: 6px;
    width: fit-content;
    transition: background 0.2s;
}

.hot-cat-card:hover .hot-cat-read-more {
    background: var(--light-gold, #C9A227);
    color: #111;
}

/* Responsive */
@media (max-width: 960px) {
    .hot-category-section {
        grid-template-columns: 1fr;
    }

    .hot-cat-hero {
        min-height: 380px;
    }

    .hot-cat-hero img,
    .hot-cat-hero-shade {
        border-radius: 0;
    }

    .hot-cat-products {
        padding: 28px 20px;
    }
}

@media (max-width: 600px) {
    .hot-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ══════════════════════════════════════════════
   CATEGORY BANNER SECTION
══════════════════════════════════════════════ */
.cat-banner-section {
    display: grid;
    grid-template-columns: 1fr 480px;
    min-height: 520px;
    background: #fff;
    border-top: 1px solid rgba(17,17,20,0.07);
    border-bottom: 1px solid rgba(17,17,20,0.07);
    overflow: hidden;
}

/* ── Left side ── */
.cat-banner-left {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Nav pills */
.cat-banner-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cat-banner-pill {
    background: #f2f2f4;
    border: 1.5px solid transparent;
    border-radius: 30px;
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 700;
    color: #555;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.cat-banner-pill:hover {
    border-color: var(--light-gold, #C9A227);
    color: var(--light-gold, #C9A227);
    background: #fdf8ec;
}

.cat-banner-pill.is-active {
    background: var(--light-gold, #C9A227);
    border-color: var(--light-gold, #C9A227);
    color: #111;
}

/* Product grid */
.cat-banner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 18px;
    flex: 1;
}

.cat-banner-grid[hidden] { display: none; }
.cat-banner-grid.is-active { display: grid; }

.cat-banner-card {
    text-decoration: none;
    color: var(--blackish, #111);
    background: #fafafa;
    border: 1px solid rgba(17,17,20,0.09);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.25s, transform 0.25s;
}

.cat-banner-card:hover {
    box-shadow: 0 8px 28px rgba(17,17,20,0.12);
    transform: translateY(-4px);
}

.cat-banner-card-img {
    aspect-ratio: 1;
    overflow: hidden;
    background: #f0f0f0;
}

.cat-banner-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}

.cat-banner-card:hover .cat-banner-card-img img {
    transform: scale(1.07);
}

.cat-banner-card-info {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.cat-banner-card-info h3 {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: var(--blackish, #111);
    line-height: 1.3;
}

.cat-banner-stars {
    display: flex;
    gap: 2px;
}

.cat-banner-read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #111;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 30px;
    margin-top: 2px;
    width: fit-content;
    transition: background 0.2s;
}

.cat-banner-card:hover .cat-banner-read-more {
    background: var(--red, #E60000);
}

/* ── Right hero ── */
.cat-banner-hero {
    position: relative;
    overflow: hidden;
}

.cat-banner-hero[hidden] { display: none; }
.cat-banner-hero.is-active { display: block; }

.cat-banner-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 40px 0 0 40px;
    transition: opacity 0.3s;
}

.cat-banner-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(5,5,5,0.10) 0%, rgba(5,5,5,0.65) 100%);
    border-radius: 40px 0 0 40px;
}

.cat-banner-hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cat-banner-hero-content h2 {
    margin: 0;
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 900;
    color: var(--light-gold, #C9A227);
    line-height: 1.2;
}

.cat-banner-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light-gold, #C9A227);
    color: #111;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 40px;
    width: fit-content;
    transition: background 0.2s, transform 0.2s;
}

.cat-banner-view-btn:hover {
    background: #c49638;
    transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .cat-banner-section {
        grid-template-columns: 1fr 380px;
    }
}

@media (max-width: 768px) {
    .cat-banner-section {
        grid-template-columns: 1fr;
    }

    .cat-banner-hero {
        min-height: 300px;
        order: -1;
    }

    .cat-banner-hero img,
    .cat-banner-hero-shade {
        border-radius: 0;
    }

    .cat-banner-left {
        padding: 24px 20px;
    }

    .cat-banner-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.home-manufacturing-flow {
    position: relative;
    padding: 64px 0 72px;
    overflow: hidden;
    background: var(--white);
}

/* Section intro heading */
.home-flow-intro {
    text-align: center;
    margin-bottom: 48px;
}

.home-flow-heading {
    margin: 10px 0 14px;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 800;
    color: var(--blackish);
    line-height: 1.2;
    max-width: 600px;
    margin-inline: auto;
}

.home-flow-sub {
    margin: 0 auto;
    max-width: 580px;
    color: #5f626a;
    font-size: 15px;
    line-height: 1.65;
}

.home-flow-marquee {
    overflow: hidden;
    padding: 0 28px 12px;
}

.home-flow-track {
    display: flex;
    width: max-content;
    gap: 28px;
    animation: manufacturingFlowLoop 96s linear infinite;
    animation-play-state: paused;
    will-change: transform;
}

.home-manufacturing-flow.is-running .home-flow-track {
    animation-play-state: running;
}

.home-manufacturing-flow.is-running .home-flow-marquee:hover .home-flow-track {
    animation-play-state: paused;
}

.home-flow-group {
    display: flex;
    gap: 28px;
}

.home-flow-card {
    flex: 0 0 310px;
    min-height: 500px;
    display: grid;
    justify-items: center;
    align-content: start;
    padding: 28px 30px 28px;
    color: var(--blackish);
    background: var(--white);
    border: 1px solid rgba(17, 17, 20, 0.15);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(17, 17, 20, 0.07);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-flow-card:hover {
    transform: translateY(-6px) scale(1.025);
    box-shadow: 0 20px 50px rgba(17, 17, 20, 0.13);
}

/* Image button wrapper */
.home-flow-img-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: block;
    margin-bottom: 24px;
    border-radius: 50%;
    transition: transform 0.25s ease;
}

.home-flow-img-btn:hover {
    transform: scale(1.06);
}

.home-flow-img-btn:focus-visible {
    outline: 3px solid var(--red);
    outline-offset: 4px;
    border-radius: 50%;
}

.home-flow-card img {
    width: 230px;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    border: 4px solid rgba(201, 162, 39, 0.5);
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
}

.home-flow-card h2 {
    margin: 0;
    color: var(--red);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.25;
    font-weight: 900;
}

.home-flow-card p {
    margin: 12px 0 22px;
    color: #5f626a;
    font-size: 14px;
    line-height: 1.6;
}

.home-flow-card span {
    margin-top: auto;
    color: #050505;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── Lightbox ─────────────────────────────────── */
.flow-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-lightbox[hidden] {
    display: none;
}

.flow-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.82);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.flow-lightbox-inner {
    position: relative;
    z-index: 1;
    max-width: min(90vw, 680px);
    width: 100%;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0,0,0,0.35);
    animation: lightboxFadeIn 0.22s ease;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; transform: scale(0.94); }
    to   { opacity: 1; transform: scale(1); }
}

.flow-lightbox-img {
    display: block;
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
}

.flow-lightbox-caption {
    margin: 0;
    padding: 14px 20px 16px;
    font-size: 15px;
    font-weight: 700;
    color: var(--blackish);
    background: #fff;
    text-align: center;
}

.flow-lightbox-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: rgba(255,255,255,0.92);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
    transition: background 0.2s;
    z-index: 2;
}

.flow-lightbox-close:hover {
    background: #fff;
}

.home-studio-system {
    padding: 96px 0;
    background: #fff;
    color: var(--blackish);
}

.studio-system-grid {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
    gap: clamp(38px, 6vw, 86px);
    align-items: center;
}

.studio-system-copy h2,
.supply-system-head h2,
.home-export-content h2 {
    margin: 10px 0 0;
    font-family: var(--font-heading);
    font-size: clamp(34px, 4.4vw, 64px);
    line-height: 0.98;
    font-weight: 800;
}

.studio-system-copy p {
    max-width: 590px;
    margin: 24px 0 0;
    color: #5d5f66;
    font-size: 16px;
    line-height: 1.8;
}

.studio-system-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    margin-top: 34px;
    border: 1px solid rgba(17, 17, 20, 0.1);
    background: rgba(17, 17, 20, 0.1);
}

.studio-system-metrics strong {
    display: grid;
    gap: 6px;
    padding: 20px 18px;
    background: #fff;
    color: #050505;
    font-family: var(--font-heading);
    font-size: 32px;
    line-height: 1;
}

.studio-system-metrics span {
    color: #686a71;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.studio-system-media {
    position: relative;
    min-height: 560px;
}

.studio-system-media img {
    position: absolute;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 28px 72px rgba(17, 17, 20, 0.14);
}

.studio-system-large {
    inset: 0 0 70px 14%;
    width: 74%;
    height: calc(100% - 70px);
    border-radius: 22px 22px 4px 22px;
    object-position: 76% center;
}

.studio-system-small {
    left: 0;
    bottom: 0;
    width: 46%;
    height: 42%;
    border: 10px solid #fff;
    border-radius: 18px 4px 18px 18px;
    object-position: 76% center;
}

.home-supply-system {
    padding: 118px 0 92px;
    color: #fff;
    background:
        linear-gradient(180deg, #080808 0%, #111114 100%);
}

.supply-system-head {
    display: grid;
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 0.58fr);
    gap: 34px;
    align-items: start;
    margin-bottom: 36px;
}

.supply-system-head h2 {
    max-width: 780px;
    color: #fff;
}

.supply-system-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.supply-system-grid article {
    min-height: 520px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
}

.supply-system-grid img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    object-position: 78% center;
    filter: saturate(0.92) contrast(1.04);
    transition: transform 0.7s ease;
}

.supply-system-grid article:hover img {
    transform: scale(1.06);
}

.supply-system-grid article > div {
    padding: 24px;
}

.supply-system-grid span {
    color: var(--light-gold);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.18em;
}

.supply-system-grid h3 {
    margin: 12px 0 10px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
}

.supply-system-grid p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
    line-height: 1.65;
}

.home-export-cta {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background: #050505;
}

.home-export-cta > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.home-export-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.86) 0%, rgba(5, 5, 5, 0.58) 42%, rgba(5, 5, 5, 0.18) 100%),
        linear-gradient(0deg, rgba(5, 5, 5, 0.64), rgba(5, 5, 5, 0.2));
}

.home-export-content {
    position: relative;
    z-index: 1;
}

.home-export-content h2 {
    max-width: 760px;
    color: #fff;
}

.home-export-content .home-btn {
    margin-top: 30px;
}

@media (max-width: 980px) {
    .studio-system-grid,
    .supply-system-head {
        grid-template-columns: 1fr;
    }

    .studio-system-media {
        min-height: 480px;
    }

    .supply-system-grid {
        grid-template-columns: 1fr;
    }

    .supply-system-grid article {
        min-height: auto;
    }
}

@media (max-width: 640px) {
    .home-studio-system,
    .home-supply-system {
        padding: 60px 0;
    }

    .studio-system-copy h2,
    .supply-system-head h2,
    .home-export-content h2 {
        font-size: 34px;
    }

    .studio-system-copy p {
        font-size: 14px;
    }

    .studio-system-metrics {
        grid-template-columns: 1fr;
    }

    .studio-system-media {
        min-height: 390px;
    }

    .studio-system-large {
        inset: 0 0 52px 8%;
        width: 86%;
        height: calc(100% - 52px);
    }

    .studio-system-small {
        width: 54%;
        height: 34%;
        border-width: 6px;
    }

    .supply-system-grid img {
        height: 230px;
    }

    .home-export-cta {
        min-height: 470px;
    }
}

.home-launch-studio {
    position: relative;
    overflow: hidden;
    padding: 86px 0;
    color: #fff;
    background:
        linear-gradient(120deg, rgba(5, 5, 5, 0.96), rgba(20, 20, 22, 0.92)),
        #070707;
}

.home-launch-studio::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(201, 162, 39, 0.08) 1px, transparent 1px),
        linear-gradient(rgba(201, 162, 39, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(90deg, transparent, #000 28%, #000 72%, transparent);
    opacity: 0.42;
    pointer-events: none;
}

.home-launch-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
    gap: clamp(34px, 5vw, 72px);
    align-items: center;
}

.home-launch-copy h2 {
    max-width: 620px;
    margin: 10px 0 18px;
    color: #fff;
    font-family: var(--font-heading);
    font-size: clamp(34px, 4vw, 58px);
    line-height: 1;
    font-weight: 800;
}

.home-launch-copy p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.75;
}

.home-launch-points {
    display: grid;
    gap: 10px;
    margin: 26px 0 30px;
}

.home-launch-points span {
    width: fit-content;
    padding: 8px 0;
    color: #fff;
    border-bottom: 1px solid rgba(201, 162, 39, 0.42);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-launch-media {
    position: relative;
    min-height: 520px;
}

.home-launch-media img {
    position: absolute;
    object-fit: cover;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.home-launch-main {
    inset: 0 9% 0 15%;
    width: 76%;
    height: 100%;
    border-radius: 18px;
}

.home-launch-float {
    border: 8px solid rgba(255, 255, 255, 0.94);
    border-radius: 16px;
}

.home-launch-float.one {
    right: 0;
    top: 44px;
    width: 35%;
    height: 42%;
}

.home-launch-float.two {
    left: 0;
    bottom: 38px;
    width: 38%;
    height: 34%;
}

.home-buyer-proof {
    padding: 82px 0 88px;
    background: #fff;
    color: var(--blackish);
}

.home-proof-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
}

.home-proof-heading h2 {
    max-width: 620px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(30px, 3.8vw, 52px);
    line-height: 1.02;
    font-weight: 800;
}

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

.home-proof-grid article {
    position: relative;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 28px;
    color: #fff;
    background: #050505;
    isolation: isolate;
}

.home-proof-grid article::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.06) 0%, rgba(5, 5, 5, 0.78) 100%);
}

.home-proof-grid img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 0.75s ease;
}

.home-proof-grid article:hover img {
    transform: scale(1.1);
}

.home-proof-grid span {
    width: fit-content;
    margin-bottom: 14px;
    color: var(--light-gold);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.home-proof-grid h3 {
    margin: 0;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
}

.home-proof-grid p {
    max-width: 330px;
    margin: 12px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.65;
}

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

    .home-launch-media {
        min-height: 470px;
    }

    .home-proof-heading {
        display: grid;
        align-items: start;
    }

    .home-proof-grid {
        grid-template-columns: 1fr;
    }

    .home-proof-grid article {
        min-height: 360px;
    }
}

@media (max-width: 640px) {
    .home-launch-studio,
    .home-buyer-proof {
        padding: 58px 0;
    }

    .home-launch-copy h2,
    .home-proof-heading h2 {
        font-size: 32px;
    }

    .home-launch-copy p,
    .home-proof-grid p {
        font-size: 14px;
    }

    .home-launch-media {
        min-height: 380px;
    }

    .home-launch-main {
        inset: 0 0 0 8%;
        width: 84%;
    }

    .home-launch-float {
        border-width: 5px;
    }

    .home-launch-float.one {
        width: 42%;
        height: 36%;
    }

    .home-launch-float.two {
        width: 45%;
        height: 30%;
    }

    .home-proof-grid article {
        min-height: 330px;
        padding: 22px;
    }
}

.home-design-lab {
    padding: 88px 0;
    color: var(--blackish);
    background:
        linear-gradient(180deg, #fff 0%, #fbfbfb 100%);
    border-top: 1px solid rgba(17, 17, 20, 0.08);
}

.home-design-lab-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
    gap: 62px;
    align-items: center;
}

.design-lab-visual {
    min-width: 0;
}

.design-lab-screen {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 20, 0.1);
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(230, 0, 0, 0.08), transparent 38%),
        radial-gradient(circle at 75% 12%, rgba(201, 162, 39, 0.24), transparent 30%),
        #fff;
    box-shadow: 0 28px 70px rgba(17, 17, 20, 0.08);
}

.design-lab-slide {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 32px;
    opacity: 0;
    transform: translateX(28px) scale(0.985);
    pointer-events: none;
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.design-lab-slide.is-active {
    opacity: 1;
    transform: translateX(0) scale(1);
    pointer-events: auto;
}

.design-lab-board {
    position: relative;
    width: min(100%, 560px);
    min-height: 470px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 20, 0.1);
    border-radius: 10px;
    background:
        linear-gradient(rgba(17, 17, 20, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 17, 20, 0.045) 1px, transparent 1px),
        #fff;
    background-size: 34px 34px;
}

.design-lab-board.is-technical {
    width: min(100%, 620px);
    min-height: 490px;
    padding: 18px;
    background:
        linear-gradient(rgba(17, 17, 20, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(17, 17, 20, 0.035) 1px, transparent 1px),
        #fff;
    background-size: 32px 32px;
}

.design-lab-mockup {
    position: relative;
    z-index: 1;
    width: min(78%, 420px);
    color: #17171b;
    filter: drop-shadow(0 24px 38px rgba(17, 17, 20, 0.12));
}

.design-lab-mockup svg {
    display: block;
    width: 100%;
    height: auto;
}

.design-lab-source-image {
    display: block;
    width: 100%;
    max-height: 430px;
    object-fit: contain;
}

.design-lab-board.is-technical .design-lab-source-image {
    max-height: 450px;
    filter: none;
}

.mockup-fill {
    fill: #fff;
    stroke: #17171b;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mockup-line {
    fill: none;
    stroke: #17171b;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mockup-cut {
    fill: #fff;
    stroke: #E60000;
    stroke-width: 2.2;
}

.mockup-logo {
    fill: rgba(17, 17, 20, 0.26);
    font-family: var(--font-heading);
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 0;
}

.design-lab-mockup-fitness {
    width: min(72%, 390px);
}

.design-lab-mockup-boxing,
.design-lab-mockup-mma {
    width: min(100%, 620px);
}

.design-lab-board.is-technical .design-lab-mockup {
    width: min(100%, 610px);
    filter: drop-shadow(0 12px 22px rgba(17, 17, 20, 0.06));
}

.boxing-material-svg,
.mma-material-svg {
    overflow: visible;
}

.boxing-material-svg .mockup-fill,
.boxing-material-svg .mockup-line,
.mma-material-svg .mockup-fill,
.mma-material-svg .mockup-line {
    stroke-width: 2.8;
}

.material-title {
    fill: #050505;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 900;
    text-anchor: middle;
}

.material-title-line {
    fill: none;
    stroke: #050505;
    stroke-width: 3;
}

.material-view-title {
    fill: #050505;
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 900;
    text-anchor: middle;
}

.material-labels text {
    fill: #050505;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 900;
}

.material-labels .label-sub {
    font-size: 13px;
    font-weight: 800;
}

.material-labels path {
    fill: none;
    stroke: #050505;
    stroke-width: 1.9;
}

.material-labels circle {
    fill: #050505;
}

.material-summary rect {
    fill: #fff;
    stroke: #050505;
    stroke-width: 1.5;
}

.material-summary text {
    fill: #050505;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 900;
    text-anchor: middle;
}

.design-lab-gridlines {
    position: absolute;
    inset: 18px;
    border: 1px dashed rgba(230, 0, 0, 0.32);
    border-radius: 8px;
    pointer-events: none;
}

.design-lab-board.is-technical .design-lab-gridlines {
    inset: 12px;
    border-color: rgba(230, 0, 0, 0.18);
}

.design-lab-label,
.design-lab-callout,
.design-lab-toolbar {
    position: absolute;
    z-index: 2;
}

.design-lab-label {
    top: 22px;
    left: 22px;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    color: var(--white);
    background: var(--blackish);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.design-lab-callout {
    max-width: 150px;
    padding: 8px 10px;
    color: #16161a;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(230, 0, 0, 0.28);
    border-radius: 8px;
    box-shadow: 0 14px 30px rgba(17, 17, 20, 0.08);
    font-size: 12px;
    font-weight: 900;
}

.design-lab-callout::before {
    content: "";
    position: absolute;
    width: 54px;
    height: 1px;
    background: var(--red);
    top: 50%;
}

.callout-one {
    top: 92px;
    right: 28px;
}

.callout-one::before {
    right: 100%;
    transform: rotate(-14deg);
    transform-origin: right;
}

.callout-two {
    left: 28px;
    top: 48%;
}

.callout-two::before {
    left: 100%;
    transform: rotate(12deg);
    transform-origin: left;
}

.callout-three {
    right: 34px;
    bottom: 116px;
}

.callout-three::before {
    right: 100%;
    transform: rotate(18deg);
    transform-origin: right;
}

.design-lab-toolbar {
    left: 22px;
    right: 22px;
    bottom: 20px;
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 14px;
    color: var(--white);
    background: rgba(17, 17, 20, 0.92);
    border: 1px solid rgba(201, 162, 39, 0.24);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
}

.design-lab-swatch {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
}

.swatch-red {
    background: var(--red);
}

.swatch-gold {
    background: var(--light-gold);
}

.swatch-black {
    background: #050505;
}

.design-lab-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
}

.design-lab-tabs button {
    min-height: 40px;
    padding: 0 14px;
    color: var(--blackish);
    background: #fff;
    border: 1px solid rgba(17, 17, 20, 0.14);
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.design-lab-tabs button:hover,
.design-lab-tabs button:focus-visible,
.design-lab-tabs button.is-active {
    color: #fff;
    background: var(--red);
    border-color: var(--red);
}

.design-lab-copy h2 {
    max-width: 620px;
    margin: 0;
    font-family: var(--font-heading);
    font-size: clamp(34px, 3.5vw, 52px);
    line-height: 1.02;
    font-weight: 800;
    text-wrap: balance;
}

.design-lab-copy p {
    max-width: 620px;
    margin: 22px 0 0;
    color: #63636b;
    font-size: 16px;
    line-height: 1.75;
}

.design-lab-copy ul {
    display: grid;
    gap: 10px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.design-lab-copy li {
    position: relative;
    padding-left: 28px;
    color: #323238;
    font-size: 15px;
    font-weight: 800;
}

.design-lab-copy li::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 5px;
    width: 12px;
    height: 7px;
    border-left: 3px solid var(--red);
    border-bottom: 3px solid var(--red);
    transform: rotate(-45deg);
}

.home-design-cta {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px;
    padding: 0 20px;
    color: #fff;
    background: var(--red);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.home-design-cta:hover {
    color: #111114;
    background: var(--light-gold);
}

@keyframes manufacturingFlowLoop {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 12px));
    }
}

@media (max-width: 1180px) {
    .home-hero-inner,
    .home-intro-grid,
    .factory-proof-grid,
    .quality-split-grid,
    .company-profile-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .product-line-grid,
    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .quality-photo-stack {
        max-width: 720px;
    }

    .home-category-panel-row {
        min-height: 470px;
    }

    .home-category-panel {
        flex-basis: 0;
        padding: 28px 22px;
    }

    .home-category-panel.is-active {
        flex: 2.35 1 0;
    }

    .home-category-content strong {
        font-size: clamp(22px, 2.8vw, 34px);
    }

    .home-flow-card {
        flex-basis: 292px;
        min-height: 480px;
    }

    .home-flow-card img {
        width: 212px;
    }

    .home-design-lab-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .design-lab-screen {
        min-height: 520px;
    }

    .design-lab-copy {
        max-width: 760px;
    }
}

@media (max-width: 767px) {
    .home-section-shell,
    .home-hero-inner,
    .home-final-content {
        width: min(1180px, calc(100% - 28px));
        min-width: 0;
    }

    .home-redesign,
    .home-redesign section,
    .home-hero-copy {
        max-width: 100%;
        min-width: 0;
    }

    .home-category-panel-row {
        min-height: 430px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .home-category-panel-row::-webkit-scrollbar {
        display: none;
    }

    .home-category-panel,
    .home-category-panel:first-child,
    .home-category-panel.is-active {
        clip-path: none;
    }

    .home-category-panel {
        flex: 0 0 64vw;
        min-width: 244px;
        padding: 26px 20px;
        scroll-snap-align: center;
    }

    .home-category-panel.is-active {
        flex-basis: 86vw;
    }

    .home-category-content {
        width: 100%;
    }

    .home-category-content strong {
        font-size: 30px;
    }

    .home-category-content em {
        max-width: 285px;
        font-size: 13px;
    }

    .home-manufacturing-flow {
        padding: 44px 0 56px;
    }

    .home-flow-marquee {
        padding-inline: 14px;
    }

    .home-flow-track,
    .home-flow-group {
        gap: 16px;
    }

    .home-flow-track {
        animation-duration: 112s;
    }

    .home-flow-card {
        flex-basis: 268px;
        min-height: 460px;
        padding: 20px 18px 24px;
    }

    .home-flow-card img {
        width: 196px;
        margin-bottom: 20px;
    }

    .home-flow-card h2 {
        font-size: 15px;
    }

    .home-flow-card p {
        font-size: 13px;
    }

    .flow-lightbox-inner {
        max-width: 95vw;
    }

    .home-design-lab {
        padding: 58px 0;
    }

    .design-lab-screen {
        min-height: 460px;
    }

    .design-lab-slide {
        padding: 16px;
    }

    .design-lab-board {
        min-height: 420px;
    }

    .design-lab-board.is-technical {
        min-height: 390px;
        padding: 10px;
    }

    .design-lab-mockup,
    .design-lab-mockup-mma,
    .design-lab-mockup-fitness {
        width: min(92%, 330px);
    }

    .design-lab-mockup-boxing {
        width: min(98%, 360px);
    }

    .design-lab-mockup-mma {
        width: min(98%, 360px);
    }

    .material-title {
        font-size: 25px;
    }

    .material-view-title {
        font-size: 18px;
    }

    .material-labels text {
        font-size: 16px;
    }

    .material-labels .label-sub,
    .material-summary text {
        font-size: 12px;
    }

    .design-lab-label {
        top: 14px;
        left: 14px;
    }

    .design-lab-callout {
        max-width: 112px;
        padding: 7px 8px;
        font-size: 10px;
    }

    .design-lab-callout::before {
        width: 30px;
    }

    .callout-one {
        top: 72px;
        right: 14px;
    }

    .callout-two {
        left: 14px;
        top: 46%;
    }

    .callout-three {
        right: 14px;
        bottom: 92px;
    }

    .design-lab-toolbar {
        left: 14px;
        right: 14px;
        bottom: 14px;
        min-height: 46px;
        font-size: 12px;
    }

    .design-lab-tabs button {
        flex: 1 1 120px;
    }

    .design-lab-copy h2 {
        font-size: 32px;
    }

    .design-lab-copy p,
    .design-lab-copy li {
        font-size: 14px;
    }

    .header-main-row {
        grid-template-columns: minmax(0, 1fr) auto;
        overflow: hidden;
    }

    .header-search {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        justify-self: stretch;
    }

    .header-search button {
        flex: 0 0 46px;
    }

    .home-hero-copy h1,
    .home-hero-copy p,
    .home-final-content h2 {
        width: calc(100vw - 28px);
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .home-hero-actions,
    .home-hero-metrics {
        width: calc(100vw - 28px);
        max-width: 100%;
    }

    .home-photo-hero {
        min-height: 640px;
        padding: 64px 0 40px;
    }

    .home-artwork-hero {
        min-height: auto;
        padding: 12px 0 14px;
    }

    .home-hero-frame {
        height: clamp(260px, 56vh, 430px);
    }

    .home-hero-slide img {
        object-fit: cover;
        background: #050505;
    }

    .home-hero-tabs {
        width: min(100% - 28px, 1180px);
        justify-content: flex-start;
    }

    .home-hero-inner,
    .home-hero-metrics,
    .product-line-grid,
    .process-grid,
    .market-grid,
    .quality-chip-grid {
        grid-template-columns: 1fr;
    }

    .home-hero-copy h1 {
        font-size: 36px;
    }

    .home-hero-copy p {
        font-size: 15px;
    }

    .home-hero-actions {
        flex-direction: column;
    }

    .home-btn,
    .home-text-link {
        width: 100%;
    }

    .home-hero-metrics span {
        min-height: 68px;
    }

    .home-intro-band {
        padding: 38px 0;
    }

    .product-line-section,
    .process-section,
    .quality-split-section,
    .company-profile-section,
    .factory-proof-section {
        padding: 58px 0;
    }

    .home-intro-grid,
    .factory-proof-grid,
    .quality-split-grid,
    .company-profile-grid {
        gap: 28px;
    }

    .home-intro-grid h2,
    .home-section-heading h2,
    .factory-proof-copy h2,
    .quality-copy h2,
    .company-profile-grid h2,
    .home-final-content h2 {
        font-size: 30px;
    }

    .home-section-heading.split {
        align-items: stretch;
        flex-direction: column;
    }

    .product-line-card {
        min-height: 340px;
    }

    .factory-proof-media,
    .factory-proof-media img,
    .quality-photo-stack {
        min-height: 360px;
    }

    .quality-photo-main {
        width: 100%;
        height: 68%;
    }

    .quality-photo-small {
        width: 66%;
        height: 38%;
        border-width: 6px;
    }

    .market-grid article {
        min-height: 168px;
    }

    .home-final-cta {
        min-height: 460px;
    }
}

@media (max-width: 420px) {
    .home-hero-copy h1 {
        font-size: 32px;
    }

    .home-hero-metrics strong {
        font-size: 28px;
    }

    .product-line-label {
        font-size: 22px;
    }
}

/* ---------------------------------------------------------
   BAREEZE-STYLE EDITORIAL HOME
   --------------------------------------------------------- */

body.is-home-page {
    --site-header-height: 0px;
}

body.has-editorial-header {
    --site-header-height: 72px;
}

.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 110;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    color: #FFFFFF;
    background: #000;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-align: center;
    pointer-events: none;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.announcement-bar p {
    margin: 0;
    color: #FFFFFF;
}

.announcement-bar.is-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.site-header--editorial {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    z-index: 105;
    background: transparent;
    border: 0;
    box-shadow: none;
    transition: background 0.35s ease, box-shadow 0.35s ease, top 0.35s ease;
}

.site-header--editorial.site-header--solid {
    top: 0;
    background: rgba(0, 0, 0, 0.96);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.site-header--editorial.is-scrolled {
    top: 0;
    background: rgba(0, 0, 0, 0.92);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(12px);
}

body.is-search-open .announcement-bar,
body.is-search-open .site-header {
    opacity: 0;
    pointer-events: none;
}

body.is-menu-open .announcement-bar,
body.is-menu-open .site-header > .editorial-header-row {
    opacity: 0;
    pointer-events: none;
}

body.is-home-page .announcement-bar.is-hidden {
    transform: translateY(-100%);
}

.editorial-header-row {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 14px clamp(20px, 4vw, 48px);
}

.editorial-header-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.editorial-menu-toggle {
    display: block;
    border-color: rgba(255, 255, 255, 0.35);
}

.editorial-logo {
    color: #fff;
    font-family: 'Great Vibes', cursive;
    font-size: clamp(34px, 4vw, 48px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.site-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

.site-logo__img {
    display: block;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    background: transparent;
}

.site-logo__img--header {
    height: clamp(30px, 4.2vw, 48px);
    filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.4));
}

.site-logo__img--footer {
    height: clamp(34px, 4vw, 52px);
}

.site-logo__img--admin {
    height: 22px;
}

.site-logo--admin {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    line-height: normal;
}

.site-logo--admin .brand-text strong {
    display: block;
    font-size: 14px;
}

.site-logo--drawer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    line-height: normal;
}

.site-logo--drawer .site-logo__img {
    height: 32px;
}

.site-logo--drawer small {
    display: block;
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
}

.editorial-logo.site-logo {
    font-size: 0;
    text-shadow: none;
    background: transparent;
    isolation: isolate;
}

.editorial-header-left .site-logo__img--header {
    position: relative;
    z-index: 1;
    background: transparent;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.35));
}

.editorial-logo:hover {
    color: #fff;
}

.editorial-top-nav {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
}

.editorial-top-nav > a,
.editorial-top-nav > .nav-dropdown,
.editorial-top-nav > .editorial-search-open {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.editorial-top-nav a,
.editorial-top-nav .editorial-search-open,
.editorial-top-nav .nav-dropdown > button {
    min-height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #FFFFFF;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    box-shadow: none;
    line-height: 1;
    white-space: nowrap;
}

.editorial-top-nav .nav-dropdown {
    display: inline-flex;
    align-items: center;
}

.editorial-top-nav .nav-dropdown > button::after {
    transform: rotate(45deg);
    margin-top: -3px;
}

.editorial-top-nav .editorial-search-open {
    gap: 6px;
}

.editorial-top-nav .editorial-search-open::before {
    content: "";
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFFFFF' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-3.5-3.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.9;
    transition: opacity 0.2s ease;
}

.editorial-top-nav a:hover,
.editorial-top-nav .editorial-search-open:hover,
.editorial-top-nav .nav-dropdown > button:hover,
.editorial-top-nav .nav-dropdown:hover > button {
    color: #C9A227;
    opacity: 1;
}

.editorial-top-nav .editorial-search-open:hover::before {
    opacity: 1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C9A227' stroke-width='2.2' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='M20 20l-3.5-3.5'/%3E%3C/svg%3E");
}

.editorial-sep {
    display: inline-flex;
    align-items: center;
    align-self: center;
    flex-shrink: 0;
    height: 12px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
    line-height: 1;
    user-select: none;
}

.editorial-dropdown .dropdown-panel {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(12px);
}

.editorial-dropdown:hover .dropdown-panel,
.editorial-dropdown.is-open .dropdown-panel {
    transform: translateX(0) translateY(4px);
}

.editorial-drawer {
    display: none;
}

.editorial-drawer-search {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    color: var(--white);
    background: transparent;
    border: 0;
    padding: 0 7px;
    font-size: 13.5px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
}

.editorial-drawer-search:hover {
    color: var(--gold);
}

.header-detail-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 180;
    width: min(390px, 100vw);
    max-width: none;
    max-height: none;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    overflow: hidden;
    color: #111115;
    background: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: 18px 0 46px rgba(0, 0, 0, 0.18);
    backdrop-filter: none;
}

.header-detail-drawer.is-open {
    display: flex;
}

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-shrink: 0;
    min-height: 64px;
    padding: 18px 22px;
    border-bottom: 1px solid #ececef;
    background: #fff;
}

.drawer-brand {
    display: inline-grid;
    justify-items: start;
    min-height: auto;
    padding: 0;
    color: #111115;
    line-height: 1;
    text-decoration: none;
}

.drawer-brand span {
    font-family: var(--font-heading), 'Inter', sans-serif;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transform: none;
}

.drawer-brand small {
    margin-top: 5px;
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 10px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8a8a94;
    opacity: 1;
}

.drawer-close {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    flex: 0 0 auto;
    color: #111115;
    background: #f4f4f6;
    border: 1px solid #e6e6ea;
    border-radius: 50%;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.drawer-close:hover {
    color: #fff;
    background: #111115;
    border-color: #111115;
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0 16px;
    scrollbar-width: thin;
    scrollbar-color: #c8c8d0 #f4f4f6;
}

.drawer-menu-list {
    display: grid;
    margin-top: 0;
    border-top: 0;
}

.header-detail-drawer .drawer-menu-item {
    position: relative;
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 22px;
    color: #111115;
    background: #fff;
    border: 0;
    border-bottom: 1px solid #f0f0f3;
    border-radius: 0;
    font-family: var(--font-heading), 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
}

.header-detail-drawer .drawer-menu-item::after {
    display: none;
    content: none;
}

.header-detail-drawer .drawer-menu-item:hover {
    color: var(--red);
    padding-left: 26px;
    background: #fafafa;
    border-color: #ececef;
}

.header-detail-drawer .drawer-menu-item.sale {
    color: var(--red);
}

.header-detail-drawer .drawer-menu-item.sale:hover {
    color: #C40000;
}

/* Drawer accordion — Company Profile */
.drawer-accordion {
    margin: 12px 16px 0;
    border: 1px solid #ececef;
    border-radius: 12px;
    overflow: hidden;
    background: #fafafb;
}

.drawer-accordion-trigger {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 16px;
    color: #111115;
    background: transparent;
    border: 0;
    font-family: var(--font-heading), 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.drawer-accordion-trigger:hover,
.drawer-accordion.is-open .drawer-accordion-trigger {
    color: var(--red);
    background: #fff;
}

.drawer-accordion-arrow {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.28s ease;
}

.drawer-accordion.is-open .drawer-accordion-arrow {
    transform: rotate(180deg);
}

.drawer-accordion-panel {
    display: none;
    padding: 4px 0 8px;
    border-top: 1px solid #ececef;
    background: #fff;
}

.drawer-accordion.is-open .drawer-accordion-panel {
    display: block;
}

.drawer-accordion-link {
    display: block;
    padding: 11px 16px 11px 20px;
    color: #4a4a52;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-left: 2px solid transparent;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.drawer-accordion-link:hover {
    color: #111115;
    background: #f8f8fa;
    border-left-color: rgba(230, 0, 0, 0.35);
}

.drawer-accordion-link.is-active {
    color: var(--red);
    background: rgba(230, 0, 0, 0.05);
    border-left-color: var(--red);
    font-weight: 700;
}

/* Drawer — golden sub-links */
.header-detail-drawer .drawer-accordion-link {
    color: #9A7B1A;
    border-left: 0;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.header-detail-drawer .drawer-accordion-link:hover {
    color: #C9A227;
    background: rgba(201, 162, 39, 0.1);
    border-left-color: transparent;
}

.header-detail-drawer .drawer-accordion-link.is-active {
    color: #E60000;
    background: rgba(230, 0, 0, 0.06);
    border-left-color: transparent;
    font-weight: 800;
}

.header-detail-drawer .drawer-accordion-link--parent {
    color: #E60000 !important;
    font-weight: 800;
}

.header-detail-drawer .drawer-accordion-trigger {
    color: #000000;
}

.header-detail-drawer .drawer-accordion-trigger:hover,
.header-detail-drawer .drawer-accordion.is-open .drawer-accordion-trigger {
    color: #C9A227;
    background: #FFFFFF;
}

.header-detail-drawer .drawer-accordion--company {
    margin: 0 0 8px;
    border: 0;
    border-radius: 0;
    border-top: 1px solid #f0f0f3;
    background: #FFFFFF;
}

.header-detail-drawer .drawer-accordion--company .drawer-accordion-panel {
    padding: 8px 14px 14px;
    background: #FFFFFF;
}

.header-detail-drawer .drawer-accordion.is-open .drawer-menu-list .drawer-accordion--catalog .drawer-accordion-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 8px;
    padding: 10px 14px 14px;
}

.header-detail-drawer .drawer-menu-list .drawer-accordion--catalog .drawer-accordion-link {
    padding: 8px 10px;
    font-size: 10px;
    line-height: 1.35;
}

.header-detail-drawer .drawer-menu-list .drawer-accordion--catalog .drawer-accordion-link--parent {
    grid-column: 1 / -1;
    padding: 6px 10px 10px;
    margin-bottom: 2px;
    border-bottom: 1px solid #f0f0f3;
    border-radius: 0;
}

.header-detail-drawer .drawer-menu-list .drawer-accordion--catalog .drawer-accordion-trigger {
    min-height: 46px;
    padding: 0 22px;
    border-bottom: 1px solid #f0f0f3;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.header-detail-drawer .drawer-foot-link,
.header-detail-drawer .drawer-foot-search {
    color: #000000;
    background: #FFFFFF;
    border: 1px solid #C9A227;
}

.header-detail-drawer .drawer-foot-link:hover,
.header-detail-drawer .drawer-foot-search:hover {
    color: #C9A227;
    background: rgba(201, 162, 39, 0.1);
    border-color: #C9A227;
}

.header-detail-drawer .drawer-foot-cta {
    color: #000000;
    background: #C9A227;
    border: 1px solid #C9A227;
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.28);
}

.header-detail-drawer .drawer-foot-cta:hover {
    color: #C9A227;
    background: #000000;
    border-color: #000000;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.drawer-foot {
    flex-shrink: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 16px 18px 22px;
    border-top: 1px solid #ececef;
    background: #fff;
}

.drawer-foot-link,
.drawer-foot-cta,
.drawer-foot-search {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-family: var(--font-heading), 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.drawer-foot-search {
    color: #111115;
    background: #f4f4f6;
    border: 1px solid #e4e4e8;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    padding: 0;
}

.drawer-foot-search:hover {
    background: #ececef;
    color: #111115;
}

.drawer-foot-link {
    color: #111115;
    background: #f4f4f6;
    border: 1px solid #e4e4e8;
}

.drawer-foot-link:hover {
    background: #ececef;
    color: #111115;
}

.drawer-foot-cta {
    color: #fff;
    background: var(--red);
    box-shadow: 0 8px 20px rgba(230, 0, 0, 0.28);
}

.drawer-foot-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(230, 0, 0, 0.38);
    color: #fff;
}

.drawer-utility {
    display: none !important;
}

.drawer-search {
    min-height: 48px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
}

.drawer-search:focus-within {
    border-color: var(--light-gold);
    box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.12);
}

.drawer-search input {
    flex: 1;
    min-width: 0;
    min-height: 48px;
    padding: 0 16px 0 18px;
    color: #fff;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 13px;
    font-weight: 700;
}

.drawer-search input::placeholder {
    color: rgba(255, 255, 255, 0.82);
    opacity: 1;
}

.drawer-search button {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-right: 5px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
}

.drawer-search button:hover {
    color: #050505;
    background: var(--light-gold);
}

.drawer-search svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.drawer-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    padding-bottom: 2px;
}

.header-detail-drawer .drawer-actions a {
    min-height: auto;
    padding: 0;
    color: rgba(255, 255, 255, 0.72);
    background: transparent;
    border: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.header-detail-drawer .drawer-actions a:hover {
    color: var(--light-gold);
}

.drawer-section {
    display: grid;
    gap: 8px;
}

.drawer-section > span {
    color: var(--light-gold);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.drawer-link-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.header-detail-drawer .drawer-link-grid a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    color: rgba(255, 255, 255, 0.86);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    font-size: 14px;
    font-weight: 650;
}

.header-detail-drawer .drawer-link-grid a:hover,
.header-detail-drawer .drawer-link-grid a.active {
    color: var(--light-gold);
    background: transparent;
    border-color: rgba(201, 162, 39, 0.32);
}

.site-search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 220;
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 64px;
    background: #000000;
    border-bottom: 2px solid #E60000;
    box-shadow: 0 16px 40px #1A0000;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-100%);
    transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1), transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.site-search-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.site-search-panel {
    width: min(640px, 100%);
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px;
    background: #000000;
    border: 2px solid #FFFFFF;
    border-radius: 999px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-search-panel:focus-within {
    border-color: #E60000;
    box-shadow: 0 0 0 3px #330000;
}

.site-search-panel svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: #C9A227;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-search-panel input {
    flex: 1;
    min-width: 0;
    height: 44px;
    color: #FFFFFF;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.site-search-panel input::placeholder {
    color: #888888;
    opacity: 1;
}

.site-search-close {
    position: absolute;
    right: clamp(24px, 4vw, 48px);
    top: 50%;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    padding: 0;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #333333;
    border-radius: 50%;
    cursor: pointer;
    transform: translateY(-50%);
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.site-search-close:hover {
    color: #FFFFFF;
    background: #E60000;
    border-color: #E60000;
}

.site-search-close svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.editorial-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
    background: #000;
}

.editorial-hero-slides {
    position: absolute;
    inset: 0;
}

.editorial-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.editorial-hero-slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
}

.editorial-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.editorial-hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.editorial-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.18) 42%, rgba(0, 0, 0, 0.08) 100%),
        linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.05) 40%);
}

.editorial-hero-copy {
    position: absolute;
    left: clamp(24px, 8vw, 120px);
    top: 50%;
    transform: translateY(-42%);
    z-index: 2;
    display: grid;
    gap: 6px;
    color: #fff;
    text-align: left;
}

.editorial-hero-kicker {
    font-size: clamp(13px, 1.4vw, 18px);
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.editorial-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(72px, 12vw, 148px);
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: 0.02em;
    color: var(--red);
    text-transform: uppercase;
}

.editorial-hero-subtitle {
    margin-top: 4px;
    font-size: clamp(16px, 2vw, 28px);
    font-weight: 500;
    letter-spacing: 0.38em;
    text-transform: uppercase;
}

.editorial-hero-tagline {
    margin: 14px 0 0;
    max-width: 54ch;
    font-size: clamp(14px, 1.45vw, 17px);
    line-height: 1.65;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.8);
}

.editorial-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.editorial-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border-radius: 999px;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.editorial-hero-btn--primary {
    color: #fff;
    background: var(--red);
    border-color: #C40000;
}

.editorial-hero-btn--primary:hover {
    transform: translateY(-2px);
    background: var(--red-dark);
    color: #fff;
}

.editorial-hero-btn--ghost {
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 255, 255, 0.35);
}

.editorial-hero-btn--ghost:hover {
    transform: translateY(-2px);
    border-color: var(--gray);
    color: var(--gray);
}

.editorial-hero-dots {
    position: absolute;
    right: clamp(18px, 3vw, 42px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.editorial-hero-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 1.5px solid rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.editorial-hero-dots button.is-active,
.editorial-hero-dots button:hover {
    background: #fff;
    transform: scale(1.15);
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 120;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    color: #fff;
    background: #25d366;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

@media (max-width: 991px) {
    .editorial-top-nav {
        display: none;
    }

    .editorial-drawer {
        position: absolute;
        top: calc(100% + 8px);
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        background: rgba(0, 0, 0, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        box-shadow: var(--shadow-dark);
        gap: 4px;
    }

    .editorial-drawer.is-open {
        display: flex;
    }

    .header-detail-drawer {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: auto;
        width: min(374px, 100vw);
        max-height: none;
        gap: 0;
        padding: 20px 26px 28px;
        color: #050505;
        background: #fff;
        border: 0;
        border-radius: 0;
    }

    .drawer-utility {
        padding-top: 46px;
    }

    .editorial-hero-copy {
        left: 50%;
        width: calc(100% - 32px);
        transform: translate(-50%, -38%);
        text-align: center;
    }

    .editorial-hero-tagline {
        font-size: 14px;
    }

    .editorial-hero-actions {
        justify-content: center;
    }

    .editorial-hero-btn {
        flex: 1 1 140px;
    }

    .editorial-hero-title {
        font-size: clamp(56px, 18vw, 96px);
    }

    .editorial-hero-subtitle {
        letter-spacing: 0.22em;
    }
}

@media (max-width: 767px) {
    .announcement-bar {
        font-size: 10px;
        padding: 8px 14px;
    }

    .site-header--editorial {
        position: fixed;
        top: 36px;
    }

    .site-header--editorial.site-header--solid {
        top: 0;
    }

    .site-search-overlay {
        min-height: 76px;
        padding: 14px 52px 14px 18px;
    }

    .site-search-panel {
        min-height: 34px;
    }

    .site-search-close {
        right: 16px;
    }

    .editorial-header-row {
        min-height: 64px;
        padding: 12px 16px;
    }

    .editorial-hero-dots {
        right: 14px;
        gap: 10px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 48px;
        height: 48px;
    }
}
