/* ===== BOOGLETTE PUBLIC STYLESHEET — MOBILE-FIRST ===== */

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

:root {
    --charcoal: #0F0F10;
    --ivory: #F5F3EF;
    --sand: #E7D9C9;
    --gold: #C6A46C;
    --rose: #D8A7A0;
    --white: #FFFFFF;
    --text: #2A2A2A;
    --text-light: #6B6B6B;
    --border: #E0DDD8;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    --header-height: 60px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: var(--ivory);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: var(--gold);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--rose);
}

ul, ol {
    list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--charcoal);
    letter-spacing: 0.03em;
}

h1 {
    font-size: 36px;
    letter-spacing: 0.06em;
}

h2 {
    font-size: 28px;
    letter-spacing: 0.04em;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 18px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--text-light);
}

.section-title span {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    letter-spacing: 0.04em;
    color: var(--charcoal);
    text-transform: none;
    margin-top: 8px;
}

/* --- Header / Nav --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    background: rgba(245, 243, 239, 0.97);
    box-shadow: 0 1px 0 var(--border);
}

.header-logo img {
    height: 36px;
    width: auto;
}

.site-header.scrolled .header-logo img {
    filter: none;
}

.hero-active .header-logo img {
    filter: brightness(0) invert(1);
}

.hero-active .site-header:not(.scrolled) {
    color: var(--white);
}

/* Hamburger */
.nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--charcoal);
    transition: transform var(--transition), opacity var(--transition);
}

.hero-active .site-header:not(.scrolled) .nav-toggle span {
    background: var(--white);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--ivory);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transition: right 0.4s ease;
    z-index: 999;
}

.nav-menu.open {
    right: 0;
}

.nav-menu a {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--charcoal);
    letter-spacing: 0.06em;
    transition: color var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

/* Language Switcher */
.lang-switcher form {
    display: flex;
    gap: 4px;
}

.lang-btn {
    background: none;
    border: 1px solid transparent;
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 4px 8px;
    cursor: pointer;
    transition: color var(--transition), border-color var(--transition);
}

.lang-btn:hover {
    color: var(--gold);
}

.lang-btn.active {
    color: var(--gold);
    border-color: var(--gold);
}

.lang-switcher-desktop {
    display: none;
}

.lang-switcher-mobile {
    margin-top: 16px;
}

.hero-active .site-header:not(.scrolled) .lang-switcher-desktop .lang-btn {
    color: rgba(255,255,255,0.6);
}

.hero-active .site-header:not(.scrolled) .lang-switcher-desktop .lang-btn:hover,
.hero-active .site-header:not(.scrolled) .lang-switcher-desktop .lang-btn.active {
    color: var(--white);
    border-color: var(--white);
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 60px;
    background: linear-gradient(135deg, var(--sand) 0%, var(--rose) 50%, var(--gold) 100%);
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 15, 16, 0.15);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-logo {
    width: 100px;
    height: auto;
    margin: 0 auto 24px;
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.15));
}

.hero h1 {
    color: var(--white);
    font-size: 36px;
    letter-spacing: 0.08em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
    margin-bottom: 16px;
}

.hero p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0.04em;
    margin-bottom: 32px;
}

.hero .tagline {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 18px;
    margin-bottom: 40px;
}

/* --- Buttons --- */
.btn-gold {
    display: inline-block;
    padding: 14px 36px;
    background: var(--gold);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
}

.btn-gold:hover {
    background: var(--rose);
    color: var(--white);
    transform: translateY(-1px);
}

.btn-outline-gold {
    display: inline-block;
    padding: 13px 36px;
    background: transparent;
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1.5px solid var(--gold);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
}

.btn-outline-white {
    display: inline-block;
    padding: 13px 36px;
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1.5px solid var(--white);
    cursor: pointer;
    transition: all var(--transition);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--charcoal);
}

/* --- Sections --- */
.section {
    padding: 60px 20px;
}

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

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

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

.section-dark h2,
.section-dark h3,
.section-dark .section-title span {
    color: var(--ivory);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* --- Grid --- */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

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

/* --- Design / Collection Cards --- */
.card {
    position: relative;
    overflow: hidden;
    background: var(--white);
}

.card-image {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(198, 164, 108, 0.7) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
}

.card:hover .card-overlay {
    opacity: 1;
}

.card-overlay span {
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.card-body {
    padding: 16px;
}

.card-body h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.card-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.card-price {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

/* --- Collection Cards --- */
.collection-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 5;
}

.collection-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.collection-card:hover img {
    transform: scale(1.05);
}

.collection-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    background: linear-gradient(to top, rgba(15, 15, 16, 0.65), transparent);
    color: var(--white);
}

.collection-card-info h3 {
    color: var(--white);
    font-size: 20px;
    margin-bottom: 4px;
}

.collection-card-info p {
    font-size: 13px;
    opacity: 0.8;
    letter-spacing: 0.06em;
}

/* --- Spotlight Slider --- */
.spotlight-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}

.spotlight-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.spotlight-slide {
    flex: 0 0 100%;
    padding: 0 20px;
}

.spotlight-card {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    max-height: 70vh;
    margin: 0 auto;
    max-width: 560px;
    cursor: pointer;
}

.spotlight-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.spotlight-card:hover img {
    transform: scale(1.03);
}

.spotlight-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--sand), var(--rose));
}

.spotlight-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 24px;
    background: linear-gradient(to top, rgba(15, 15, 16, 0.7) 0%, transparent 100%);
    color: var(--white);
}

.spotlight-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.spotlight-info h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 4px;
}

.spotlight-price {
    font-size: 14px;
    opacity: 0.85;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.spotlight-detail-link {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 20px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.6);
    transition: all var(--transition);
    z-index: 2;
    position: relative;
}

.spotlight-detail-link:hover {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}

.spotlight-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.spotlight-play svg {
    width: 22px;
    height: 22px;
    color: var(--charcoal);
    margin-left: 3px;
}

.spotlight-card-video:hover .spotlight-play {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--white);
}

.spotlight-card-video {
    cursor: pointer;
}

.spotlight-card-video img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.spotlight-slide-video .spotlight-card {
    aspect-ratio: 16 / 9;
}

/* Slider Controls */
.spotlight-prev,
.spotlight-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background var(--transition), opacity var(--transition);
    opacity: 0;
}

.spotlight-slider:hover .spotlight-prev,
.spotlight-slider:hover .spotlight-next {
    opacity: 1;
}

.spotlight-prev:hover,
.spotlight-next:hover {
    background: var(--white);
}

.spotlight-prev svg,
.spotlight-next svg {
    width: 20px;
    height: 20px;
    color: var(--charcoal);
}

.spotlight-prev {
    left: 24px;
}

.spotlight-next {
    right: 24px;
}

/* Dots */
.spotlight-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}

.spotlight-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1.5px solid var(--text-light);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background var(--transition), border-color var(--transition);
}

.spotlight-dot.active {
    background: var(--gold);
    border-color: var(--gold);
}

.spotlight-dot:hover {
    border-color: var(--gold);
}

/* --- Runway Strip (horizontal scroll) --- */
.runway-strip {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 20px 16px;
    scrollbar-width: none;
}

.runway-strip::-webkit-scrollbar {
    display: none;
}

.runway-item {
    flex: 0 0 200px;
    scroll-snap-align: start;
    position: relative;
}

.runway-item img {
    width: 200px;
    height: 280px;
    object-fit: cover;
}

.runway-number {
    position: absolute;
    bottom: 12px;
    left: 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* --- Category Tabs --- */
.category-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    margin-bottom: 32px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tab {
    flex-shrink: 0;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--text-light);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.category-tab:hover,
.category-tab.active {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--white);
}

a.category-tab {
    text-decoration: none;
}

/* --- Video Embed --- */
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- Video Grid --- */
.video-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.video-card img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-card:hover img {
    transform: scale(1.05);
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.video-play-icon::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 18px solid var(--charcoal);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    margin-left: 4px;
}

.video-card-info {
    padding: 12px 0;
}

.video-card-info h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.video-card-info .card-badge {
    font-size: 10px;
}

/* --- Look Page --- */
.look-hero {
    width: 100%;
    aspect-ratio: 3 / 4;
    max-height: 80vh;
    overflow: hidden;
}

.look-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.look-info {
    padding: 40px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.look-info h1 {
    margin-bottom: 8px;
}

.look-description {
    margin: 24px 0;
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
}

.look-price {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.look-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    padding: 0 20px;
}

.look-gallery img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    cursor: pointer;
    transition: opacity var(--transition);
}

.look-gallery img:hover {
    opacity: 0.85;
}

.look-nav {
    display: flex;
    justify-content: space-between;
    padding: 40px 20px;
    border-top: 1px solid var(--border);
}

.look-nav a {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.look-nav a:hover {
    color: var(--gold);
}

/* --- Forms --- */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    background: var(--white);
    border: 1px solid var(--border);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(198, 164, 108, 0.15);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-hint {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 6px;
}

.form-error {
    font-size: 13px;
    color: #C0392B;
    margin-top: 6px;
}

.validation-message {
    color: #C0392B;
    font-size: 13px;
    margin-top: 4px;
}

/* --- Upload Zone --- */
.upload-zone {
    border: 2px dashed var(--border);
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
}

.upload-zone:hover,
.upload-zone.drag-over {
    border-color: var(--gold);
    background: rgba(198, 164, 108, 0.05);
}

.upload-zone p {
    font-size: 14px;
    color: var(--text-light);
}

.upload-zone .upload-icon {
    font-size: 32px;
    margin-bottom: 8px;
    opacity: 0.4;
}

.upload-previews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 16px;
}

.upload-preview {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.upload-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upload-preview .remove-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    background: rgba(0,0,0,0.6);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
}

/* --- Measurements details --- */
.measurements-section {
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

.measurements-section summary {
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    cursor: pointer;
    color: var(--text);
}

.measurements-section .measurements-fields {
    padding: 0 16px 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
    line-height: 40px;
    text-align: center;
}

/* --- Video Modal --- */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-content {
    width: 90vw;
    max-width: 900px;
    aspect-ratio: 16 / 9;
}

.video-modal-content iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

/* --- CTA Banner --- */
.cta-banner {
    text-align: center;
    padding: 60px 20px;
}

.cta-banner h2 {
    margin-bottom: 12px;
}

.cta-banner p {
    margin-bottom: 28px;
    color: var(--text-light);
    font-size: 15px;
}

/* --- Social Strip --- */
.social-strip {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 40px 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.04em;
    transition: color var(--transition);
}

.social-link:hover {
    color: var(--gold);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* --- Contact Cards --- */
.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--border);
    transition: border-color var(--transition), transform var(--transition);
}

.contact-card:hover {
    border-color: var(--gold);
    transform: translateY(-2px);
}

.contact-card svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--gold);
}

.contact-card h3 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* --- About Page --- */
.about-content {
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.9;
}

.about-content p {
    margin-bottom: 20px;
}

/* --- Confirmation Page --- */
.confirmation {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    padding: 80px 20px;
}

.confirmation h1 {
    margin-bottom: 16px;
}

.confirmation .ref-number {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 24px;
}

.confirmation p {
    color: var(--text-light);
    margin-bottom: 16px;
}

/* --- Footer --- */
.site-footer {
    background: var(--charcoal);
    color: rgba(245, 243, 239, 0.7);
    padding: 48px 20px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-nav h4,
.footer-social h4 {
    color: var(--ivory);
    font-size: 13px;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-nav a {
    display: block;
    font-size: 14px;
    color: rgba(245, 243, 239, 0.7);
    margin-bottom: 10px;
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(245, 243, 239, 0.7);
    margin-bottom: 10px;
    transition: color var(--transition);
}

.footer-social a:hover {
    color: var(--gold);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.footer-bottom {
    max-width: 1200px;
    margin: 32px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(245, 243, 239, 0.1);
    text-align: center;
    font-size: 13px;
}

/* --- Scroll Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* --- Page Header (non-hero pages) --- */
.page-header {
    padding: calc(var(--header-height) + 40px) 20px 40px;
    text-align: center;
    background: var(--ivory);
}

.page-header h1 {
    margin-bottom: 8px;
}

.page-header p {
    color: var(--text-light);
    font-size: 15px;
}

/* --- Empty state --- */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.empty-state p {
    font-size: 16px;
}

/* ===== TABLET (768px+) ===== */
@media (min-width: 768px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 24px; }

    .section { padding: 80px 32px; }
    .page-header { padding: calc(var(--header-height) + 60px) 32px 48px; }

    .hero h1 { font-size: 52px; }
    .hero p { font-size: 18px; }
    .hero .tagline { font-size: 22px; }

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

    .footer-content { grid-template-columns: 2fr 1fr 1fr; }

    .look-gallery { grid-template-columns: repeat(3, 1fr); gap: 8px; }

    .spotlight-slide { padding: 0 32px; }
    .spotlight-card { max-width: 640px; }
    .spotlight-info h3 { font-size: 28px; }
    .spotlight-prev,
    .spotlight-next { width: 48px; height: 48px; }

    .runway-item { flex: 0 0 240px; }
    .runway-item img { width: 240px; height: 340px; }

    .upload-previews { grid-template-columns: repeat(5, 1fr); }

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

    .cta-banner { padding: 80px 32px; }
}

/* ===== DESKTOP (1024px+) ===== */
@media (min-width: 1024px) {
    :root { --header-height: 72px; }

    body { font-size: 16px; }

    h1 { font-size: 56px; }
    .section-title span { font-size: 40px; }

    .site-header { padding: 0 40px; }

    /* Desktop nav — inline */
    .nav-toggle { display: none; }

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        gap: 32px;
    }

    .nav-menu a {
        font-family: var(--font-body);
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.15em;
        text-transform: uppercase;
    }

    .hero-active .site-header:not(.scrolled) .nav-menu a {
        color: var(--white);
    }

    .lang-switcher-mobile { display: none; }
    .lang-switcher-desktop { display: block; }

    .hero-logo { width: 140px; margin-bottom: 32px; }
    .hero h1 { font-size: 64px; }
    .hero p { font-size: 20px; }

    .section { padding: 100px 40px; }
    .page-header { padding: calc(var(--header-height) + 80px) 40px 56px; }

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

    .footer-content { grid-template-columns: 2fr 1fr 1fr 1fr; }

    .look-info { padding: 60px 40px; }
    .look-gallery { padding: 0; gap: 12px; }
    .look-nav { padding: 40px 0; }

    .spotlight-slide { padding: 0 40px; }
    .spotlight-card { max-width: 720px; }
    .spotlight-info { padding: 40px 32px; }
    .spotlight-info h3 { font-size: 32px; }
    .spotlight-prev { left: 40px; }
    .spotlight-next { right: 40px; }

    .runway-item { flex: 0 0 280px; }
    .runway-item img { width: 280px; height: 400px; }

    .contact-card { padding: 32px; }
}

/* ===== WIDE (1440px+) ===== */
@media (min-width: 1440px) {
    h1 { font-size: 72px; }
    .hero h1 { font-size: 80px; }
    .section-title span { font-size: 48px; }
}

/* --- Utility --- */
.text-center { text-align: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
