/* ============================================
   CHIC CLEANING — LANDING PAGE
   Palette:
     burgundy   #7a1f2b
     deep-red   #5a141d
     cream      #f8f1e7
     warm-white #fffbf6
     gold       #c9a66b
     ink        #2b2120
   ============================================ */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Pastel purple + pastel white palette
     (variable names kept the same so existing rules keep working) */
  --burgundy:   #7e63b3;   /* primary pastel purple */
  --deep-red:   #5d4493;   /* deeper purple for hovers / dark surfaces */
  --cream:      #f1e9f9;   /* pastel-white lavender tint */
  --warm-white: #faf6ff;   /* page background */
  --gold:       #b89cdb;   /* soft lavender accent */
  --gold-soft:  #ddccef;   /* lightest lavender accent */
  --ink:        #3a2f50;   /* deep purple-charcoal text */
  --muted:      #7d7390;
  --shadow-sm: 0 4px 14px rgba(58, 47, 80, 0.08);
  --shadow-md: 0 18px 40px rgba(58, 47, 80, 0.12);
  --shadow-lg: 0 30px 70px rgba(93, 68, 147, 0.22);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--warm-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Lock scroll while intro plays */
body.intro-locked {
  overflow: hidden;
  height: 100vh;
}

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

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
  color: var(--ink);
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 1rem;
}

.eyebrow.light {
  color: var(--gold-soft);
}

/* ============================================
   DOOR-OPENING INTRO  (full-screen, simple)
   ============================================ */
.door-intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  perspective: 2400px;
  perspective-origin: 50% 55%;
  overflow: hidden;
  background: #110a1c;
}

.door-intro.gone {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease 0.4s;
}

.door-intro.removed { display: none; }

/* Warm interior light revealed as the doors part */
.doorway {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 55%, rgba(238, 220, 250, 0.5) 0%, transparent 70%),
    linear-gradient(180deg, #2b1f44 0%, #16102a 100%);
  opacity: 0;
  transition: opacity 1.6s ease 0.4s;
}

.door-intro.opening .doorway { opacity: 1; }

/* Liliana stands centered behind the doors */
.lilly-behind {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
  /* parent stays fully opaque — the doors are what's hiding it */
}

.lilly-behind img {
  /* fixed-ish width, height follows naturally — aspect ratio always preserved */
  width: clamp(204px, 30vw, 357px);
  height: auto;
  display: block;
  filter:
    drop-shadow(0 -20px 60px rgba(238, 220, 250, 0.28))
    drop-shadow(0 30px 50px rgba(0, 0, 0, 0.7));
}

@media (max-width: 540px) {
  .lilly-behind img { width: clamp(153px, 48vw, 238px); }

  .welcome-bubble        { margin-bottom: 14px; padding: 8px 16px; }
  .welcome-bubble span   { font-size: 1.55rem; }
  .welcome-bubble small  { font-size: 0.6rem; letter-spacing: 0.24em; margin-top: 6px; }
}

/* Welcome label — sits just above Liliana's head.
   Absolutely positioned + translateX(-50%) for rock-solid horizontal
   centering. Hidden initially with display:none, swapped by JS. */
.welcome-bubble {
  display: none;
  position: absolute;
  bottom: calc(100% + clamp(12px, 2vh, 24px));
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  text-align: center;
  color: #fff;
  padding: 14px 28px;
  border-radius: 999px;
  background: #16102a;
  border: 2px solid var(--gold-soft);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.6), 0 0 32px rgba(221, 204, 239, 0.3);
  pointer-events: none;
  z-index: 4;
  white-space: nowrap;
}

.welcome-bubble.is-on {
  display: block;
}

.welcome-bubble span {
  display: block;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--gold-soft);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  white-space: nowrap;
}

.welcome-bubble small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.6rem, 1.2vw, 0.72rem);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  margin-top: 8px;
  color: rgba(248, 241, 231, 0.85);
  white-space: nowrap;
}

/* The doors themselves — full-screen halves */
.door {
  position: absolute;
  top: 0;
  width: 50vw;
  height: 100vh;
  transition: transform 2.2s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  z-index: 2;
}

.door-left  { left: 0;  transform-origin: left center;  }
.door-right { right: 0; transform-origin: right center; }

.door-frame {
  position: absolute;
  inset: 0;
  background:
    /* subtle vertical grain */
    repeating-linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.02) 0 2px,
      rgba(0, 0, 0, 0.05) 2px 5px),
    linear-gradient(120deg,
      #3a2c5a 0%,
      #5d4593 35%,
      #4a3878 65%,
      #2a1f48 100%);
  display: flex;
  flex-direction: column;
  padding: 8% 10%;
  gap: 6%;
  box-shadow:
    inset 0 0 120px rgba(0, 0, 0, 0.55),
    inset 0 0 0 1px rgba(221, 204, 239, 0.08);
}

.door-left  .door-frame { border-right: 3px solid #160e2c; }
.door-right .door-frame { border-left:  3px solid #160e2c; }

.panel {
  flex: 1;
  border-radius: 4px;
  background:
    linear-gradient(135deg,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.05) 50%,
      rgba(255, 255, 255, 0.04) 100%);
  box-shadow:
    inset 0 0 30px rgba(0, 0, 0, 0.45),
    inset 0 0 0 2px rgba(201, 166, 107, 0.12);
  position: relative;
}

.panel::after {
  content: '';
  position: absolute;
  inset: 10%;
  border: 1px solid rgba(201, 166, 107, 0.15);
  border-radius: 2px;
}

.door-handle {
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--gold-soft), var(--gold) 60%, #8b7140 100%);
  box-shadow:
    0 0 0 3px rgba(0, 0, 0, 0.4),
    0 0 12px rgba(201, 166, 107, 0.5),
    inset 0 -2px 3px rgba(0, 0, 0, 0.4);
  z-index: 3;
}

.door-handle.right { right: 26px; transform: translateY(-50%); }
.door-handle.left  { left: 26px;  transform: translateY(-50%); }

/* The opening animation — slight stagger so they don't move in lockstep */
.door-intro.opening .door-left {
  transform: rotateY(-92deg);
}

.door-intro.opening .door-right {
  transform: rotateY(92deg);
  transition-delay: 0.08s;
}

/* Threshold light — soft floor glow under the door line */
.threshold-light {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0.2);
  width: 80vw;
  height: 30vh;
  background: radial-gradient(ellipse at bottom center, rgba(221, 204, 239, 0.45) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 1.6s ease 0.6s, transform 1.6s ease 0.6s;
  pointer-events: none;
  z-index: 0;
}

.door-intro.opening .threshold-light {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}


/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 2.5rem;
  background: rgba(255, 251, 246, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(122, 31, 43, 0.08);
  transition: padding 0.3s ease;
}

.navbar.scrolled {
  padding: 0.7rem 2.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--burgundy);
  letter-spacing: 0.02em;
}

.logo-mark {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  background: var(--burgundy);
  color: var(--cream);
  border-radius: 50%;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a:not(.btn-pill):hover {
  color: var(--burgundy);
}

.nav-links a:not(.btn-pill)::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--burgundy);
  transition: width 0.3s ease;
}

.nav-links a:not(.btn-pill):hover::after {
  width: 100%;
}

.btn-pill {
  background: var(--burgundy);
  color: var(--cream) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-pill:hover {
  background: var(--deep-red);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--burgundy);
  cursor: pointer;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  padding: 9rem 2.5rem 4rem;
  background:
    radial-gradient(ellipse at top right, rgba(201, 166, 107, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(122, 31, 43, 0.08) 0%, transparent 55%),
    var(--warm-white);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 5.6vw, 5rem);
  margin: 1rem 0 1.2rem;
  letter-spacing: -0.01em;
}

.hero-copy h1 .line-1 {
  display: block;
  color: var(--burgundy);
}

.hero-copy h1 .line-2 {
  display: block;
  font-style: italic;
  color: var(--ink);
}

.tagline {
  font-size: 1.25rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.btn-primary,
.btn-ghost {
  padding: 1rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.25s ease;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--burgundy);
  color: var(--cream);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--deep-red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: transparent;
  color: var(--burgundy);
  border: 2px solid var(--burgundy);
}

.btn-ghost:hover {
  background: var(--burgundy);
  color: var(--cream);
}

.hero-meta {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(122, 31, 43, 0.15);
}

.hero-meta div {
  display: flex;
  flex-direction: column;
}

.hero-meta strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--burgundy);
  line-height: 1;
}

.hero-meta span {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.04em;
}

/* Hero photo */
.hero-photo {
  position: relative;
  display: flex;
  justify-content: center;
}

.photo-frame {
  position: relative;
  width: min(100%, 420px);
  padding: 28px 28px 0;
  background:
    radial-gradient(ellipse at center, rgba(201, 166, 107, 0.3) 0%, transparent 70%),
    linear-gradient(135deg, var(--burgundy), var(--deep-red));
  border-radius: 50% 50% 12px 12px / 35% 35% 12px 12px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}

.photo-frame::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 2px solid rgba(201, 166, 107, 0.4);
  border-radius: inherit;
  pointer-events: none;
}

.photo-frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.25));
}

.photo-tag {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cream);
  padding: 0.85rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(201, 166, 107, 0.3);
}

.photo-tag strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--burgundy);
}

.photo-tag span {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  animation: bob 2s ease-in-out infinite;
}

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================
   SECTIONS — common
   ============================================ */
.section {
  padding: 7rem 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-head {
  max-width: 720px;
  margin-bottom: 3.5rem;
}

.section-head h2,
.values-card h2,
.contact-card h2 {
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  letter-spacing: -0.01em;
}

/* ============================================
   ABOUT
   ============================================ */
.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  font-size: 1.05rem;
  color: var(--ink);
}

.about-body p.muted {
  color: var(--muted);
  font-style: italic;
}

/* ============================================
   VALUES
   ============================================ */
.values {
  max-width: 100%;
  padding: 0;
}

.values-card {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 4rem;
  background:
    radial-gradient(ellipse at top right, rgba(201, 166, 107, 0.25) 0%, transparent 60%),
    linear-gradient(135deg, var(--burgundy) 0%, var(--deep-red) 100%);
  color: var(--cream);
  border-radius: 24px;
  margin: 0 2.5rem;
  box-shadow: var(--shadow-lg);
}

.values-card h2 {
  color: var(--cream);
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.values-card p {
  font-size: 1.1rem;
  max-width: 760px;
  color: rgba(255, 251, 246, 0.85);
}

.values-card em {
  color: var(--gold-soft);
  font-style: italic;
}

/* ============================================
   SERVICES
   ============================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--cream);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(122, 31, 43, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--burgundy), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(122, 31, 43, 0.2);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--burgundy);
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.service-card.wide {
  grid-column: span 1;
}

/* ============================================
   CAROUSEL
   ============================================ */
.carousel {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  overflow: hidden;
  border-radius: 24px;
  background: var(--cream);
  box-shadow: var(--shadow-lg);
  min-height: 540px;
}

.slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  pointer-events: none;
}

.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.slide-image {
  background:
    radial-gradient(ellipse at center, rgba(201, 166, 107, 0.3) 0%, transparent 70%),
    linear-gradient(135deg, var(--burgundy), var(--deep-red));
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 2rem 2rem 0;
  overflow: hidden;
}

.slide-image img {
  width: clamp(200px, 75%, 360px);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.3));
}

.slide-text {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-text h3 {
  font-size: 2.4rem;
  color: var(--burgundy);
  margin-bottom: 0.4rem;
}

.slide-text .role {
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  font-weight: 600;
}

.slide-text blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  border-left: 3px solid var(--gold);
  padding-left: 1.2rem;
}

/* Highlight slides */
.slide-graphic {
  grid-column: 1 / -1;
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.slide-graphic .badge {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(255, 251, 246, 0.15);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(255, 251, 246, 0.2);
}

.slide-graphic h3 {
  font-size: 3rem;
  color: var(--cream);
  margin-bottom: 0.8rem;
  max-width: 600px;
}

.slide-graphic p {
  font-size: 1.15rem;
  max-width: 540px;
  color: rgba(255, 251, 246, 0.85);
}

.slide-graphic.g-windows {
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 40%),
    linear-gradient(135deg, #1a3a4a 0%, #0d2230 100%);
}

.slide-graphic.g-carpet {
  background:
    radial-gradient(circle at 20% 80%, rgba(201, 166, 107, 0.25) 0%, transparent 50%),
    linear-gradient(135deg, #4a2a1a 0%, #2b1810 100%);
}

.slide-graphic.g-construction {
  background:
    radial-gradient(circle at 70% 30%, rgba(201, 166, 107, 0.3) 0%, transparent 50%),
    linear-gradient(135deg, #3a3528 0%, #1f1c14 100%);
}

.slide-graphic.g-sanitation {
  background:
    radial-gradient(circle at 50% 50%, rgba(160, 200, 180, 0.2) 0%, transparent 60%),
    linear-gradient(135deg, var(--burgundy), var(--deep-red));
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--burgundy);
  border: 1px solid rgba(122, 31, 43, 0.15);
  font-size: 1.6rem;
  font-family: 'Cormorant Garamond', serif;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 5;
  transition: all 0.2s ease;
  display: grid;
  place-items: center;
  line-height: 1;
}

.carousel-btn:hover {
  background: var(--burgundy);
  color: var(--cream);
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn.prev { left: -26px; }
.carousel-btn.next { right: -26px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(122, 31, 43, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.dot.active {
  background: var(--burgundy);
  width: 30px;
  border-radius: 999px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding-top: 4rem;
}

.contact-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  background:
    radial-gradient(ellipse at bottom right, rgba(201, 166, 107, 0.25) 0%, transparent 60%),
    linear-gradient(135deg, var(--ink) 0%, #1a1413 100%);
  color: var(--cream);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-left {
  padding: 4rem;
}

.contact-left h2 {
  color: var(--cream);
  margin-bottom: 1.2rem;
}

.contact-left p {
  color: rgba(248, 241, 231, 0.75);
  font-size: 1.1rem;
  max-width: 400px;
}

.signature {
  margin-top: 2.5rem !important;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(248, 241, 231, 0.15);
  font-size: 1rem !important;
}

.signature strong {
  color: var(--gold-soft);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
}

.contact-right {
  padding: 4rem 3rem;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.2rem 1.4rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s ease;
}

a.contact-row:hover {
  background: rgba(201, 166, 107, 0.12);
  border-color: rgba(201, 166, 107, 0.3);
  transform: translateX(4px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(201, 166, 107, 0.15);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-row small {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 241, 231, 0.55);
  margin-bottom: 2px;
}

.contact-row strong {
  font-size: 1.05rem;
  color: var(--cream);
  font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  padding: 2.5rem 2.5rem;
  background: var(--ink);
  color: rgba(248, 241, 231, 0.7);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

footer .logo {
  color: var(--cream);
}

footer .logo-mark {
  background: var(--gold);
  color: var(--ink);
}

footer p {
  font-size: 0.85rem;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .navbar {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--warm-white);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(122, 31, 43, 0.08);
    box-shadow: var(--shadow-md);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 0.9rem 1rem;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    padding: 7rem 1.5rem 4rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-meta {
    justify-content: center;
  }

  .photo-frame {
    width: min(90%, 360px);
  }

  .section {
    padding: 5rem 1.5rem;
  }

  .about-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .values-card {
    padding: 3rem 2rem;
    margin: 0 1.5rem;
  }

  .slide {
    grid-template-columns: 1fr;
  }

  .slide-image {
    padding: 1.5rem 1.5rem 0;
  }

  .slide-image img {
    width: clamp(180px, 60%, 280px);
  }

  .slide-text {
    padding: 2rem;
  }

  .slide-graphic {
    padding: 3rem 2rem;
  }

  .slide-graphic h3 {
    font-size: 2rem;
  }

  .carousel-track {
    min-height: 580px;
  }

  .carousel-btn.prev { left: 8px; }
  .carousel-btn.next { right: 8px; }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-left, .contact-right {
    padding: 2.5rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 540px) {
  .hero-meta {
    gap: 1.5rem;
  }

  .hero-meta strong {
    font-size: 1.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .door-intro {
    display: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   GALLERY PAGE
   ============================================ */
body.gallery-page {
  background: var(--warm-white);
}

body.gallery-page .nav-links a.active {
  color: var(--burgundy);
}

body.gallery-page .nav-links a.active::after {
  width: 100%;
}

.gallery-hero {
  padding: 9rem 2.5rem 3rem;
  background:
    radial-gradient(ellipse at top right, rgba(201, 166, 107, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(122, 31, 43, 0.08) 0%, transparent 55%),
    var(--warm-white);
  text-align: center;
}

.gallery-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.gallery-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  color: var(--burgundy);
  margin: 0.6rem 0 1rem;
  letter-spacing: -0.01em;
}

.gallery-hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ----- Masonry grid (CSS columns) ----- */
.gallery-grid {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
  column-count: 4;
  column-gap: 1rem;
}

.g-card {
  display: block;
  width: 100%;
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
  background: var(--cream);
  border-radius: 14px;
  overflow: hidden;
  cursor: zoom-in;
  break-inside: avoid;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
  font: inherit;
}

.g-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(43, 33, 32, 0.5) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.g-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.g-card:hover::after {
  opacity: 1;
}

.g-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.g-card:hover img {
  transform: scale(1.04);
}

.gallery-empty {
  max-width: 520px;
  margin: 4rem auto;
  padding: 3rem 2rem;
  text-align: center;
  background: var(--cream);
  border-radius: 16px;
  border: 1px dashed rgba(122, 31, 43, 0.25);
}

.gallery-empty h3 {
  color: var(--burgundy);
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.gallery-empty code {
  background: rgba(122, 31, 43, 0.08);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.9em;
  color: var(--burgundy);
}

/* Responsive columns */
@media (max-width: 1100px) {
  .gallery-grid { column-count: 3; }
}
@media (max-width: 760px) {
  .gallery-grid { column-count: 2; column-gap: 0.6rem; padding: 1.5rem 1rem 3rem; }
  .g-card { margin-bottom: 0.6rem; border-radius: 10px; }
  .gallery-hero { padding: 7rem 1.5rem 2rem; }
}
@media (max-width: 460px) {
  .gallery-grid { column-count: 1; }
}

/* ============================================
   LIGHTBOX
   ============================================ */
body.lb-locked {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 8, 10, 0.96);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lb-stage {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  cursor: grab;
  touch-action: none;
}

.lb-stage.zoomed { cursor: grab; }
.lb-stage.grabbing { cursor: grabbing; }

.lb-stage img {
  max-width: min(92vw, 1400px);
  max-height: 86vh;
  width: auto;
  height: auto;
  display: block;
  transform-origin: center center;
  transition: transform 0.18s ease, opacity 0.25s ease;
  user-select: none;
  -webkit-user-drag: none;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  border-radius: 4px;
}

.lb-stage img.loading { opacity: 0; }

/* Buttons */
.lb-close,
.lb-btn,
.lb-tool {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
  z-index: 10;
}

.lb-close {
  top: 22px;
  right: 22px;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  display: grid;
  place-items: center;
}

.lb-btn {
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  font-size: 2rem;
  font-family: 'Cormorant Garamond', serif;
  display: grid;
  place-items: center;
  line-height: 1;
}

.lb-prev { left: 22px; }
.lb-next { right: 22px; }

.lb-close:hover,
.lb-btn:hover,
.lb-tool:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Toolbar — bottom center */
.lb-toolbar {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 6px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10;
}

.lb-tool {
  position: static;
  border: none;
  width: 38px;
  height: 38px;
  font-size: 1.1rem;
  display: grid;
  place-items: center;
  background: transparent;
}

.lb-tool#lbReset {
  width: auto;
  padding: 0 14px;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lb-zoom {
  font-size: 0.8rem;
  color: rgba(248, 241, 231, 0.75);
  min-width: 52px;
  text-align: center;
  letter-spacing: 0.04em;
}

/* Caption + counter */
.lb-caption {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  color: rgba(248, 241, 231, 0.7);
  letter-spacing: 0.06em;
  max-width: 60%;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lb-counter {
  position: absolute;
  top: 32px;
  left: 28px;
  font-size: 0.75rem;
  color: rgba(248, 241, 231, 0.6);
  letter-spacing: 0.16em;
}

/* Lightbox responsive */
@media (max-width: 760px) {
  .lb-close { top: 14px; right: 14px; width: 38px; height: 38px; }
  .lb-btn { width: 44px; height: 44px; font-size: 1.6rem; }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .lb-stage img { max-width: 96vw; max-height: 78vh; }
  .lb-toolbar { bottom: 14px; padding: 4px; gap: 0.25rem; }
  .lb-tool { width: 34px; height: 34px; font-size: 1rem; }
  .lb-tool#lbReset { padding: 0 10px; font-size: 0.7rem; }
  .lb-caption { top: 16px; font-size: 0.75rem; max-width: 50%; }
  .lb-counter { top: 22px; left: 14px; font-size: 0.7rem; }
}

/* ============================================
   MEET THE OWNER  (editorial profile)
   ============================================ */
.owner {
  position: relative;
  overflow: hidden;
}

.owner::before {
  content: '';
  position: absolute;
  top: 10%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at center, var(--gold-soft) 0%, transparent 70%);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.owner-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Photo column */
.owner-photo {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}

.owner-photo-frame {
  position: relative;
  background:
    radial-gradient(ellipse at top, rgba(255, 255, 255, 0.18) 0%, transparent 60%),
    linear-gradient(135deg, var(--burgundy) 0%, var(--deep-red) 100%);
  border-radius: 24px;
  padding: 32px 24px 0;
  box-shadow: var(--shadow-lg);
}

.owner-photo-frame::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  pointer-events: none;
}

.owner-photo-frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.25));
  border-radius: 12px 12px 0 0;
}

/* Floating "15+ years" badge */
.owner-badge {
  position: absolute;
  top: -22px;
  right: -22px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--burgundy);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(184, 156, 219, 0.4);
  font-family: 'Cormorant Garamond', serif;
  transform: rotate(-8deg);
  z-index: 2;
}

.owner-badge strong {
  font-size: 2.4rem;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.owner-badge strong span {
  font-size: 1.3rem;
  color: var(--gold);
}

.owner-badge small {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.3;
  font-weight: 500;
}

/* Story column */
.owner-story h2 {
  font-size: clamp(2.4rem, 4.6vw, 3.8rem);
  margin: 1rem 0 1.5rem;
  letter-spacing: -0.01em;
}

.owner-story h2 em {
  color: var(--burgundy);
  font-style: italic;
}

.owner-lede {
  font-size: 1.15rem;
  color: var(--ink);
  margin-bottom: 1.5rem;
  max-width: 540px;
  line-height: 1.65;
}

.owner-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--burgundy);
  border-left: 3px solid var(--gold);
  padding: 0.4rem 0 0.4rem 1.5rem;
  margin: 2rem 0;
  line-height: 1.4;
  max-width: 520px;
}

.owner-facts {
  list-style: none;
  display: grid;
  gap: 1.25rem;
  margin: 2rem 0;
  max-width: 520px;
}

.owner-facts li {
  padding-left: 1.5rem;
  position: relative;
}

.owner-facts li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--burgundy);
  box-shadow: 0 0 0 3px var(--gold-soft);
}

.owner-facts strong {
  display: block;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 4px;
  font-weight: 600;
}

.owner-facts span {
  font-size: 0.95rem;
  color: var(--muted);
}

.owner-cta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.owner-signature {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--burgundy);
}

@media (max-width: 900px) {
  .owner-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .owner-photo {
    max-width: 360px;
  }
  .owner-badge {
    width: 100px;
    height: 100px;
    top: -16px;
    right: -16px;
  }
  .owner-badge strong { font-size: 1.9rem; }
  .owner-badge strong span { font-size: 1rem; }
  .owner-badge small { font-size: 0.55rem; }
}

/* ============================================
   FEATURED-WORK CAROUSEL
   ============================================ */
.featured {
  position: relative;
}

.fc-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--cream);
}

.fc-track {
  display: flex;
  width: 100%;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.fc-slide {
  flex: 0 0 100%;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 460px;
  background: var(--cream);
}

.fc-photo {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--deep-red) 100%);
}

.fc-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 8s ease;
}

.fc-slide.active .fc-photo img {
  transform: scale(1.05);
}

.fc-text {
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--cream);
}

.fc-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  background: var(--gold-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 1.4rem;
  align-self: flex-start;
  font-weight: 600;
}

.fc-text h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--burgundy);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.fc-text p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 380px;
  margin-bottom: 1.5rem;
}

.fc-link {
  display: inline-block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--burgundy);
  border-bottom: 2px solid var(--burgundy);
  padding-bottom: 2px;
  transition: gap 0.2s ease, color 0.2s ease;
  align-self: flex-start;
}

.fc-link:hover {
  color: var(--deep-red);
}

.fc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--burgundy);
  border: 1px solid rgba(126, 99, 179, 0.2);
  font-size: 1.6rem;
  font-family: 'Cormorant Garamond', serif;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 5;
  transition: all 0.2s ease;
  display: grid;
  place-items: center;
  line-height: 1;
}

.fc-btn:hover {
  background: var(--burgundy);
  color: #fff;
  transform: translateY(-50%) scale(1.06);
}

.fc-btn.prev { left: 16px; }
.fc-btn.next { right: 16px; }

.fc-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 5;
}

.fc-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(126, 99, 179, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}

.fc-dot.active {
  background: var(--burgundy);
  width: 28px;
  border-radius: 999px;
}

.featured-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

@media (max-width: 800px) {
  .fc-slide {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .fc-photo {
    aspect-ratio: 4/3;
  }
  .fc-text {
    padding: 2rem 1.5rem 3rem;
  }
  .fc-btn { width: 40px; height: 40px; font-size: 1.3rem; }
  .fc-btn.prev { left: 8px; }
  .fc-btn.next { right: 8px; }
  .fc-dots { bottom: 12px; }
}
