/* =============================================
   AURÉVIA — Production Stylesheet v3.0
   Netlify-ready · iPhone Safari + Chrome
============================================= */

/* --- RESET --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  background: #0f0f10;
  color: #f5f0e8;
  font-family: 'Cormorant Garamond', Georgia, serif;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* --- CUSTOM CURSOR (desktop pointer devices only) --- */
@media (pointer: fine) {
  body { cursor: none; }
}
@media (pointer: coarse) {
  #cur, #curR { display: none !important; }
}

#cur {
  position: fixed;
  width: 8px; height: 8px;
  background: #c9a84c;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s, opacity 0.2s;
  will-change: left, top;
}

#curR {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, border-color 0.3s;
  will-change: left, top;
}

body.hov #cur { width: 13px; height: 13px; opacity: 0.5; }
body.hov #curR { width: 50px; height: 50px; border-color: rgba(201,168,76,0.2); }

/* --- LOADER --- */
#loader {
  position: fixed;
  inset: 0;
  background: #0f0f10;
  z-index: 9000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  /* CSS-only auto-dismiss after 3.2s — works even if JS fails */
  animation: cssLoaderOut 0.9s ease 4.5s forwards;
}

#loader.hidden {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  animation: none;
}

@keyframes cssLoaderOut {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

#loader-logo {
  width: 64px; height: 64px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s ease forwards;
}

#loader-name {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  letter-spacing: 0.6em;
  color: #c9a84c;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s ease forwards;
}

#loader-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.5em;
  color: #b0a898;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s ease forwards;
}

#loader-line {
  width: 1px;
  height: 0;
  background: linear-gradient(to bottom, #c9a84c, transparent);
  animation: lineGrow 1.5s 0.9s ease forwards;
}

@keyframes lineGrow { to { height: 60px; } }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --- NAV --- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 4rem;
  transition: background 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: rgba(15,15,16,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 1rem 4rem;
  border-bottom-color: rgba(201,168,76,0.12);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Cinzel', serif;
  font-size: 0.9rem;
  letter-spacing: 0.45em;
  color: #c9a84c;
  text-decoration: none;
}

.nav-brand img {
  width: 30px; height: 30px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #f5f0e8;
  opacity: 0.5;
  transition: opacity 0.3s, color 0.3s;
}

.nav-links a:hover,
.nav-links a.active { opacity: 1; color: #c9a84c; }

.nav-cta {
  font-family: 'Cinzel', serif;
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #0f0f10;
  background: #c9a84c;
  padding: 0.65rem 1.6rem;
  transition: background 0.3s;
  display: inline-block;
  text-decoration: none;
}

.nav-cta:hover { background: #e8d5a3; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.burger span {
  width: 22px; height: 1px;
  background: #c9a84c;
  display: block;
  transition: 0.3s;
}

/* --- PAGES --- */
.page { display: none; }
.page.active { display: block; }

/* --- SHARED ATOMS --- */
.eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.55em;
  color: #c9a84c;
  text-transform: uppercase;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.section-title em { font-style: italic; color: #e8d5a3; }

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

.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.12s; }
.delay-2 { transition-delay: 0.24s; }
.delay-3 { transition-delay: 0.36s; }
.delay-4 { transition-delay: 0.48s; }
.delay-5 { transition-delay: 0.62s; }

/* --- BUTTONS --- */
.btn-gold {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  background: #c9a84c;
  color: #0f0f10;
  padding: 0.95rem 2.2rem;
  transition: background 0.3s, transform 0.3s;
  text-decoration: none;
  cursor: pointer;
  border: none;
}
.btn-gold:hover { background: #e8d5a3; transform: translateY(-2px); }

.btn-border {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid #c9a84c;
  color: #c9a84c;
  padding: 0.9rem 2rem;
  transition: all 0.3s;
  text-decoration: none;
  cursor: pointer;
  background: none;
}
.btn-border:hover { background: #c9a84c; color: #0f0f10; transform: translateY(-2px); }

.btn-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  color: #c9a84c;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0.8;
  transition: opacity 0.3s;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.btn-text:hover { opacity: 1; }
.btn-text::after { content: '→'; transition: transform 0.3s; }
.btn-text:hover::after { transform: translateX(5px); }

.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: #25D366;
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 1rem 2.4rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.btn-wa:hover { background: #1db954; transform: translateY(-2px); }

/* --- MARQUEE --- */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid rgba(201,168,76,0.12);
  border-bottom: 1px solid rgba(201,168,76,0.12);
  padding: 0.8rem 0;
}

.marquee-track {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: marqueeAnim 28s linear infinite;
  width: max-content;
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-item {
  font-family: 'Jost', sans-serif;
  font-size: 0.54rem;
  letter-spacing: 0.5em;
  color: #c9a84c;
  opacity: 0.38;
  text-transform: uppercase;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.marquee-item::after { content: '✦'; font-size: 0.4rem; }

@keyframes marqueeAnim {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* --- HERO --- */
#hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 8vw;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridShift 22s linear infinite;
  pointer-events: none;
}

@keyframes gridShift {
  from { background-position: 0 0; }
  to   { background-position: 80px 80px; }
}

.hero-ghost {
  position: absolute;
  right: -2vw; top: 50%;
  transform: translateY(-50%);
  font-family: 'Cinzel', serif;
  font-size: clamp(7rem, 20vw, 26rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.055);
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.06em;
  will-change: transform;
}

.hero-content { position: relative; z-index: 1; }

.hero-eyebrow {
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s ease forwards;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 8rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.025em;
  max-width: 13ch;
  opacity: 0;
  animation: fadeUp 1.1s 0.7s ease forwards;
}
.hero-title em { font-style: italic; color: #e8d5a3; }

.hero-tag {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.38em;
  color: #9a9080;
  text-transform: uppercase;
  margin-top: 1.8rem;
  opacity: 0;
  animation: fadeUp 0.9s 1s ease forwards;
}

.hero-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 2;
  color: #b0a898;
  max-width: 38ch;
  margin-top: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.9s 1.2s ease forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.8rem;
  opacity: 0;
  animation: fadeUp 0.9s 1.4s ease forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; right: 3.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  opacity: 0;
  animation: fadeUp 0.8s 1.8s ease forwards;
  z-index: 1;
}

.hero-scroll span {
  font-family: 'Jost', sans-serif;
  font-size: 0.54rem;
  letter-spacing: 0.4em;
  color: #b0a898;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-bar {
  width: 1px; height: 55px;
  background: linear-gradient(to bottom, #c9a84c, transparent);
  animation: scrollPulse 2.2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 1; }
}

/* --- 3D SCROLL SECTION --- */
#s3d { height: 280vh; position: relative; }

.s3d-sticky {
  position: sticky;
  top: 0; height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0f0f10;
}

#rugWrap {
  position: relative;
  width: min(72vw, 700px);
  height: min(48vw, 467px);
  will-change: transform;
}

#rugPhoto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  box-shadow:
    0 0 0 1px rgba(201,168,76,0.22),
    0 40px 120px rgba(0,0,0,0.85),
    0 0 80px rgba(201,168,76,0.08);
  will-change: transform;
  user-select: none;
  -webkit-user-drag: none;
}

/* Full-bleed background darkener for depth */
.s3d-bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 50%, transparent 30%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  z-index: 0;
}

#rugWrap { z-index: 1; }

.mat-tag {
  position: absolute;
  background: rgba(15,15,16,0.92);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 0.45rem 0.9rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.52rem;
  letter-spacing: 0.28em;
  color: #c9a84c;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mat-tag::before {
  content: '';
  width: 5px; height: 5px;
  background: #c9a84c;
  border-radius: 50%;
  flex-shrink: 0;
}

.mat-tag.show { opacity: 1; }
#mt1 { top: 18%;    left: -180px; }
#mt2 { top: 42%;    right: -165px; }
#mt3 { bottom: 28%; left: -180px; }
#mt4 { bottom: 12%; right: -155px; }

.s3d-text {
  position: absolute;
  text-align: center;
  width: 100%;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.s3d-top    { top: 8%; }
.s3d-bottom { bottom: 8%; opacity: 0; }

.s3d-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.54rem;
  letter-spacing: 0.5em;
  color: #c9a84c;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.8rem;
}

.s3d-heading {
  font-size: clamp(1.4rem, 2.8vw, 2.8rem);
  font-weight: 300;
  color: #f5f0e8;
}
.s3d-heading em { font-style: italic; color: #e8d5a3; }

/* --- PHILOSOPHY --- */
#philosophy {
  padding: 11rem 8vw;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9rem;
  align-items: center;
}

.phil-heading {
  font-size: clamp(2.2rem, 3.8vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-top: 1.8rem;
}
.phil-heading em { font-style: italic; color: #e8d5a3; }

.phil-body {
  margin-top: 2rem;
  font-size: 1.05rem;
  font-weight: 300;
  line-height: 2.1;
  color: #b0a898;
}

.phil-actions { margin-top: 2.8rem; display: flex; gap: 1.5rem; flex-wrap: wrap; }

.pull-quote {
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  font-style: italic;
  font-weight: 300;
  color: #e8d5a3;
  line-height: 1.55;
  border-left: 1px solid #c9a84c;
  padding-left: 2.5rem;
}

.pull-quote cite {
  display: block;
  margin-top: 1.5rem;
  font-style: normal;
  font-family: 'Jost', sans-serif;
  font-size: 0.54rem;
  letter-spacing: 0.4em;
  color: #b0a898;
}

/* --- COLLECTIONS OVERVIEW --- */
#collections-overview { padding: 0 8vw 11rem; }

.collections-head { text-align: center; margin-bottom: 5rem; }
.collections-head .eyebrow { margin-bottom: 1.5rem; }

.coll-tabs {
  display: flex;
  justify-content: center;
  border: 1px solid rgba(201,168,76,0.14);
  width: fit-content;
  margin: 2.5rem auto 0;
  overflow: hidden;
  flex-wrap: wrap;
}

.ctab {
  font-family: 'Jost', sans-serif;
  font-size: 0.54rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #b0a898;
  padding: 0.7rem 1.4rem;
  border: none;
  background: none;
  border-right: 1px solid rgba(201,168,76,0.12);
  transition: all 0.3s;
  cursor: pointer;
}
.ctab:last-child { border-right: none; }
.ctab.active, .ctab:hover { color: #c9a84c; background: rgba(201,168,76,0.07); }

.coll-panel { display: none; padding-top: 4rem; }
.coll-panel.active { display: block; }

.coll-panel-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 5rem;
  align-items: start;
}

.coll-title {
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  font-weight: 300;
  line-height: 1.1;
  margin: 1.2rem 0 1.4rem;
}
.coll-title em { font-style: italic; color: #e8d5a3; }

.coll-desc { font-size: 0.93rem; line-height: 2; color: #b0a898; margin-bottom: 2rem; }

.coll-specs { border-top: 1px solid rgba(201,168,76,0.12); padding-top: 1.5rem; }

.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(201,168,76,0.06);
}

.spec-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  color: #b0a898;
  text-transform: uppercase;
}

.spec-value { font-size: 0.88rem; color: #f5f0e8; opacity: 0.8; }

.coll-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

.coll-item {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.07);
  background: #1a1812;
  transition: border-color 0.4s;
  min-height: 120px;
}
.coll-item:hover { border-color: rgba(201,168,76,0.35); }
.coll-item canvas { width: 100%; height: 100%; display: block; }

.coll-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,16,0.96) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.4s;
}
.coll-item:hover .coll-item-overlay { opacity: 1; }
.coll-item-name { font-size: 0.92rem; font-weight: 300; }
.coll-item-name em { font-style: italic; color: #e8d5a3; }
.coll-item-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.48rem;
  letter-spacing: 0.22em;
  color: #b0a898;
  margin-top: 0.3rem;
  text-transform: uppercase;
}

/* --- PGS --- */
#pgs {
  padding: 10rem 8vw;
  background: #111009;
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.pgs-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; }

.pgs-card {
  padding: 3.5rem 2.8rem;
  background: #0f0f10;
  border: 1px solid rgba(201,168,76,0.07);
  transition: border-color 0.4s;
}
.pgs-card:hover { border-color: rgba(201,168,76,0.28); }

.pgs-num {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.12);
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
}

.pgs-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.54rem;
  letter-spacing: 0.4em;
  color: #c9a84c;
  opacity: 0.6;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.pgs-heading { font-size: 1.35rem; font-weight: 300; line-height: 1.3; margin-bottom: 1.2rem; }
.pgs-heading em { font-style: italic; color: #e8d5a3; }
.pgs-body { font-size: 0.84rem; line-height: 1.9; color: #b0a898; }
.pgs-list { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.pgs-list li { font-size: 0.82rem; color: #b0a898; display: flex; gap: 0.7rem; }
.pgs-list li::before { content: '—'; color: #c9a84c; opacity: 0.5; flex-shrink: 0; }

/* --- AI STUDIO --- */
#ai-studio { padding: 10rem 8vw; }

.ai-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center; }

.ai-heading { font-size: clamp(2rem, 3.5vw, 3.8rem); font-weight: 300; line-height: 1.1; margin-top: 1.5rem; }
.ai-heading em { font-style: italic; color: #e8d5a3; }

.ai-body { margin-top: 1.8rem; font-size: 1rem; line-height: 2; color: #b0a898; }

.ai-features { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.9rem; }

.ai-feat {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(201,168,76,0.07);
  transition: border-color 0.3s;
}
.ai-feat:hover { border-color: rgba(201,168,76,0.25); }

.ai-feat-icon {
  width: 32px; height: 32px;
  border: 1px solid rgba(201,168,76,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #c9a84c;
  font-size: 0.9rem;
}

.ai-feat-title { font-size: 0.88rem; margin-bottom: 0.3rem; }
.ai-feat-sub { font-size: 0.82rem; color: #9a9080; line-height: 1.75; }
.ai-actions { margin-top: 2.5rem; display: flex; gap: 1.2rem; flex-wrap: wrap; }

.ai-widget {
  background: #111009;
  border: 1px solid rgba(201,168,76,0.14);
  display: flex;
  flex-direction: column;
  height: 460px;
}

.ai-widget-head {
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid rgba(201,168,76,0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ai-widget-title {
  font-family: 'Cinzel', serif;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  color: #c9a84c;
  opacity: 0.8;
}

.ai-live-dot {
  width: 6px; height: 6px;
  background: #4caf50;
  border-radius: 50%;
  animation: liveBlink 2s infinite;
}

@keyframes liveBlink { 0%,100%{opacity:1} 50%{opacity:0.2} }

.ai-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.ai-messages::-webkit-scrollbar { width: 3px; }
.ai-messages::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.15); }

.ai-msg { max-width: 88%; font-size: 0.88rem; line-height: 1.7; padding: 0.75rem 1rem; }
.ai-msg.bot { align-self: flex-start; background: rgba(201,168,76,0.07); border: 1px solid rgba(201,168,76,0.07); color: #f5f0e8; }
.ai-msg.user { align-self: flex-end; background: #c9a84c; color: #0f0f10; }
.ai-msg.thinking { align-self: flex-start; color: #b0a898; font-style: italic; font-size: 0.8rem; }

.ai-chips { padding: 0.4rem 1.3rem 0; display: flex; flex-wrap: wrap; gap: 0.35rem; }

.chip {
  font-family: 'Jost', sans-serif;
  font-size: 0.48rem;
  letter-spacing: 0.18em;
  color: #b0a898;
  border: 1px solid rgba(201,168,76,0.1);
  padding: 0.3rem 0.65rem;
  text-transform: uppercase;
  transition: all 0.25s;
  background: none;
  cursor: pointer;
}
.chip:hover { color: #c9a84c; border-color: rgba(201,168,76,0.25); }

.ai-input-row {
  padding: 0.9rem 1.3rem;
  border-top: 1px solid rgba(201,168,76,0.12);
  display: flex;
  gap: 0.7rem;
  align-items: flex-end;
}

.ai-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  color: #f5f0e8;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  padding: 0.65rem 0.95rem;
  outline: none;
  resize: none;
  height: 40px;
  transition: border-color 0.3s;
}
.ai-input:focus { border-color: #c9a84c; }

.ai-send {
  width: 40px; height: 40px;
  background: #c9a84c;
  color: #0f0f10;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.ai-send:hover { background: #e8d5a3; }

/* --- PROCESS --- */
#process { padding: 10rem 8vw; border-top: 1px solid rgba(201,168,76,0.1); }

.process-steps { display: grid; grid-template-columns: repeat(5,1fr); margin-top: 6rem; }

.pstep { padding: 2rem 1.5rem 2rem 0; border-top: 1px solid rgba(201,168,76,0.2); }

.pstep-num {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 1rem;
  display: block;
  transition: -webkit-text-stroke 0.3s;
}
.pstep:hover .pstep-num { -webkit-text-stroke: 1px #c9a84c; }

.pstep-title { font-size: 1rem; font-weight: 300; margin-bottom: 0.6rem; }
.pstep-body { font-size: 0.78rem; line-height: 1.85; color: #b0a898; }

/* --- PROOF --- */
#proof {
  padding: 8rem 8vw;
  background: #111009;
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.proof-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 3rem; margin-top: 5rem; }
.proof-item { border-top: 1px solid rgba(201,168,76,0.15); padding-top: 2rem; }
.proof-val {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  color: #e8d5a3;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.proof-label { font-size: 0.8rem; color: #b0a898; letter-spacing: 0.08em; line-height: 1.7; }

/* --- WHY --- */
#why { padding: 10rem 8vw; }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 3rem; margin-top: 5rem; }
.why-item { border-top: 1px solid rgba(201,168,76,0.15); padding-top: 2rem; }
.why-icon { font-size: 1.2rem; color: #c9a84c; margin-bottom: 1.2rem; opacity: 0.7; }
.why-title { font-size: 1.1rem; font-weight: 300; margin-bottom: 0.7rem; }
.why-body { font-size: 0.82rem; line-height: 1.9; color: #b0a898; }

/* --- 07 ATELIER --- */
#atelier {
  padding: 11rem 8vw;
  background: #111009;
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.atelier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 5rem;
}

.team-card {
  padding: 3rem 3.5rem;
  border: 1px solid rgba(201,168,76,0.1);
  background: #0f0f10;
  transition: border-color 0.4s;
  position: relative;
}
.team-card:hover { border-color: rgba(201,168,76,0.25); }

.team-visual { display: none; }
.team-monogram { display: none; }
.team-quote-visual { display: none; }

.team-role {
  font-family: 'Jost', sans-serif;
  font-size: 0.52rem;
  letter-spacing: 0.38em;
  color: #c9a84c;
  opacity: 0.65;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  display: block;
}

.team-name { font-size: 1.4rem; font-weight: 300; margin-bottom: 0.25rem; }

.team-position {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  color: #b0a898;
  letter-spacing: 0.1em;
  margin-bottom: 1.4rem;
}

.team-bio { font-size: 0.88rem; line-height: 2; color: #b0a898; }
.team-bio strong { color: #f5f0e8; font-weight: 400; }

/* --- MATERIALS --- */
#materials { padding: 10rem 8vw; }
.mat-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2px; margin-top: 5rem; }

.mat-card {
  padding: 2.5rem 2rem;
  background: #111009;
  border: 1px solid rgba(201,168,76,0.07);
  transition: border-color 0.4s;
}
.mat-card:hover { border-color: rgba(201,168,76,0.28); }

.mat-num { font-family: 'Cinzel', serif; font-size: 0.52rem; letter-spacing: 0.4em; color: #c9a84c; opacity: 0.55; margin-bottom: 1.5rem; display: block; }
.mat-name { font-size: 1.3rem; font-weight: 300; margin-bottom: 1rem; line-height: 1.2; }
.mat-name em { font-style: italic; color: #e8d5a3; }
.mat-desc { font-size: 0.82rem; color: #b0a898; line-height: 1.9; }
.mat-spec { font-size: 0.72rem; color: #b0a898; font-style: italic; margin-top: 1.2rem; }

.mat-features {
  margin-top: 3rem;
  padding: 2rem;
  border: 1px solid rgba(201,168,76,0.1);
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.mat-feat-label { font-family: 'Jost', sans-serif; font-size: 0.52rem; letter-spacing: 0.35em; color: #c9a84c; opacity: 0.65; text-transform: uppercase; display: block; margin-bottom: 0.4rem; }
.mat-feat-val { font-size: 0.88rem; color: #f5f0e8; }

/* --- INDIVIDUAL --- */
#individual {
  padding: 10rem 8vw;
  background: #111009;
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.ind-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; align-items: start; }

.order-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.order-card { padding: 1.5rem; border: 1px solid rgba(201,168,76,0.12); }
.order-type { font-family: 'Jost', sans-serif; font-size: 0.52rem; letter-spacing: 0.38em; color: #c9a84c; opacity: 0.65; text-transform: uppercase; margin-bottom: 0.8rem; display: block; }
.order-title { font-size: 1.1rem; font-weight: 300; margin-bottom: 0.5rem; }
.order-body { font-size: 0.82rem; color: #b0a898; line-height: 1.7; }
.order-price { font-family: 'Cinzel', serif; font-size: 0.75rem; color: #c9a84c; margin-top: 1rem; }

.trust-list { display: flex; flex-direction: column; gap: 1.2rem; }
.trust-item { display: flex; gap: 1.2rem; padding: 1.2rem; border: 1px solid rgba(201,168,76,0.07); }
.trust-icon { width: 36px; height: 36px; border: 1px solid rgba(201,168,76,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #c9a84c; font-size: 0.9rem; }
.trust-title { font-size: 0.92rem; font-weight: 300; margin-bottom: 0.35rem; }
.trust-body { font-size: 0.78rem; color: #b0a898; line-height: 1.6; }

/* --- WHATSAPP --- */
#whatsapp-cta {
  padding: 7rem 8vw;
  text-align: center;
  background: linear-gradient(135deg, #091409, #0f0f10 60%, #111009);
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.wa-icon { font-size: 3rem; margin-bottom: 1.5rem; filter: drop-shadow(0 0 20px rgba(37,211,102,0.35)); }
.wa-heading { font-size: clamp(1.5rem, 3vw, 2.8rem); font-weight: 300; margin-bottom: 1rem; line-height: 1.2; }
.wa-heading em { font-style: italic; color: #e8d5a3; }
.wa-body { font-size: 0.95rem; color: #b0a898; line-height: 1.9; max-width: 44ch; margin: 0 auto 2.5rem; }

/* --- CLOSING --- */
#closing { padding: 14rem 8vw; text-align: center; position: relative; overflow: hidden; }
#closing::before {
  content: 'AURÉVIA';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -55%);
  font-family: 'Cinzel', serif;
  font-size: clamp(5rem, 15vw, 18rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.1em;
}

.closing-heading { font-size: clamp(2.5rem, 5vw, 6rem); font-weight: 300; line-height: 1.05; letter-spacing: -0.02em; max-width: 18ch; margin: 0 auto 3rem; }
.closing-heading em { font-style: italic; color: #e8d5a3; }
.closing-line { width: 1px; height: 70px; background: linear-gradient(to bottom, #c9a84c, transparent); margin: 0 auto 2.5rem; opacity: 0.4; }
.closing-actions { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.closing-email { display: block; margin-top: 2rem; font-family: 'Jost', sans-serif; font-size: 0.56rem; letter-spacing: 0.4em; color: #b0a898; opacity: 0.45; transition: opacity 0.3s, color 0.3s; }
.closing-email:hover { opacity: 1; color: #c9a84c; }

/* --- FOOTER --- */
footer {
  padding: 3rem 4rem;
  border-top: 1px solid rgba(201,168,76,0.12);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  background: #0f0f10;
}

.footer-logo { font-family: 'Cinzel', serif; font-size: 0.85rem; letter-spacing: 0.45em; color: #c9a84c; }
.footer-links { display: flex; gap: 2rem; justify-content: center; }
.footer-links a { font-family: 'Jost', sans-serif; font-size: 0.6rem; letter-spacing: 0.15em; color: #b0a898; text-transform: uppercase; transition: color 0.3s; }
.footer-links a:hover { color: #c9a84c; }
.footer-right { text-align: right; }
.footer-copy { font-family: 'Jost', sans-serif; font-size: 0.62rem; color: #b0a898; opacity: 0.35; }
.footer-ig { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 0.4rem; font-family: 'Jost', sans-serif; font-size: 0.52rem; letter-spacing: 0.28em; color: #c9a84c; opacity: 0.5; transition: opacity 0.3s; text-decoration: none; }
.footer-ig:hover { opacity: 1; }

/* --- COLLECTIONS PAGE --- */
.page-banner { min-height: 45vh; display: flex; flex-direction: column; justify-content: flex-end; padding: 8rem 8vw 4rem; border-bottom: 1px solid rgba(201,168,76,0.1); }
.page-banner-title { font-size: clamp(3rem, 6vw, 6rem); font-weight: 300; line-height: 1; margin-top: 1.2rem; }
.page-banner-title em { font-style: italic; color: #e8d5a3; }
#full-collections { padding: 8rem 8vw; }
.coll-block { margin-bottom: 10rem; }
.coll-block:last-of-type { margin-bottom: 0; }
.coll-block-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 4rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(201,168,76,0.1); }
.coll-block-title { font-size: clamp(1.8rem, 2.8vw, 3rem); font-weight: 300; line-height: 1.1; }
.coll-block-title em { font-style: italic; color: #e8d5a3; }
.coll-block-tag { font-size: 0.78rem; color: #b0a898; letter-spacing: 0.1em; margin-top: 0.4rem; }
.coll-block-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; }
.coll-piece { aspect-ratio: 3/4; position: relative; overflow: hidden; background: #1a1812; border: 1px solid rgba(201,168,76,0.07); transition: border-color 0.4s; }
.coll-piece:hover { border-color: rgba(201,168,76,0.35); }
.coll-piece canvas { width: 100%; height: 100%; display: block; }
.cp-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,15,16,0.96) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.4rem; opacity: 0; transition: opacity 0.4s; }
.coll-piece:hover .cp-overlay { opacity: 1; }
.cp-name { font-size: 1rem; font-weight: 300; }
.cp-name em { font-style: italic; color: #e8d5a3; }
.cp-meta { font-family: 'Jost', sans-serif; font-size: 0.48rem; letter-spacing: 0.22em; color: #b0a898; margin-top: 0.3rem; text-transform: uppercase; }
.bespoke-block { padding: 4rem; border: 1px solid rgba(201,168,76,0.12); background: #111009; text-align: center; margin-top: 3rem; }

/* --- COMMISSION PAGE --- */
.comm-hero { padding: 14rem 8vw 5rem; }
.comm-heading { font-size: clamp(2rem, 3.5vw, 3.8rem); font-weight: 300; line-height: 1.15; margin-top: 1.5rem; }
.comm-heading em { font-style: italic; color: #e8d5a3; }
.comm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8rem; padding: 0 8vw 10rem; align-items: start; }
.comm-body { margin-top: 1.8rem; font-size: 1rem; line-height: 2.1; color: #b0a898; }
.comm-details { margin-top: 3rem; }
.comm-row { display: flex; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid rgba(201,168,76,0.07); align-items: flex-start; }
.comm-row-icon { color: #c9a84c; opacity: 0.7; flex-shrink: 0; margin-top: 0.1rem; }
.comm-row-label { font-family: 'Jost', sans-serif; font-size: 0.52rem; letter-spacing: 0.35em; color: #c9a84c; opacity: 0.6; margin-bottom: 0.4rem; text-transform: uppercase; display: block; }
.comm-row-val { font-size: 0.88rem; color: #b0a898; line-height: 1.7; }
.form-title { font-size: 1.5rem; font-weight: 300; margin-bottom: 2.5rem; }
.fg { margin-bottom: 1.6rem; }
.fg label { display: block; font-family: 'Jost', sans-serif; font-size: 0.52rem; letter-spacing: 0.4em; color: #c9a84c; opacity: 0.65; text-transform: uppercase; margin-bottom: 0.65rem; }
.fg input, .fg select, .fg textarea { width: 100%; background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.15); color: #f5f0e8; font-family: 'Cormorant Garamond', serif; font-size: 1rem; padding: 0.85rem 1.1rem; outline: none; resize: none; transition: border-color 0.3s; -webkit-appearance: none; appearance: none; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: #c9a84c; }
.fg select option { background: #0f0f10; }
.fg textarea { height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.75rem; color: #b0a898; line-height: 1.7; margin-top: 0.5rem; }
.form-submit { width: 100%; margin-top: 0.5rem; }
.form-thanks { display: none; text-align: center; padding: 3rem; border: 1px solid rgba(201,168,76,0.15); background: #111009; }
.form-thanks p { font-size: 0.95rem; color: #b0a898; line-height: 2; margin-top: 1rem; }

/* --- DESIGNER PAGE --- */
.designer-wrap { height: 100vh; display: flex; flex-direction: column; overflow: hidden; padding-top: 65px; }
.designer-bar { display: flex; justify-content: space-between; align-items: center; padding: 0.9rem 2rem; border-bottom: 1px solid rgba(201,168,76,0.12); flex-shrink: 0; background: rgba(15,15,16,0.96); }
.designer-bar-title { font-family: 'Jost', sans-serif; font-size: 0.6rem; letter-spacing: 0.4em; color: #c9a84c; opacity: 0.7; }
.designer-workspace { display: flex; flex: 1; overflow: hidden; }
.designer-main { flex: 1; display: flex; align-items: center; justify-content: center; background: #0d0c09; }
#dCanvas { box-shadow: 0 0 0 1px rgba(201,168,76,0.18), 0 30px 80px rgba(0,0,0,0.8); }
.designer-sidebar { width: 260px; flex-shrink: 0; background: #111009; border-left: 1px solid rgba(201,168,76,0.12); overflow-y: auto; }
.designer-sidebar::-webkit-scrollbar { width: 3px; }
.designer-sidebar::-webkit-scrollbar-thumb { background: rgba(201,168,76,0.15); }
.ds-current { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.92rem; color: #e8d5a3; text-align: center; padding: 0.85rem 1.4rem; border-bottom: 1px solid rgba(201,168,76,0.12); }
.ds-section { padding: 1.2rem 1.4rem; border-bottom: 1px solid rgba(201,168,76,0.12); }
.ds-label { font-family: 'Jost', sans-serif; font-size: 0.5rem; letter-spacing: 0.45em; color: #c9a84c; text-transform: uppercase; opacity: 0.62; margin-bottom: 1rem; display: block; }
.pat-btns { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; }
.pat-btn { background: rgba(255,255,255,0.03); border: 1px solid rgba(201,168,76,0.12); color: #f5f0e8; font-family: 'Cormorant Garamond', serif; font-size: 0.78rem; padding: 0.62rem 0.4rem; cursor: pointer; transition: all 0.25s; text-align: center; line-height: 1.2; }
.pat-btn:hover, .pat-btn.active { border-color: #c9a84c; color: #c9a84c; background: rgba(201,168,76,0.07); }
.pal-dots { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.pal-dot { width: 28px; height: 28px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s, transform 0.2s; }
.pal-dot:hover { transform: scale(1.15); }
.pal-dot.active { border-color: #f5f0e8; }
.slider-row { margin-bottom: 0.8rem; }
.slider-head { display: flex; justify-content: space-between; margin-bottom: 0.38rem; }
.slider-name { font-size: 0.72rem; color: #b0a898; }
.slider-val { font-family: 'Jost', sans-serif; font-size: 0.58rem; color: #c9a84c; }
input[type=range] { -webkit-appearance: none; width: 100%; height: 1px; background: rgba(201,168,76,0.15); outline: none; cursor: pointer; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 11px; height: 11px; background: #c9a84c; border-radius: 50%; cursor: pointer; }
.toggle-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.7rem; }
.toggle-label { font-size: 0.72rem; color: #b0a898; }
.toggle { width: 32px; height: 16px; background: rgba(201,168,76,0.15); border-radius: 8px; position: relative; cursor: pointer; transition: background 0.3s; }
.toggle.on { background: #c9a84c; }
.toggle::after { content: ''; position: absolute; top: 2px; left: 2px; width: 12px; height: 12px; background: #f5f0e8; border-radius: 50%; transition: left 0.3s; }
.toggle.on::after { left: 18px; }


/* ── ATELIER: editorial text-only layout ── */
.atelier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 5rem;
}

.team-card-inner {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.team-divider {
  width: 32px;
  height: 1px;
  background: #c9a84c;
  opacity: 0.45;
  margin: 1.8rem 0;
}

/* Raise team bio readability */
.team-bio {
  font-size: 0.92rem;
  line-height: 2.15;
  color: #b0a898;
}
.team-bio strong { color: #f0ebe0; font-weight: 400; }

.team-name {
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  margin-bottom: 0.2rem;
  color: #f5f0e8;
}

.team-position {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  color: #b0a898;
  letter-spacing: 0.18em;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.team-role {
  font-family: 'Jost', sans-serif;
  font-size: 0.52rem;
  letter-spacing: 0.42em;
  color: #c9a84c;
  opacity: 0.7;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

/* Editorial pull quote inside team card */
.team-editorial-quote {
  font-size: clamp(1.1rem, 1.6vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  color: #e8d5a3;
  line-height: 1.6;
  border-left: 1px solid rgba(201,168,76,0.35);
  padding-left: 1.8rem;
  margin: 2rem 0;
  opacity: 0.85;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  nav { padding: 1.4rem 2.5rem; }
  nav.scrolled { padding: 0.9rem 2.5rem; }
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }
  #philosophy, .ai-inner, .comm-grid, .ind-inner { grid-template-columns: 1fr; gap: 4rem; }
  #philosophy { padding: 7rem 6vw; }
  .pgs-grid, .why-grid, .proof-grid, .mat-grid, .coll-block-grid { grid-template-columns: 1fr 1fr; }
  .atelier-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .coll-panel-inner { grid-template-columns: 1fr; gap: 3rem; }
  .coll-grid { grid-template-columns: repeat(2,1fr); }
  footer { grid-template-columns: 1fr; text-align: center; }
  .footer-right { text-align: center; }
  .designer-workspace { flex-direction: column; }
  .designer-sidebar { width: 100%; max-height: 220px; }
  .team-card { grid-template-columns: 1fr; gap: 1.5rem; }
  #mt1, #mt2, #mt3, #mt4 { display: none; }
}

@media (max-width: 640px) {
  nav { padding: 1.2rem 1.5rem; }
  .pgs-grid, .why-grid, .proof-grid, .mat-grid, .coll-block-grid, .atelier-grid { grid-template-columns: 1fr; }
  .hero-actions, .closing-actions, .ai-actions, .phil-actions { flex-direction: column; align-items: flex-start; }
  .coll-tabs { overflow-x: auto; }
  .order-cards { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .comm-grid { padding: 0 6vw 6rem; }
}



/* Loader domain line */
#loader-domain {
  font-family: 'Jost', sans-serif;
  font-size: 0.48rem;
  letter-spacing: 0.55em;
  color: #c9a84c;
  opacity: 0;
  text-transform: uppercase;
  margin-top: 0.4rem;
  animation: fadeUp 0.8s 1s ease forwards;
}

/* Designer — pile finish toggles (decorative only) */
#togCut, #togLoop {
  pointer-events: none;
  opacity: 0.6;
}

/* ── TARGETED READABILITY BOOSTS ── */

/* AI Studio — all descriptive text */
.ai-feat-title  { color: #f0ebe0; }
.ai-feat-sub    { color: #c2b9ae; font-size: 0.84rem; line-height: 1.8; }
.ai-body        { color: #c2b9ae; }

/* Process section */
.pstep-body     { color: #b8b0a5; font-size: 0.84rem; line-height: 2; }
.pstep-title    { color: #f0ebe0; }

/* PGS cards */
.pgs-body       { color: #b8b0a5; font-size: 0.9rem; line-height: 2; }
.pgs-heading    { color: #f0ebe0; }
.pgs-list li    { color: #b8b0a5; font-size: 0.86rem; }

/* Materials */
.mat-name       { color: #f0ebe0; }
.mat-desc       { color: #b8b0a5; font-size: 0.88rem; line-height: 2; }
.mat-spec       { color: #a09080; font-size: 0.76rem; }

/* Individual orders */
.order-title    { color: #f0ebe0; }
.order-body     { color: #b8b0a5; font-size: 0.88rem; line-height: 1.9; }
.order-price    { color: #c9a84c; }

/* Trust items */
.trust-title    { color: #f0ebe0; }
.trust-body     { color: #b8b0a5; font-size: 0.84rem; line-height: 1.85; }

/* Commission details */
.comm-body      { color: #b8b0a5; }
.comm-row-val   { color: #b8b0a5; font-size: 0.9rem; }

/* Why grid */
.why-body       { color: #b8b0a5; font-size: 0.86rem; line-height: 2; }
.why-title      { color: #f0ebe0; }

/* Proof section */
.proof-label    { color: #b0a898; font-size: 0.84rem; }

/* Atelier / team */
.team-bio       { color: #b8b0a5; font-size: 0.94rem; line-height: 2.2; }
.team-bio strong { color: #f0ebe0; font-weight: 400; }
.team-name      { color: #f5f0e8; }
.team-position  { color: #a09080; }

/* CTA sections */
.wa-body        { color: #b8b0a5; }
.closing-email  { color: #9a9080; }

/* Footer */
.footer-links a { color: #9a9080; }
.footer-copy    { color: #8a8070; }

/* Form notes */
.form-note      { color: #b0a898; }

/* Chips / AI chips */
.chip           { color: #9a9080; }
.chip:hover     { color: #c9a84c; }

/* coll-item sub */
.coll-item-sub  { color: #9a9080; }

/* Spec rows */
.spec-label     { color: #9a9080; }
.spec-value     { color: #f0ebe0; opacity: 1; }

/* Section body paragraphs - base readable default */
p               { color: #b0a898; }

/* ── MOBILE REFINEMENTS ── */
@media (max-width: 640px) {
  #hero { padding: 0 6vw; min-height: 100svh; }
  .hero-title { font-size: clamp(2.4rem, 9vw, 4rem); }
  .hero-body { max-width: 100%; font-size: 0.95rem; }
  .hero-actions { gap: 1.2rem; }
  .hero-scroll { display: none; }

  #philosophy { padding: 6rem 6vw; gap: 3rem; }
  .phil-body { font-size: 1rem; line-height: 2.05; }
  .pull-quote { font-size: 1.2rem; padding-left: 1.5rem; }

  #ai-studio { padding: 6rem 6vw; }
  .ai-inner { gap: 3rem; }
  .ai-widget { height: auto; min-height: 360px; }

  #process { padding: 6rem 6vw; }
  .pstep { padding: 1.5rem 0; }
  .pstep-num { font-size: 2rem; }

  #proof { padding: 5rem 6vw; }
  .proof-val { font-size: 2.5rem; }

  #why { padding: 6rem 6vw; }

  #atelier { padding: 6rem 6vw; }
  .atelier-grid { grid-template-columns: 1fr; gap: 2px; }
  .team-card { padding: 2.5rem 2rem; }

  #materials { padding: 6rem 6vw; }
  .mat-card { padding: 2rem 1.6rem; }
  .mat-features { padding: 1.5rem; }

  #individual { padding: 6rem 6vw; }
  #whatsapp-cta { padding: 5rem 6vw; }
  #closing { padding: 8rem 6vw; }
  #closing::before { font-size: clamp(3rem, 20vw, 8rem); }
  .closing-heading { font-size: clamp(2rem, 8vw, 3.5rem); }

  footer { padding: 2.5rem 2rem; gap: 1.5rem; }

  .collections-head .section-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .coll-grid { grid-template-columns: 1fr 1fr; }
  .coll-panel-inner { gap: 2.5rem; }

  .comm-hero { padding: 8rem 6vw 4rem; }
  .comm-grid { gap: 3rem; padding: 0 6vw 5rem; }

  .btn-gold, .btn-border { padding: 0.85rem 1.6rem; font-size: 0.55rem; }
  .btn-wa { padding: 0.9rem 1.8rem; font-size: 0.58rem; }

  /* Prevent AUREVIA ghost text overflow on mobile */
  .hero-ghost { font-size: clamp(5rem, 30vw, 12rem); right: -5vw; opacity: 0.7; }
  #closing::before { opacity: 1; }
}

/* iPhone Safari specific fixes */
@supports (-webkit-touch-callout: none) {
  #hero { min-height: -webkit-fill-available; }
  .designer-wrap { height: -webkit-fill-available; }
  body { -webkit-font-smoothing: antialiased; }
}

/* Improve É rendering across all contexts */
.nav-brand, #loader-name, .hero-ghost,
.s3d-heading, .page-banner-title,
.footer-logo, .designer-bar span,
h1, h2, h3 {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   MAXIMUM CONTRAST OVERRIDES
   Dark warm charcoal on any background — readable
   everywhere, luxury tone preserved
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* Base paragraph — readable on ANY background */
p { color: #2a2520 !important; }

/* ── AI STUDIO ── */
.ai-body        { color: #2a2520 !important; font-weight: 400; }
.ai-feat-title  { color: #1a1410 !important; font-weight: 500; font-size: 0.92rem; }
.ai-feat-sub    { color: #3a322c !important; font-size: 0.86rem; font-weight: 400; }

/* ── PROCESS SECTION (ivory background) ── */
.pstep-num {
  color: #2a2520 !important;
  -webkit-text-stroke: 0 !important;
  font-weight: 600 !important;
  font-size: 2.8rem !important;
  opacity: 1 !important;
}
.pstep-title { color: #1a1410 !important; font-weight: 500; }
.pstep-body  { color: #2a2520 !important; font-weight: 400; font-size: 0.9rem; }

/* ── WHY SECTION ── */
.why-title { color: #1a1410 !important; font-weight: 500; }
.why-body  { color: #2a2520 !important; font-weight: 400; }

/* ── PGS CARDS ── */
.pgs-heading    { color: #1a1410 !important; font-weight: 500; }
.pgs-body       { color: #2a2520 !important; font-weight: 400; }
.pgs-list li    { color: #2a2520 !important; font-weight: 400; }

/* ── MATERIALS ── */
.mat-name em    { color: #c9a84c !important; }
.mat-desc       { color: #2a2520 !important; font-weight: 400; }
.mat-spec       { color: #5a4f46 !important; font-weight: 400; }

/* ── ORDER / INDIVIDUAL SECTION ── */
.order-title    { color: #1a1410 !important; font-weight: 500; }
.order-body     { color: #2a2520 !important; font-weight: 400; }
.trust-title    { color: #1a1410 !important; font-weight: 500; }
.trust-body     { color: #2a2520 !important; font-weight: 400; }

/* ── PROOF SECTION ── */
.proof-label    { color: #2a2520 !important; font-weight: 400; }

/* ── COMMISSION PAGE ── */
.comm-body      { color: #2a2520 !important; font-weight: 400; }
.comm-row-val   { color: #2a2520 !important; font-weight: 400; }
.form-note      { color: #3a322c !important; }

/* ── PHILOSOPHY SECTION ── */
.phil-body      { color: #2a2520 !important; font-weight: 400; }

/* ── HERO ── */
.hero-body      { color: #2a2520 !important; font-weight: 400; }
.hero-tag       { color: #5a4f46 !important; }

/* ── ATELIER ── */
.team-bio       { color: #2a2520 !important; font-weight: 400; }
.team-bio strong{ color: #1a1410 !important; font-weight: 500; }
.team-position  { color: #5a4f46 !important; }

/* ── FOOTER ── */
.footer-links a { color: #5a4f46 !important; }
.footer-copy    { color: #5a4f46 !important; opacity: 1 !important; }

/* ── CLOSING / WA ── */
.wa-body        { color: #2a2520 !important; font-weight: 400; }
.closing-email  { color: #5a4f46 !important; opacity: 1 !important; }

/* ── COLL BLOCK TAG ── */
.coll-block-tag { color: #2a2520 !important; font-weight: 400; }
.coll-desc      { color: #2a2520 !important; font-weight: 400; }

/* Ensure section-title paragraph stays light on dark bg */
#hero .hero-body,
#closing .closing-email,
#whatsapp-cta .wa-body {
  color: #2a2520 !important;
}

/* Override the scroll-bg-influenced sections back to dark text */
#philosophy .phil-body,
#collections-overview .coll-desc,
#ai-studio .ai-body,
#ai-studio .ai-feat-sub,
#process .pstep-body,
#why .why-body,
#materials .mat-desc,
#individual .order-body,
#individual .trust-body {
  color: #2a2520 !important;
  font-weight: 400;
}

/* ── AI feat icons stay gold, boxes stay visible ── */
.ai-feat { border-color: rgba(42,37,32,0.2) !important; }
.ai-feat:hover { border-color: rgba(201,168,76,0.5) !important; }


/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SECTION-LEVEL CONTRAST FIX v5
   Each section gets explicit bg + guaranteed readable text
   Works regardless of scroll gradient state
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

/* DARK background sections — force light text */
#hero,
#s3d,
#pgs,
#ai-studio,
#atelier,
#whatsapp-cta,
#closing,
#proof,
footer,
.page-banner {
  position: relative;
  z-index: 1;
}

#hero::before,
#s3d .s3d-sticky::before,
#pgs::before,
#ai-studio::before,
#atelier::before,
#proof::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15,15,16,0.72);
  z-index: 0;
  pointer-events: none;
}

/* Ensure content sits above the overlay */
#hero > *,
#pgs > *,
#ai-studio > *,
#atelier > *,
#proof > * {
  position: relative;
  z-index: 1;
}

/* LIGHT/TAUPE background sections — force dark text */
#philosophy,
#collections-overview,
#process,
#why,
#materials,
#individual,
#whatsapp-cta {
  background: transparent;
}

/* ── UNIVERSAL: all paragraphs adapt per section ── */

/* Dark sections: light ivory text */
#hero p,
#pgs p, #pgs li,
#ai-studio p,
#atelier p,
#proof p,
#whatsapp-cta p,
#closing p {
  color: #e8e0d5 !important;
  font-weight: 400;
}

/* Medium sections: warm readable */
#philosophy p,
#collections-overview p,
#why p,
#materials p,
#individual p {
  color: #2a2520 !important;
  font-weight: 400;
}

/* Process — light bg, dark text */
#process p, #process .pstep-body {
  color: #1a1410 !important;
  font-weight: 400;
  font-size: 0.9rem;
}

#process .pstep-title {
  color: #0f0c08 !important;
  font-weight: 500;
}

#process .pstep-num {
  color: #0f0c08 !important;
  -webkit-text-stroke: none !important;
  font-weight: 700 !important;
  opacity: 1 !important;
}

/* ── HEADINGS: always visible ── */
h1, h2, h3 { color: #f5f0e8; }

#process h2,
#process h3 { color: #1a1410 !important; }

#philosophy h2,
#collections-overview h2,
#why h2,
#materials h2,
#individual h2 { color: #1a1410 !important; }

/* ── em/italic gold — darker richer tone, readable everywhere ── */
em { color: #c9a84c; }

#process em,
#philosophy em,
#collections-overview em,
#why em,
#materials em,
#individual em { color: #8b6010 !important; }

/* ── AI STUDIO: always dark bg, ivory text ── */
.ai-heading { color: #f5f0e8 !important; }
.ai-heading em { color: #c9a84c !important; }
.ai-body { color: #d4cdc4 !important; }
.ai-feat-title { color: #f0ebe0 !important; font-weight: 500; }
.ai-feat-sub { color: #c8c0b8 !important; font-size: 0.86rem; }

/* ── PHILOSOPHY: taupe bg context ── */
.phil-heading { color: #1a1410 !important; }
.phil-heading em { color: #8b6010 !important; }
.phil-body { color: #2a2520 !important; font-weight: 400; }
.pull-quote { color: #3d2e10 !important; border-left-color: #8b6010; }
.pull-quote cite { color: #5a4a30 !important; }

/* ── PGS CARDS: dark bg ── */
.pgs-num { color: rgba(201,168,76,0.3) !important; -webkit-text-stroke: none !important; }
.pgs-label { color: #c9a84c !important; opacity: 1 !important; }
.pgs-heading { color: #f0ebe0 !important; }
.pgs-heading em { color: #c9a84c !important; }
.pgs-body { color: #d4cdc4 !important; }
.pgs-list li { color: #d4cdc4 !important; }
.pgs-list li::before { color: #c9a84c !important; }

/* ── PROOF: dark bg ── */
.proof-val { color: #e8d5a3 !important; }
.proof-label { color: #d4cdc4 !important; }
.section-title { color: #f5f0e8; }

/* ── WHY: taupe bg ── */
.why-title { color: #1a1410 !important; font-weight: 500; }
.why-body { color: #2a2520 !important; }
.why-icon { color: #8b6010 !important; }

/* ── MATERIALS: taupe bg ── */
.mat-name { color: #1a1410 !important; }
.mat-name em { color: #8b6010 !important; }
.mat-desc { color: #2a2520 !important; }
.mat-spec { color: #5a4a30 !important; }
.mat-num { color: #8b6010 !important; opacity: 0.9 !important; }
.mat-feat-label { color: #8b6010 !important; opacity: 1 !important; }
.mat-feat-val { color: #1a1410 !important; }

/* ── INDIVIDUAL / ORDERS: dark bg ── */
.order-type { color: #c9a84c !important; opacity: 1 !important; }
.order-title { color: #f0ebe0 !important; }
.order-body { color: #d4cdc4 !important; }
.order-price { color: #c9a84c !important; }
.trust-title { color: #f0ebe0 !important; }
.trust-body { color: #d4cdc4 !important; }
.trust-icon { color: #c9a84c !important; }

/* ── ATELIER / TEAM: dark bg ── */
.team-role { color: #c9a84c !important; opacity: 1 !important; }
.team-name { color: #f5f0e8 !important; }
.team-position { color: #b0a898 !important; }
.team-editorial-quote { color: #e8d5a3 !important; border-left-color: #c9a84c !important; }
.team-bio { color: #d4cdc4 !important; }
.team-bio strong { color: #f0ebe0 !important; }
.team-divider { background: #c9a84c !important; opacity: 0.4; }

/* ── WHATSAPP CTA ── */
.wa-heading { color: #f5f0e8 !important; }
.wa-heading em { color: #c9a84c !important; }
.wa-body { color: #d4cdc4 !important; }

/* ── CLOSING ── */
.closing-heading { color: #f5f0e8 !important; }
.closing-heading em { color: #c9a84c !important; }
.closing-email { color: #9a9080 !important; opacity: 1 !important; }

/* ── COLLECTIONS OVERVIEW ── */
.coll-title { color: #1a1410 !important; }
.coll-title em { color: #8b6010 !important; }
.coll-desc { color: #2a2520 !important; }
.spec-label { color: #5a4a30 !important; }
.spec-value { color: #1a1410 !important; opacity: 1 !important; }
.eyebrow { color: #c9a84c !important; }

/* ── COMMISSION PAGE ── */
.comm-heading { color: #f5f0e8 !important; }
.comm-heading em { color: #c9a84c !important; }
.comm-body { color: #d4cdc4 !important; }
.comm-row-label { color: #c9a84c !important; opacity: 1 !important; }
.comm-row-val { color: #d4cdc4 !important; }
.form-note { color: #b0a898 !important; }
.form-title { color: #f5f0e8 !important; }

/* ── COLLECTION FULL PAGE ── */
.coll-block-title { color: #f5f0e8 !important; }
.coll-block-title em { color: #c9a84c !important; }
.coll-block-tag { color: #d4cdc4 !important; }
.page-banner-title { color: #f5f0e8 !important; }
.page-banner-title em { color: #c9a84c !important; }

/* ── FOOTER ── */
.footer-logo { color: #c9a84c !important; }
.footer-links a { color: #b0a898 !important; }
.footer-links a:hover { color: #c9a84c !important; }
.footer-copy { color: #6b6358 !important; opacity: 1 !important; }
.footer-ig { color: #c9a84c !important; opacity: 0.6; }

/* ── NAV ── */
.nav-brand { color: #c9a84c !important; }
.nav-links a { color: #f5f0e8 !important; opacity: 0.55; }
.nav-links a:hover, .nav-links a.active { color: #c9a84c !important; opacity: 1 !important; }
.nav-cta { color: #0f0f10 !important; background: #c9a84c !important; }

/* ── HERO ── */
.hero-title { color: #f5f0e8 !important; }
.hero-title em { color: #e8d5a3 !important; }
.hero-tag { color: #b0a898 !important; }
.hero-body { color: #d4cdc4 !important; font-weight: 400; }
.hero-eyebrow { color: #c9a84c !important; }

/* ── MARQUEE ── */
.marquee-item { color: #c9a84c !important; }

/* ── SECTION EYEBROWS everywhere ── */
.eyebrow { color: #c9a84c !important; letter-spacing: 0.55em; }

/* ── AI widget internal ── */
.ai-widget-title { color: #c9a84c !important; opacity: 1 !important; }
.ai-msg.bot { color: #f0ebe0 !important; }
.ai-msg.thinking { color: #b0a898 !important; }
.chip { color: #b0a898 !important; }
.chip:hover { color: #c9a84c !important; }
.ai-input { color: #f5f0e8 !important; }
.ai-input::placeholder { color: #6b6358 !important; }

/* ── DS SIDEBAR ── */
.ds-label { color: #c9a84c !important; opacity: 1 !important; }
.ds-current { color: #e8d5a3 !important; }
.slider-name { color: #b0a898 !important; }
.slider-val { color: #c9a84c !important; }
.toggle-label { color: #b0a898 !important; }
.pat-btn { color: #f0ebe0 !important; }
.pat-btn.active, .pat-btn:hover { color: #c9a84c !important; }

/* ── FORM elements ── */
.fg label { color: #c9a84c !important; opacity: 1 !important; }
.fg input, .fg select, .fg textarea { color: #f5f0e8 !important; }
.fg input::placeholder, .fg textarea::placeholder { color: #6b6358 !important; }

/* ── S3D text overlays ── */
.s3d-label { color: #c9a84c !important; }
.s3d-heading { color: #f5f0e8 !important; }
.s3d-heading em { color: #e8d5a3 !important; }

/* ── WHY + PROOF eyebrow area ── */
#why .section-title { color: #1a1410 !important; }
#why .section-title em { color: #8b6010 !important; }

#proof .eyebrow { color: #c9a84c !important; }
#proof .section-title { color: #f5f0e8 !important; }
#proof .section-title em { color: #e8d5a3 !important; }

/* ── CLOSING eyebrow ── */
#closing .eyebrow { color: #c9a84c !important; }


/* ══════════════════════════════════════════════════════════════
   DEFINITIVE TEXT CONTRAST — v6 FINAL
   All text forced to warm ivory — readable on dark AND taupe
   The scroll gradient creates atmosphere; text stays bright
══════════════════════════════════════════════════════════════ */

/* ── BASE: all body text warm ivory everywhere ── */
body, p, li, span, div, label, td, th {
  color: #e0d8ce;
}

/* ── HEADINGS: bright ivory ── */
h1, h2, h3, h4, h5 {
  color: #f5f0e8 !important;
}

h1 em, h2 em, h3 em { color: #c9a84c !important; }

/* ── PHILOSOPHY specific override (appears dark in screenshots) ── */
#philosophy * { color: #e0d8ce !important; }
#philosophy h2 { color: #f5f0e8 !important; }
#philosophy h2 em { color: #c9a84c !important; }
#philosophy .phil-body { color: #e0d8ce !important; }
#philosophy .pull-quote { color: #e8d5a3 !important; }
#philosophy .pull-quote cite { color: #b0a898 !important; }

/* ── HERO ── */
#hero .hero-title { color: #f5f0e8 !important; }
#hero .hero-title em { color: #e8d5a3 !important; }
#hero .hero-body { color: #d8d0c6 !important; }
#hero .hero-tag { color: #b0a898 !important; }

/* ── COLLECTIONS OVERVIEW (dark bg scroll phase) ── */
#collections-overview * { color: #e0d8ce !important; }
#collections-overview h2 { color: #f5f0e8 !important; }
#collections-overview h2 em { color: #c9a84c !important; }
#collections-overview .coll-title { color: #f5f0e8 !important; }
#collections-overview .coll-title em { color: #c9a84c !important; }
#collections-overview .coll-desc { color: #d8d0c6 !important; }
#collections-overview .spec-label { color: #c9a84c !important; opacity: 0.8 !important; }
#collections-overview .spec-value { color: #f0ebe0 !important; }

/* ── PGS ── */
#pgs * { color: #e0d8ce !important; }
#pgs .pgs-num { color: rgba(201,168,76,0.25) !important; }
#pgs .pgs-label { color: #c9a84c !important; opacity: 1 !important; }
#pgs .pgs-heading { color: #f5f0e8 !important; }
#pgs .pgs-heading em { color: #c9a84c !important; }
#pgs .pgs-list li { color: #d8d0c6 !important; }
#pgs .pgs-list li::before { color: #c9a84c !important; }

/* ── AI STUDIO ── */
#ai-studio * { color: #e0d8ce !important; }
#ai-studio .ai-heading { color: #f5f0e8 !important; }
#ai-studio .ai-heading em { color: #c9a84c !important; }
#ai-studio .ai-body { color: #d8d0c6 !important; }
#ai-studio .ai-feat-title { color: #f0ebe0 !important; }
#ai-studio .ai-feat-sub { color: #c8c0b8 !important; }

/* ── PROCESS (appears light-ish but text still invisible) ── */
#process * { color: #1a1410 !important; }
#process h2 { color: #0f0c08 !important; }
#process h2 em { color: #8b6010 !important; }
#process .pstep-num { 
  color: #0f0c08 !important; 
  -webkit-text-stroke: none !important;
  font-weight: 700 !important;
  opacity: 1 !important;
}
#process .pstep-title { color: #1a1410 !important; font-weight: 600 !important; }
#process .pstep-body { color: #2a2520 !important; font-weight: 400 !important; }
#process .eyebrow { color: #c9a84c !important; }

/* ── PROOF ── */
#proof * { color: #e0d8ce !important; }
#proof .proof-val { color: #e8d5a3 !important; }
#proof .proof-label { color: #d8d0c6 !important; }
#proof h2 { color: #f5f0e8 !important; }
#proof h2 em { color: #e8d5a3 !important; }

/* ── WHY ── */
#why * { color: #e0d8ce !important; }
#why h2 { color: #f5f0e8 !important; }
#why h2 em { color: #c9a84c !important; }
#why .why-title { color: #f0ebe0 !important; }
#why .why-body { color: #d8d0c6 !important; }
#why .why-icon { color: #c9a84c !important; }

/* ── ATELIER ── */
#atelier * { color: #e0d8ce !important; }
#atelier h2 { color: #f5f0e8 !important; }
#atelier h2 em { color: #c9a84c !important; }
#atelier .team-role { color: #c9a84c !important; }
#atelier .team-name { color: #f5f0e8 !important; }
#atelier .team-position { color: #b0a898 !important; }
#atelier .team-editorial-quote { color: #e8d5a3 !important; }
#atelier .team-bio { color: #d8d0c6 !important; }
#atelier .team-bio strong { color: #f5f0e8 !important; }

/* ── MATERIALS ── */
#materials * { color: #e0d8ce !important; }
#materials h2 { color: #f5f0e8 !important; }
#materials h2 em { color: #c9a84c !important; }
#materials .mat-num { color: #c9a84c !important; opacity: 0.7 !important; }
#materials .mat-name { color: #f0ebe0 !important; }
#materials .mat-name em { color: #c9a84c !important; }
#materials .mat-desc { color: #d8d0c6 !important; }
#materials .mat-spec { color: #b0a898 !important; font-style: italic; }
#materials .mat-feat-label { color: #c9a84c !important; opacity: 0.9 !important; }
#materials .mat-feat-val { color: #e0d8ce !important; }

/* ── INDIVIDUAL ── */
#individual * { color: #e0d8ce !important; }
#individual h2 { color: #f5f0e8 !important; }
#individual h2 em { color: #c9a84c !important; }
#individual .order-type { color: #c9a84c !important; opacity: 1 !important; }
#individual .order-title { color: #f0ebe0 !important; }
#individual .order-body { color: #d8d0c6 !important; }
#individual .order-price { color: #c9a84c !important; }
#individual .trust-title { color: #f0ebe0 !important; }
#individual .trust-body { color: #d8d0c6 !important; }

/* ── WHATSAPP CTA ── */
#whatsapp-cta * { color: #e0d8ce !important; }
#whatsapp-cta h2 { color: #f5f0e8 !important; }
#whatsapp-cta h2 em { color: #c9a84c !important; }
#whatsapp-cta .wa-body { color: #d8d0c6 !important; }

/* ── CLOSING ── */
#closing * { color: #e0d8ce !important; }
#closing h2 { color: #f5f0e8 !important; }
#closing h2 em { color: #c9a84c !important; }
#closing .closing-email { color: #9a9080 !important; opacity: 1 !important; }

/* ── FOOTER ── */
footer * { color: #b0a898 !important; }
footer .footer-logo { color: #c9a84c !important; }
footer .footer-links a { color: #b0a898 !important; }
footer .footer-links a:hover { color: #c9a84c !important; }
footer .footer-copy { color: #6b6358 !important; }
footer .footer-ig { color: #c9a84c !important; }

/* ── COMMISSION PAGE ── */
#page-commission * { color: #e0d8ce !important; }
#page-commission h1, #page-commission h2 { color: #f5f0e8 !important; }
#page-commission h1 em, #page-commission h2 em { color: #c9a84c !important; }
#page-commission .comm-row-label { color: #c9a84c !important; opacity: 1 !important; }
#page-commission .form-title { color: #f5f0e8 !important; }
#page-commission .fg label { color: #c9a84c !important; opacity: 1 !important; }
#page-commission .fg input,
#page-commission .fg select,
#page-commission .fg textarea { color: #f5f0e8 !important; }
#page-commission .form-note { color: #b0a898 !important; }

/* ── FULL COLLECTIONS PAGE ── */
#page-collections * { color: #e0d8ce !important; }
#page-collections h1, #page-collections h2 { color: #f5f0e8 !important; }
#page-collections h1 em, #page-collections h2 em { color: #c9a84c !important; }
#page-collections .coll-block-tag { color: #d8d0c6 !important; }

/* ── EYEBROWS everywhere ── */
.eyebrow { color: #c9a84c !important; }

/* ── EMAIL IN CLOSING ── */
.closing-email { color: #9a9080 !important; opacity: 1 !important; }

/* ── ENSURE p tags never go dark on dark background ── */
#hero p, #philosophy p, #collections-overview p,
#pgs p, #ai-studio p, #proof p, #why p, #atelier p,
#materials p, #individual p, #whatsapp-cta p, #closing p,
#process p { 
  color: inherit !important;
}

/* ── STUDIO@ATELIERAUREVIA email link ── */
a.closing-email { color: #b0a898 !important; opacity: 0.8 !important; }
a.closing-email:hover { color: #c9a84c !important; opacity: 1 !important; }


/* ── PROCESS: restore cream background, dark text ── */
#process {
  background: #f5f0e8 !important;
  position: relative;
  z-index: 2;
}
#process * { color: #1a1410 !important; }
#process h2 { color: #0f0c08 !important; }
#process h2 em { color: #8b6010 !important; }
#process .eyebrow { color: #8b6010 !important; }
#process .pstep-num {
  color: #1a1410 !important;
  -webkit-text-stroke: none !important;
  font-weight: 700 !important;
  opacity: 1 !important;
}
#process .pstep-title { color: #1a1410 !important; font-weight: 600 !important; }
#process .pstep-body  { color: #2a2520 !important; font-weight: 400 !important; }
#process .pstep { border-top-color: rgba(42,37,32,0.25) !important; }


/* ── WHY: heading fully visible ── */
#why h2.section-title,
#why .section-title {
  color: #f5f0e8 !important;
  opacity: 1 !important;
}
#why .section-title em {
  color: #c9a84c !important;
  opacity: 1 !important;
}

/* ══════════════════════════════════════════════════
   AURÉVIA SOCIAL MEDIA — luxury minimal integration
══════════════════════════════════════════════════ */

.social-links {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  justify-content: center;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  position: relative;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.social-link:hover { opacity: 1; transform: translateY(-2px); }
.social-link svg { width: 17px; height: 17px; fill: currentColor; }

/* Brand colours */
.social-link[aria-label*="Instagram"] { color: #C13584; }
.social-link[aria-label*="Instagram"]:hover { color: #E1306C; }
.social-link[aria-label*="Facebook"]  { color: #1877F2; }
.social-link[aria-label*="Facebook"]:hover  { color: #4293ff; }
.social-link[aria-label*="Pinterest"] { color: #E60023; }
.social-link[aria-label*="Pinterest"]:hover { color: #ff1a38; }
.social-link[aria-label*="WhatsApp"]  { color: #25D366; }
.social-link[aria-label*="WhatsApp"]:hover  { color: #2df574; }

/* Hover ring in each brand colour */
.social-link::after {
  content: '';
  position: absolute;
  inset: -4px;
  border: 1px solid transparent;
  border-radius: 50%;
  transition: border-color 0.35s ease, inset 0.35s ease;
}
.social-link[aria-label*="Instagram"]:hover::after { border-color: rgba(193,53,132,0.4); inset:-6px; }
.social-link[aria-label*="Facebook"]:hover::after  { border-color: rgba(24,119,242,0.4);  inset:-6px; }
.social-link[aria-label*="Pinterest"]:hover::after { border-color: rgba(230,0,35,0.4);    inset:-6px; }
.social-link[aria-label*="WhatsApp"]:hover::after  { border-color: rgba(37,211,102,0.4);  inset:-6px; }

/* Footer social placement */
.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.footer-social-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.46rem;
  letter-spacing: 0.55em;
  color: #c9a84c;
  opacity: 0.4;
  text-transform: uppercase;
}

/* Mobile: centre the social row */
@media (max-width: 1024px) {
  .footer-social {
    align-items: center;
  }
}

/* WhatsApp float button — subtle, editorial */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 450;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.wa-float:hover {
  background: rgba(37,211,102,0.22);
  border-color: rgba(37,211,102,0.55);
  transform: translateY(-2px);
}

.wa-float svg {
  width: 20px;
  height: 20px;
  fill: #25D366;
}

.wa-float-tooltip {
  position: absolute;
  right: 52px;
  white-space: nowrap;
  font-family: 'Jost', sans-serif;
  font-size: 0.52rem;
  letter-spacing: 0.28em;
  color: #c9a84c;
  background: rgba(15,15,16,0.92);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 0.4rem 0.8rem;
  opacity: 0;
  transform: translateX(4px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  backdrop-filter: blur(8px);
}

.wa-float:hover .wa-float-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (pointer: coarse) {
  .wa-float-tooltip { display: none; }
}

@media (max-width: 768px) {
  #rugWrap {
    width: 92vw;
    height: 61vw;
  }
  #mt1, #mt2, #mt3, #mt4 { display: none; }
}


/* ── Carpet name labels below each piece ─────────────────────────── */
.coll-item-wrap {
  display: flex;
  flex-direction: column;
}
.coll-item-label {
  text-align: center;
  padding: 0.45rem 0.2rem 0.1rem;
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #c9a84c;
}
.coll-item-label em {
  font-style: italic;
  color: #c9a84c;
}

.coll-piece-wrap {
  display: flex;
  flex-direction: column;
}
.cp-label {
  text-align: center;
  padding: 0.5rem 0.2rem 0.15rem;
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: #c9a84c;
}
.cp-label em {
  font-style: italic;
  color: #c9a84c;
}


/* ── Commission thank you screen ─────────────────────────────────── */
.form-thanks {
  text-align: center;
  padding: 3.5rem 2rem;
  display: none;
}
.thanks-icon {
  font-size: 2.2rem;
  color: #c9a84c;
  margin-bottom: 1.2rem;
  animation: pulse-gold 2.5s ease-in-out infinite;
}
@keyframes pulse-gold {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.15); }
}
.thanks-heading {
  font-size: 1.55rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: #f0e8d0;
  margin: 0.5rem 0 1.4rem;
  line-height: 1.5;
}
.thanks-body {
  color: #8a8070;
  font-size: 0.92rem;
  line-height: 1.85;
  max-width: 42ch;
  margin: 0 auto;
}
.thanks-body strong { color: #c9a84c; font-weight: 400; }
.thanks-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2.2rem;
}
