/* ═══════════════════════════════════════════════════════════════════════
   White Rose Bridal — Midnight Luxe Theme
   Dark, cinematic aesthetic with champagne gold accents
   ═══════════════════════════════════════════════════════════════════════ */

/* ─── CSS Custom Properties ─────────────────────────────────────── */
:root {
    --obsidian: #0D0D12;
    --champagne: #E8DDD3;
    --ivory: #FAF8F5;
    --slate: #2A2A35;
    --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Semantic aliases for inner page compatibility */
    --color-black: #0D0D12;
    --color-white: #FAF8F5;
    --color-accent: #E8DDD3;
    --color-accent-hover: #D4C8BC;
    --color-charcoal: rgba(250, 248, 245, 0.85);
    --color-medium-gray: rgba(250, 248, 245, 0.5);
    --color-light-gray: rgba(250, 248, 245, 0.03);
    --color-border: rgba(232, 221, 211, 0.1);

    /* Spacing */
    --space-xs:  0.5rem;
    --space-sm:  1rem;
    --space-md:  1.5rem;
    --space-lg:  2.5rem;
    --space-xl:  4rem;
    --space-2xl: 6rem;

    /* Layout */
    --container-max: 1200px;
    --container-narrow: 800px;

    /* Transitions */
    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition: 0.3s var(--ease);
}

/* ─── Font Face (Self-Hosted) ───────────────────────────────────── */
@font-face {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('/fonts/inter-latin.woff2') format('woff2');
}
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400 700;
    font-display: swap;
    src: url('/fonts/playfair-display-latin.woff2') format('woff2');
}
@font-face {
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 400 700;
    font-display: swap;
    src: url('/fonts/playfair-display-italic-latin.woff2') format('woff2');
}

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

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

body {
    font-family: var(--sans);
    font-weight: 400;
    line-height: 1.7;
    color: var(--ivory);
    background: var(--obsidian);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Noise overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}

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

a {
    color: var(--ivory);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover { color: var(--champagne); }

/* ─── Typography ────────────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--serif);
    font-weight: 600;
    line-height: 1.2;
    color: var(--ivory);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }

em { font-style: italic; }

/* ─── Utility ───────────────────────────────────────────────────── */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 2rem; }
.container--narrow { max-width: var(--container-narrow); }
.hidden { display: none !important; }

/* ─── Sections ──────────────────────────────────────────────────── */
.section { padding: var(--space-2xl) 0; }

.section-label {
    font-family: var(--mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--champagne);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 2rem;
    max-width: 600px;
}

.section__header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section__header:has(.section__link) {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    text-align: left;
}

.section__title {
    margin-bottom: var(--space-xs);
    color: var(--ivory);
}

.section__subtitle {
    font-size: 1.1rem;
    color: rgba(250, 248, 245, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

.section__link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--champagne);
}

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--transition);
}

.btn--primary,
.btn--accent {
    background: var(--champagne);
    color: var(--obsidian);
    border-color: var(--champagne);
}
.btn--primary:hover,
.btn--accent:hover {
    transform: scale(1.03);
    box-shadow: 0 0 40px rgba(232, 221, 211, 0.3);
    color: var(--obsidian);
}

.btn--outline {
    background: transparent;
    color: var(--ivory);
    border-color: rgba(250, 248, 245, 0.3);
}
.btn--outline:hover {
    border-color: var(--champagne);
    color: var(--champagne);
}

.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.75rem; }
.btn--lg { padding: 1.1rem 2.5rem; font-size: 0.9rem; }
.btn--full { width: 100%; }

/* ─── Floating Navbar ───────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 1.25rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0.75rem 1.5rem;
    border-radius: 100px;
    background: rgba(13, 13, 18, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(232, 221, 211, 0.15);
    transition: all 0.5s var(--ease);
}
.navbar.scrolled {
    background: rgba(250, 248, 245, 0.08);
    border-color: rgba(232, 221, 211, 0.3);
}
.navbar__logo {
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.navbar__logo img {
    height: 44px;
    width: auto;
}
.navbar__links { display: flex; gap: 1.5rem; list-style: none; }
.navbar__links a {
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(250, 248, 245, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}
.navbar__links a:hover { color: var(--champagne); transform: translateY(-1px); }
.navbar__cta {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.6rem 1.5rem;
    background: var(--champagne);
    color: var(--obsidian);
    border: none;
    border-radius: 100px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s var(--ease);
    text-decoration: none;
}
.navbar__cta:hover { transform: scale(1.03); color: var(--obsidian); }

/* Mobile menu toggle */
.navbar__toggle {
    display: none;
    background: none;
    border: none;
    width: 24px;
    height: 18px;
    position: relative;
    cursor: pointer;
}
.navbar__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--ivory);
    position: absolute;
    left: 0;
    transition: var(--transition);
}
.navbar__toggle span:nth-child(1) { top: 0; }
.navbar__toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.navbar__toggle span:nth-child(3) { bottom: 0; }

/* ─── Hero ──────────────────────────────────────────────────────── */
.hero {
    height: 100dvh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        var(--obsidian) 0%,
        rgba(13, 13, 18, 0.85) 30%,
        rgba(13, 13, 18, 0.4) 60%,
        rgba(13, 13, 18, 0.3) 100%
    );
}
.hero__content {
    position: relative;
    z-index: 2;
    padding: 0 4rem 6rem;
    max-width: 900px;
}
.hero__eyebrow {
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--champagne);
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.3s forwards;
}
.hero__title {
    margin-bottom: 2rem;
    line-height: 1;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 0.8s 0.5s forwards;
}
.hero__title-line1 {
    font-family: var(--sans);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    display: block;
    color: var(--ivory);
}
.hero__title-line2 {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    display: block;
    color: var(--champagne);
    line-height: 0.9;
    margin-top: 0.25rem;
}
.hero__sub {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(250, 248, 245, 0.6);
    max-width: 500px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.7s forwards;
}
.hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1.1rem 2.5rem;
    background: var(--champagne);
    color: var(--obsidian);
    text-decoration: none;
    border-radius: 100px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s 0.9s forwards;
}
.hero__cta:hover {
    transform: scale(1.03) !important;
    box-shadow: 0 0 40px rgba(232, 221, 211, 0.3);
    color: var(--obsidian);
}

/* ─── Trust Strip ───────────────────────────────────────────────── */
.trust {
    padding: 3rem 0;
    border-top: 1px solid rgba(232, 221, 211, 0.1);
    border-bottom: 1px solid rgba(232, 221, 211, 0.1);
}
.trust__inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}
.trust__item { text-align: center; }
.trust__number {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--champagne);
    line-height: 1;
}
.trust__label {
    font-family: var(--mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(250, 248, 245, 0.4);
    margin-top: 0.5rem;
}
.trust__divider {
    width: 1px;
    height: 50px;
    background: rgba(232, 221, 211, 0.15);
}

/* ─── Page Header (inner pages) ─────────────────────────────────── */
.page-header {
    padding: 8rem 0 var(--space-xl);
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}
.page-header__title {
    margin-bottom: var(--space-xs);
    color: var(--ivory);
}
.page-header__desc {
    color: rgba(250, 248, 245, 0.5);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ─── Breadcrumb ────────────────────────────────────────────────── */
.breadcrumb {
    font-size: 0.85rem;
    color: rgba(250, 248, 245, 0.4);
    padding: 6rem 0 var(--space-md);
}
.breadcrumb a { color: rgba(250, 248, 245, 0.4); }
.breadcrumb a:hover { color: var(--champagne); }
.breadcrumb__sep { margin: 0 0.5rem; opacity: 0.5; }
.breadcrumb__current { color: var(--ivory); }

/* ─── Feature Cards (Designer Cards on Homepage) ────────────────── */
.features { padding: 8rem 0; }
.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.feature-card {
    background: rgba(250, 248, 245, 0.03);
    border: 1px solid rgba(232, 221, 211, 0.1);
    border-radius: 2rem;
    padding: 2.5rem;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}
.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232, 221, 211, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 1rem;
    background: rgba(232, 221, 211, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--champagne);
    font-size: 1.2rem;
    font-weight: 600;
}
.feature-card__title {
    font-family: var(--sans);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ivory);
    margin-bottom: 0.75rem;
}
.feature-card__text {
    font-size: 0.9rem;
    font-weight: 300;
    color: rgba(250, 248, 245, 0.5);
    line-height: 1.7;
}
.feature-card__count {
    font-family: var(--mono);
    font-size: 0.7rem;
    color: var(--champagne);
    opacity: 0.5;
    margin-top: 1.5rem;
}

/* ─── Designer Grid (inner pages) ───────────────────────────────── */
.designer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-md);
}
.designer-card {
    display: block;
    background: rgba(250, 248, 245, 0.03);
    border: 1px solid rgba(232, 221, 211, 0.08);
    border-radius: 2rem;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.designer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(232, 221, 211, 0.3);
}
.designer-card__img {
    aspect-ratio: 3 / 4;
    overflow: hidden;
}
.designer-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.designer-card:hover .designer-card__img img {
    transform: scale(1.05);
}
.designer-card__info {
    padding: var(--space-md);
    text-align: center;
}
.designer-card__name {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--ivory);
    margin-bottom: 0.25rem;
}
.designer-card__count {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: var(--champagne);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ─── Dress Grid ────────────────────────────────────────────────── */
.dress-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: var(--space-md);
}
.dress-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.dress-card {
    background: rgba(250, 248, 245, 0.03);
    border: 1px solid rgba(232, 221, 211, 0.08);
    border-radius: 2rem;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.dress-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(232, 221, 211, 0.3);
}

.dress-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.dress-card__img {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--slate);
}
.dress-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.dress-card:hover .dress-card__img img {
    transform: scale(1.05);
}

.dress-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(250, 248, 245, 0.2);
}

.dress-card__info {
    padding: var(--space-sm) var(--space-md);
}

.dress-card__name {
    font-family: var(--serif);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ivory);
    margin-bottom: 0.25rem;
}

.dress-card__style {
    font-family: var(--mono);
    font-size: 0.75rem;
    color: rgba(250, 248, 245, 0.3);
}

.designer-badge {
    display: inline-block;
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--champagne);
    margin-bottom: 0.25rem;
}

/* ─── Dress Filters ─────────────────────────────────────────────── */
.dress-filters {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(232, 221, 211, 0.1);
}
.dress-filters__group {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    flex-wrap: wrap;
}
.dress-filters__label {
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(250, 248, 245, 0.5);
    margin-right: var(--space-xs);
}
.dress-filters__tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(232, 221, 211, 0.15);
    border-radius: 100px;
    color: rgba(250, 248, 245, 0.6);
    cursor: pointer;
    transition: all var(--transition);
}
.dress-filters__tag:hover,
.dress-filters__tag.is-active {
    background: var(--champagne);
    border-color: var(--champagne);
    color: var(--obsidian);
}

/* ─── Single Dress Page ─────────────────────────────────────────── */
.single-dress {
    padding: var(--space-lg) 0 var(--space-2xl);
}
.single-dress__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}
.single-dress__header {
    margin-bottom: var(--space-md);
}
.single-dress__title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: var(--space-xs);
    color: var(--ivory);
}
.single-dress__style {
    font-family: var(--mono);
    font-size: 0.8rem;
    color: rgba(250, 248, 245, 0.4);
    letter-spacing: 0.1em;
}
.single-dress__description {
    margin-bottom: var(--space-lg);
    line-height: 1.8;
    color: rgba(250, 248, 245, 0.6);
}
.single-dress__cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

/* ─── Dress Details Table ───────────────────────────────────────── */
.dress-details {
    border-top: 1px solid rgba(232, 221, 211, 0.1);
}
.dress-details__row {
    display: flex;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(232, 221, 211, 0.08);
}
.dress-details__label {
    width: 140px;
    flex-shrink: 0;
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(250, 248, 245, 0.4);
}
.dress-details__value {
    font-size: 0.95rem;
    color: var(--ivory);
}
.dress-details__value a { color: var(--champagne); }

/* ─── Dress Gallery ─────────────────────────────────────────────── */
.dress-gallery__main {
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--slate);
    border-radius: 2rem;
    margin-bottom: var(--space-sm);
}
.dress-gallery__hero {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dress-gallery__thumbs {
    display: flex;
    gap: var(--space-xs);
    overflow-x: auto;
}
.dress-gallery__thumb {
    flex-shrink: 0;
    width: 72px;
    height: 96px;
    border: 2px solid transparent;
    border-radius: 0.5rem;
    background: none;
    cursor: pointer;
    overflow: hidden;
    transition: border-color var(--transition);
    padding: 0;
}
.dress-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.dress-gallery__thumb.is-active,
.dress-gallery__thumb:hover {
    border-color: var(--champagne);
}

/* ─── Philosophy / Manifesto ────────────────────────────────────── */
.philosophy {
    padding: 10rem 0;
    position: relative;
    overflow: hidden;
}
.philosophy__bg {
    position: absolute;
    inset: 0;
    opacity: 0.08;
}
.philosophy__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.philosophy__content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.philosophy__small {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(250, 248, 245, 0.4);
    margin-bottom: 2rem;
    line-height: 1.8;
}
.philosophy__big {
    font-family: var(--serif);
    font-style: italic;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--ivory);
    line-height: 1.3;
}
.philosophy__big em {
    color: var(--champagne);
    font-style: italic;
}

/* ─── Experience Section ────────────────────────────────────────── */
.experience { padding: 8rem 0; }
.experience__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.experience__image {
    border-radius: 2rem;
    overflow: hidden;
    aspect-ratio: 3/4;
}
.experience__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease);
}
.experience__image:hover img {
    transform: scale(1.05);
}
.experience__list {
    list-style: none;
    margin: 2rem 0;
}
.experience__list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-weight: 300;
    color: rgba(250, 248, 245, 0.6);
    border-bottom: 1px solid rgba(232, 221, 211, 0.08);
}
.experience__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.4rem;
    width: 6px;
    height: 6px;
    background: var(--champagne);
    border-radius: 50%;
}

/* Legacy experience grid (build.js compat) */
.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}
.experience-grid__image img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 2rem;
}
.experience-features {
    list-style: none;
    margin: var(--space-md) 0;
}
.experience-features li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: rgba(250, 248, 245, 0.6);
    border-bottom: 1px solid rgba(232, 221, 211, 0.08);
}
.experience-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 6px;
    height: 6px;
    background: var(--champagne);
    border-radius: 50%;
}

/* ─── Testimonials ──────────────────────────────────────────────── */
.testimonials,
.section--testimonials {
    padding: 8rem 0;
    background: rgba(250, 248, 245, 0.02);
    border-radius: 3rem;
    margin: 0 2rem;
}
.testimonials__grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.testimonial,
.testimonial-card {
    background: rgba(250, 248, 245, 0.03);
    border: 1px solid rgba(232, 221, 211, 0.08);
    border-radius: 2rem;
    padding: 2.5rem;
}
.testimonial__stars,
.testimonial-card__stars {
    color: var(--champagne);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    margin-bottom: 1.25rem;
}
.testimonial__text,
.testimonial-card__text {
    font-family: var(--serif);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(250, 248, 245, 0.7);
    margin-bottom: 1.5rem;
}
.testimonial__author,
.testimonial-card__author {
    font-family: var(--mono);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(250, 248, 245, 0.3);
    font-style: normal;
}

/* ─── CTA Section ───────────────────────────────────────────────── */
.cta-section {
    padding: 10rem 0;
    text-align: center;
}
.cta-section__title {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}
.cta-section__title em {
    font-style: italic;
    color: var(--champagne);
}
.cta-section__sub {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(250, 248, 245, 0.5);
    max-width: 500px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}
.cta-section__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1.25rem 3rem;
    background: var(--champagne);
    color: var(--obsidian);
    text-decoration: none;
    border-radius: 100px;
    transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}
.cta-section__btn:hover {
    transform: scale(1.03);
    box-shadow: 0 0 60px rgba(232, 221, 211, 0.25);
    color: var(--obsidian);
}

/* ─── CTA Banner (pre-footer) ───────────────────────────────────── */
.cta-banner {
    text-align: center;
    padding: 5rem 2rem;
}
.cta-banner__title {
    font-family: var(--serif);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ivory);
    margin-bottom: 1rem;
}
.cta-banner__text {
    font-size: 1.1rem;
    font-weight: 300;
    color: rgba(250, 248, 245, 0.5);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}
.cta-banner__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Values Grid ───────────────────────────────────────────────── */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-md);
}
.value-card {
    padding: var(--space-lg);
    background: rgba(250, 248, 245, 0.03);
    border: 1px solid rgba(232, 221, 211, 0.08);
    border-radius: 2rem;
    text-align: center;
}
.value-card__title {
    font-family: var(--serif);
    font-size: 1.1rem;
    color: var(--ivory);
    margin-bottom: var(--space-xs);
}
.value-card__text {
    font-size: 0.95rem;
    color: rgba(250, 248, 245, 0.5);
}

/* ─── Footer ────────────────────────────────────────────────────── */
.site-footer {
    background: rgba(250, 248, 245, 0.03);
    border-radius: 4rem 4rem 0 0;
    padding: 5rem 0 2rem;
    margin-top: 2rem;
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}
.footer__brand {
    margin-bottom: 0.75rem;
}
.footer__brand img {
    height: 64px;
    width: auto;
}
.footer__desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(250, 248, 245, 0.4);
    line-height: 1.7;
    max-width: 300px;
}
.footer__heading {
    font-family: var(--mono);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--champagne);
    margin-bottom: 1.5rem;
}
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 0.75rem; }
.footer__links a {
    font-size: 0.85rem;
    color: rgba(250, 248, 245, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer__links a:hover { color: var(--champagne); }
.footer__bottom {
    border-top: 1px solid rgba(232, 221, 211, 0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__copy {
    font-size: 0.75rem;
    color: rgba(250, 248, 245, 0.25);
}
.footer__status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--mono);
    font-size: 0.7rem;
    color: rgba(250, 248, 245, 0.3);
}
.footer__dot {
    width: 6px;
    height: 6px;
    background: #4ADE80;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Legacy footer compat */
.site-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
.site-footer__logo { display: block; margin-bottom: 1rem; }
.site-footer__logo img { height: 48px; width: auto; }
.site-footer__desc { font-size: 0.85rem; font-weight: 300; color: rgba(250, 248, 245, 0.4); line-height: 1.7; max-width: 300px; }
.site-footer__social { display: flex; gap: 1rem; margin-top: 1rem; }
.site-footer__social a { color: rgba(250, 248, 245, 0.4); font-size: 0.85rem; }
.site-footer__social a:hover { color: var(--champagne); }
.site-footer__heading { font-family: var(--mono); font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--champagne); margin-bottom: 1.5rem; }
.site-footer__address { font-style: normal; font-size: 0.85rem; color: rgba(250, 248, 245, 0.4); line-height: 1.8; }
.site-footer__address a { color: rgba(250, 248, 245, 0.4); }
.site-footer__address a:hover { color: var(--champagne); }
.site-footer__hours { list-style: none; }
.site-footer__hours li { display: flex; justify-content: space-between; max-width: 250px; padding: 0.2rem 0; font-size: 0.85rem; color: rgba(250, 248, 245, 0.4); }
.site-footer__links { list-style: none; }
.site-footer__links li { margin-bottom: 0.5rem; }
.site-footer__links a { font-size: 0.85rem; color: rgba(250, 248, 245, 0.4); }
.site-footer__links a:hover { color: var(--champagne); }
.site-footer__bottom { border-top: 1px solid rgba(232, 221, 211, 0.08); padding-top: 2rem; text-align: center; font-size: 0.75rem; color: rgba(250, 248, 245, 0.25); }

/* ─── Sticky Mobile CTA ────────────────────────────────────────── */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    background: rgba(13, 13, 18, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(232, 221, 211, 0.15);
    padding: 0.75rem 1rem;
}
.sticky-cta__inner {
    display: flex;
    gap: 0.5rem;
    max-width: var(--container-max);
    margin: 0 auto;
}
.sticky-cta .btn {
    flex: 1;
    padding: 0.75rem;
    font-size: 0.75rem;
    border-radius: 100px;
}

/* ─── Forms ─────────────────────────────────────────────────────── */
.form-section {
    max-width: 700px;
    margin: 0 auto;
}
.form-group {
    margin-bottom: var(--space-md);
}
.form-group label {
    display: block;
    font-family: var(--mono);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(250, 248, 245, 0.5);
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--sans);
    font-size: 0.95rem;
    color: var(--ivory);
    background: rgba(250, 248, 245, 0.05);
    border: 1px solid rgba(232, 221, 211, 0.15);
    border-radius: 1rem;
    transition: border-color var(--transition);
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--champagne);
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C9A84C'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1.2rem;
    padding-right: 2.5rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

/* ─── "What to Expect" list ─────────────────────────────────────── */
.expect-list {
    list-style: none;
    padding: 0;
}
.expect-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: rgba(250, 248, 245, 0.6);
    border-bottom: 1px solid rgba(232, 221, 211, 0.08);
}
.expect-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.1rem;
    width: 6px;
    height: 6px;
    background: var(--champagne);
    border-radius: 50%;
}

/* ─── Thank You Page ────────────────────────────────────────────── */
.thank-you {
    text-align: center;
    padding: 8rem 0 4rem;
    max-width: 600px;
    margin: 0 auto;
}
.thank-you__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(232, 221, 211, 0.15);
    color: var(--champagne);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
}
.thank-you h1 {
    font-family: var(--serif);
    margin-bottom: var(--space-md);
}
.thank-you p {
    color: rgba(250, 248, 245, 0.6);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
}

/* ─── Error Page ────────────────────────────────────────────────── */
.error-page {
    text-align: center;
    padding: 8rem 0 4rem;
}
.error-page__code {
    font-family: var(--serif);
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 700;
    color: rgba(232, 221, 211, 0.15);
    line-height: 1;
    margin-bottom: var(--space-md);
}
.error-page h1 {
    margin-bottom: var(--space-sm);
}
.error-page__links {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-xl);
}

/* ─── Contact Page ──────────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: start;
}
.contact-info__item {
    margin-bottom: var(--space-lg);
}
.contact-info__label {
    font-family: var(--mono);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--champagne);
    margin-bottom: 0.75rem;
}
.contact-info__item p {
    color: rgba(250, 248, 245, 0.6);
    line-height: 1.8;
}
.contact-info__item a { color: rgba(250, 248, 245, 0.6); }
.contact-info__item a:hover { color: var(--champagne); }

.contact-map {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 2rem;
    filter: grayscale(1) invert(0.92) contrast(0.85);
}

/* ─── Page Content (About, Alterations) ─────────────────────────── */
.page-content {
    padding-top: var(--space-lg);
}
.page-content h2 {
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    margin: var(--space-xl) 0 var(--space-md);
    color: var(--ivory);
}
.page-content h2:first-child { margin-top: 0; }
.page-content p {
    color: rgba(250, 248, 245, 0.6);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}
.page-content ul {
    list-style: none;
    margin-bottom: var(--space-md);
}
.page-content ul li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: rgba(250, 248, 245, 0.6);
    border-bottom: 1px solid rgba(232, 221, 211, 0.08);
}
.page-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.9rem;
    width: 6px;
    height: 6px;
    background: var(--champagne);
    border-radius: 50%;
}

/* ─── Animations ────────────────────────────────────────────────── */
@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .dress-grid--4 { grid-template-columns: repeat(3, 1fr); }
    .features__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .navbar__links { display: none; }
    .navbar__toggle { display: flex; }
    .navbar.menu-open .navbar__links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13, 13, 18, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 1.5rem;
        border-radius: 1rem;
        margin-top: 0.5rem;
        border: 1px solid rgba(232, 221, 211, 0.15);
    }
    .hero__content { padding: 0 2rem 4rem; }
    .hero__title-line2 { font-size: clamp(3rem, 15vw, 5rem); }
    .features__grid { grid-template-columns: 1fr; }
    .experience__grid,
    .experience-grid { grid-template-columns: 1fr; }
    .single-dress__layout { grid-template-columns: 1fr; }
    .testimonials__grid,
    .testimonial-grid { grid-template-columns: 1fr; }
    .footer__grid,
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .trust__inner { gap: 2rem; }
    .dress-grid--4 { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .page-header { padding: 6rem 0 var(--space-lg); }
    .breadcrumb { padding: 5rem 0 var(--space-md); }
    .sticky-cta { display: block; }
    .cta-section { padding: 6rem 0; }
    .philosophy { padding: 6rem 0; }
    .section { padding: var(--space-xl) 0; }
    .testimonials,
    .section--testimonials { margin: 0; border-radius: 0; }
}

@media (max-width: 480px) {
    .footer__grid,
    .site-footer__grid { grid-template-columns: 1fr; }
    .dress-grid--4 { grid-template-columns: 1fr; }
    .trust__inner { flex-direction: column; gap: 1.5rem; }
    .trust__divider { width: 50px; height: 1px; }
}

/* ─── Language Switcher ─────────────────────────────────────────── */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    margin-right: 0.75rem;
}

.lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--mono);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(250, 248, 245, 0.35);
    padding: 0.25rem 0.3rem;
    transition: color var(--transition);
    line-height: 1;
}

.lang-btn:hover {
    color: rgba(250, 248, 245, 0.75);
}

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

/* Subtle separator between buttons */
.lang-btn + .lang-btn {
    border-left: 1px solid rgba(250, 248, 245, 0.12);
    padding-left: 0.35rem;
}

@media (max-width: 768px) {
    .lang-switcher {
        margin-right: 0.5rem;
    }
    .lang-btn {
        font-size: 0.6rem;
        padding: 0.2rem 0.25rem;
    }
}
