/* ============================================================
   FLEUR DE LUX – Luxury Sub-site Stylesheet
   Design: Ultra-premium, dark with warm gold — cinema elegance
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --fdl-bg:        #080808;
  --fdl-bg-2:      #111111;
  --fdl-bg-3:      #1a1a1a;
  --fdl-gold:      #c9a84c;
  --fdl-gold-dim:  #9a7836;
  --fdl-gold-glow: rgba(201, 168, 76, 0.12);
  --fdl-gold-border: rgba(201, 168, 76, 0.3);
  --fdl-text:      #f0ece4;
  --fdl-muted:     #857c70;
  --fdl-border:    rgba(255,255,255,0.07);
  --nav-h:         80px;
  --fdl-radius:    4px;
  --fdl-transition: 0.4s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--fdl-bg);
  color: var(--fdl-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

/* ── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(3rem, 6.5vw, 6rem); font-weight: 300; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h4 { font-size: 1.4rem; }
p  { color: var(--fdl-muted); line-height: 1.9; max-width: 65ch; font-size: 0.95rem; }

.fdl-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fdl-gold);
  display: block;
  margin-bottom: 16px;
}
.fdl-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--fdl-text);
  line-height: 1.6;
  max-width: 60ch;
}

/* ── Layout ────────────────────────────────────────────────── */
.fdl-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.fdl-container--wide { max-width: 1400px; }
.fdl-section { padding: 120px 0; }
.fdl-section--sm { padding: 80px 0; }
.fdl-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.fdl-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }
.fdl-section-header { margin-bottom: 72px; }
.fdl-section-header.text-center p { margin: 16px auto 0; }

/* ── Navigation ────────────────────────────────────────────── */
.fdl-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.5s, border-bottom 0.5s;
}
.fdl-nav.scrolled {
  background: rgba(8,8,8,0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--fdl-border);
}
.fdl-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.fdl-nav__logo img {
  height: 48px;
  width: auto;
}
.fdl-nav__menu {
  display: flex;
  align-items: center;
  gap: 0;
}
.fdl-nav__link {
  padding: 8px 20px;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(240,236,228,0.55);
  transition: color 0.3s;
  cursor: pointer;
}
.fdl-nav__link:hover, .fdl-nav__link.active { color: var(--fdl-text); }
.fdl-nav__divider {
  width: 1px;
  height: 14px;
  background: var(--fdl-border);
  margin: 0 8px;
}
.fdl-nav__back {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fdl-muted);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}
.fdl-nav__back:hover { color: var(--fdl-gold); }
.fdl-nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.fdl-nav__burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--fdl-text);
  transition: var(--fdl-transition);
}

/* ── Hero ──────────────────────────────────────────────────── */
.fdl-hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.fdl-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.fdl-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(8,8,8,0.95) 0%,
    rgba(8,8,8,0.65) 55%,
    rgba(8,8,8,0.2) 100%
  );
}
.fdl-hero__content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-h);
}
.fdl-hero h1 { color: var(--fdl-text); margin-bottom: 24px; }
.fdl-hero h1 em { font-style: italic; color: var(--fdl-gold); }
.fdl-hero .fdl-lead { margin-bottom: 48px; }
.fdl-hero__line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--fdl-gold);
  margin-bottom: 32px;
}

/* Centered hero variant */
.fdl-hero--center {
  text-align: center;
}
.fdl-hero--center .fdl-hero__bg::after {
  background: linear-gradient(to bottom, rgba(8,8,8,0.7) 0%, rgba(8,8,8,0.5) 40%, rgba(8,8,8,0.85) 100%);
}
.fdl-hero--center .fdl-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.fdl-hero--center .fdl-lead { text-align: center; margin: 0 auto 48px; }

/* ── Page hero (sub-pages) ─────────────────────────────────── */
.fdl-page-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.fdl-page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.fdl-page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,1) 0%, rgba(8,8,8,0.4) 60%, rgba(8,8,8,0.1) 100%);
}
.fdl-page-hero__content {
  position: relative;
  z-index: 2;
  padding-bottom: 72px;
  padding-top: var(--nav-h);
}
.fdl-page-hero h1 { color: var(--fdl-text); }

/* ── Buttons ───────────────────────────────────────────────── */
.fdl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--fdl-transition);
  border-radius: 0;
}
.fdl-btn-outline {
  border: 1px solid var(--fdl-gold-border);
  color: var(--fdl-gold);
}
.fdl-btn-outline:hover {
  background: var(--fdl-gold-glow);
  border-color: var(--fdl-gold);
}
.fdl-btn-solid {
  background: var(--fdl-gold);
  color: #0a0a0a;
}
.fdl-btn-solid:hover {
  background: #d9b85c;
}
.fdl-btn-ghost {
  color: var(--fdl-muted);
  border: 1px solid var(--fdl-border);
}
.fdl-btn-ghost:hover {
  color: var(--fdl-text);
  border-color: rgba(255,255,255,0.2);
}

/* ── Gold Rule ─────────────────────────────────────────────── */
.fdl-rule {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px 0;
}
.fdl-rule::before, .fdl-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--fdl-gold-border));
}
.fdl-rule::before { background: linear-gradient(to left, transparent, var(--fdl-gold-border)); }
.fdl-rule span {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fdl-gold);
}

/* ── Product Card ──────────────────────────────────────────── */
.fdl-product-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.fdl-product-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}
.fdl-product-card:hover .fdl-product-card__img { transform: scale(1.06); }
.fdl-product-card__overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.96) 0%, rgba(8,8,8,0.5) 60%, transparent 100%);
  padding: 48px 32px 32px;
  transition: var(--fdl-transition);
}
.fdl-product-card__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fdl-gold);
  margin-bottom: 8px;
}
.fdl-product-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--fdl-text);
  margin-bottom: 12px;
}
.fdl-product-card__desc {
  font-size: 0.875rem;
  color: rgba(240,236,228,0.65);
  max-width: none;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.35s, transform 0.35s;
}
.fdl-product-card:hover .fdl-product-card__desc {
  opacity: 1;
  transform: translateY(0);
}
.fdl-product-card__link {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fdl-gold);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── Feature Block ─────────────────────────────────────────── */
.fdl-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 560px;
}
.fdl-feature--reverse .fdl-feature__img { order: 2; }
.fdl-feature--reverse .fdl-feature__content { order: 1; }
.fdl-feature__img {
  overflow: hidden;
}
.fdl-feature__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 500px;
  transition: transform 0.8s ease;
}
.fdl-feature:hover .fdl-feature__img img { transform: scale(1.04); }
.fdl-feature__content {
  background: var(--fdl-bg-2);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.fdl-feature__content h2 { margin-bottom: 16px; color: var(--fdl-text); }
.fdl-feature__content p { margin-bottom: 24px; }
.fdl-feature__content h3 { margin-bottom: 12px; color: var(--fdl-text); }

/* ── Gallery ───────────────────────────────────────────────── */
.fdl-gallery {
  display: grid;
  gap: 4px;
}
.fdl-gallery--3col { grid-template-columns: repeat(3, 1fr); }
.fdl-gallery--masonry {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
}
.fdl-gallery__item {
  overflow: hidden;
  cursor: pointer;
}
.fdl-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}
.fdl-gallery__item:hover img { transform: scale(1.05); }
.fdl-gallery__item--tall { aspect-ratio: 3/4; }
.fdl-gallery__item--wide { aspect-ratio: 16/9; grid-column: span 2; }
.fdl-gallery__item--square { aspect-ratio: 1/1; }

/* ── Specs ─────────────────────────────────────────────────── */
.fdl-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--fdl-border);
}
.fdl-spec-item {
  background: var(--fdl-bg-2);
  padding: 24px 28px;
}
.fdl-spec-item__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fdl-gold);
  margin-bottom: 8px;
}
.fdl-spec-item__value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--fdl-text);
}

/* ── Quote ─────────────────────────────────────────────────── */
.fdl-quote {
  text-align: center;
  padding: 80px 40px;
  position: relative;
}
.fdl-quote__mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 8rem;
  color: var(--fdl-gold);
  opacity: 0.15;
  line-height: 0.5;
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
}
.fdl-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--fdl-text);
  line-height: 1.5;
  position: relative;
  max-width: 700px;
  margin: 0 auto 24px;
}
.fdl-quote cite {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fdl-gold);
  font-style: normal;
}

/* ── Download ──────────────────────────────────────────────── */
.fdl-download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border: 1px solid var(--fdl-gold-border);
  color: var(--fdl-text);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  transition: var(--fdl-transition);
}
.fdl-download:hover {
  background: var(--fdl-gold-glow);
  border-color: var(--fdl-gold);
  color: var(--fdl-gold);
}
.fdl-download svg { width: 16px; height: 16px; }

/* ── Footer ────────────────────────────────────────────────── */
.fdl-footer {
  background: var(--fdl-bg-2);
  border-top: 1px solid var(--fdl-border);
  padding: 80px 0 40px;
}
.fdl-footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
.fdl-footer__brand .fdl-logo { height: 52px; margin-bottom: 20px; }
.fdl-footer__brand p { font-size: 0.875rem; color: var(--fdl-muted); max-width: 28ch; }
.fdl-footer__col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--fdl-gold);
  margin-bottom: 20px;
}
.fdl-footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.fdl-footer__col a {
  font-size: 0.875rem;
  color: var(--fdl-muted);
  transition: color 0.3s;
}
.fdl-footer__col a:hover { color: var(--fdl-text); }
.fdl-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid var(--fdl-border);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  color: var(--fdl-muted);
}
.fdl-footer__back-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--fdl-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.fdl-footer__back-link:hover { color: var(--fdl-gold); }

/* ── Animations ────────────────────────────────────────────── */
.fdl-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fdl-reveal.visible { opacity: 1; transform: translateY(0); }
.fdl-reveal-delay-1 { transition-delay: 0.15s; }
.fdl-reveal-delay-2 { transition-delay: 0.3s; }
.fdl-reveal-delay-3 { transition-delay: 0.45s; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .fdl-container { padding: 0 28px; }
  .fdl-feature__content { padding: 60px 48px; }
  .fdl-footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .fdl-section { padding: 80px 0; }
  .fdl-grid-2, .fdl-grid-3 { grid-template-columns: 1fr; }
  .fdl-feature { grid-template-columns: 1fr; }
  .fdl-feature--reverse .fdl-feature__img,
  .fdl-feature--reverse .fdl-feature__content { order: unset; }
  .fdl-feature__content { padding: 48px 28px; }
  .fdl-feature__img img { min-height: 350px; }
  .fdl-gallery--3col { grid-template-columns: repeat(2, 1fr); }
  .fdl-gallery__item--wide { grid-column: span 1; aspect-ratio: 4/3; }
  .fdl-spec-grid { grid-template-columns: 1fr; }
  .fdl-footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .fdl-footer__bottom { flex-direction: column; gap: 16px; text-align: center; }
  .fdl-nav__menu { display: none; }
  .fdl-nav__burger { display: flex; }
  .fdl-hero { height: auto; min-height: 100vh; }
  .fdl-page-hero { height: auto; min-height: 60vh; }
}
@media (max-width: 480px) {
  .fdl-container { padding: 0 20px; }
  .fdl-gallery--3col { grid-template-columns: 1fr; }
  .fdl-product-card__desc { opacity: 1; transform: translateY(0); }
}
