/* ============================================================
   VITORI × AGANOOR — Design Tokens
   ============================================================ */
:root{
  --night: #0B1330;
  --night-2: #121B3F;
  --night-3: #1A2550;
  --paper: #F7F5F1;
  --paper-2: #EFEBE2;
  --ink: #1B2340;
  --ink-soft: #4A4E63;
  --gold: #C9A24B;
  --gold-light: #E8D4A0;
  --silver: #B9C0CC;
  --line-dark: #2A3560;
  --line-light: #DFDACB;

  --font-display: 'Cormorant', serif;
  --font-body: 'Jost', sans-serif;
  --font-display-hy: 'Noto Serif Armenian', serif;
  --font-body-hy: 'Noto Sans Armenian', sans-serif;

  --section-pad: clamp(88px, 12vw, 168px);
  --wrap-pad: clamp(24px, 6vw, 80px);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family: var(--font-body);
  background: var(--night);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  min-height: 100vh;
}

/* ============================================================
   CONTAINER & SECTION BASE
   ============================================================ */
.snap-container{
  width: 100%;
  overflow: visible;
  position: relative;
}
.snap-container .section{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: var(--section-pad) 0;
}
.snap-container .section.allow-overflow{
  overflow: visible;
  display: block;
  padding-top: var(--section-pad);
  padding-bottom: var(--section-pad);
}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}

@media (prefers-reduced-motion: reduce){
  *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important;}
}

/* ============================================================
   ARMENIAN TYPOGRAPHY OVERRIDE
   Cormorant/Jost don't cover the Armenian block, so we swap in
   Noto Serif/Sans Armenian — and drop forced uppercase, since
   Armenian has no case distinction and artificial caps distort
   its letterforms.
   ============================================================ */
html[data-lang="hy"]{
  --font-display: var(--font-display-hy);
  --font-body: var(--font-body-hy);
}
html[data-lang="hy"] .eyebrow,
html[data-lang="hy"] .nav-links a,
html[data-lang="hy"] .nav-mark,
html[data-lang="hy"] .btn,
html[data-lang="hy"] .project-tag,
html[data-lang="hy"] .hero-scroll-cue,
html[data-lang="hy"] .arc-num{
  text-transform: none;
  letter-spacing: 0.02em;
}
html[data-lang="hy"] .narrative-tag{
  font-style: normal;
}
html[data-lang="hy"] .pull-quote,
html[data-lang="hy"] .hero-sub,
html[data-lang="hy"] .arc-success,
html[data-lang="hy"] .code-quote{
  font-style: normal;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow{
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
  margin-bottom: 20px;
}
.eyebrow.gold{ color: var(--gold); }

.display-lg{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  max-width: 15ch;
  margin-bottom: 28px;
}
.light-text{ color: #FFFFFF; }

.lede{
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 8px;
}
.light-text.lede{ color: var(--silver); }

.pull-quote{
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.4;
  color: var(--ink);
  max-width: 22ch;
  margin: 56px 0 0;
}
.pull-quote em{ color: var(--gold); font-style: italic; }
.pull-quote.small{
  font-size: clamp(20px, 2.4vw, 28px);
  max-width: 26ch;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.section{
  position: relative;
  padding: clamp(24px, 4vh, 56px) 0;
}
.section.dark{
  background: var(--night);
  color: var(--silver);
}
.section.light{
  background: var(--paper);
  color: var(--ink);
}
.wrap{
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--wrap-pad);
}
.wrap.narrow{ max-width: 820px; }
.wrap.center{ text-align: center; }
.wrap.center .display-lg,
.wrap.center .lede{ margin-left:auto; margin-right:auto; }

/* ============================================================
   STAR CANVAS
   ============================================================ */
.star-layer{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.section.dark{ position: relative; overflow: hidden; }
.section.dark > *:not(.star-layer){ z-index: 2; }
.section.dark > *:not(.star-layer):not(.hero-scroll-cue){ position: relative; }

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.nav.scrolled{
  padding: 14px 0;
  background: rgba(11, 19, 48, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-inner{
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--wrap-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-mark{
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.14em;
  color: #fff;
  white-space: nowrap;
  font-weight: 500;
}
.nav-x{ color: var(--gold); margin: 0 2px; }
.nav-links{
  display: flex;
  gap: 36px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--silver);
}
.nav-links a{
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s var(--ease);
}
.nav-links a::after{
  content:'';
  position:absolute; left:0; bottom:0;
  width:0; height:1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover{ color:#fff; }
.nav-links a:hover::after{ width:100%; }

.lang-switch{
  display:flex; align-items:center; gap:8px;
  font-size:11px; letter-spacing:0.1em;
}
.lang-dot{ color: var(--line-dark); }
.lang-btn{
  background:none; border:none; cursor:pointer;
  color: var(--silver);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 4px 2px;
  transition: color 0.25s var(--ease);
}
.lang-btn.active, .lang-btn:hover{ color: var(--gold); }

.nav-burger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none; border:none; cursor:pointer;
  padding: 6px;
  position: relative;
  z-index: 101;
}
.nav-burger span{
  width:22px; height:1px; background:#fff; display:block;
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.nav-burger.open span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.nav-burger.open span:nth-child(2){ opacity: 0; }
.nav-burger.open span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display:inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid currentColor;
  transition: all 0.4s var(--ease);
  font-weight: 500;
}
.btn-ghost-light{
  color: #fff;
  border-color: rgba(255,255,255,0.4);
}
.btn-ghost-light:hover{
  background: #fff;
  color: var(--night);
  border-color: #fff;
}
.btn-ghost-dark{
  color: var(--gold-light);
  border-color: var(--gold);
  margin-top: clamp(20px, 3vh, 44px);
}
.btn-ghost-dark:hover{
  background: var(--gold);
  color: var(--night);
}
.btn-solid-gold{
  background: var(--gold);
  color: var(--night);
  border-color: var(--gold);
  cursor: pointer;
  width: 100%;
}
.btn-solid-gold:hover{
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* ============================================================
   MASTER SEQUENCE STAGE (PINNED SCROLL PIPELINE)
   ============================================================ */
.sequence-master-track{
  position: relative;
  height: 800vh; /* 200vh scroll distance per frame pack */
  width: 100%;
  background: var(--night);
}

.sequence-stage{
  position: sticky;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.sequence-canvas{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
  z-index: 1;
  transform: translateZ(0);
}
.sequence-canvas.active{
  opacity: 1;
  visibility: visible;
}

.stage-veil{
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
  z-index: 2;
}
.stage-veil.active{
  opacity: 1;
  visibility: visible;
}

.stage-veil-1{
  background: radial-gradient(ellipse at 50% 42%, rgba(11, 19, 48, 0.22) 0%, rgba(2, 13, 35, 0.68) 65%, #0B1330 100%),
              linear-gradient(180deg, rgba(11, 19, 48, 0.5) 0%, transparent 25%, transparent 75%, #0B1330 100%);
}
.stage-veil-2{
  background: radial-gradient(ellipse at 50% 50%, rgba(247, 245, 241, 0.45) 0%, rgba(247, 245, 241, 0.85) 65%, #F7F5F1 100%),
              linear-gradient(180deg, #F7F5F1 0%, transparent 18%, transparent 82%, #F7F5F1 100%);
}
.stage-veil-3{
  background: radial-gradient(ellipse at 50% 50%, rgba(11, 19, 48, 0.32) 0%, rgba(7, 14, 30, 0.78) 70%, #0B1330 100%),
              linear-gradient(180deg, #0B1330 0%, transparent 18%, transparent 82%, #0B1330 100%);
}
.stage-veil-4{
  background: radial-gradient(ellipse at 50% 50%, rgba(247, 245, 241, 0.38) 0%, rgba(239, 235, 226, 0.85) 70%, #F7F5F1 100%),
              linear-gradient(180deg, #F7F5F1 0%, transparent 18%, transparent 82%, #F7F5F1 100%);
}

.stage-overlay-wrap{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}

.stage-section{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 88px var(--wrap-pad) 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease), visibility 0.55s var(--ease);
  pointer-events: none;
}
.stage-section.active{
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.stage-section .wrap{
  width: 100%;
}

.sequence-glass-card{
  background: rgba(247, 245, 241, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(223, 218, 203, 0.85);
  padding: clamp(36px, 5vw, 68px);
  box-shadow: 0 28px 70px rgba(11, 19, 48, 0.09);
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease);
  text-align: left;
}
.sequence-glass-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 32px 80px rgba(11, 19, 48, 0.12);
}

/* ============================================================
   HERO OVERLAY
   ============================================================ */
.hero-content{
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px;
}
.hero-title{
  display:flex; align-items:baseline; justify-content:center;
  flex-wrap: wrap;
  gap: 0.3em;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(44px, 9vw, 118px);
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1;
  margin: 18px 0 28px;
  text-shadow: 0 4px 24px rgba(2, 13, 35, 0.6);
}
.hero-x{ color: var(--gold); font-size: 0.55em; }
.hero-sub{
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--silver);
  max-width: 32ch;
  margin-bottom: 48px;
  text-shadow: 0 2px 12px rgba(2, 13, 35, 0.8);
}
.hero-scroll-cue{
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display:flex; flex-direction:column; align-items:center; gap:10px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--silver);
  pointer-events: none;
}
.scroll-line{
  width: 1px; height: 40px;
  background: rgba(255,255,255,0.15);
  overflow: hidden;
}
.scroll-line-fill{
  width:100%; height:40%;
  background: var(--gold);
  animation: scrollFill 2.2s ease-in-out infinite;
}
@keyframes scrollFill{
  0%{ transform: translateY(-100%); }
  100%{ transform: translateY(250%); }
}

/* ============================================================
   PILLARS / FEATURE CARDS
   ============================================================ */
.grid-3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.pillar-card{
  background: rgba(18, 27, 63, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-dark);
  padding: 40px 32px;
  text-align: left;
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.pillar-card:hover{
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 16px 36px rgba(201, 162, 75, 0.16);
}
.pillar-icon{
  width: 44px; height: 44px;
  margin-bottom: 26px;
  color: var(--gold);
}
.pillar-icon::before{
  content:'';
  display:block; width:100%; height:100%;
  background-color: currentColor;
  -webkit-mask-size: contain; mask-size: contain;
  -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat;
  -webkit-mask-position: center; mask-position: center;
}
.pillar-icon[data-icon="feather"]::before{ -webkit-mask-image: var(--icon-feather); mask-image: var(--icon-feather); }
.pillar-icon[data-icon="gem"]::before{ -webkit-mask-image: var(--icon-gem); mask-image: var(--icon-gem); }
.pillar-icon[data-icon="key"]::before{ -webkit-mask-image: var(--icon-key); mask-image: var(--icon-key); }
.pillar-icon[data-icon="compass"]::before{ -webkit-mask-image: var(--icon-compass); mask-image: var(--icon-compass); }

.pillar-card h3{
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 14px;
}
.pillar-card p{
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--silver);
  font-weight: 300;
}

.furniture-principles{ text-align: left; }

/* ============================================================
   NARRATIVE GRID
   ============================================================ */
.narrative-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line-light);
  margin-top: 48px;
  border: 1px solid var(--line-light);
}
.narrative-card{
  background: rgba(247, 245, 241, 0.90);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 44px 40px;
  text-align: left;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.narrative-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(11, 19, 48, 0.08);
}
.narrative-card.accent{
  background: rgba(11, 19, 48, 0.92);
}
.narrative-tag{
  display:block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 16px;
}
.narrative-tag.gold{ color: var(--gold-light); }
.narrative-card p{
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
}
.narrative-card.accent p{ color: var(--silver); }
.narrative-tag{
  display:block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 16px;
}
.narrative-tag.gold{ color: var(--gold-light); }
.narrative-card p{
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  font-weight: 300;
}
.narrative-card.accent p{ color: var(--silver); }

/* ============================================================
   PROCESS ARC
   ============================================================ */
.arc{
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 90px;
  padding: 0 20px;
}
.arc-line{
  position: absolute;
  top: 7px; left: 12.5%; right: 12.5%;
  height: 1px;
  background: var(--line-dark);
}
.arc-step{
  display:flex; flex-direction:column; align-items:center;
  text-align:center;
  position: relative;
}
.arc-num{
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 10px;
}
.arc-dot{
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--night);
  box-shadow: 0 0 0 1px var(--gold);
  margin-bottom: 18px;
}
.arc-label{
  font-family: var(--font-display);
  font-size: clamp(15px, 1.6vw, 19px);
  color: #fff;
  font-weight: 500;
  max-width: 16ch;
}
.arc-success{
  font-family: var(--font-display);
  font-style: italic;
  text-align: center;
  font-size: clamp(16px, 1.8vw, 20px);
  color: var(--gold-light);
  max-width: 46ch;
  margin: 72px auto 0;
  line-height: 1.6;
}

/* ============================================================
   PORTFOLIO — horizontal slider (one full screen, swipe/scroll sideways)
   ============================================================ */
.portfolio-section{
  padding-left: 0;
  padding-right: 0;
}
.portfolio-head{
  margin-bottom: clamp(20px, 3vh, 36px);
  flex-shrink: 0;
}
.portfolio-head .display-lg{ margin-bottom: 12px; }
.portfolio-head .lede{ margin-bottom: 0; max-width: 62ch; }

.slider-viewport{
  width: 100%;
  overflow: hidden;
  flex-shrink: 1;
  min-height: 0;
}
.slider-track{
  display: flex;
  gap: 28px;
  padding: 4px var(--wrap-pad) 4px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.slider-track::-webkit-scrollbar{ display: none; }

.project-card{
  cursor: default;
  flex: 0 0 auto;
  width: min(72vw, 340px);
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
}
.project-visual{
  width: 100%;
  aspect-ratio: 4/5;
  max-height: 28vh;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.6s var(--ease);
  flex-shrink: 0;
}
.project-card:hover .project-visual{ transform: scale(1.02); }
.project-card[data-grad="1"] .project-visual{ background: linear-gradient(155deg, #0B1330 0%, #1A2550 45%, #C9A24B 150%); }
.project-card[data-grad="2"] .project-visual{ background: linear-gradient(160deg, #050912 0%, #0B1330 55%, #2A3560 130%); }
.project-card[data-grad="3"] .project-visual{ background: linear-gradient(150deg, #B9C0CC 0%, #EFEBE2 55%, #C9A24B 140%); }
.project-card[data-grad="4"] .project-visual{ background: linear-gradient(160deg, #1B2340 0%, #4A4E63 60%, #B9C0CC 140%); }
.project-card[data-grad="5"] .project-visual{ background: linear-gradient(150deg, #0B1330 0%, #C9A24B 100%, #E8D4A0 150%); }
.project-card[data-grad="6"] .project-visual{ background: linear-gradient(160deg, #EFEBE2 0%, #0B1330 90%); }
.project-visual::after{
  content:'';
  position:absolute; inset:0;
  background-image:
    repeating-linear-gradient(115deg, transparent 0 40px, rgba(255,255,255,0.035) 40px 41px),
    repeating-linear-gradient(25deg, transparent 0 60px, rgba(255,255,255,0.02) 60px 61px);
}
.project-tag{
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
.project-meta h3{
  font-family: var(--font-display);
  font-size: clamp(18px, 2.1vw, 23px);
  font-weight: 500;
  margin: 6px 0 6px;
  color: var(--ink);
}
.project-meta p{
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-soft);
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.slider-controls{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: clamp(16px, 2.5vh, 28px);
  flex-shrink: 0;
}
.slider-arrow{
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-light);
  background: transparent;
  color: var(--ink);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.slider-arrow:hover{ border-color: var(--gold); color: var(--gold); background: rgba(201,162,75,0.08); }
.slider-dots{ display: flex; gap: 9px; }
.slider-dot{
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--line-light);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.35s var(--ease);
}
.slider-dot.active{ background: var(--gold); width: 20px; border-radius: 3px; }

.portfolio-note{
  margin-top: clamp(12px, 2vh, 20px);
  text-align: center;
  font-size: 12px;
  font-style: italic;
  color: var(--ink-soft);
  opacity: 0.75;
  flex-shrink: 0;
  padding: 0 var(--wrap-pad);
}

/* ============================================================
   SWATCHES
   ============================================================ */
.swatch-row{
  display:flex;
  gap: 24px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.swatch{
  width: 168px; height: 168px;
  display:flex; flex-direction:column; justify-content:flex-end;
  padding: 18px;
  font-size: 13px;
}
.swatch span{ font-weight: 500; display:block; }
.swatch em{ font-style: italic; opacity: 0.75; font-size: 12px; }
.swatch:nth-child(1) span, .swatch:nth-child(1) em{ color:#fff; }
.swatch:nth-child(2) span, .swatch:nth-child(2) em{ color:#0B1330; }
.swatch:nth-child(3) span, .swatch:nth-child(3) em{ color:#0B1330; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section{
  justify-content: space-between;
  padding-bottom: clamp(16px, 2.5vh, 28px);
}
.contact-section .wrap{ margin-top: auto; margin-bottom: auto; }
.contact-section .display-lg{ max-width: 20ch; }
.contact-form{
  margin-top: 56px;
  text-align: left;
  display:flex; flex-direction:column; gap: 18px;
}
.form-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact-form input,
.contact-form textarea{
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-dark);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  padding: 14px 2px;
  transition: border-color 0.3s var(--ease);
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder{ color: var(--silver); opacity:0.6; }
.contact-form input:focus,
.contact-form textarea:focus{
  outline: none;
  border-color: var(--gold);
}
.contact-form button{ margin-top: 12px; }
.form-note{
  font-size: 12px;
  color: var(--silver);
  opacity: 0.7;
  text-align: center;
  margin-top: 4px;
}
.form-success{
  display:none;
  margin-top: 56px;
  text-align:center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--gold-light);
}
.form-success.visible{ display:block; }
.contact-form.hidden{ display:none; }

.footer{
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(16px, 2.5vh, 32px) var(--wrap-pad) 0;
  display:flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--line-dark);
  flex-shrink: 0;
  width: 100%;
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px){
  .grid-3{ grid-template-columns: 1fr; }
  .narrative-grid{ grid-template-columns: 1fr; }
  .arc{ grid-template-columns: repeat(2, 1fr); row-gap: 48px; }
  .arc-line{ display:none; }
}
@media (max-width: 680px){
  .nav-inner{ gap: 12px; }
  .nav-mark{ font-size: 13px; }
  .nav-links{
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--night);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    padding: 0 40px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    z-index: 99;
  }
  .nav-links.open{ transform: translateX(0); }
  .nav-burger{ display:flex; margin-left: 4px; }
  .lang-switch{ font-size: 10px; gap: 6px; flex-shrink: 0; }
  .form-row{ grid-template-columns: 1fr; }
  .arc{ grid-template-columns: 1fr; }
  .swatch{ width: calc(33.333% - 16px); height: 120px; }

  .sequence-master-track{
    height: 680vh;
  }
  .stage-section{
    padding: 72px 18px 24px;
  }
  .sequence-glass-card{
    padding: 24px 18px;
  }
  .narrative-card{
    padding: 24px 18px;
  }
  .pillar-card{
    padding: 24px 18px;
  }
  .snap-container .section{
    height: auto;
    min-height: 100vh;
    overflow: visible;
    padding-top: 96px;
    padding-bottom: 48px;
    justify-content: flex-start;
  }
  .contact-section{ justify-content: flex-start !important; }
  .contact-section .wrap{ margin-top: 0; margin-bottom: 0; }
  .footer{ padding-top: 40px; }
}
@media (max-width: 420px){
  .nav-mark{ font-size: 11.5px; }
  .lang-switch{ font-size: 9.5px; gap: 4px; }
  .lang-btn{ padding: 4px 1px; }
}
