/**
 * Luxe Pro — Homepage Layouts Stylesheet
 * Interaction primitives + distinct design for each of the 11 layouts.
 */

/* ═══════════════════════════════════════════════════════════
   SHARED INTERACTION PRIMITIVES
   ═══════════════════════════════════════════════════════════ */
[data-parallax] { will-change: transform; }

.luxe-char {
    display: inline-block;
    opacity: 0;
    transform: translateY(0.5em) rotate(4deg);
    transition: opacity 0.5s var(--anim-ease), transform 0.5s var(--anim-ease);
}
[data-reveal-chars].is-revealed .luxe-char { opacity: 1; transform: none; }

/* Marquee */
.luxe-marquee { overflow: hidden; width: 100%; }
.luxe-marquee-track { display: inline-flex; gap: 3rem; white-space: nowrap; }
.luxe-marquee-running { animation: luxe-marquee-scroll 28s linear infinite; }
@keyframes luxe-marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.luxe-marquee-item {
    font-family: var(--serif); font-style: italic; font-size: clamp(1.6rem, 4vw, 3rem);
    color: var(--white); display: inline-flex; align-items: center; gap: 3rem;
}
.luxe-marquee-item::after { content: "✦"; color: var(--gold); font-size: 0.6em; font-style: normal; }

/* Cursor-follow image */
.luxe-cursor-row { position: relative; }
.luxe-cursor-img {
    position: absolute; width: 280px; height: 340px; object-fit: cover;
    transform: translate(-50%, -50%); pointer-events: none; opacity: 0;
    transition: opacity 0.3s ease; z-index: 5; border: 1px solid rgba(201,169,110,0.3);
}

/* Shared layout section rhythm */
.luxe-l { padding-top: calc(var(--header-height, 80px)); }
.luxe-l section { position: relative; }
.luxe-l .eyebrow { display: inline-block; }
.luxe-l .l-title { font-family: var(--serif); font-weight: 300; line-height: 1.05; letter-spacing: -0.02em; }
.luxe-l .l-title em { font-style: italic; color: var(--gold); }
.luxe-l .l-lead { color: var(--white-dim); line-height: 1.85; }

/* Generic interactive service card used by several layouts */
.l-svc {
    position: relative; overflow: hidden; display: block; color: var(--white);
    background: var(--black-3); border: 1px solid rgba(201,169,110,0.1);
    transition: border-color var(--transition), transform var(--transition);
}
.l-svc:hover { border-color: rgba(201,169,110,0.45); }
.l-svc-img { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.55); transition: transform 0.7s var(--anim-ease), filter var(--transition); }
.l-svc:hover .l-svc-img { transform: scale(1.08); filter: brightness(0.72); }
.l-svc::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.95), rgba(10,10,10,0.35) 60%, transparent); z-index: 1; }
.l-svc-body { position: relative; z-index: 2; padding: 1.75rem; }
.l-svc-num { font-size: 0.65rem; letter-spacing: 0.25em; color: var(--gold); margin-bottom: 0.4rem; }
.l-svc-name { font-family: var(--serif); font-size: 1.35rem; margin-bottom: 0.3rem; }
.l-svc-desc { font-size: 0.8rem; color: var(--white-dim); line-height: 1.5; max-height: 0; opacity: 0; overflow: hidden; transition: all 0.4s var(--anim-ease); }
.l-svc:hover .l-svc-desc { max-height: 80px; opacity: 1; margin-top: 0.5rem; }
.l-svc-arrow { position: absolute; top: 1.5rem; right: 1.5rem; z-index: 2; color: var(--gold); opacity: 0; transform: translateX(-8px); transition: all var(--transition); }
.l-svc:hover .l-svc-arrow { opacity: 1; transform: translateX(0); }

/* Stat block shared */
.l-stat-num { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4rem); color: var(--gold); line-height: 1; }
.l-stat-label { font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--white-dim); margin-top: 0.5rem; }

/* Testimonial shared */
.l-quote { font-family: var(--serif); font-style: italic; font-size: 1.1rem; line-height: 1.7; color: var(--white); }
.l-quote-stars { color: var(--gold); letter-spacing: 0.2em; font-size: 0.7rem; margin-bottom: 1rem; }
.l-quote-author { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-top: 1.25rem; }

/* Buttons reused */
.luxe-l .btn { display: inline-block; padding: var(--btn-padding); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; border-radius: var(--btn-radius); border: 1px solid transparent; transition: all var(--transition); position: relative; overflow: hidden; }
.luxe-l .btn-primary { background: var(--gold); color: var(--black); }
.luxe-l .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(201,169,110,0.3); }
.luxe-l .btn-ghost { background: transparent; color: var(--white); border-color: rgba(201,169,110,0.4); }
.luxe-l .btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,0.06); }

/* ═══════════════════════════════════════════════════════════
   01 · EDITORIAL — split hero, oversized index-style service list
   ═══════════════════════════════════════════════════════════ */
.l-editorial .l-hero { display: grid; grid-template-columns: 1.05fr 1fr; min-height: 100vh; align-items: center; }
.l-editorial .l-hero-copy { padding: 6rem 4rem 6rem 8vw; }
.l-editorial .l-hero-title { font-size: clamp(3rem, 6vw, 6rem); }
.l-editorial .l-hero-media { position: relative; height: 100vh; overflow: hidden; }
.l-editorial .l-hero-media .l-bg { position: absolute; inset: -12% 0; background-size: cover; background-position: center; }
.l-editorial .l-index { border-top: 1px solid rgba(201,169,110,0.15); }
.l-editorial .l-index-row { display: grid; grid-template-columns: 5rem 1fr auto; gap: 2rem; align-items: center; padding: 1.6rem 8vw; border-bottom: 1px solid rgba(201,169,110,0.12); transition: background var(--transition), padding var(--transition); color: var(--white); }
.l-editorial .l-index-row:hover { background: rgba(201,169,110,0.05); padding-left: 9vw; }
.l-editorial .l-index-num { font-family: var(--serif); color: var(--gold); font-size: 1.1rem; }
.l-editorial .l-index-name { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2.4rem); }
.l-editorial .l-index-arrow { color: var(--gold); opacity: 0; transition: all var(--transition); }
.l-editorial .l-index-row:hover .l-index-arrow { opacity: 1; }
@media (max-width: 860px){ .l-editorial .l-hero { grid-template-columns: 1fr; } .l-editorial .l-hero-media { height: 60vh; } .l-editorial .l-hero-copy { padding: 7rem 1.5rem 3rem; } .l-editorial .l-index-row { grid-template-columns: 3rem 1fr; padding: 1.2rem 1.5rem; } .l-editorial .l-index-arrow { display:none; } }

/* ═══════════════════════════════════════════════════════════
   02 · MAGAZINE — asymmetric editorial grid, big numerals
   ═══════════════════════════════════════════════════════════ */
.l-magazine .l-hero { padding: 8rem 6vw 4rem; }
.l-magazine .l-hero-title { font-size: clamp(3rem, 9vw, 9rem); line-height: 0.95; }
.l-magazine .l-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 1.25rem; padding: 2rem 6vw 6rem; }
.l-magazine .l-svc:nth-child(1) { grid-column: span 7; aspect-ratio: 16/10; }
.l-magazine .l-svc:nth-child(2) { grid-column: span 5; aspect-ratio: 4/5; }
.l-magazine .l-svc:nth-child(3) { grid-column: span 4; aspect-ratio: 1/1; }
.l-magazine .l-svc:nth-child(4) { grid-column: span 4; aspect-ratio: 1/1; }
.l-magazine .l-svc:nth-child(5) { grid-column: span 4; aspect-ratio: 1/1; }
.l-magazine .l-svc:nth-child(6) { grid-column: span 12; aspect-ratio: 21/6; }
@media (max-width: 860px){ .l-magazine .l-svc { grid-column: span 12 !important; aspect-ratio: 4/3 !important; } }

/* ═══════════════════════════════════════════════════════════
   03 · MINIMAL — vast whitespace, tiny type, single column
   ═══════════════════════════════════════════════════════════ */
.l-minimal { text-align: center; }
.l-minimal .l-hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 6rem 1.5rem; }
.l-minimal .l-hero-title { font-size: clamp(2.5rem, 6vw, 5.5rem); max-width: 18ch; }
.l-minimal .l-rule { width: 1px; height: 80px; background: linear-gradient(var(--gold), transparent); margin: 2.5rem auto; }
.l-minimal .l-svc-list { max-width: 640px; margin: 0 auto; padding: 4rem 1.5rem 8rem; }
.l-minimal .l-svc-line { display: flex; justify-content: space-between; align-items: baseline; padding: 1.4rem 0; border-bottom: 1px solid rgba(201,169,110,0.12); color: var(--white); transition: color var(--transition); }
.l-minimal .l-svc-line:hover { color: var(--gold); }
.l-minimal .l-svc-line .n { font-family: var(--serif); font-size: 1.3rem; }
.l-minimal .l-svc-line .p { font-size: 0.7rem; letter-spacing: 0.18em; color: var(--white-dim); }

/* ═══════════════════════════════════════════════════════════
   04 · SPLIT SCREEN — sticky left, scrolling right
   ═══════════════════════════════════════════════════════════ */
.l-split .l-cols { display: grid; grid-template-columns: 1fr 1fr; }
.l-split .l-left { position: sticky; top: 0; height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 4rem 4rem 4rem 8vw; }
.l-split .l-left-media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.l-split .l-left-media .l-bg { position: absolute; inset: -10%; background-size: cover; background-position: center; filter: brightness(0.4); }
.l-split .l-hero-title { font-size: clamp(2.5rem, 4.5vw, 4.5rem); }
.l-split .l-right { padding: 6rem 8vw 6rem 4rem; display: flex; flex-direction: column; gap: 1.25rem; }
@media (max-width: 860px){ .l-split .l-cols { grid-template-columns: 1fr; } .l-split .l-left { position: relative; height: 80vh; padding: 7rem 1.5rem 3rem; } .l-split .l-right { padding: 3rem 1.5rem; } }

/* ═══════════════════════════════════════════════════════════
   05 · MOSAIC — bento grid
   ═══════════════════════════════════════════════════════════ */
.l-mosaic .l-hero { text-align: center; padding: 8rem 1.5rem 3rem; }
.l-mosaic .l-hero-title { font-size: clamp(3rem, 7vw, 7rem); }
.l-mosaic .l-bento { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; gap: 1rem; padding: 2rem 4vw 6rem; }
.l-mosaic .l-svc:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.l-mosaic .l-svc:nth-child(6) { grid-column: span 2; }
.l-mosaic .l-bento .l-cta-tile { grid-column: span 2; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: linear-gradient(135deg, var(--black-3), rgba(201,169,110,0.08)); border: 1px solid rgba(201,169,110,0.2); padding: 2rem; }
@media (max-width: 860px){ .l-mosaic .l-bento { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; } .l-mosaic .l-svc, .l-mosaic .l-cta-tile { grid-column: span 1 !important; grid-row: span 1 !important; } }

/* ═══════════════════════════════════════════════════════════
   06 · PARALLAX — full-bleed parallax bands
   ═══════════════════════════════════════════════════════════ */
.l-parallax .l-band { position: relative; min-height: 90vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.l-parallax .l-band-bg { position: absolute; inset: -20% 0; background-size: cover; background-position: center; z-index: 0; }
.l-parallax .l-band::after { content: ""; position: absolute; inset: 0; background: rgba(10,10,10,0.62); z-index: 1; }
.l-parallax .l-band-inner { position: relative; z-index: 2; max-width: 720px; padding: 4rem 1.5rem; }
.l-parallax .l-hero-title { font-size: clamp(3rem, 7vw, 7rem); }
.l-parallax .l-svc-strip { padding: 6rem 4vw; }

/* ═══════════════════════════════════════════════════════════
   07 · CENTERED — boutique, everything centered, ring motif
   ═══════════════════════════════════════════════════════════ */
.l-centered { text-align: center; }
.l-centered .l-hero { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 6rem 1.5rem; position: relative; }
.l-centered .l-ring { position: absolute; width: 520px; height: 520px; border: 1px solid rgba(201,169,110,0.18); border-radius: 50%; animation: luxe-spin-slow 40s linear infinite; }
.l-centered .l-ring::before { content: ""; position: absolute; top: -4px; left: 50%; width: 7px; height: 7px; background: var(--gold); border-radius: 50%; }
.l-centered .l-hero-title { font-size: clamp(2.5rem, 6vw, 5.5rem); position: relative; }
.l-centered .l-svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; padding: 4rem 6vw 6rem; }
@media (max-width: 860px){ .l-centered .l-svc-grid { grid-template-columns: 1fr; } .l-centered .l-ring { width: 320px; height: 320px; } }

/* ═══════════════════════════════════════════════════════════
   08 · GALLERY — leads with full-bleed marquee gallery
   ═══════════════════════════════════════════════════════════ */
.l-gallery .l-hero { text-align: center; padding: 8rem 1.5rem 2rem; }
.l-gallery .l-hero-title { font-size: clamp(2.5rem, 6vw, 6rem); }
.l-gallery .l-gallery-row { display: flex; gap: 1rem; padding: 2rem 0; overflow: hidden; }
.l-gallery .l-gallery-track { display: inline-flex; gap: 1rem; }
.l-gallery .l-gallery-track img, .l-gallery .l-gallery-cell { width: 320px; height: 420px; object-fit: cover; flex-shrink: 0; background-size: cover; background-position: center; border: 1px solid rgba(201,169,110,0.12); }
.l-gallery .l-copy { text-align: center; max-width: 640px; margin: 0 auto; padding: 4rem 1.5rem 6rem; }

/* ═══════════════════════════════════════════════════════════
   09 · STORYTELLING — long-scroll narrative + cursor image
   ═══════════════════════════════════════════════════════════ */
.l-story .l-hero { min-height: 100vh; display: flex; align-items: center; padding: 6rem 8vw; }
.l-story .l-hero-title { font-size: clamp(3rem, 7vw, 7rem); max-width: 14ch; }
.l-story .l-chapter { max-width: 760px; margin: 0 auto; padding: 6rem 1.5rem; border-bottom: 1px solid rgba(201,169,110,0.1); }
.l-story .l-chapter-num { font-size: 0.7rem; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; margin-bottom: 1.5rem; }
.l-story .l-chapter h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1.5rem; }
.l-story .l-svc-links { max-width: 760px; margin: 0 auto; padding: 4rem 1.5rem; }
.l-story .l-svc-link { display: block; font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.4rem); color: var(--white); padding: 1rem 0; border-bottom: 1px solid rgba(201,169,110,0.1); transition: color var(--transition), padding-left var(--transition); }
.l-story .l-svc-link:hover { color: var(--gold); padding-left: 1.5rem; }

/* ═══════════════════════════════════════════════════════════
   10 · CLASSIC SPA — warmer, framed, symmetrical
   ═══════════════════════════════════════════════════════════ */
.l-classic { background: #100d09; }
.l-classic .l-hero { text-align: center; padding: 9rem 1.5rem 5rem; position: relative; }
.l-classic .l-hero::after { content: ""; display: block; width: 90px; height: 1px; background: var(--gold); margin: 2.5rem auto 0; }
.l-classic .l-hero-title { font-size: clamp(2.8rem, 6vw, 6rem); }
.l-classic .l-frame { border: 1px solid rgba(201,169,110,0.25); margin: 2rem 6vw 6rem; padding: 4rem 3rem; }
.l-classic .l-svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.5rem; }
.l-classic .l-svc-warm { text-align: center; }
.l-classic .l-svc-warm .ic { width: 56px; height: 56px; border: 1px solid var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; color: var(--gold); }
.l-classic .l-svc-warm h3 { font-family: var(--serif); font-size: 1.4rem; margin-bottom: 0.5rem; }
.l-classic .l-svc-warm p { font-size: 0.82rem; color: var(--white-dim); line-height: 1.7; }
@media (max-width: 860px){ .l-classic .l-svc-grid { grid-template-columns: 1fr; } .l-classic .l-frame { margin: 2rem 1.5rem 4rem; padding: 2.5rem 1.5rem; } }

/* ═══════════════════════════════════════════════════════════
   11 · CONVERSION — CTA + stats above fold, social proof bar
   ═══════════════════════════════════════════════════════════ */
.l-conversion .l-hero { min-height: 92vh; display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; padding: 6rem 6vw 3rem; gap: 4rem; }
.l-conversion .l-hero-title { font-size: clamp(2.8rem, 5.5vw, 5.5rem); }
.l-conversion .l-cta-card { background: var(--black-2); border: 1px solid rgba(201,169,110,0.25); padding: 2.5rem; }
.l-conversion .l-cta-card h3 { font-family: var(--serif); font-size: 1.8rem; margin-bottom: 0.5rem; }
.l-conversion .l-proof-bar { display: flex; flex-wrap: wrap; justify-content: center; gap: 3rem; padding: 2.5rem 1.5rem; background: var(--black-2); border-top: 1px solid rgba(201,169,110,0.12); border-bottom: 1px solid rgba(201,169,110,0.12); }
.l-conversion .l-stat { text-align: center; }
.l-conversion .l-svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; padding: 5rem 6vw; }
@media (max-width: 860px){ .l-conversion .l-hero { grid-template-columns: 1fr; padding: 7rem 1.5rem 2rem; } .l-conversion .l-svc-grid { grid-template-columns: 1fr; } }
