/* ICONIC — Expanded project layout (migrated verbatim from project-voya.html) */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background: #111; color: #fff; overflow-x: hidden; }

/* ── HERO ── */
.proj-hero {
  position: relative; height: 100vh; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: #1c1b1b center/cover no-repeat;  /* image set from CMS */
  transform: scale(1.08);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.3) 60%, rgba(0,0,0,.6) 100%);
}
.hero-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 64px 72px;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(176,114,66,.2); border: 1px solid rgba(176,114,66,.5);
  border-radius: 50px; padding: 6px 18px;
  font-size: .62rem; letter-spacing: 3px; color: #d9a06e;
  text-transform: uppercase; margin-bottom: 24px;
  width: fit-content;
}
.hero-tag i { font-size: .7rem; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 700;
  line-height: .9;
  letter-spacing: -2px;
  margin-bottom: 28px;
}
.hero-title em { font-style: italic; color: rgba(255,255,255,.55); }
.hero-bottom {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.hero-desc {
  color: rgba(255,255,255,.6);
  font-size: .88rem; line-height: 1.9;
  max-width: 480px;
}
.hero-scroll {
  display: flex; align-items: center; gap: 12px;
  font-size: .62rem; letter-spacing: 3px; color: rgba(255,255,255,.4);
  text-transform: uppercase; text-decoration: none;
  transition: color .3s;
}
.hero-scroll .scroll-line {
  width: 1px; height: 60px; background: rgba(255,255,255,.2);
  position: relative; overflow: hidden;
}
.hero-scroll .scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
  background: rgba(255,255,255,.6);
  animation: scrollDown 1.8s ease infinite;
}
@keyframes scrollDown { to { top: 100%; } }

/* ── META BAND ── */
.meta-band {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #1e1e1e;
}
.meta-cell {
  padding: 36px 44px;
  border-right: 1px solid #1e1e1e;
  position: relative; overflow: hidden;
}
.meta-cell:last-child { border-right: none; }
.meta-cell::before {
  content: '';
  position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: #b07242;
  transition: width .5s ease;
}
.meta-cell:hover::before { width: 100%; }
.meta-label { font-size: .58rem; letter-spacing: 3.5px; color: #b07242; text-transform: uppercase; margin-bottom: 10px; }
.meta-val { font-size: .92rem; font-weight: 700; color: #ddd; letter-spacing: .5px; }

/* ── INTRO SPLIT ── */
.intro-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
}
.intro-left {
  padding: 100px 80px 100px 64px;
  border-right: 1px solid #1e1e1e;
  position: sticky; top: 80px; align-self: start;
}
.intro-right { padding: 100px 64px 100px 80px; }
.section-label {
  font-size: .6rem; letter-spacing: 4px; color: #b07242;
  text-transform: uppercase; margin-bottom: 20px; display: block;
}
.intro-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700; line-height: 1.1;
  margin-bottom: 40px;
}
.intro-heading em { font-style: italic; color: rgba(255,255,255,.4); }
.intro-stats { display: flex; flex-direction: column; gap: 1px; }
.stat-row {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: 24px 0; border-top: 1px solid #1e1e1e;
}
.stat-num-big {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900; color: #fff;
  letter-spacing: -2px; line-height: 1;
}
.stat-suffix { font-size: 1.4rem; color: #b07242; }
.stat-desc { font-size: .75rem; color: #555; letter-spacing: 1px; text-align: right; max-width: 150px; line-height: 1.6; }
.body-text { color: #666; font-size: .88rem; line-height: 2; margin-bottom: 22px; }
.highlight-quote {
  border-left: 2px solid #b07242;
  padding: 20px 24px;
  margin: 36px 0;
  background: rgba(176,114,66,.05);
  border-radius: 0 12px 12px 0;
}
.highlight-quote p { color: rgba(255,255,255,.75); font-size: .92rem; line-height: 1.85; font-style: italic; }

/* ── GALLERY ── */
.gallery-section { padding: 0 0 0; }
.gallery-label {
  padding: 80px 64px 40px;
  display: flex; align-items: flex-end; justify-content: space-between;
  border-top: 1px solid #1e1e1e;
}
.gallery-label h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; letter-spacing: -1px;
}
.gallery-label p { color: #555; font-size: .8rem; letter-spacing: 1px; }

/* Masonry-style grid */
.gallery-grid { padding: 0 40px 40px; }
.g-row { display: grid; gap: 16px; margin-bottom: 16px; }
.g-row-1 { grid-template-columns: 1.4fr 1fr; }
.g-row-2 { grid-template-columns: 1fr 1fr 1fr; }
.g-row-3 { grid-template-columns: 1fr 1.6fr; }
.g-card {
  border-radius: 20px; overflow: hidden;
  position: relative; cursor: pointer;
}
.g-card img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .7s cubic-bezier(.25,.46,.45,.94);
}
.g-card:hover img { transform: scale(1.06); }
.g-card-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: flex-end;
  padding: 24px; pointer-events: none;
  transition: background .4s ease;
}
.g-card:hover .g-card-overlay { background: rgba(0,0,0,.25); }
.g-card-label {
  font-size: .62rem; letter-spacing: 2.5px; color: rgba(255,255,255,0);
  text-transform: uppercase; transition: color .4s ease;
}
.g-card:hover .g-card-label { color: rgba(255,255,255,.7); }
.g-tall { height: 520px; }
.g-med  { height: 360px; }
.g-short{ height: 280px; }
.g-xshort{ height: 220px; }

/* Play button on video card */
.play-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.play-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: #fff;
  transition: transform .3s ease, background .3s ease;
}
.g-card:hover .play-btn { transform: scale(1.12); background: rgba(255,255,255,.25); }

/* ── PROCESS ── */
.process-section {
  padding: 120px 64px;
  border-top: 1px solid #1e1e1e;
}
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 64px;
}
.process-step {
  padding: 40px 36px;
  border-left: 1px solid #1e1e1e;
  position: relative;
  transition: background .3s;
}
.process-step:hover { background: rgba(255,255,255,.02); }
.process-step:first-child { border-left: none; }
.step-num {
  font-size: 3.5rem; font-weight: 900;
  color: rgba(176,114,66,.2);
  line-height: 1; margin-bottom: 24px;
  letter-spacing: -2px;
}
.step-title { font-size: .85rem; font-weight: 800; letter-spacing: 2px; margin-bottom: 14px; }
.step-text { color: #555; font-size: .8rem; line-height: 1.85; }
.step-icon { font-size: 1.3rem; color: #b07242; margin-bottom: 20px; }

/* ── NEXT PROJECT ── */
.next-project {
  display: block; position: relative;
  height: 55vh; overflow: hidden;
  text-decoration: none;
  border-top: 1px solid #1e1e1e;
}
.next-project img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(.45);
  transition: filter .5s ease, transform .7s ease;
}
.next-project:hover img { filter: brightness(.6); transform: scale(1.04); }
.next-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
}
.next-label { font-size: .62rem; letter-spacing: 4px; color: #b07242; text-transform: uppercase; margin-bottom: 16px; }
.next-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 700; color: #fff; letter-spacing: -1px;
  margin-bottom: 28px;
}
.next-arrow {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.35);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1rem;
  transition: transform .35s ease, background .35s ease;
}
.next-project:hover .next-arrow { transform: translateX(8px); background: #b07242; border-color: #b07242; }

/* ── BACK LINK ── */
.back-bar {
  padding: 28px 64px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid #1e1e1e;
}
.back-link {
  display: flex; align-items: center; gap: 12px;
  font-size: .72rem; letter-spacing: 2px; color: #555;
  text-decoration: none; text-transform: uppercase;
  transition: color .3s;
}
.back-link:hover { color: #fff; }
.back-link .back-icon { transition: transform .3s; }
.back-link:hover .back-icon { transform: translateX(-5px); }
.proj-counter { font-size: .68rem; letter-spacing: 2px; color: #333; }
.proj-counter span { color: #b07242; }

/* ── ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity .8s ease, transform .8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-32px); transition: opacity .8s ease, transform .8s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(32px); transition: opacity .8s ease, transform .8s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .hero-content { padding: 0 28px 50px; }
  .meta-band { grid-template-columns: 1fr 1fr; }
  .meta-cell { border-right: none; border-bottom: 1px solid #1e1e1e; }
  .intro-split { grid-template-columns: 1fr; }
  .intro-left { position: static; padding: 60px 28px 40px; border-right: none; border-bottom: 1px solid #1e1e1e; }
  .intro-right { padding: 40px 28px 60px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step:nth-child(odd) { border-left: none; }
  .process-section { padding: 70px 28px; }
  .gallery-label { padding: 60px 28px 30px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .gallery-grid { padding: 0 16px 30px; }
  .g-row-1, .g-row-2, .g-row-3 { grid-template-columns: 1fr; }
  .g-tall, .g-med, .g-short, .g-xshort { height: 260px; }
  .back-bar { padding: 22px 28px; }
  footer { padding: 40px 28px; }
}
