/* ── Promo bar ───────────────────────────────────────────────────── */

.promo-bar {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    padding: 10px 48px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
}

.promo-bar-text {
    display: inline;
}

.promo-bar-link {
    color: #fff;
    font-weight: 600;
    margin-left: 10px;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
}

.promo-bar-link:hover {
    opacity: 0.8;
}

.promo-bar-close {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    opacity: 0.7;
}

.promo-bar-close:hover {
    opacity: 1;
}

body.has-promo-bar {
    padding-top: 180px;
}

body.has-promo-bar.page-home {
    padding-top: 0;
}

body.has-promo-bar .site-header {
    top: 40px;
}

/* ── Header ──────────────────────────────────────────────────────── */

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: none;
    transition: transform 0.45s cubic-bezier(.4,0,.2,1),
                background 0.4s ease,
                box-shadow 0.4s ease;
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.site-header--hidden {
    transform: translateY(-100%);
}

/* ── Split-nav inner grid ── */
.site-header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 22px 52px 18px;
    gap: 0;
}

/* ── Left nav ── */
.site-header-nav-left {
    display: flex;
    align-items: center;
    gap: 36px;
}

/* ── Brand (center) ── */
.site-header-brand {
    text-align: center;
    padding: 0 40px;
}

.site-header-brand a {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-weight: 300;
    font-size: 2.1rem;
    letter-spacing: 5px;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s;
    white-space: nowrap;
    display: block;
    line-height: 1.1;
}

/* ── Right nav + icons ── */
.site-header-nav-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 36px;
}

.site-header-nav-right nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

/* ── Shared nav link style ── */
.shl {
    font-size: 0.67rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1a1a1a;
    text-decoration: none;
    position: relative;
    padding-bottom: 3px;
    opacity: 0.6;
    transition: opacity 0.25s;
    white-space: nowrap;
}

.shl::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s cubic-bezier(.4,0,.2,1);
}

.shl:hover,
.shl.is-active {
    opacity: 1;
    color: #1a1a1a;
}

.shl:hover::after,
.shl.is-active::after {
    width: 100%;
}

/* ── Icon cluster (right side) ── */
.site-header-icons {
    display: flex;
    align-items: center;
    gap: 16px;
    border-left: 1px solid rgba(0,0,0,0.1);
    padding-left: 28px;
}

.shi {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #1a1a1a;
    font-size: 1.1rem;
    text-decoration: none;
    opacity: 0.55;
    transition: opacity 0.25s;
}

.shi:hover,
.shi.is-active {
    opacity: 1;
    color: #1a1a1a;
}

.shi-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #1a1a1a;
    color: #fff;
    font-size: 0.48rem;
    min-width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
}

/* ── Champagne gold accent line ── */
.site-header-accent {
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        #c9a96e 15%,
        #e8d5a3 50%,
        #c9a96e 85%,
        transparent 100%
    );
    opacity: 0.7;
}

/* ── Transparent state (home video hero) ── */
.site-header--transparent {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
}

.site-header--transparent .site-header-accent {
    opacity: 0.3;
}

.site-header--transparent .shl,
.site-header--transparent .shi,
.site-header--transparent .site-header-brand a {
    color: #fff;
}

.site-header--transparent .site-header-icons {
    border-left-color: rgba(255,255,255,0.25);
}

.site-header--transparent .shi-badge {
    background: #fff;
    color: #1a1a1a;
}

body {
    padding-top: 100px;
    margin: 0;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
}

body.page-home {
    padding-top: 0;
}

.nav-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 2px;
    font-size: 0.78rem;
    padding: 4px 0;
}

.nav-link:hover,
.nav-link.fw-bold {
    color: #1a1a1a;
    text-decoration: underline;
    text-decoration-color: #bbb;
    text-underline-offset: 4px;
}

/* ── Full-viewport video hero ────────────────────────────────────── */

.video-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.video-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.15) 0%,
        rgba(0,0,0,0.45) 60%,
        rgba(0,0,0,0.65) 100%
    );
}

.video-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    max-width: 800px;
}

.video-hero-tag {
    font-size: 0.72rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 20px;
    font-weight: 400;
}

.video-hero-title {
    font-size: clamp(2.8rem, 8vw, 6rem);
    font-weight: 200;
    letter-spacing: 8px;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.video-hero-sub {
    font-size: clamp(0.85rem, 2vw, 1.1rem);
    font-weight: 300;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
}

.video-hero-btn {
    display: inline-block;
    padding: 14px 44px;
    border: 1px solid rgba(255,255,255,0.8);
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 400;
    background: transparent;
    transition: background 0.3s, border-color 0.3s, color 0.3s;
}

.video-hero-btn:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
}

/* scroll indicator */
.video-hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.4);
    animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ── About strip (below hero) ────────────────────────────────────── */

.about-strip {
    background: #fff;
}

.about-strip-text {
    padding: 80px 60px;
}

.about-strip-inner {
    max-width: 480px;
}

.about-strip-label {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-strip h2 {
    font-weight: 200;
    font-size: clamp(1.4rem, 3vw, 2rem);
    letter-spacing: 1px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-strip p {
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.9;
    color: #666;
    margin-bottom: 36px;
}

.about-strip-img {
    height: 560px;
    overflow: hidden;
}

.about-strip-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.about-strip-img:hover img {
    transform: scale(1.03);
}

/* ── Homepage — hero text ────────────────────────────────────────── */

.hero {
    padding: 80px 20px 40px;
    text-align: center;
}

.hero h1 {
    font-weight: 300;
    font-size: 2.2rem;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.4;
}

.hero p {
    font-weight: 300;
    font-size: 1.05rem;
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
    color: #555;
}

/* ── Homepage — collection gallery ──────────────────────────────── */

.collection-gallery {
    padding: 0 0 60px;
}

.collection-image-wrapper img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.collection-image-wrapper:hover img {
    transform: scale(1.03);
}

.collection-card h3 {
    font-family: 'Times New Roman', serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
    font-weight: 400;
}

.collection-card p {
    letter-spacing: 1px;
    color: #666;
    font-size: 0.88rem;
}

/* ── Shared button style ─────────────────────────────────────────── */

.shop-link {
    display: inline-block;
    background-color: transparent;
    color: #1a1a1a;
    border: 1px solid #1a1a1a;
    padding: 14px 40px;
    font-size: 0.85rem;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    text-decoration: none;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 0;
    transition: background 0.25s, color 0.25s;
    cursor: pointer;
}

.shop-link:hover {
    background-color: #1a1a1a;
    color: #fff;
}

/* ── Store banner ────────────────────────────────────────────────── */

.store-banner-section {
    height: 500px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.store-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.store-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 60%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 1;
}

.store-content {
    padding-right: 8%;
    text-align: right;
    z-index: 2;
}

.store-content h2 {
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 1.6rem;
}

.store-content p {
    font-weight: 300;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

/* ── Mobile ──────────────────────────────────────────────────────── */

@media (max-width: 768px) {
    body {
        padding-top: 110px;
    }

    .video-hero {
        height: 100vh;
        min-height: 420px;
    }

    .video-hero-title {
        letter-spacing: 4px;
    }

    .video-hero-scroll {
        display: none;
    }

    .about-strip-text {
        padding: 50px 24px;
        order: 2;
    }

    .about-strip-img {
        height: 300px;
        order: 1;
    }

    .about-strip-inner {
        max-width: 100%;
    }

    .site-header-inner {
        grid-template-columns: auto 1fr auto;
        padding: 14px 20px 10px;
        gap: 12px;
    }

    .site-header-nav-left {
        display: none;
    }

    .site-header-nav-right nav {
        display: none;
    }

    .site-header-brand {
        padding: 0 12px;
    }

    .site-header-brand a {
        font-size: 1.4rem;
        letter-spacing: 3px;
    }

    .site-header-icons {
        border-left: none;
        padding-left: 0;
        gap: 14px;
    }

    .shi {
        font-size: 1rem;
    }

    .media-wrapper {
        height: 50vh;
    }

    .hero h1 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }

    .about-content h2 {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .store-banner-section {
        height: 340px;
    }

    .store-content {
        padding-right: 5%;
    }

    .store-content h2 {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .shop-link {
        padding: 12px 28px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 100px;
    }

    .nav-link {
        font-size: 0.7rem;
        letter-spacing: 1px;
        padding: 2px 4px;
    }

    .collection-gallery .px-lg-5 {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
}
