/* ============================================================
   WEARDARUNI — Portfolio Styles
   Designer: Black & Gold
   Gallery-first, minimal text, maximum visual impact
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --black:        #0A0A0A;
  --black-soft:   #111111;
  --black-mid:    #1A1A1A;
  --black-light:  #222222;
  --gold:         #C9A227;
  --gold-bright:  #E5C158;
  --gold-muted:   #8A7320;
  --gold-dim:     rgba(201,162,39,0.15);
  --white:        #F5F5F0;
  --white-80:     rgba(245,245,240,0.80);
  --white-50:     rgba(245,245,240,0.50);
  --white-20:     rgba(245,245,240,0.20);
  --white-08:     rgba(245,245,240,0.08);
  --white-04:     rgba(245,245,240,0.04);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Work Sans', system-ui, sans-serif;

  --wrap: 1280px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
  --radius-sm: 8px;
  --radius-md: 16px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --nav-h: 72px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; color: inherit; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 7vw, 6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1rem, 1.6vw, 1.2rem); font-weight: 400; }
h1 em, h2 em { font-style: italic; font-weight: 400; color: var(--gold); }
p { color: var(--white-50); max-width: 52ch; font-size: 0.95rem; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ---------- LAYOUT HELPERS ---------- */
.wrap {
  width: min(var(--wrap), 100% - var(--gutter) * 2);
  margin-inline: auto;
}
section { padding: clamp(4rem, 8vw, 7rem) 0; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 100px;
  transition: all 0.25s var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}
.btn-primary:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white-20);
}
.btn-ghost:hover {
  background: var(--white-04);
  border-color: var(--white-50);
}

/* ---------- NAV ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--white-08);
}
.nav-logo {
  display: flex;
  align-items: flex-end;
  height: 100%;
  padding-bottom: 1px;
}
.nav-logo img {
  height: 65px;
  width: auto;
  max-width: 120px;
  display: block;
  object-fit: contain;
}

.nav-logo em { font-style: normal; color: var(--gold); font-weight: 600; }

.nav-links {
  display: flex;
  gap: 2.8rem;
}
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-50);
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--white);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right { display: flex; align-items: center; gap: 1.2rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  width: 36px;
}
.nav-toggle span {
  display: block;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s var(--ease-out), opacity 0.2s, width 0.3s;
  transform-origin: left center;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(40deg) translateY(-1px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-40deg) translateY(1px); }

/* ---------- MOBILE DRAWER ---------- */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform 0.45s var(--ease-out);
}
.mobile-drawer.open { transform: translateX(0); }

.mobile-drawer-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.mobile-drawer-links a {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 8vw, 3.5rem);
  font-weight: 400;
  color: var(--white-50);
  transition: color 0.3s;
}
.mobile-drawer-links a:hover { color: var(--gold); }
.mobile-drawer-cta { margin-top: 1rem; }

/* ---------- HERO ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 3rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50vw; height: 100vh;
  background: radial-gradient(ellipse at top right, rgba(201,162,39,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.hero-copy h1 { margin: 0.4rem 0 0; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.5rem;
}

.hero-visual {
  position: relative;
  height: clamp(480px, 65vh, 680px);
}
.hero-visual .lookcard-art {
  min-height: 100%;
  position: relative;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: var(--gutter);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-20);
}
.hero-scroll-line {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--white-08);
  position: relative;
  overflow: hidden;
}
.hero-scroll-line::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: var(--gold);
  animation: scroll-pulse 2.5s var(--ease-in-out) infinite;
}
@keyframes scroll-pulse {
  0%   { left: -100%; }
  100% { left: 100%; }
}
/* ---------- HERO SLIDESHOW BACKGROUND ---------- */
.hero-slideshow-bg {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-slideshow-bg .slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: 0;
  border: none;
}
.hero-slideshow-bg .slide img {
  border-radius: 0;
}
.hero-slideshow-bg .slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.55);
  z-index: 2;
}
.hero-slideshow-bg .hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
  padding-left: 8vw;
}
.hero-slideshow-bg .slide-nav {
  position: static;
  transform: none;
  margin-top: 2rem;
}
.hero-slideshow-bg .hero-copy h1 {
  max-width: 14ch;
}
.hero-slideshow-bg .hero-copy p {
  max-width: 42ch;
}

/* ---------- MARQUEE ---------- */
.marquee {
  border-top: 1px solid var(--white-08);
  border-bottom: 1px solid var(--white-08);
  overflow: hidden;
  padding: 1rem 0;
}
.marquee-track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
}
.marquee-track span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white-20);
  flex-shrink: 0;
}
.marquee-track span:nth-child(odd) { color: var(--gold-muted); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ---------- SECTION HEAD ---------- */
.section-head {
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
  max-width: 40rem;
}
.section-head p { margin-top: 0.8rem; }

/* ---------- LOOK CARDS / GALLERY ITEMS ---------- */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  align-items: start;
}

.lookcard {
  background: var(--black-mid);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s, transform 0.4s var(--ease-out);
}
.lookcard[data-clickable] { cursor: pointer; }
.lookcard[data-clickable]:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
}
.lookcard[data-clickable]:hover .lookcard-art::after {
  opacity: 1;
}
.lookcard[data-clickable]:hover .lookcard-caption {
  opacity: 1;
  transform: translateY(0);
}

.lookcard-art {
  min-height: 280px;
  border-radius: var(--radius-md);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 2rem;
  background: var(--black-mid);
  text-align: center;
  color: var(--white-20);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.lookcard-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}
.lookcard-art svg {
  width: 28px;
  height: 28px;
  opacity: 0.15;
  transition: opacity 0.3s;
}

.lookcard.tall .lookcard-art { min-height: 400px; position: relative; }
.lookcard.short .lookcard-art { min-height: 200px; position: relative; }

.lookcard-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.2rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
  z-index: 2;
}
.lookcard-caption .name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--white);
}
.lookcard-caption .tag {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.25);
  padding: 0.25rem 0.6rem;
}

/* Gallery image/video placeholder styling */
.lookcard-art img,
.lookcard-art video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  transition: opacity 0.4s, transform 0.6s var(--ease-out);
}
.lookcard[data-clickable]:hover .lookcard-art img,
.lookcard[data-clickable]:hover .lookcard-art video {
  transform: scale(1.03);
}

/* ---------- VIDEO SECTION ---------- */
.video-showcase {
  position: relative;
  width: 100%;
  background: var(--black-soft);
  border-top: 1px solid var(--white-08);
  border-bottom: 1px solid var(--white-08);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.video-showcase video,
.video-showcase .video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: rgba(10,10,10,0.3);
  transition: background 0.4s;
}
.video-showcase:hover .video-overlay {
  background: rgba(10,10,10,0.5);
}
.video-play-btn {
  width: 72px;
  height: 72px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s var(--ease-out);
}
.video-play-btn:hover {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.1);
}
.video-play-btn svg {
  width: 24px;
  height: 24px;
  margin-left: 4px;
}

/* ---------- VIDEO GRID PORTRAIT ---------- */
.video-grid-portrait {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: clamp(4rem, 8vw, 7rem);
}
.video-card {
  position: relative;
  aspect-ratio: 9/16;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--white-08);
  transition: border-color 0.3s, transform 0.4s var(--ease-out);
}
.video-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-4px);
}
.video-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.video-card-inner video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.4s, transform 0.6s var(--ease-out);
}
.video-card:hover .video-card-inner video {
  transform: scale(1.03);
}

.video-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: rgba(10,10,10,0.3);
  transition: background 0.4s;
}
.video-card:hover .video-card-overlay {
  background: rgba(10,10,10,0.5);
}
.video-card-overlay .video-play-btn {
  width: 64px;
  height: 64px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(10,10,10,0.4);
  transition: all 0.3s var(--ease-out);
}
.video-card-overlay .video-play-btn:hover {
  background: var(--gold);
  color: var(--black);
  transform: scale(1.1);
}
.video-card-overlay .video-play-btn svg {
  width: 20px;
  height: 20px;
  margin-left: 3px;
}
.video-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to top, rgba(10,10,10,0.8) 0%, transparent 100%);
}
.video-card-info .name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--white);
}
.video-card-info .tag {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.25);
  padding: 0.25rem 0.6rem;
  border-radius: 2px;
}


/* ---------- PROCESS / JOURNEY ---------- */
.journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--white-08);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.journey-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--white-08);
  position: relative;
}
.journey-step:last-child { border-right: none; }
.journey-step .num {
  display: block;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: var(--gold-dim);
  line-height: 1;
  margin-bottom: 1.2rem;
}
.journey-step h3 {
  color: var(--white);
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font-body);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.journey-step p {
  font-size: 0.85rem;
  color: var(--white-50);
  max-width: 20ch;
}

/* ---------- LIGHTBOX ---------- */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10,10,10,0.96);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out);
}
.lightbox-overlay[aria-hidden="false"] {
  opacity: 1;
  pointer-events: all;
}
.lightbox-content {
  width: min(900px, 92vw);
  max-height: 90vh;
  padding: 0;
  border-radius: var(--radius-md);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.4s var(--ease-out);
  position: relative;
}
.lightbox-overlay[aria-hidden="false"] .lightbox-content {
  transform: translateY(0) scale(1);
}
.lightbox-media {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-md);
  background: var(--black-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lightbox-media img,
.lightbox-media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lightbox-info {
  padding: 1.2rem 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lightbox-info .name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--white);
}
.lightbox-info .tag {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lightbox-close {
  position: absolute;
  top: -3rem; right: 0;
  font-size: 1.8rem;
  color: var(--white-50);
  line-height: 1;
  padding: 0.3rem 0.5rem;
  transition: color 0.2s;
  z-index: 10;
}
.lightbox-close:hover { color: var(--gold); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 1px solid var(--white-20);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 10;
}
.lightbox-nav:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.lightbox-nav.prev { left: -4rem; }
.lightbox-nav.next { right: -4rem; }
.lightbox-nav svg { width: 20px; height: 20px; }

/* ---------- FOOTER ---------- */
footer {
  border-top: 1px solid var(--white-08);
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--white-08);
  margin-bottom: 2rem;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  display: block;
  margin-bottom: 0.6rem;
}
.footer-brand-name em { font-style: normal; color: var(--gold); font-weight: 600; }
.footer-tagline {
  font-size: 0.8rem;
  color: var(--white-20);
  font-style: italic;
  max-width: none;
}
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-20);
  margin-bottom: 1.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.82rem;
  color: var(--white-50);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.7rem;
  color: var(--white-20);
  max-width: none;
}
.footer-socials { display: flex; gap: 0.8rem; }
.footer-social {
  width: 40px; height: 40px;
  border: 1px solid var(--white-08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white-50);
  transition: color 0.2s, border-color 0.2s;
}
.footer-social:hover { color: var(--gold); border-color: var(--gold); }
.footer-social svg { width: 16px; height: 16px; }

/* ---------- SCROLL REVEAL ---------- */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal         { transform: translateY(28px); }
.reveal-left    { transform: translateX(-28px); }
.reveal-right   { transform: translateX(28px); }
.reveal.in, .reveal-left.in, .reveal-right.in {
  opacity: 1;
  transform: translate(0);
}

/* ---------- COLLECTION PAGE ---------- */
.collection-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--white-08);
  border-radius: 100px;
  color: var(--white-50);
  transition: all 0.25s;
}
.filter-btn:hover { color: var(--white); border-color: var(--white-20); }
.filter-btn.active {
  color: var(--gold);
  border-color: rgba(201,162,39,0.4);
  background: rgba(201,162,39,0.08);
}

.grid-collection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

/* ---------- ABOUT PAGE ---------- */
.about-hero {
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--white-08);
}
.about-prose { max-width: 62ch; }
.about-prose p { max-width: 62ch; margin-bottom: 1.2rem; color: var(--white-50); }
.about-prose p:last-child { margin-bottom: 0; }
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-style: italic;
  font-weight: 400;
  color: var(--white);
  line-height: 1.4;
  padding-left: 1.5rem;
  border-left: 2px solid var(--gold);
  margin: 2.5rem 0;
}

/* ---------- CONTACT PAGE ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.field-group { display: flex; flex-direction: column; gap: 0.4rem; }
.field-group label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white-20);
}
.field-group input,
.field-group select,
.field-group textarea {
  background: var(--black-mid);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.9rem 1.1rem;
  width: 100%;
  transition: border-color 0.3s;
  outline: none;
  appearance: none;
}
.field-group input::placeholder,
.field-group textarea::placeholder { color: var(--white-20); }
.field-group select { color: var(--white-50); }
.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus { border-color: var(--gold); }
.field-group textarea { resize: vertical; min-height: 140px; }

.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item h4 {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white-20);
  margin-bottom: 0.4rem;
}
.contact-item p, .contact-item a {
  font-size: 0.88rem;
  color: var(--white-50);
  max-width: none;
}
.contact-item a:hover { color: var(--gold); }

/* ---------- PAGE HERO ---------- */
.page-hero {
  padding-top: calc(var(--nav-h) + clamp(3rem, 6vw, 5rem));
  padding-bottom: clamp(3rem, 5vw, 4.5rem);
  border-bottom: 1px solid var(--white-08);
}
.page-hero .eyebrow { margin-bottom: 0.8rem; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 4rem); }

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: var(--black-mid);
  border: 1px solid var(--white-08);
  border-radius: var(--radius-md);
  padding: 1rem 1.4rem;
  font-size: 0.85rem;
  color: var(--white-50);
  z-index: 2000;
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
  pointer-events: none;
  max-width: 280px;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast strong { color: var(--white); font-weight: 500; display: block; margin-bottom: 0.15rem; }

/* ---------- GALLERY MASONRY ---------- */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 0.6rem;
}
.gallery-masonry .lookcard:nth-child(1) { grid-row: span 2; }
.gallery-masonry .lookcard:nth-child(4) { grid-row: span 2; }
.gallery-masonry .lookcard:nth-child(6) { grid-row: span 2; }
.gallery-masonry .lookcard:nth-child(9) { grid-row: span 2; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .journey { grid-template-columns: repeat(2, 1fr); }
  .journey-step:nth-child(2) { border-right: none; }
  .journey-step:nth-child(3) { border-right: 1px solid var(--white-08); border-top: 1px solid var(--white-08); }
  .journey-step:nth-child(4) { border-top: 1px solid var(--white-08); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-top > div:first-child { grid-column: 1 / -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .grid-collection { grid-template-columns: repeat(2, 1fr); }
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-right .btn-primary { display: none; }
  .lightbox-nav.prev { left: 0.5rem; }
  .lightbox-nav.next { right: 0.5rem; }
  section > .wrap[style*="grid-template-columns"] { display: block; }
  section > .wrap[style*="grid-template-columns"] > * { margin-bottom: 2rem; }
}

@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .journey { grid-template-columns: 1fr; }
  .journey-step { border-right: none; border-bottom: 1px solid var(--white-08); }
  .journey-step:last-child { border-bottom: none; }
  .footer-top { grid-template-columns: 1fr; }
  .grid-collection { grid-template-columns: 1fr; }
  .gallery-masonry { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .gallery-masonry .lookcard:nth-child(n) { grid-row: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}


@media (max-width: 900px) {
  .video-grid-portrait { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .video-grid-portrait { grid-template-columns: 1fr; }
}



/* ---------- IMAGE DISPLAY FIX ---------- */
.lookcard-art[style*="min-height:100%"] {
  position: relative !important;
}
.lookcard-art img {
  z-index: 1;
}
.gallery-masonry .lookcard-art {
  position: relative;
}


/* Video poster display */
.video-card-inner video[poster] {
  object-fit: cover;
  background-color: var(--black-mid);
}



/* ---------- HERO SLIDESHOW ---------- */
.slideshow {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--white-08);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s var(--ease-out);
  z-index: 1;
}
.slide.active {
  opacity: 1;
  z-index: 2;
}
.slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide-nav {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}
.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid var(--white-50);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  padding: 0;
}
.slide-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}
.slide-dot:hover {
  border-color: var(--gold);
}

/* ---------- GALLERY SIMPLE GRID ---------- */
.gallery-simple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.gallery-simple .lookcard {
  min-height: 320px;
}
.gallery-simple .lookcard-art {
  min-height: 320px;
}

@media (max-width: 900px) {
  .gallery-simple { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .gallery-simple { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}