/* ============================================
   Kripton – Main Stylesheet
   ============================================ */

/* --- Outfit Font --- */
@font-face {
    font-family: 'Outfit';
    src: url('../fonts/Outfit/Outfit-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black: #0a0a0a;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray-mid: #e0e0e0;
    --gray-dark: #6b6b6b;
    --accent: #c8a96e;
    --font: 'Outfit', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --ease: 0.3s ease;
    --max-w: 1440px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--black);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
    font-weight: 300;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h1 {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
}

h2 {
    font-size: clamp(1.8rem, 4vw, 3.2rem);
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
}

p {
    font-size: 1rem;
    color: var(--gray-dark);
    line-height: 1.7;
}

.label-small {
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 9999;
    background: var(--white);
    color: var(--black);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    transition: top var(--ease);
}

.skip-link:focus {
    top: 1rem;
}

/* --- Layout --- */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 3rem;
    gap: 2rem;
    flex-wrap: wrap;
}

.section-eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-dark);
    margin-bottom: 0.75rem;
}

.section-center {
    text-align: center;
    margin-bottom: 4rem;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-size: 0.85rem;
    font-family: var(--font);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: var(--ease);
}

.btn--primary {
    background: var(--black);
    color: var(--white);
}

.btn--primary:hover {
    background: #333;
}

.btn--outline {
    background: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}

.btn--outline:hover {
    background: var(--black);
    color: var(--white);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn--outline-white:hover {
    background: var(--white);
    color: var(--black);
}

/* ============================================
   HEADER
   ============================================ */
.Header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease, transform 0.35s ease;
}

.Header.is-hidden {
    transform: translateY(-100%);
}

/* Desktop — always transparent, even after scroll */
@media (min-width: 1024px) {
    .Header.is-scrolled {
        background: transparent;
        box-shadow: none;
    }
}

/* Mobile/tablet — solid white on scroll for readability */
@media (max-width: 1023px) {
    .Header.is-scrolled {
        background: var(--white);
        box-shadow: 0 1px 0 var(--gray-mid);
    }
}

.Header-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 900;
}

.Header-overlay.is-active {
    display: block;
}

.Header-inner {
    position: relative;
}

/* HeaderBar */
.HeaderBar {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem;
    position: relative;
}

/* Hamburger — mobile only, positioned left */
.HeaderBar-btn {
    display: none;
    position: absolute;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    align-items: center;
    padding: 4px;
    transition: opacity var(--ease);
}

.Header.is-scrolled .HeaderBar-btn { color: var(--black); }
.HeaderBar-btn:hover { opacity: 0.6; }
.HeaderBar-icon { width: 24px; height: 24px; fill: currentColor; }

@media (max-width: 1023px) {
    .HeaderBar-btn { display: flex; }
}

.HeaderBar-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--white);
    display: inline-block;
    align-items: center;
    padding: 4px;
    margin: 8px 0px;
    transition: opacity var(--ease);
}

.Header.is-scrolled .HeaderBar-btn {
    color: var(--black);
}

.HeaderBar-btn:hover {
    opacity: 0.6;
}

.HeaderBar-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.HeaderBar-consultLink {
    display: none;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    transition: opacity var(--ease);
}

.Header.is-scrolled .HeaderBar-consultLink {
    color: var(--black);
}

.HeaderBar-consultLink:hover {
    opacity: 0.6;
}

.HeaderBar-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.HeaderBar-logoImg {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter var(--ease);
}

.Header.is-scrolled .HeaderBar-logoImg {
    filter: none;
}

.HeaderBar-logoImg--dark {
    filter: none;
}

/* HeaderMeta */
.HeaderMeta-list {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.HeaderMeta-iconLink {
    display: flex;
    align-items: center;
    color: var(--white);
    transition: opacity var(--ease);
}

.Header.is-scrolled .HeaderMeta-iconLink {
    color: var(--black);
}

.HeaderMeta-iconLink:hover {
    opacity: 0.6;
}

.HeaderMeta-icon {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.HeaderMeta-item--brochure {
    display: none;
}

.HeaderMeta-brochureBtn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.5rem 1rem;
    transition: var(--ease);
}

.Header.is-scrolled .HeaderMeta-brochureBtn {
    color: var(--black);
    border-color: var(--black);
}

.HeaderMeta-brochureBtn:hover {
    background: var(--white);
    color: var(--black);
}

.Header.is-scrolled .HeaderMeta-brochureBtn:hover {
    background: var(--black);
    color: var(--white);
}

.HeaderMeta-brochureIcon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* HeaderDrawer */
.HeaderDrawer {
    position: fixed;
    top: 0;
    left: 0;
    width: min(360px, 90vw);
    height: 100%;
    height: 100dvh;
    background: var(--white);
    z-index: 1100;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
}

.HeaderDrawer.is-open {
    transform: translateX(0);
}

.HeaderDrawer-topBar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--gray-mid);
    flex-shrink: 0;
}

.HeaderDrawer-logo img {
    height: 60px;
}

.HeaderDrawer-closeBtn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--black);
    display: flex;
    align-items: center;
    padding: 4px;
}

.HeaderDrawer-closeIcon {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.HeaderDrawer-brochure {
    display: none;
}

/* HeaderNav */
.HeaderNav {
    padding: 1rem 0 calc(1rem + env(safe-area-inset-bottom));
}

.HeaderNav-list {
    display: flex;
    flex-direction: column;
}

.HeaderNav-item {
    border-bottom: 1px solid var(--gray-light);
}

.HeaderNav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 400;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--black);
    transition: background var(--ease);
}

.HeaderNav-link:hover {
    background: var(--gray-light);
}

.HeaderNav-link--plain {
    text-decoration: none;
}

.HeaderNav-caret {
    width: 16px;
    height: 16px;
    fill: currentColor;
    flex-shrink: 0;
}

/* Submenu */
.HeaderNav-submenu {
    display: none;
    background: var(--gray-light);
}

.HeaderNav-submenu.is-open,
.HeaderNav-submenu[aria-hidden="false"] {
    display: block;
}

.HeaderNav-backBtn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: none;
    border: none;
    border-bottom: 1px solid var(--gray-mid);
    cursor: pointer;
    color: var(--gray-dark);
}

.HeaderNav-backBtn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.HeaderNav-subList {
    padding: 0.5rem 0;
}

.HeaderNav-subLink {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    color: var(--black);
    transition: background var(--ease);
}

.HeaderNav-subLink:hover {
    background: var(--gray-mid);
}

/* Brochure as nav item */
.HeaderNav-item--brochure {
    border-top: 2px solid var(--gray-mid);
    margin-top: 0.5rem;
}

.HeaderNav-brochureLink {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.1rem 1.5rem;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--black);
    transition: background var(--ease);
}

.HeaderNav-brochureLink:hover {
    background: var(--gray-light);
}

.HeaderNav-brochureIcon {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

/* HeaderSearch */
.HeaderSearch {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-mid);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease), transform var(--ease);
    z-index: 800;
}

.HeaderSearch[aria-hidden="false"] {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.HeaderSearch-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    max-width: var(--max-w);
    margin: 0 auto;
}

.HeaderSearch-icon {
    width: 20px;
    height: 20px;
    fill: var(--gray-dark);
    flex-shrink: 0;
}

.HeaderSearch-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: var(--font);
    color: var(--black);
    background: transparent;
}

.HeaderSearch-closeBtn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-dark);
    display: flex;
    align-items: center;
    padding: 4px;
}

.HeaderSearch-closeIcon {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* HeaderMenuBar – desktop second row */
.HeaderMenuBar {
    display: none;
    /* border-top: 1px solid rgba(255, 255, 255, 0.15); */
}

.Header.is-scrolled .HeaderMenuBar {
    border-top-color: var(--gray-mid);
}

.HeaderMenuBar-list {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
}

.HeaderMenuBar-item {
    position: relative;
}

.HeaderMenuBar-link {
    display: block;
    padding: 1.1rem 1.5rem;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--white);
    transition: opacity var(--ease);
    white-space: nowrap;
}

.Header.is-scrolled .HeaderMenuBar-link {
    color: var(--black);
}

.HeaderMenuBar-link:hover {
    opacity: 0.6;
}

/* DropPanel */
.DropPanel {
    position: fixed;
    top: auto;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ease);
    z-index: 700;
}

.js-DropItem:hover .DropPanel,
.DropPanel[aria-hidden="false"] {
    opacity: 1;
    pointer-events: auto;
}

.DropPanel-inner--products {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    padding: 2rem;
    gap: 0;
}

.DropPanel-inner {
    display: flex;
    gap: 0;
}

/* Left 50% — series names, 3-column grid */
.DropSeries {
    flex: 0 0 50%;
    padding-right: 2rem;
    border-right: 1px solid var(--gray-mid);
}

.DropSeries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem;
}

/* Right 50% — preview image */
.DropPreview {
    flex: 0 0 50%;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
}

.DropPanel-colTitle {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-dark);
    margin-bottom: 1.25rem;
    font-weight: 500;
}

.DropSeries {
    flex: 1;
}

.DropSeries-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    transition: background var(--ease);
    cursor: pointer;
}

.DropSeries-card:hover {
    background: var(--gray-light);
}

.DropSeries-media {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--gray-light);
}

.DropSeries-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* View All card — same as other cards */
.DropSeries-card--all {
    background: transparent;
    justify-content: flex-start;
    border: none;
    border-radius: 0;
}

.DropSeries-card--all .DropSeries-name { color: var(--black); }

.DropSeries-info { flex: 1; }

.DropSeries-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.2rem;
}

.DropSeries-desc {
    font-size: 0.75rem;
    color: var(--gray-dark);
    line-height: 1.4;
}

.DropSeries-arrow {
    width: 16px;
    height: 16px;
    stroke: var(--gray-dark);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
    transition: transform var(--ease);
}

.DropSeries-card:hover .DropSeries-arrow {
    transform: translateX(4px);
}

.DropPreview {
    width: 220px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.DropPreview-frame {
    position: relative;
    flex: 1;
    overflow: hidden;
    background: var(--gray-light);
    min-height: 420px;
    border-radius: 4px;
}

.DropPreview-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--gray-light);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.DropPreview-img.is-active {
    opacity: 1;
}

.DropPreview-cta {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gray-light);
    text-align: center;
    transition: background var(--ease);
}

.DropPreview-cta:hover {
    background: var(--gray-mid);
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    background: var(--black);
}

.hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 4rem 2rem;
    width: 100%;
}

.hero-eyebrow {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.hero-title {
    color: var(--white);
    max-width: 700px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

/* ============================================
   ESSENCE SECTION
   ============================================ */
.essence-section {
    padding: 7rem 2rem;
    background: var(--white);
    text-align: center;
}

.essence-inner {
    max-width: 760px;
    margin: 0 auto;
}

.essence-eyebrow {
    font-size: 2rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.essence-body {
    font-size: clamp(1.2rem, 2.2vw, 1rem);
    font-weight: 300;
    color: var(--black);
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.essence-anim {
    opacity: 0;
    transform: translateY(24px);
}

/* ============================================
   CINEMATIC GALLERY STRIP
   ============================================ */
.gallery-strip {
    overflow: hidden;
    cursor: grab;
    user-select: none;
    background: #000;
  
}

.gallery-strip:active {
    cursor: grabbing;
}

.gallery-track {
    display: flex;
    gap: 0;
    will-change: transform;
}

.gallery-panel {
    position: relative;
    flex-shrink: 0;
    width: 48vh;
    height: 70vh;
    min-width: 280px;
    overflow: hidden;
      border-left: 1px solid #fff
}

.gallery-panel-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #5c5650;
}

.gallery-panel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
}

.gallery-panel-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
}

.gallery-panel-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 200;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.25);
    margin-bottom: 0.4rem;
    font-family: var(--font);
    line-height: 1;
}

.gallery-panel-title {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.gallery-panel-info {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.gallery-panel-link {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 2px;
    transition: border-color var(--ease);
}

.gallery-panel-link:hover {
    border-color: var(--white);
}

/* ============================================
   EDITORIAL SPLIT SECTION
   ============================================ */
.editorial-split {
    display: grid;
    grid-template-columns: 42% 58%;
    min-height: 65vh;
    background: #f7f5f2;
    overflow: hidden;
}

.editorial-split__image-col {
    position: relative;
    overflow: hidden;
}

.editorial-split__image-wrap {
    position: absolute;
    inset: 3rem;
    overflow: hidden;
    /* box-shadow: 0 24px 80px rgba(0,0,0,0.12); */
}

.editorial-split__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    -webkit-transform: scaleX(-1);
    transform: scale(1.04) scaleX(-1);
    transition: transform 0.8s ease;
}

/* .editorial-split__image-wrap:hover .editorial-split__img {
    transform: scale(1.08);
} */

.editorial-split__text-col {
    display: flex;
    align-items: center;
    padding: 6rem 5rem 6rem 4rem;
    background: #f7f5f2;
}

.editorial-split__text-inner {
    max-width: 560px;
}

.editorial-split__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gray-dark);
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(40px);
}

.editorial-split__heading {
    font-size: clamp(1.6rem, 2.8vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--black);
    text-transform: uppercase;
    white-space: nowrap;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateX(40px);
}

.editorial-split__body {
    font-size: 1rem;
    font-weight: 300;
    color: #555;
    line-height: 1.8;
    letter-spacing: 0.01em;
    max-width: 420px;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateX(40px);
}

.editorial-split__link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 500;
    color: var(--black);
    position: relative;
    opacity: 0;
    transform: translateX(40px);
}

.editorial-split__link span {
    position: relative;
}

.editorial-split__link span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--black);
    transition: width 0.4s ease;
}

.editorial-split__link:hover span::after { width: 100%; }

.editorial-split__link svg {
    width: 40px;
    height: 12px;
    stroke: var(--black);
    fill: none;
    stroke-width: 1.5;
    transition: transform 0.3s ease;
}

.editorial-split__link:hover svg { transform: translateX(6px); }

/* Image col — fade up */
.editorial-split__image-wrap {
    opacity: 0;
    transform: translateY(40px);
}

/* Responsive */
@media (max-width: 900px) {
    .editorial-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .editorial-split__image-col {
        height: 60vw;
        min-height: 280px;
    }

    .editorial-split__image-wrap {
        inset: 1.5rem;
    }

    .editorial-split__text-col {
        padding: 3rem 2rem 4rem;
    }

    .editorial-split__text-inner {
        max-width: 100%;
    }

    .editorial-split__heading {
        white-space: normal;
        font-size: clamp(1.4rem, 5vw, 2.4rem);
    }
}

@media (max-width: 480px) {
    .editorial-split__image-col {
        height: 70vw;
        min-height: 220px;
    }

    .editorial-split__image-wrap {
        inset: 1rem;
    }

    .editorial-split__heading {
        font-size: clamp(1.3rem, 6vw, 2rem);
        white-space: normal;
    }

    .editorial-split__body {
        font-size: 0.9rem;
    }

    .editorial-split__text-col {
        padding: 2rem 1.5rem 3rem;
    }
}
.marquee-section {
    padding: 1.5rem 0;
    background: var(--black);
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-track {
    display: flex;
    gap: 4rem;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-item {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.marquee-item span {
    color: rgba(255, 255, 255, 0.15);
    margin: 0 2rem;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ============================================
   PRODUCTS GRID
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.product-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.product-card--large {
    grid-column: span 2;
}

.product-card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--gray-light);
}

.product-card--large .product-card-media {
    aspect-ratio: 16/10;
}

.product-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .product-card-media img {
    transform: scale(1.04);
}

.product-card-body {
    padding: 1.25rem 0;
}

.product-card-category {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-dark);
    margin-bottom: 0.4rem;
}

.product-card-name {
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.product-card-desc {
    font-size: 0.85rem;
    color: var(--gray-dark);
    line-height: 1.5;
}

/* ============================================
   BRAND STATEMENT
   ============================================ */
.brand-statement {
    padding: 8rem 2rem;
    text-align: center;
    background: var(--black);
    color: var(--white);
}

.brand-statement-text {
    font-size: clamp(1.5rem, 3.5vw, 2.8rem);
    font-weight: 300;
    letter-spacing: -0.01em;
    line-height: 1.3;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: var(--white);
}

.brand-statement-text em {
    font-style: normal;
    color: var(--accent);
}

/* ============================================
   INSPIRATION GRID
   ============================================ */
.inspiration-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.inspiration-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.inspiration-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.inspiration-card-media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--gray-light);
}

.inspiration-card-media--wide {
    aspect-ratio: 16/9;
}

.inspiration-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.inspiration-card:hover .inspiration-card-media img {
    transform: scale(1.04);
}

.inspiration-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.inspiration-card-tag {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.5rem;
}

.inspiration-card-title {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
}

/* ============================================
   CAMPAIGN FULL-BLEED
   ============================================ */
.campaign-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.campaign-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campaign-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.campaign-content {
    position: relative;
    z-index: 2;
    padding: 0 2rem;
    width: 100%;
}

.campaign-eyebrow {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 1rem;
}

.campaign-title {
    color: var(--white);
    max-width: 600px;
    margin-bottom: 2rem;
}

/* ============================================
   VALUES GRID
   ============================================ */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.value-item {
    text-align: center;
}

.value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1.5rem;
    stroke: var(--black);
    fill: none;
    stroke-width: 1;
}

.value-title {
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.value-desc {
    font-size: 0.85rem;
    color: var(--gray-dark);
    line-height: 1.6;
}

/* ============================================
   STORE FINDER
   ============================================ */
.store-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.store-media {
    position: relative;
    overflow: hidden;
}

.store-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.store-media:hover img {
    transform: scale(1.03);
}

.store-content {
    background: var(--gray-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem;
}

.store-content h2 {
    margin-bottom: 1.5rem;
}

.store-content p {
    margin-bottom: 2.5rem;
    max-width: 380px;
}

.store-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
    padding: 6rem 2rem;
    text-align: center;
    background: var(--black);
    color: var(--white);
}

.newsletter-eyebrow {
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
}

.newsletter-title {
    color: var(--white);
    margin-bottom: 1rem;
}

.newsletter-section p {
    color: rgba(255, 255, 255, 0.6);
    max-width: 480px;
    margin: 0 auto 2.5rem;
}

.newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-right: none;
    color: var(--white);
    font-size: 0.9rem;
    font-family: var(--font);
    outline: none;
    transition: border-color var(--ease);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.newsletter-input:focus {
    border-color: rgba(255, 255, 255, 0.5);
}

.newsletter-form .btn {
    flex-shrink: 0;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--black);
    color: var(--white);
    padding: 5rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand-logo {
    font-size: 1.3rem;
    font-weight: 300;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.footer-brand-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    max-width: 280px;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    transition: var(--ease);
}

.footer-social a svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    flex-shrink: 0;
}

.footer-social a:hover {
    border-color: var(--white);
    color: var(--white);
}

.footer-col-title {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--ease);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
    transition: color var(--ease);
}

.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   SCROLL REVEAL
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (min-width: 1024px) {
    .HeaderBar-consultLink {
        display: block;
    }

    .HeaderMeta-item--brochure {
        display: flex;
    }

    .HeaderMenuBar {
        display: block;
    }

    .HeaderBar-btn {
        display: none;
    }
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-card--large {
        grid-column: span 2;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .DropPanel {
        min-width: 500px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-card--large {
        grid-column: span 1;
    }

    .product-card--large .product-card-media {
        aspect-ratio: 4/3;
    }

    .inspiration-grid {
        grid-template-columns: 1fr;
    }

    .store-section {
        grid-template-columns: 1fr;
    }

    .store-media {
        height: 300px;
    }

    .store-content {
        padding: 3rem 2rem;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        border-right: 1px solid rgba(255, 255, 255, 0.2);
        border-bottom: none;
    }

    .hero-content {
        padding: 3rem 1.5rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-panel {
        width: 30vh;
        height: 48vh;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .gallery-panel {
        width: 26vh;
        height: 44vh;
        min-width: 160px;
    }
}