/* ===================================================
   ARTEVANO — Premium demo build
   =================================================== */

:root{
  /* Route 66 — sun-bleached asphalt, desert dusk, highway-shield signage */
  --black: #14100b;
  --charcoal: #1d1712;
  --charcoal-2: #261e16;
  --cream: #f2e8d6;
  --cream-dim: #e6d7b9;
  --stone: #b7ada0;
  --gold: #cf9a4c;
  --gold-light: #edc27c;
  --rust: #b23d1f;
  --hwy-blue: #3c5c68;
  --hwy-blue-light: #6f95a0;
  --line-yellow: #e3a93a;
  --line: rgba(242,232,214,0.14);
  --line-dark: rgba(20,16,11,0.10);

  --serif: "Fraunces", "Iowan Old Style", "Georgia", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --container: 1320px;
  --ease: cubic-bezier(.19,1,.22,1);
  --patina-level: 0;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background: var(--cream);
  color: var(--black);
  font-family: var(--sans);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img{ display:block; max-width:100%; }
a{ color: inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor:pointer; }

::selection{ background: var(--gold); color: var(--black); }

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* film grain overlay for texture */
.grain{
  position: fixed; inset:0; pointer-events:none; z-index: 9998;
  opacity: .035; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* live patina — the whole site slowly weathers since launch, see js/patina.js */
.patina-veil{
  position: fixed; inset:0; pointer-events:none; z-index: 9997;
  opacity: calc(var(--patina-level, 0) * 0.65);
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='p'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0.70  0 0 0 0 0.24  0 0 0 0 0.10  1 0 0 0 0'/></filter><rect width='100%25' height='100%25' filter='url(%23p)'/></svg>");
  transition: opacity 4s var(--ease);
}
@media (prefers-reduced-motion: reduce){
  .patina-veil{ transition: none; }
}

/* custom cursor (desktop only) */
.cursor-dot{
  position: fixed; top:0; left:0; width:10px; height:10px; border-radius:50%;
  background: var(--gold); pointer-events:none; z-index:9999;
  transform: translate3d(0,0,0) translate(-50%,-50%);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s var(--ease), opacity .25s;
  opacity:0;
  will-change: transform;
}
.cursor-dot.active{ opacity:1; }
.cursor-dot.big{ width:64px; height:64px; background: rgba(198,161,91,0.18); border:1px solid var(--gold); }
@media (hover:none), (max-width: 900px){ .cursor-dot{ display:none; } }

.eyebrow{
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 18px;
  font-weight: 600;
}
.eyebrow--light{ color: var(--gold-light); }

.section-title{
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.08;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.section-lede{
  font-size: 17px;
  line-height: 1.7;
  color: #4a453e;
  max-width: 560px;
  margin: 0;
}
.section-head{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
}

/* buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 16px 34px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
  white-space: nowrap;
  will-change: transform;
}
.btn:hover{ transform: translateY(-2px); box-shadow: 0 14px 28px -14px rgba(13,12,11,.45); }
.btn:active{ transform: translateY(0); box-shadow:none; }
.btn--solid{ background: var(--black); color: var(--cream); border-color: var(--black); }
.btn--solid:hover{ background: transparent; color: var(--black); }
.btn--solid.btn--light{ background: var(--gold); color: var(--black); border-color: var(--gold); }
.btn--solid.btn--light:hover{ background: transparent; color: var(--gold); }
.btn--outline{ background: transparent; color: var(--cream); border-color: rgba(244,240,232,.5); }
.btn--outline:hover{ background: var(--cream); color: var(--black); border-color: var(--cream); }
.btn--ghost{ padding: 11px 24px; font-size: 12px; border: 1px solid var(--line-dark); color: var(--black); }
.btn--ghost:hover{ background: var(--black); color: var(--cream); border-color: var(--black); }

/* ================= NAV ================= */
.nav{
  position: fixed; top:0; left:0; right:0; z-index: 500;
  padding: 26px 0;
  transition: all .4s var(--ease);
}
.nav__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 40px;
  display:flex; align-items:center; justify-content: space-between;
  gap: 32px;
}
.nav__logo{ display:flex; align-items:center; gap:12px; }
.nav__badge{ display:block; }
.nav__wordmark{ height: 15px; width:auto; filter: brightness(0) invert(1); transition: filter .4s var(--ease); }
.nav.solid .nav__wordmark{ filter: none; }
.nav__links{ display:flex; gap: 40px; margin-right: auto; margin-left: 60px; }
.nav__links a{
  font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(244,240,232,.85); font-weight: 500;
  position: relative; padding-bottom: 4px;
  transition: color .3s;
}
.nav__links a::after{
  content:""; position:absolute; left:0; bottom:0; width:100%; height:1px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav__links a:hover::after{ transform: scaleX(1); }
.nav.solid .nav__links a{ color: rgba(13,12,11,.8); }
.nav.solid .nav__links a:hover{ color: var(--black); }
.nav.solid{ background: rgba(244,240,232,.92); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--line-dark); padding: 16px 0; }
.nav.solid .btn--ghost{ border-color: var(--line-dark); }
.nav__cta.btn--ghost{ border-color: rgba(244,240,232,.4); color: var(--cream); }
.nav.solid .nav__cta.btn--ghost{ color: var(--black); border-color: var(--line-dark); }

.nav__lang{
  font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: .06em;
  color: rgba(244,240,232,.85); background: none; border: 1px solid rgba(244,240,232,.35);
  border-radius: 999px; width: 34px; height: 34px; margin-right: 18px; cursor: pointer;
  transition: color .3s, border-color .3s, background-color .3s;
}
.nav__lang:hover{ color: var(--cream); border-color: var(--gold-light); background: rgba(244,240,232,.08); }
.nav.solid .nav__lang{ color: rgba(13,12,11,.75); border-color: var(--line-dark); }
.nav.solid .nav__lang:hover{ color: var(--black); border-color: var(--gold); }
@media (max-width: 900px){ .nav__lang{ margin-right: 10px; } }

.nav__burger{ display:none; flex-direction:column; align-items:center; justify-content:center; gap:5px; background:none; border:none; width:44px; height:44px; padding:0; z-index: 501; }
.nav__burger span{ width: 22px; height:1px; background: var(--cream); display:block; transition: all .3s; }
.nav.solid .nav__burger span{ background: var(--black); }
.nav__mobile{
  display:none; flex-direction: column; gap: 4px;
  max-width: var(--container); margin: 0 auto; padding: 0 40px;
  overflow:hidden; max-height:0; transition: max-height .4s var(--ease);
}
.nav__mobile a{ padding: 14px 0; border-bottom: 1px solid var(--line); font-size:14px; text-transform:uppercase; letter-spacing:.08em; color: var(--cream); }
.nav.solid .nav__mobile a{ color: var(--black); border-color: var(--line-dark); }
.nav.mobile-open{ background: var(--black); padding-bottom: 10px; }
.nav.mobile-open.solid{ background: var(--cream); }
.nav.mobile-open .nav__mobile{ max-height: 320px; display:flex; margin-top: 20px; }

@media (max-width: 900px){
  .nav__links, .nav__cta{ display:none; }
  .nav__burger{ display:flex; }
}
@media (min-width: 901px){
  .nav__mobile{ display:none !important; max-height:0 !important; }
}

/* ================= HERO ================= */
.hero{
  position: relative;
  height: 100vh; min-height: 640px;
  display:flex; align-items:flex-end;
  overflow:hidden;
  background: var(--black);
}
.hero__media{ position:absolute; inset:0; background: var(--black); }
.hero__media img,
.hero__media video{
  width:100%; height:100%; object-fit: cover; object-position: center 42%;
  transform: scale(1.08);
  animation: heroZoom 16s ease-out forwards;
}
.hero__video{ display:block; }
@keyframes heroZoom{ to{ transform: scale(1); } }
.hero__overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(13,12,11,.35) 0%, rgba(13,12,11,.15) 35%, rgba(13,12,11,.85) 100%);
}
.hero__content{
  position: relative; z-index: 2;
  width:100%;
  padding: 0 clamp(24px, 6vw, 90px) 120px;
  color: var(--cream);
}
.hero__title{
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(40px, 6.4vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  max-width: 16ch;
}
.hero__title em{ font-style: italic; font-weight: 400; }
.hero__sub{
  font-size: 17px; line-height: 1.7; max-width: 480px;
  color: rgba(244,240,232,.82); margin: 0 0 40px;
}
.hero__actions{ display:flex; gap: 18px; flex-wrap: wrap; }

/* staggered cinematic hero entrance */
.hero__content .eyebrow.reveal{ transition-delay: .1s; }
.hero__content .hero__sub.reveal{ transition-delay: .95s; }
.hero__content .hero__actions.reveal{ transition-delay: 1.15s; }

/* ---- hero headline: words flow smoothly into place, softly blurred until they settle ---- */
.hero__title[data-reveal]{ opacity:1 !important; transform:none !important; transition:none !important; }
.hero__title .word{ display:inline-block; overflow:visible; vertical-align:top; padding-bottom:.12em; margin-bottom:-.12em; }
.hero__title .word__inner{
  display:inline-block;
  opacity:0;
  filter: blur(9px);
  transform: translate3d(0, 34px, 0);
  transition: transform 1.3s cubic-bezier(.19,1,.22,1), opacity 1.05s ease-out, filter 1.1s ease-out;
  transition-delay: calc(var(--i, 0) * 90ms + .2s);
  will-change: transform, opacity, filter;
}
/* a faint alternating drift gives the flow a gentle current rather than a straight rise */
.hero__title .word:nth-child(odd) .word__inner{ transform: translate3d(-16px, 34px, 0); }
.hero__title .word:nth-child(even) .word__inner{ transform: translate3d(16px, 34px, 0); }
.hero__title.in-view .word__inner{ opacity:1 !important; transform: translate3d(0,0,0) !important; filter: blur(0) !important; }

/* shimmering gold sweep across the italic accent word */
.hero__title em .word__inner{
  background: linear-gradient(100deg, var(--gold-light) 30%, #fff3d6 48%, var(--gold-light) 66%);
  background-size: 260% 100%;
  background-position: 0% 0;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: heroEmShimmer 4.5s ease-in-out infinite;
  animation-delay: 1.6s;
}
@keyframes heroEmShimmer{
  0%{ background-position: 0% 0; }
  50%{ background-position: 100% 0; }
  100%{ background-position: 0% 0; }
}

/* eyebrow: quick word-by-word rise, ahead of the headline */
.hero__content .eyebrow[data-reveal]{ opacity:1 !important; transform:none !important; transition:none !important; }
.hero__content .eyebrow .word{ display:inline-block; overflow:hidden; vertical-align:top; padding-bottom:.15em; margin-bottom:-.15em; }
.hero__content .eyebrow .word__inner{
  display:inline-block; opacity:0; transform: translateY(70%);
  transition: transform .6s var(--ease), opacity .5s ease-out;
  transition-delay: calc(var(--i, 0) * 45ms);
}
.hero__content .eyebrow.in-view .word__inner{ opacity:1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce){
  .hero__title .word__inner,
  .hero__content .eyebrow .word__inner{ transition:none !important; transform:none !important; opacity:1 !important; }
  .hero__title em .word__inner{ animation:none !important; }
}

.hero__sound{
  position:absolute; left: 40px; bottom: 40px; z-index:3;
  display:flex; align-items:center; gap:10px;
  background: rgba(13,12,11,.35); border: 1px solid rgba(244,240,232,.3);
  color: var(--cream); padding: 10px 18px 10px 14px; border-radius: 999px;
  backdrop-filter: blur(6px);
  transition: background-color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.hero__sound:hover{ background: rgba(13,12,11,.6); border-color: rgba(244,240,232,.55); transform: translateY(-2px); }
.hero__sound svg{ display:block; }
.hero__sound .icon-unmuted{ display:none; }
.hero__sound[aria-pressed="true"] .icon-muted{ display:none; }
.hero__sound[aria-pressed="true"] .icon-unmuted{ display:block; }
.hero__sound-label{ font-size: 11px; letter-spacing:.14em; text-transform:uppercase; }
@media (max-width: 640px){ .hero__sound-label{ display:none; } .hero__sound{ left: 24px; bottom: 24px; padding: 9px 14px 9px 12px; } }

.hero__scroll{
  position:absolute; right: 40px; bottom: 40px; z-index:2;
  display:flex; flex-direction: column; align-items:center; gap: 10px;
  color: rgba(244,240,232,.6); font-size:11px; letter-spacing:.16em; text-transform:uppercase;
}
.hero__scroll span{
  width:1px; height: 50px; background: rgba(244,240,232,.35); position:relative; overflow:hidden;
}
.hero__scroll span::after{
  content:""; position:absolute; top:-100%; left:0; width:100%; height:100%;
  background: var(--gold-light); animation: scrollLine 2.2s ease-in-out infinite;
}
@keyframes scrollLine{ 0%{ top:-100%; } 60%{ top:100%; } 100%{ top:100%; } }
@media (max-width: 640px){ .hero__scroll{ display:none; } }

/* ================= MARQUEE ================= */
.marquee{
  background: var(--black); color: var(--cream);
  overflow: hidden; white-space: nowrap; padding: 18px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.marquee__track{
  display:inline-flex; gap: 18px; animation: marquee 32s linear infinite;
}
.marquee__track span{
  font-family: var(--serif); font-style: italic; font-size: 17px;
  color: rgba(244,240,232,.75); letter-spacing: .02em;
}
.marquee__track span:nth-child(odd){ color: var(--gold-light); font-style: normal; font-family: var(--sans); font-size:12px; text-transform:uppercase; letter-spacing:.14em; }
@keyframes marquee{ from{ transform: translateX(0); } to{ transform: translateX(-50%); } }

/* ================= MANIFESTO ================= */
.manifesto{ padding: 160px 40px; background: var(--cream); position: relative; overflow: hidden; }
.manifesto__watermark{
  position: absolute; top: 50%; left: 50%;
  width: 640px; max-width: none; height: auto;
  transform: translate(-50%,-50%);
  opacity: .07;
  mix-blend-mode: multiply;
  pointer-events: none;
  user-select: none;
}
.manifesto__inner{ position: relative; z-index: 1; max-width: 880px; margin: 0 auto; text-align:center; }
.manifesto .eyebrow{ text-align:center; }
.manifesto__quote{
  font-family: var(--serif); font-weight: 400; font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.28; margin: 0 0 40px; letter-spacing: -0.01em;
}
.manifesto__quote em{ color: var(--rust); font-style: italic; }
.manifesto__text{ font-size: 16px; line-height: 1.85; color: #4a453e; max-width: 640px; margin: 0 auto; }

/* ================= COLLECTION / GALLERY — gallery-wall / pedestal presentation ================= */
.collection{
  padding: 130px 0 150px;
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(198,161,91,.06), rgba(0,0,0,0) 70%),
    var(--black);
}
.collection .section-head{ margin-bottom: 80px; }
.collection .eyebrow{ color: var(--gold); }
.collection .section-title{ color: var(--cream); }
.collection .section-lede{ color: rgba(244,240,232,.55); }

/* ---- Editorial split-panel layout: full-bleed image alternating with a story panel ---- */
.editorial{
  max-width: var(--container); margin: 0 auto; padding: 0 40px;
  display: flex; flex-direction: column; gap: 150px;
}
.editorial__row{
  display: grid; grid-template-columns: 1.15fr 1fr; align-items: center; gap: 80px;
}
.editorial__row--reverse .editorial__image{ order: 2; }
.editorial__row--reverse .editorial__text{ order: 1; }

.editorial__text{ max-width: 420px; }
.editorial__row--reverse .editorial__text{ margin-left: auto; }
.editorial__num{
  display:block; font-family: var(--sans); font-size: 11px; font-weight:600;
  letter-spacing:.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.editorial__title{
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: clamp(28px, 3vw, 42px); line-height: 1.15;
  color: var(--cream); margin: 0 0 22px;
}
.editorial__meta{
  font-size: 12px; letter-spacing:.1em; text-transform: uppercase;
  color: rgba(244,240,232,.55); margin: 0 0 22px;
  padding-bottom: 22px; border-bottom: 1px solid rgba(230,196,130,.22);
}
.editorial__note{
  font-family: var(--serif); font-style: italic; font-size: 16px; line-height: 1.75;
  color: rgba(244,240,232,.75); margin: 0 0 30px;
}
.editorial__viewlink{
  background:none; border:none; padding: 0 0 6px; cursor:pointer;
  font-family: var(--sans); font-size: 12px; font-weight:600; letter-spacing:.12em; text-transform: uppercase;
  color: var(--cream); display:inline-flex; align-items:center; gap: 8px;
  border-bottom: 1px solid rgba(244,240,232,.35);
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.editorial__viewlink:hover{ color: var(--gold-light); border-color: var(--gold-light); }

@media (max-width: 900px){
  .editorial{ gap: 90px; }
  .editorial__row{ grid-template-columns: 1fr; gap: 32px; }
  .editorial__row--reverse .editorial__image,
  .editorial__row--reverse .editorial__text{ order: 0; }
  .editorial__text, .editorial__row--reverse .editorial__text{ max-width:none; margin-left:0; }
}

/* the "stage": a dark mat with a soft overhead spotlight glow, like a wall in a lit gallery room */
.piece__frame{
  position: relative; display:block; width:100%; height:100%;
  border:none; margin:0; flex: 1;
  background:
    radial-gradient(ellipse 90% 70% at 50% 8%, rgba(230,196,130,.16), rgba(230,196,130,0) 62%),
    var(--charcoal-2);
  padding: 22px;
  overflow: visible;
  perspective: 1000px;
}
.editorial__image.piece__frame{ padding:0; background:none; aspect-ratio: 4 / 5; }
.editorial__image.piece__frame::after,
.editorial__image.piece__frame::before{ inset: 0; }
.editorial__image .piece__frame__inner{ height:100%; }
.piece__frame__inner{
  position:relative; width:100%; height:100%; overflow:hidden;
  box-shadow: 0 26px 46px -18px rgba(0,0,0,.75), 0 4px 14px rgba(0,0,0,.5);
  transition: box-shadow .5s var(--ease), transform .5s var(--ease);
  transform: translateY(0) rotateX(0deg) rotateY(0deg);
  will-change: transform;
}
.piece__frame:hover .piece__frame__inner{
  box-shadow: 0 40px 60px -16px rgba(0,0,0,.8), 0 8px 18px rgba(0,0,0,.55);
}
@media (prefers-reduced-motion: reduce){
  .piece__frame__inner{ transition: box-shadow .5s var(--ease); }
}
.piece__frame img{
  width:100%; height:100%; object-fit: cover; display:block;
  transition: transform 1.1s var(--ease), filter .6s;
}
.piece__frame::after{
  content:""; position:absolute; inset: 22px; z-index:1; pointer-events:none;
  background: linear-gradient(180deg, rgba(13,12,11,0) 45%, rgba(13,12,11,.65) 100%);
  opacity:0; transition: opacity .5s var(--ease);
}
.piece__frame:hover img{ transform: scale(1.07); }
.piece__frame:hover::after{ opacity:1; }

/* signature moment — a thin sheet of gold leaf catching the light on hover */
.piece__frame::before{
  content:"";
  position:absolute; inset: 22px; z-index:1; pointer-events:none;
  background: linear-gradient(115deg,
    rgba(244,240,232,0) 40%,
    rgba(230,196,130,.55) 48%,
    rgba(255,241,199,.85) 50%,
    rgba(230,196,130,.55) 52%,
    rgba(244,240,232,0) 60%);
  background-size: 260% 260%;
  background-position: 130% 0%;
  mix-blend-mode: overlay;
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.piece__frame:hover::before{
  opacity: 1;
  animation: goldSweep 1.1s var(--ease) forwards;
}
@keyframes goldSweep{
  from{ background-position: 130% 0%; }
  to{ background-position: -30% 100%; }
}
.piece__view{
  position:absolute; left: 38px; bottom: 34px; z-index:2;
  color: var(--cream); font-size: 12px; letter-spacing:.14em; text-transform:uppercase;
  display:flex; align-items:center; gap:8px;
  opacity:0; transform: translateY(8px); transition: all .4s var(--ease);
}
.piece__frame:hover .piece__view{ opacity:1; transform: translateY(0); }
.piece__view::before{ content:"+"; font-size:16px; color: var(--gold-light); }

/* ================= FEATURE BANNER ================= */
.feature-banner{ position: relative; height: 70vh; min-height: 460px; overflow:hidden; }
.feature-banner img{ width:100%; height:100%; object-fit: cover; }
.feature-banner__overlay{ position:absolute; inset:0; background: linear-gradient(90deg, rgba(13,12,11,.75) 0%, rgba(13,12,11,.15) 55%); }
.feature-banner__text{
  position:absolute; left: 6%; top:50%; transform: translateY(-50%);
  color: var(--cream); max-width: 460px;
}
.feature-banner__text h2{ font-family: var(--serif); font-weight:500; font-size: clamp(32px,4.5vw,58px); margin:0 0 16px; }
.feature-banner__text p{ font-size:16px; line-height:1.7; color: rgba(244,240,232,.82); margin:0; max-width: 380px; }

/* ================= PROCESS ================= */
.process{ padding: 160px 0; background: var(--cream); }
.process .section-head{ margin-bottom: 90px; }
.steps{ max-width: var(--container); margin: 0 auto; padding: 0 40px; display:flex; flex-direction:column; gap: 130px; }
.step{ display:grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items:center; }
.step--reverse{ direction: rtl; }
.step--reverse > *{ direction: ltr; }
.step__media{ overflow:hidden; aspect-ratio: 4/3; }
.step__media img{ width:100%; height:100%; object-fit:cover; transition: transform 1.2s var(--ease); }
.step:hover .step__media img{ transform: scale(1.05); }
.step__num{ font-family: var(--sans); font-weight:700; font-size: 12px; color: var(--rust); letter-spacing:.16em; text-transform: uppercase; }
.step__text h3{ font-family: var(--serif); font-weight:500; font-size: clamp(24px,2.6vw,34px); margin: 10px 0 18px; }
.step__text p{ font-size: 15.5px; line-height: 1.8; color: #4a453e; max-width: 460px; margin:0; }

@media (max-width: 860px){
  .step, .step--reverse{ grid-template-columns: 1fr; direction: ltr; gap: 28px; }
  .steps{ gap: 70px; }
}

/* ================= WORKSHOP / VIDEOS ================= */
.workshop{ padding: 40px 0 160px; background: var(--cream); }
.workshop .section-head{ margin-bottom: 70px; }
.workshop__grid{
  max-width: var(--container); margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.workshop__card{
  position: relative; display:block; width:100%; aspect-ratio: 4/5;
  border:none; padding:0; margin:0; overflow:hidden; background:#0d0c0b;
}
.workshop__card img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition: transform 1.1s var(--ease);
}
.workshop__card::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(13,12,11,0) 40%, rgba(13,12,11,.85) 100%);
}
.workshop__card:hover img{ transform: scale(1.06); }
.workshop__play{
  position:absolute; top:50%; left:50%; transform: translate(-50%,-50%);
  width:60px; height:60px; border-radius:50%;
  background: rgba(20,16,11,.55); border:1.5px solid rgba(244,240,232,.7);
  color: var(--cream); display:flex; align-items:center; justify-content:center;
  font-size:16px; padding-left:3px; backdrop-filter: blur(3px); z-index:2;
  transition: background-color .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.workshop__card:hover .workshop__play{
  background: var(--gold); border-color: var(--gold); color: var(--black);
  transform: translate(-50%,-50%) scale(1.1);
}
.workshop__label{
  position:absolute; left:22px; bottom:18px; right:22px; z-index:2;
  color: var(--cream); font-family: var(--serif); font-style:italic; font-size:16px;
}
@media (max-width: 980px){ .workshop__grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .workshop__grid{ grid-template-columns: 1fr; gap:22px; } }

.video-lightbox{
  position: fixed; inset:0; z-index: 2100; background: rgba(13,12,11,.97);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transition: opacity .4s var(--ease);
  padding: 60px 20px;
}
.video-lightbox.open{ opacity:1; visibility:visible; }
.video-lightbox__figure{ max-width: 900px; width:100%; max-height: 88vh; margin:0; text-align:center; }
.video-lightbox__figure video{
  width:100%; max-height: 70vh; background:#000; box-shadow: 0 40px 100px rgba(0,0,0,.5);
}
.video-lightbox__figure figcaption{ margin-top: 22px; display:flex; flex-direction:column; gap:6px; }
#videoLightboxTitle{ font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--cream); }
#videoLightboxDesc{ font-size: 13.5px; color: rgba(244,240,232,.55); max-width: 520px; margin: 0 auto; }

/* ================= MATERIALS ================= */
.materials{
  background: var(--black); color: var(--cream);
  display:grid; grid-template-columns: repeat(4,1fr);
  max-width: var(--container); margin: 0 auto;
}
.materials__item{ padding: 70px 40px; border-left: 1px solid var(--line); }
.materials__item:first-child{ border-left:none; }
.materials__num{ font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 14px; }
.materials__item h4{ font-family: var(--serif); font-weight:500; font-size: 20px; margin: 16px 0 12px; }
.materials__item p{ font-size: 13.5px; line-height:1.7; color: rgba(244,240,232,.62); margin:0; }
.materials__disclaimer{
  grid-column: 1 / -1;
  padding: 26px 40px 46px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 12px; line-height:1.7; letter-spacing:.01em;
  color: rgba(244,240,232,.4);
}
@media (max-width: 860px){
  .materials{ grid-template-columns: repeat(2,1fr); }
  .materials__item:nth-child(3){ border-left:none; }
}
@media (max-width: 540px){
  .materials{ grid-template-columns: 1fr; }
  .materials__item{ border-left:none; border-top: 1px solid var(--line); }
  .materials__item:first-child{ border-top:none; }
}

/* ================= AUTHENTICITY ================= */
.authenticity{
  max-width: var(--container); margin: 0 auto; padding: 160px 40px;
  display:grid; grid-template-columns: .8fr 1.1fr; gap: 90px; align-items:center;
}
.authenticity__media{ display:flex; justify-content:center; }
.cert-card{
  background: var(--cream-dim); padding: 22px; box-shadow: 0 40px 80px -30px rgba(13,12,11,.35);
  transform: rotate(-3deg); transition: transform .6s var(--ease); max-width: 360px;
}
.cert-card:hover{ transform: rotate(0deg) scale(1.02); }
.cert-card img{ width:100%; height:auto; }
.authenticity__text p{ font-size: 16px; line-height:1.8; color:#4a453e; max-width: 480px; }
.authenticity__list{ margin-top: 30px; display:flex; flex-direction:column; gap: 14px; }
.authenticity__list li{
  font-size: 14.5px; padding-left: 26px; position: relative; color:#2c2924;
}
.authenticity__list li::before{
  content:""; position:absolute; left:0; top:8px; width: 14px; height:1px; background: var(--rust);
}
@media (max-width: 860px){
  .authenticity{ grid-template-columns: 1fr; gap: 50px; padding: 100px 24px; }
}

/* ================= COMMISSION ================= */
.commission{
  position: relative;
  color: var(--cream); padding: 160px 40px;
  background:
    linear-gradient(180deg, rgba(20,16,11,.58), rgba(20,16,11,.68) 55%, rgba(20,16,11,.8)),
    url('route66-sign.jpg') center 38% / cover no-repeat;
}
.commission__inner{ max-width: 680px; margin: 0 auto; text-align:center; }
.commission .eyebrow{ text-align:center; }
.commission__title{ font-family: var(--serif); font-weight:500; font-size: clamp(32px,4.4vw,54px); margin:0 0 22px; }
.commission__lede{ font-size:16px; line-height:1.8; color: rgba(244,240,232,.68); max-width: 520px; margin: 0 auto 56px; }

.commission__faq{ max-width: 520px; margin: 0 auto 50px; text-align:left; }
.commission__faq-title{ font-family: var(--serif); font-weight:500; font-size: 19px; margin:0 0 16px; text-align:center; color: var(--cream); }
.faq-item{ border-bottom: 1px solid rgba(244,240,232,.15); padding: 14px 0; }
.faq-item summary{
  cursor:pointer; list-style:none; display:flex; align-items:center; justify-content:space-between; gap:16px;
  font-family: var(--sans); font-size: 14px; font-weight:600; color: var(--cream);
}
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:"+"; flex:none; font-size:19px; line-height:1; color: var(--gold-light); transition: transform .3s var(--ease); }
.faq-item[open] summary::after{ transform: rotate(45deg); }
.faq-item p{ margin: 12px 0 0; font-size: 13.5px; line-height:1.75; color: rgba(244,240,232,.62); }

.commission__form{ text-align:left; }

.configurator{ margin-bottom: 40px; padding-bottom: 36px; border-bottom: 1px solid rgba(244,240,232,.14); }
.configurator__group{ margin-bottom: 22px; }
.configurator__label{
  display:block; font-size:11px; letter-spacing:.14em; text-transform:uppercase;
  color: rgba(244,240,232,.55); margin-bottom: 12px;
}
.configurator__chips{ display:flex; flex-wrap:wrap; gap:10px; }
.chip{
  background: transparent; border: 1px solid rgba(244,240,232,.3); color: rgba(244,240,232,.85);
  padding: 10px 18px; border-radius: 999px; font-size: 13px; font-family: var(--sans);
  transition: background-color .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .2s var(--ease);
}
.chip:hover{ border-color: var(--gold); color: var(--cream); transform: translateY(-1px); }
.chip.is-selected{ background: var(--gold); border-color: var(--gold); color: var(--black); font-weight:600; }
.configurator__summary{
  margin: 20px 0 0; font-family: var(--serif); font-style: italic; font-size: 15px;
  color: var(--gold-light);
}

.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field{ margin-bottom: 24px; }
.field label{ display:block; font-size:11px; letter-spacing:.14em; text-transform:uppercase; color: rgba(244,240,232,.55); margin-bottom: 10px; }
.field input, .field textarea{
  width:100%; background: transparent; border:none; border-bottom: 1px solid rgba(244,240,232,.3);
  color: var(--cream); font-family: var(--sans); font-size: 15px; padding: 10px 2px;
  resize: vertical; transition: border-color .3s;
}
.field input:focus, .field textarea:focus{ outline:none; border-color: var(--gold); }
.field input::placeholder, .field textarea::placeholder{ color: rgba(244,240,232,.35); }
.commission__form .btn{ margin-top: 8px; }
.form-note{ font-size:12.5px; color: rgba(244,240,232,.45); margin-top: 18px; }
.form-note.success{ color: var(--gold-light); }
.form-note.error{ color: var(--rust); }

/* ================= THANK YOU (standalone page) ================= */
.thank-you{
  position:relative; min-height: 100vh; display:flex; align-items:center; justify-content:center;
  text-align:center; color: var(--cream);
  background: url('route66-sign.jpg') center 38% / cover no-repeat;
}
.thank-you__overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(20,16,11,.6), rgba(20,16,11,.78) 60%, rgba(20,16,11,.88));
}
.thank-you__inner{ position:relative; z-index:1; max-width: 560px; padding: 40px; }
.thank-you__badge{ margin: 0 auto 28px; }
.thank-you__title{ font-family: var(--serif); font-weight:500; font-size: clamp(32px,4.4vw,54px); margin:0 0 20px; }
.thank-you__text{ font-size:16px; line-height:1.8; color: rgba(244,240,232,.72); margin:0 0 34px; }
@media (max-width: 620px){ .form-row{ grid-template-columns: 1fr; } }

/* ================= FOOTER ================= */
.footer{ background: var(--black); color: rgba(244,240,232,.65); padding: 90px 40px 30px; }
.footer__top{
  max-width: var(--container); margin: 0 auto;
  display:grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 50px;
  padding-bottom: 60px; border-bottom: 1px solid var(--line);
}
.footer__mark{ height: 20px; width:auto; filter: brightness(0) invert(1); opacity:.9; margin-bottom: 20px; }
.footer__brand p{ font-size: 13.5px; line-height:1.8; max-width: 260px; }
.footer__col h5{ font-size: 11px; letter-spacing:.14em; text-transform:uppercase; color: rgba(244,240,232,.4); margin: 0 0 20px; font-weight:600; }
.footer__col{ display:flex; flex-direction:column; gap: 12px; font-size: 13.5px; }
.footer__col a:hover{ color: var(--gold-light); }
.footer__bottom{
  max-width: var(--container); margin: 0 auto; padding-top: 26px;
  display:flex; justify-content:space-between; font-size: 12px; color: rgba(244,240,232,.35);
  letter-spacing:.03em;
}
@media (max-width: 860px){
  .footer__top{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px){
  .footer__top{ grid-template-columns: 1fr; }
  .footer__bottom{ flex-direction:column; gap: 10px; }
}

/* ================= REVEAL ANIMATION ================= */
[data-reveal]{
  opacity:0; transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].in-view{ opacity:1; transform: translateY(0); }

/* ================= LIGHTBOX ================= */
.lightbox{
  position: fixed; inset:0; z-index: 2000; background: rgba(13,12,11,.96);
  display:flex; align-items:center; justify-content:center;
  opacity:0; visibility:hidden; transition: opacity .4s var(--ease);
  padding: 60px 20px;
}
.lightbox.open{ opacity:1; visibility:visible; }
.lightbox__figure{
  max-width: 900px; max-height: 86vh; margin:0; text-align:center;
  transition: transform .38s cubic-bezier(.4,0,.2,1), opacity .3s var(--ease);
  will-change: transform;
}
.lightbox__figure img{ max-height: 72vh; width:auto; margin: 0 auto; box-shadow: 0 40px 100px rgba(0,0,0,.5); }
.lightbox__figure figcaption{ margin-top: 22px; display:flex; flex-direction:column; gap:6px; }

/* carousel slide transition, driven by main.js toggling these on prev/next */
.lightbox__figure.is-out-next{ transform: translateX(-56px); opacity:0; }
.lightbox__figure.is-out-prev{ transform: translateX(56px); opacity:0; }
.lightbox__figure.is-in-next{ transform: translateX(56px); opacity:0; transition:none; }
.lightbox__figure.is-in-prev{ transform: translateX(-56px); opacity:0; transition:none; }
#lightboxTitle{ font-family: var(--serif); font-size: 20px; color: var(--cream); }
#lightboxMeta{ font-size: 12.5px; letter-spacing:.05em; color: rgba(244,240,232,.55); text-transform: uppercase; }
.lightbox__count{ font-size: 11px; letter-spacing:.14em; color: var(--gold-light); text-transform: uppercase; margin-top: 4px; }
.lightbox__close{
  position: absolute; top: 30px; right: 40px; background:none; border:none;
  color: var(--cream); font-size: 34px; line-height:1; opacity:.7; transition: opacity .3s, transform .3s;
}
.lightbox__close:hover{ opacity:1; transform: rotate(90deg); }
.lightbox__nav{
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(20,16,11,.4); border: 1px solid rgba(244,240,232,.25); color: var(--cream);
  width: 52px; height: 52px; border-radius: 50%; font-size: 18px; line-height:1;
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  opacity:.7; transition: opacity .3s var(--ease), background-color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.lightbox__nav:hover{ opacity:1; background: rgba(207,154,76,.18); border-color: var(--gold); }
.lightbox__nav--prev{ left: 24px; }
.lightbox__nav--prev:hover{ transform: translateY(-50%) translateX(-3px); }
.lightbox__nav--next{ right: 24px; }
.lightbox__nav--next:hover{ transform: translateY(-50%) translateX(3px); }
@media (max-width: 720px){
  .lightbox__nav{ width:44px; height:44px; }
  .lightbox__nav--prev{ left:8px; }
  .lightbox__nav--next{ right:8px; }
}

/* ================= ROUTE 66 MOTIFS ================= */
.road-divider{
  position: relative; height: 30px;
  background: linear-gradient(180deg, #1a1410, #100c09 60%, #1a1410);
  overflow: hidden;
  filter: sepia(calc(var(--patina-level, 0) * 0.9)) saturate(calc(1 + var(--patina-level, 0) * 1.4));
  transition: filter 4s var(--ease);
}
.road-divider::before{
  content:"";
  position:absolute; top:50%; left:0; right:0; height:5px; margin-top:-2.5px;
  background-image: repeating-linear-gradient(90deg, var(--line-yellow) 0 40px, transparent 40px 76px);
  opacity:.9;
}
.road-divider::after{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(ellipse 50% 100% at 50% 50%, rgba(0,0,0,0), rgba(0,0,0,.6) 100%);
}

.rt66-badge{ display:block; flex-shrink:0; filter: drop-shadow(0 6px 14px rgba(0,0,0,.35)); }
.hero__badge{ margin-bottom: 22px; animation: heroBadgeFloat 6s ease-in-out infinite; animation-delay: 1.2s; }
@keyframes heroBadgeFloat{
  0%, 100%{ transform: translateY(0) rotate(0deg); }
  50%{ transform: translateY(-8px) rotate(-2deg); }
}
@media (prefers-reduced-motion: reduce){ .hero__badge{ animation:none; } }
.footer__badge{ margin-bottom: 18px; }

/* ================= REDUCED MOTION ================= */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .hero__media video, .hero__media img{ animation: none !important; transform: none !important; }
  [data-reveal]{ opacity:1 !important; transform:none !important; }
}
