/* ===== Zahar Event — Editorial Bridal === */
:root {
  --ivory: #f8f4ee;
  --ivory-deep: #f0e9dd;
  --pearl: #ebe2d2;
  --champagne: #d9c4a3;
  --rose-gold: #c9a27a;
  --rose-gold-dark: #a67c4a;
  --bordeaux: #6b1f2a;
  --ink: #1f1612;
  --ink-soft: #2e231d;
  --muted: #6f5f55;
  --muted-soft: #9c8e84;
  --line: rgba(31, 22, 18, 0.12);
  --line-light: rgba(255, 255, 255, 0.18);
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --maxw: 1320px;
  --shadow: 0 40px 100px -50px rgba(31, 22, 18, 0.45);
  --shadow-soft: 0 20px 60px -30px rgba(31, 22, 18, 0.2);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: var(--ink);
}

.italic-em, em.italic-em {
  font-style: italic;
  color: var(--rose-gold-dark);
  font-weight: 400;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--rose-gold-dark);
  display: inline-block;
}

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

.section-title {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  margin: 18px 0 22px;
  font-weight: 300;
}

.section-title em { font-style: italic; color: var(--rose-gold-dark); font-weight: 400; }
.section-title-light { color: var(--ivory); }
.section-title-light em { color: var(--rose-gold); }

.section-lede {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  color: var(--muted);
  max-width: 620px;
  font-weight: 300;
  font-style: italic;
}
.section-lede-light { color: rgba(248, 244, 238, 0.7); }

section { padding: 140px 0; position: relative; }

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn-primary { background: var(--ink); color: var(--ivory); }
.btn-primary:hover {
  background: var(--rose-gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(166, 124, 74, 0.5);
}
.btn-ghost {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { background: var(--ink); color: var(--ivory); }

.btn-link {
  padding: 18px 0;
  border: 0;
  color: var(--ink);
  position: relative;
}
.btn-link::after {
  content: '';
  position: absolute;
  left: 0; right: 60px; bottom: 12px;
  height: 1px;
  background: var(--ink);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.btn-link:hover::after { transform: scaleX(0.8); }

/* === Navigation === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 26px 0;
  transition: all 0.5s var(--ease);
  background: transparent;
}
.nav.scrolled {
  background: rgba(248, 244, 238, 0.85);
  backdrop-filter: blur(24px) saturate(1.1);
  -webkit-backdrop-filter: blur(24px) saturate(1.1);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.nav.over-image:not(.scrolled) .brand,
.nav.over-image:not(.scrolled) .nav-links a,
.nav.over-image:not(.scrolled) .nav-cta { color: var(--ivory); border-color: var(--ivory); }
.nav.over-image:not(.scrolled) .menu-toggle span { background: var(--ivory); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--serif);
  font-size: 1.7rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.3s;
}
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.45em;
  color: var(--rose-gold);
  font-weight: 400;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  gap: 42px;
  list-style: none;
}
.nav-links a {
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--rose-gold-dark); }
.nav.over-image:not(.scrolled) .nav-links a:hover { color: var(--rose-gold); }

.nav-cta {
  border: 1px solid var(--ink);
  padding: 11px 22px;
  font-size: 0.7rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
  color: var(--ink);
}
.nav-cta:hover {
  background: var(--ink);
  color: var(--ivory);
}

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 101; }
.menu-toggle span { display: block; width: 26px; height: 1.5px; background: var(--ink); margin: 6px 0; transition: all 0.3s var(--ease); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); background: var(--ink); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); background: var(--ink); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin: 18px 0; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  font-weight: 400;
}
.mobile-menu .mobile-cta {
  margin-top: 20px;
  padding: 16px 36px;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  color: var(--ivory);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.78) contrast(1.05);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31,22,18,0.5) 0%, rgba(31,22,18,0.15) 30%, rgba(31,22,18,0.4) 70%, rgba(31,22,18,0.85) 100%),
    linear-gradient(90deg, rgba(31,22,18,0.3) 0%, transparent 60%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 140px;
  padding-bottom: 80px;
  width: 100%;
}
.hero-top { padding-top: 20px; }
.hero-headline { margin: auto 0; max-width: 1100px; }
.hero-headline h1 {
  font-size: clamp(3.2rem, 9vw, 8.5rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--ivory);
  letter-spacing: -0.025em;
}
.hero-headline .line {
  display: block;
  overflow: hidden;
}
.hero-headline .line:nth-child(2) { padding-left: clamp(40px, 8vw, 140px); }
.hero-headline .line:nth-child(3) { padding-left: clamp(80px, 16vw, 280px); }

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-cta-row .btn-primary { background: var(--ivory); color: var(--ink); }
.hero-cta-row .btn-primary:hover { background: var(--rose-gold); color: var(--ink); }
.hero-cta-row .btn-link { color: var(--ivory); }
.hero-cta-row .btn-link::after { background: var(--ivory); }

.hero-meta {
  display: flex;
  gap: 28px;
  align-items: center;
}
.hero-meta-item .num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--ivory);
  display: block;
  line-height: 1;
}
.hero-meta-item .lbl {
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(248, 244, 238, 0.7);
  margin-top: 8px;
  display: block;
}
.hero-meta .divider {
  width: 1px;
  height: 36px;
  background: rgba(248, 244, 238, 0.25);
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: rgba(248, 244, 238, 0.7);
  font-size: 0.64rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.scroll-cue .line-anim {
  width: 1px;
  height: 36px;
  background: rgba(248, 244, 238, 0.4);
  position: relative;
  overflow: hidden;
}
.scroll-cue .line-anim::after {
  content: '';
  position: absolute;
  top: -36px;
  left: 0;
  width: 100%;
  height: 36px;
  background: var(--ivory);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -36px; }
  100% { top: 36px; }
}

/* === Intro === */
.intro {
  background: var(--ivory);
  padding: 160px 0 140px;
  text-align: center;
}
.intro-grid { max-width: 920px; margin: 0 auto; }
.intro-quote {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  margin: 32px 0 40px;
  letter-spacing: -0.015em;
}
.intro-quote em {
  font-style: italic;
  color: var(--rose-gold-dark);
}
.intro-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
}
.intro-meta span:first-child::after {
  content: '·';
  margin-left: 30px;
  color: var(--rose-gold);
}

/* === Lookbook === */
.lookbook {
  background: var(--ivory-deep);
  padding: 140px 0;
}
.lookbook-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 80px;
  flex-wrap: wrap;
  gap: 32px;
}
.lookbook-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.look { position: relative; }
.look-1 { grid-column: span 7; }
.look-2 { grid-column: span 5; }
.look-3 { grid-column: span 5; }
.look-4 { grid-column: span 7; }
.look-5 { grid-column: span 6; }
.look-6 { grid-column: span 6; }

.look-frame {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--pearl) 0%, var(--champagne) 100%);
  aspect-ratio: 4/5;
}
.look-1 .look-frame, .look-4 .look-frame { aspect-ratio: 5/4; }

.look-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.look:hover .look-img { transform: scale(1.06); }

.look-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 32px;
  background: linear-gradient(180deg, rgba(31,22,18,0.15) 0%, transparent 30%, transparent 60%, rgba(31,22,18,0.55) 100%);
  color: var(--ivory);
  pointer-events: none;
}
.look-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  align-self: flex-start;
}
.look-mood {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  align-self: flex-end;
}
.look-meta {
  padding: 22px 4px 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}
.look-meta h3 { font-size: 1.7rem; font-weight: 400; }
.look-meta span {
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--rose-gold-dark);
  font-weight: 500;
}

.lookbook-cta {
  text-align: center;
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}
.lookbook-cta p {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 28px;
}

/* === Atelier === */
.atelier {
  background: var(--ivory);
  padding: 0;
}
.atelier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 90vh;
}
.atelier-visual {
  position: relative;
  background: linear-gradient(135deg, var(--pearl) 0%, var(--champagne) 100%);
  overflow: hidden;
}
.atelier-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.atelier-stamp {
  position: absolute;
  bottom: 40px;
  right: 40px;
  padding: 26px 30px;
  background: rgba(248, 244, 238, 0.94);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  z-index: 2;
  font-family: var(--serif);
  display: flex;
  flex-direction: column;
  text-align: right;
  letter-spacing: 0.18em;
}
.atelier-stamp .stamp-line { font-size: 1.3rem; line-height: 1.1; }
.atelier-stamp .stamp-line:first-child { color: var(--rose-gold-dark); font-style: italic; font-size: 1rem; letter-spacing: 0.28em; }
.atelier-stamp .stamp-year {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
  letter-spacing: 0.22em;
}

.atelier-text {
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 620px;
}
.atelier-text p {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.65;
}
.atelier-text p.lede {
  font-size: 1.5rem;
  color: var(--ink);
  font-weight: 400;
  font-style: italic;
}

.atelier-checks {
  list-style: none;
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.atelier-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--ink);
  font-family: var(--sans);
}
.atelier-checks svg { color: var(--rose-gold-dark); flex-shrink: 0; }

/* === Services === */
.services {
  background: var(--ink);
  color: var(--ivory);
}
.services h2, .services h3, .services h4 { color: var(--ivory); }
.services-head { margin-bottom: 80px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}
.service {
  background: var(--ink);
  padding: 56px 36px 50px;
  transition: background 0.4s var(--ease);
}
.service:hover { background: var(--ink-soft); }
.service-icon {
  width: 52px; height: 52px;
  margin-bottom: 32px;
  color: var(--rose-gold);
}
.service h3 { font-size: 1.7rem; font-weight: 400; margin-bottom: 14px; }
.service p { font-size: 0.95rem; color: rgba(248, 244, 238, 0.65); line-height: 1.6; }
.service-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--rose-gold);
  letter-spacing: 0.22em;
  margin-bottom: 28px;
  display: block;
}

/* === Experience === */
.experience { background: var(--ivory); }
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 80px;
  position: relative;
}
.experience-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--rose-gold) 30%, var(--rose-gold) 70%, transparent);
  opacity: 0.4;
}
.exp-step .num {
  font-family: var(--serif);
  font-size: 5.5rem;
  font-weight: 300;
  color: var(--rose-gold);
  line-height: 1;
  margin-bottom: 28px;
  font-style: italic;
  position: relative;
  z-index: 1;
  background: var(--ivory);
  display: inline-block;
  padding-right: 16px;
}
.exp-step h3 { font-size: 1.7rem; margin-bottom: 14px; font-weight: 400; }
.exp-step p { color: var(--muted); font-size: 1rem; }

/* === Testimonials === */
.testimonials {
  position: relative;
  color: var(--ivory);
  padding: 160px 0;
  overflow: hidden;
}
.testimonials-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mood-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4) contrast(1.1) saturate(0.7);
}
.testimonials-bg .scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(31,22,18,0.7) 0%, rgba(31,22,18,0.85) 100%);
}
.testimonials-inner { position: relative; z-index: 2; }
.testimonials .section-title { color: var(--ivory); margin-bottom: 80px; }
.testimonials .section-title em { color: var(--rose-gold); }

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.quote-card {
  padding: 40px 36px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  position: relative;
  transition: all 0.5s var(--ease);
}
.quote-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
  border-color: rgba(201, 162, 122, 0.35);
}
.quote-mark {
  color: var(--rose-gold);
  opacity: 0.55;
  margin-bottom: 24px;
}
.quote-card blockquote {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.55;
  color: rgba(248, 244, 238, 0.92);
  margin-bottom: 28px;
}
.quote-card figcaption {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.q-name {
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  font-weight: 500;
  color: var(--ivory);
}
.q-loc {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rose-gold);
  margin-top: 4px;
}

/* === Contact === */
.contact {
  background: var(--ivory-deep);
  position: relative;
  overflow: hidden;
}
.contact::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 122, 0.18), transparent 70%);
  top: -250px;
  right: -250px;
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  position: relative;
  align-items: center;
}
.contact-actions {
  display: flex;
  gap: 12px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.contact-actions .btn-primary svg { margin-right: 0; }

.contact-card {
  background: var(--ivory);
  padding: 56px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.contact-row {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.contact-row:first-child { padding-top: 0; }
.contact-row:last-child { border: 0; padding-bottom: 0; }
.contact-row .ico { width: 22px; height: 22px; color: var(--rose-gold-dark); flex-shrink: 0; margin-top: 2px; }
.contact-row .lbl {
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
  display: block;
}
.contact-row .val {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ink);
  line-height: 1.4;
}
.contact-row a.val { transition: color 0.2s; }
.contact-row a.val:hover { color: var(--rose-gold-dark); }

.social-row {
  display: flex;
  gap: 14px;
  margin-top: 36px;
}
.social-row a {
  width: 48px; height: 48px;
  border: 1px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.social-row a:hover {
  background: var(--ink);
  color: var(--ivory);
  transform: translateY(-3px);
}
.social-row svg { width: 18px; height: 18px; }

/* === Footer === */
footer {
  background: var(--ink);
  color: rgba(248, 244, 238, 0.6);
  padding: 80px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--ivory);
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  font-weight: 400;
}
.footer-col h5 {
  color: var(--rose-gold);
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-family: var(--sans);
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { transition: color 0.2s; font-size: 0.95rem; }
.footer-col a:hover { color: var(--rose-gold); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* === Image safety fallback (when both local + Unsplash fail) === */
.look-frame {
  background:
    linear-gradient(135deg, #f7eee0 0%, #d8b88a 60%, #a67c4a 100%);
}
.look-1 .look-frame { background: linear-gradient(135deg, #efe2cf 0%, #c9a27a 100%); }
.look-2 .look-frame { background: linear-gradient(135deg, #f3ecdc 0%, #b89169 100%); }
.look-3 .look-frame { background: linear-gradient(135deg, #ede0c9 0%, #a67c4a 100%); }
.look-4 .look-frame { background: linear-gradient(135deg, #f8efde 0%, #d4b893 100%); }
.look-5 .look-frame { background: linear-gradient(135deg, #ebe0c9 0%, #ba9268 100%); }
.look-6 .look-frame { background: linear-gradient(135deg, #f5ebd5 0%, #c9a27a 100%); }

img[data-failed="true"] { display: none; }

/* Tiny dress silhouette as last-resort visual */
.look-frame::before {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 50%;
  height: 70%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(ellipse at 50% 18%, rgba(255,255,255,0.55) 0%, transparent 22%),
    linear-gradient(180deg, transparent 18%, rgba(255,255,255,0.18) 22%, rgba(255,255,255,0.4) 100%);
  clip-path: polygon(40% 10%, 60% 10%, 65% 30%, 90% 100%, 10% 100%, 35% 30%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.look-frame:has(img[data-failed="true"])::before { opacity: 1; }

/* === Active nav link === */
.nav-links a.is-active { color: var(--rose-gold-dark); }
.nav.over-image:not(.scrolled) .nav-links a.is-active { color: var(--rose-gold); }

/* === Selection === */
::selection { background: var(--rose-gold); color: var(--ink); }

/* === Focus === */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--rose-gold-dark);
  outline-offset: 4px;
}

/* === Reveal === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* === Responsive === */
@media (max-width: 1080px) {
  section { padding: 110px 0; }
  .atelier-text { padding: 90px 60px; }
  .lookbook-grid { gap: 18px; }
  .quotes-grid { grid-template-columns: 1fr; gap: 22px; }
}

@media (max-width: 880px) {
  .container { padding: 0 24px; }
  section { padding: 90px 0; }
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: block; }

  .hero-headline .line:nth-child(2) { padding-left: 30px; }
  .hero-headline .line:nth-child(3) { padding-left: 60px; }
  .hero-bottom { flex-direction: column; align-items: flex-start; gap: 28px; }
  .hero-meta { gap: 18px; }
  .hero-meta-item .num { font-size: 1.8rem; }

  .intro { padding: 110px 0; }
  .intro-quote { font-size: clamp(1.8rem, 6vw, 2.6rem); }

  .lookbook-grid { grid-template-columns: 1fr; }
  .look-1, .look-2, .look-3, .look-4, .look-5, .look-6 { grid-column: span 1; }
  .look-frame, .look-1 .look-frame, .look-4 .look-frame { aspect-ratio: 4/5; }

  .atelier-grid { grid-template-columns: 1fr; }
  .atelier-visual { aspect-ratio: 4/5; min-height: 0; }
  .atelier-text { padding: 70px 24px; max-width: 100%; }
  .atelier-checks { grid-template-columns: 1fr; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .service { padding: 44px 28px; }

  .experience-grid { grid-template-columns: 1fr; gap: 50px; }
  .experience-grid::before { display: none; }

  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-card { padding: 40px 28px; }

  .footer-grid { grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero-meta { flex-wrap: wrap; }
  .hero-meta .divider { display: none; }
  .atelier-stamp { right: 20px; bottom: 20px; padding: 18px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-img { animation: none; }
  .scroll-cue .line-anim::after { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
