/* ============================================================
   QUARRYDOOR ADVERTISING — style.css
   Color palette: Deep Navy · Warm Gold · Ivory · Slate
   ============================================================ */

/* ── Google Fonts (loaded in HTML head) ── */

:root {
  /* Brand Colors */
  --navy:        #0d1b2a;
  --navy-mid:    #162032;
  --navy-light:  #1e3a5f;
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --gold-pale:   #f5ead8;
  --ivory:       #faf8f3;
  --text-blue:   #ccd3e1;
  --ivory-dark:  #ede9e0;
  --slate:       #4a5568;
  --slate-light: #718096;
  --white:       #ffffff;
  --black:       #090e14;

  /* Typography */
  --font-display: 'Montserrat', serif;
  --font-sans:    'Syne', sans-serif;
  --font-body:    'Montserrat', sans-serif;

  /* Transitions */
  --ease:        cubic-bezier(0.16, 1, 0.3, 1);
  --t:           0.65s var(--ease);
  --t-fast:      0.3s var(--ease);

  /* Spacing */
  --section-pad: 100px 64px;
  --gutter:      64px;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--ivory);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
ul { list-style: none; }
button { font-family: inherit; border: none; cursor: none; }

/* ============================================================
   CUSTOM CURSOR
============================================================ */
.cursor {
  position: fixed;
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .3s, height .3s, background .3s;
  mix-blend-mode: normal;
}
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,.45);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width .15s, height .15s, opacity .3s;
}
.cursor.big   { width: 52px; height: 52px; background: transparent; border: 1.5px solid var(--gold); }
.cursor-ring.big { opacity: 0; }

/* ============================================================
   PAGE TRANSITION
============================================================ */
.page-transition {
  position: fixed; inset: 0;
  background: var(--gold);
  z-index: 8000;
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
}
.page-transition.run {
  animation: ptIn .55s var(--ease) forwards;
}
@keyframes ptIn {
  from { transform: scaleX(0); transform-origin: left; }
  to   { transform: scaleX(1); transform-origin: left; }
}

/* ============================================================
   NAVIGATION
============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px var(--gutter);
  background: transparent;
  transition: background var(--t-fast), backdrop-filter var(--t-fast), padding var(--t-fast);
}
nav.scrolled {
  background: rgba(13, 27, 42, 0.94);
  backdrop-filter: blur(12px);
  padding: 14px var(--gutter);
  border-bottom: 1px solid rgba(201,168,76,.12);
}
.nav-logo img {
  height: 38px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex; gap: 36px;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ivory);
  position: relative;
  padding-bottom: 3px;
  cursor: pointer;
  transition: color var(--t-fast);
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-fast);
}
.nav-links a:hover,
.nav-links a.active { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 11px 26px;
  transition: background var(--t-fast), color var(--t-fast);
  cursor: pointer;
  border: 1.5px solid var(--gold);
}
.nav-cta:hover { background: transparent; color: var(--gold); }

.hamburger { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 1001; }
.hamburger span { display: block; width: 26px; height: 1.5px; background: var(--ivory); transition: var(--t-fast); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
  position: fixed; inset: 0;
  background: var(--navy);
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  transform: translateY(-100%);
  transition: transform var(--t);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 48px; font-weight: 400;
  color: var(--ivory);
  transition: color var(--t-fast);
  cursor: pointer;
}
.mobile-nav a:hover { color: var(--gold); }

/* ============================================================
   HERO — shared styles
============================================================ */
.hero {
  position: relative;
  height: 100vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute; inset: 0;
  background: var(--navy-mid);
}
.hero-media img { filter: brightness(.45); }
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,.75) 0%, transparent 70%),
              linear-gradient(to top, rgba(13,27,42,.9) 0%, transparent 55%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--gutter) 90px;
  width: 100%;
}
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: .25em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex; align-items: center; gap: 14px;
}
.eyebrow::before {
  content: '';
  display: block; width: 40px; height: 1.5px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 6vw, 108px);
  font-weight: 700;
  line-height: .92;
  letter-spacing: -.02em;
  color: var(--ivory);
  max-width: 900px;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp .9s var(--ease) .4s forwards;
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-top: 44px;
  opacity: 0;
  animation: fadeUp .8s var(--ease) .7s forwards;
}
.hero-desc {
  font-size: 15px; color: rgba(250,248,243,.65);
  max-width: 360px; line-height: 1.75;
}
.hero-scroll {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 10px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold);
}
.scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2.2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(1); }
  55%       { opacity: 1; transform: scaleY(1.15); }
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   MARQUEE
============================================================ */
.marquee-bar {
  overflow: hidden;
  border-top: 1px solid rgba(201,168,76,.2);
  border-bottom: 1px solid rgba(201,168,76,.2);
  padding: 16px 0;
  background: var(--navy-mid);
}
.marquee-track {
  display: flex; gap: 56px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-family: var(--font-sans);
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--slate-light);
  flex-shrink: 0;
}
.marquee-track .dot { color: var(--gold); font-size: 14px; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION HELPERS
============================================================ */
.section-label {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 20px;
}
.section-label::before { content: ''; display: block; width: 32px; height: 1.5px; background: var(--gold); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 80px);
  font-weight: 700; line-height: 1;
}
.section-title em { font-style: italic; color: var(--gold); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-sans); font-size: 11px;
  font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 15px 32px;
  transition: var(--t-fast);
  cursor: pointer;
}
.btn-outline:hover { background: var(--gold); color: var(--navy); }
.btn-solid {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-sans); font-size: 11px;
  font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  padding: 16px 36px;
  transition: var(--t-fast);
  cursor: pointer;
  border: 1.5px solid var(--gold);
}
.btn-solid:hover { background: transparent; color: var(--gold); }
.btn-arrow { transition: transform var(--t-fast); }
.btn-outline:hover .btn-arrow,
.btn-solid:hover .btn-arrow { transform: translateX(6px); }

/* ============================================================
   REVEAL
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }

/* ============================================================
   ██ HOMEPAGE
============================================================ */

/* Intro */
.intro-section {
  padding: 120px var(--gutter);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.intro-left .big-num {
  font-family: var(--font-display);
  font-size: 220px; line-height: 1;
  color: rgba(201,168,76,.07);
  font-weight: 400;
  user-select: none;
  margin-bottom: -40px;
}
.intro-text h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 700; line-height: 1.2;
  margin-bottom: 28px;
}
.intro-text h2 em { font-style: italic; color: var(--gold); }
.intro-text p { color: rgba(250,248,243,.65); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }

/* Work grid */
.work-section { padding: var(--section-pad); padding-bottom: 0; }
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 48px;
}
.section-head-right {
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(201,168,76,.4);
  padding-bottom: 2px; cursor: pointer;
  transition: color var(--t-fast), border-color var(--t-fast);
}
.section-head-right:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* ── Selected Works — 2×2 uniform grid, always-visible info ── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 360px);
  gap: 3px;
}
.work-item {
  position: relative; overflow: hidden;
  background: var(--navy-light);
  cursor: pointer;
  display: block;
}
/* All items fill their cell */
.work-item:nth-child(1),
.work-item:nth-child(2),
.work-item:nth-child(3),
.work-item:nth-child(4) {
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: unset;
  margin-top: 0;
}
.work-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease);
  filter: brightness(.72);
}
.work-item:hover img { transform: scale(1.06); filter: brightness(.55); }
/* Always-visible overlay at bottom */
.work-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(9,14,20,.92) 0%, rgba(9,14,20,.4) 60%, transparent 100%);
  padding: 28px 28px 24px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.work-cat {
  font-family: var(--font-sans); font-size: 10px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.work-name {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 400; color: var(--ivory);
}
.work-year {
  position: absolute; top: 18px; right: 22px;
  font-family: var(--font-sans); font-size: 10px;
  letter-spacing: .1em; color: rgba(201,168,76,.7);
}

/* Stats */
.stats-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin: 80px var(--gutter);
  border: 1px solid rgba(201,168,76,.15);
}
.stat-item {
  padding: 52px 40px;
  border-right: 1px solid rgba(201,168,76,.15);
  position: relative;
  overflow: hidden;
  transition: background var(--t-fast);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(201,168,76,.06); }
.stat-num {
  font-family: var(--font-display);
  font-size: 68px; font-weight: 400; line-height: 1;
  color: var(--gold); margin-bottom: 12px;
}
.stat-label {
  font-family: var(--font-sans); font-size: 11px;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--slate-light);
}

/* Services preview rows */
.services-preview { padding: 40px var(--gutter) 100px; }
.service-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px; border-bottom: 1px solid rgba(201,168,76,.12);
  cursor: pointer; position: relative; overflow: hidden;
  transition: padding var(--t-fast);
}
.service-row::before {
  content: '';
  position: absolute; inset: 0; left: -100%;
  background: rgba(201,168,76,.07);
  transition: left var(--t);
}
.service-row:hover::before { left: 0; }
.service-row:hover { padding-left: 20px; }
.service-row > * { position: relative; z-index: 1; }
.svc-num { font-family: var(--font-sans); font-size: 32px; letter-spacing: .15em; color: var(--gold); width: 56px; }
.svc-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 44px);
  font-weight: 400; flex: 1; padding: 0 32px;
}
.svc-tag { font-family: var(--font-sans); font-size: 10px; letter-spacing: .15em; text-transform: uppercase; color: var(--slate-light); }
.svc-arrow { font-size: 22px; color: var(--gold); transition: transform var(--t-fast); }
.service-row:hover .svc-arrow { transform: translate(7px, -7px); }

/* ============================================================
   ██ ABOUT PAGE
============================================================ */
.page-hero {
  position: relative; height: 70vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid rgba(201,168,76,.12);
}
.page-hero-media {
  position: absolute; inset: 0; background: var(--navy-mid);
}
.page-hero-media img { filter: brightness(.35); }
.page-hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--navy) 0%, transparent 60%);
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 var(--gutter) 20px;
  max-width: 1000px;
}
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 6.5vw, 96px);
  font-weight: 700; line-height: 1;
  margin-bottom: 28px;
}
.page-hero-content h1 em { font-style: italic; color: var(--gold); }
.page-hero-content p { color: rgba(250,248,243,.6); font-size: 16px; line-height: 1.8; }

/* Ghost title watermark */
.watermark-wrap { position: relative; }
.watermark-wrap::before {
  content: attr(data-wm);
  position: absolute;
  font-family: var(--font-display);
  font-size: 22vw; font-weight: 400;
  color: rgba(201,168,76,.04);
  right: -2vw; bottom: -4vw;
  line-height: 1;
  pointer-events: none; user-select: none;
  white-space: nowrap;
}

.manifesto {
  padding: 100px var(--gutter);
  display: grid; grid-template-columns: 220px 1fr;
  gap: 60px; align-items: start;
}
.manifesto-label {
  font-family: var(--font-sans); font-size: 11px;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); padding-top: 12px;
}
.manifesto blockquote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.8vw, 40px);
  font-weight: 400; line-height: 1.4;
  color: var(--ivory);
  border-left: 3px solid var(--gold);
  padding-left: 40px;
}
.manifesto blockquote em { font-style: italic; color: var(--gold-light); }

/* ── About image pair — clean full-width cinematic banner ── */
.about-img-pair {
  padding: 0 var(--gutter) 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.abt-img { background: var(--navy-light); overflow: hidden; }
.abt-img:nth-child(1) { aspect-ratio: 16/9; }
.abt-img:nth-child(2) { aspect-ratio: 16/9; }
.abt-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.abt-img:hover img { transform: scale(1.04); }

/* Values */
.values-section { padding: var(--section-pad); }
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 56px;
}
.value-card {
  padding: 48px 40px;
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,.1);
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.value-card:hover { background: rgba(201,168,76,.06); border-color: rgba(201,168,76,.3); transform: translateY(-4px); }
.val-num { font-family: var(--font-display); font-size: 52px; color: rgba(201,168,76,.18); margin-bottom: 24px; transition: color var(--t-fast); }
.value-card:hover .val-num { color: var(--gold); }
.val-title { font-family: var(--font-display); font-size: 24px; font-weight: 400; margin-bottom: 14px; }
.val-desc { color: rgba(250,248,243,.55); font-size: 14px; line-height: 1.75; }

/* Team */
.team-section { padding: var(--section-pad); border-top: 1px solid rgba(201,168,76,.12); }
.team-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 3px; margin-top: 56px;
}
.team-card { cursor: pointer; }
.team-photo {
  aspect-ratio: 3/4; background: var(--navy-light);
  overflow: hidden; margin-bottom: 18px; position: relative;
}
.team-photo img { transition: transform .7s var(--ease); }
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(201,168,76,.15);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.team-card:hover .team-photo::after { opacity: 1; }
.team-name { font-family: var(--font-display); font-size: 20px; margin-bottom: 5px; }
.team-role { font-family: var(--font-sans); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--gold); }

/* ============================================================
   ██ SERVICES PAGE
============================================================ */
.services-hero-simple {
  padding: 120px var(--gutter) 80px;
  border-bottom: 1px solid rgba(201,168,76,.12);
  display: flex; justify-content: space-between; align-items: flex-end;
}
.services-hero-simple h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 700; line-height: .92;
}
.services-hero-simple h1 em { font-style: italic; color: var(--gold); }
.services-hero-simple p {
  color: rgba(250,248,243,.55); font-size: 15px; line-height: 1.8;
  max-width: 380px; text-align: right;
}

/* Accordion */
.accordion { border-top: 1px solid rgba(201,168,76,.15); margin: 0 var(--gutter); }
.acc-item { border-bottom: 1px solid rgba(201,168,76,.15); }
.acc-header {
  display: grid;
  grid-template-columns: 72px 1fr auto 48px;
  align-items: center; gap: 32px;
  padding: 36px 0; cursor: pointer;
  transition: padding var(--t-fast);
}
.acc-header:hover { padding-left: 18px; }
.acc-n { font-family: var(--font-sans); font-size: 16px; letter-spacing: .15em; color: var(--gold); }
.acc-title { font-family: var(--font-display); font-size: clamp(26px, 3.5vw, 52px); font-weight: 400; }
.acc-tag { font-family: var(--font-sans); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--slate-light); text-align: right; }
.acc-icon {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(201,168,76,.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--gold);
  transition: transform var(--t-fast), background var(--t-fast), border-color var(--t-fast);
}
.acc-item.open .acc-icon { transform: rotate(45deg); background: var(--gold); color: var(--navy); border-color: var(--gold); }
.acc-body {
  display: grid; grid-template-columns: 72px 1fr 1fr;
  gap: 32px; max-height: 0; overflow: hidden;
  transition: max-height .65s var(--ease), padding .65s var(--ease);
  padding: 0;
}
.acc-item.open .acc-body { max-height: 360px; padding: 0 0 48px; }
.acc-desc { color: rgba(250,248,243,.6); font-size: 15px; line-height: 1.8; }
.acc-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(250,248,243,.65);
  padding: 10px 0; border-bottom: 1px solid rgba(201,168,76,.08);
}
.acc-list li::before { content: '→'; color: var(--gold); }

.svc-visual-strip {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 3px; margin: 80px var(--gutter);
}
.svc-card {
  aspect-ratio: 3/4; background: var(--navy-light);
  position: relative; overflow: hidden; cursor: pointer;
}
/*.svc-card:nth-child(2) { margin-top: 60px; }
.svc-card:nth-child(3) { margin-top: 120px; }*/
.svc-card img { transition: transform .8s var(--ease); filter: brightness(.55); }
.svc-card:hover img { transform: scale(1.06); }
.svc-card-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
  background: linear-gradient(to top, rgba(13,27,42,.88), transparent);
  font-family: var(--font-display); font-size: 24px;
}
.svc-card-label span {
  display: block; font-family: var(--font-sans);
  font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 6px;
}

/* ============================================================
   ██ WORKS PAGE
============================================================ */
.works-intro {
  padding: 160px var(--gutter) 80px;
  display: flex; justify-content: space-between; align-items: flex-end;
  border-bottom: 1px solid rgba(201,168,76,.12);
}
.works-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 400; line-height: .92;
}
.works-intro h1 em { font-style: normal; color: var(--gold); }
.works-filter {
  display: flex; gap: 4px; flex-wrap: wrap; justify-content: flex-end; align-items: center;
}
.filter-btn {
  font-family: var(--font-sans); font-size: 11px;
  font-weight: 600; letter-spacing: .15em; text-transform: uppercase;
  padding: 11px 22px;
  border: 1.5px solid rgba(201,168,76,.2);
  color: var(--slate-light);
  background: transparent;
  cursor: pointer;
  transition: var(--t-fast);
}
.filter-btn:hover,
.filter-btn.active { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* Gallery */
.works-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  padding: 0 var(--gutter) 80px;
}
.gallery-item {
  position: relative; overflow: hidden;
  background: var(--navy-light);
  cursor: pointer;
  display: block;
  aspect-ratio: 4/3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease);
  filter: brightness(.72);
}
.gallery-item:hover img { transform: scale(1.05); filter: brightness(.5); }
/* Always-visible label at bottom */
.gallery-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(9,14,20,.9) 0%, transparent 100%);
  padding: 24px 22px 20px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.gallery-overlay-title {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.8vw, 24px);
  margin-bottom: 4px;
}
.gallery-overlay-cat {
  font-family: var(--font-sans); font-size: 10px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--gold);
}color: var(--gold); }

/* ============================================================
   ██ CONTACT PAGE
============================================================ */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.contact-left {
  padding: 160px 72px 80px var(--gutter);
  border-right: 1px solid rgba(201,168,76,.12);
  display: flex; flex-direction: column; justify-content: space-between;
  background: var(--navy-mid);
}
.contact-left h1 {
  font-family: var(--font-display);
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 700; line-height: 1;
  margin-bottom: 32px;
}
.contact-left h1 em { font-style: italic; color: var(--gold); }
.contact-left > div > p { color: rgba(250,248,243,.55); font-size: 15px; line-height: 1.8; max-width: 800px; }
.contact-info { margin-top: auto; padding-top: 72px; }
.contact-info-item { padding: 24px 0; border-top: 1px solid rgba(201,168,76,.12); }
.ci-label { font-family: var(--font-sans); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.ci-value { font-family: var(--font-display); font-size: 20px; transition: color var(--t-fast); cursor: pointer; }
.ci-value:hover { color: var(--gold); }
.ci-socials { display: flex; gap: 22px; margin-top: 8px; }
.ci-socials span { font-family: var(--font-sans); font-size: 12px; letter-spacing: .1em; color: rgba(250,248,243,.5); transition: color var(--t-fast); cursor: pointer; }
.ci-socials span:hover { color: var(--gold); }

.contact-right {
  padding: 160px var(--gutter) 80px 72px;
  display: flex; flex-direction: column; justify-content: center;
}
.form-section-label { font-family: var(--font-sans); font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 48px; }
.form-row { margin-bottom: 36px; }
.form-row label { display: block; font-family: var(--font-sans); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; color: var(--slate-light); margin-bottom: 10px; }
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%; background: transparent;
  border: none; border-bottom: 1px solid rgba(201,168,76,.2);
  color: var(--text-blue);
  font-family: var(--font-sans); font-size: 16px; font-weight: 400;
  padding: 6px 10px 14px; outline: none; resize: none;
  appearance: none;
  transition: border-color var(--t-fast);
}
.form-row select { cursor: pointer; }
.form-row select option { background: var(--navy); }
.form-row select option:focus { background: var(--gold); }
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus { border-bottom-color: var(--gold); }
.form-row input::placeholder,
.form-row textarea::placeholder { color: rgba(250,248,243,.2); font-style: italic; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 0 36px; }
.submit-btn {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-sans); font-size: 11.5px;
  font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  background: var(--gold); color: var(--navy);
  padding: 20px 44px; border: 1.5px solid var(--gold);
  cursor: pointer; margin-top: 12px;
  transition: var(--t-fast);
}
select.dropdown option {padding: 10px;}
select.dropdown option:hover {background: var(--gold);}
.submit-btn:hover { background: transparent; color: var(--gold); }

/* ============================================================
   FOOTER
============================================================ */
footer {
  background: var(--black);
  border-top: 1px solid rgba(201,168,76,.12);
  padding: 80px var(--gutter) 40px;
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 72px;
}
.footer-logo img { height: 36px; width: auto; object-fit: contain; margin-bottom: 20px; }
.footer-brand p { color: var(--slate-light); font-size: 13.5px; line-height: 1.75; max-width: 280px; }
.footer-col-title { font-family: var(--font-sans); font-size: 10px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { font-size: 14px; color: var(--slate-light); transition: color var(--t-fast); cursor: pointer; }
.footer-links a:hover { color: var(--ivory); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(201,168,76,.1); padding-top: 32px;
}
.footer-copy { font-family: var(--font-sans); font-size: 11px; letter-spacing: .08em; color: var(--slate-light); }
.footer-badge { font-family: var(--font-display); font-size: 13px; font-style: italic; color: rgba(201,168,76,.5); }
.footer-socials { display: flex; gap: 24px; }
.footer-socials a { font-family: var(--font-sans); font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--slate-light); transition: color var(--t-fast); cursor: pointer; }
.footer-socials a:hover { color: var(--gold); }

/* Gold divider line decoration */
.gold-line { width: 60px; height: 2px; background: var(--gold); margin: 0 auto 40px; }

/* ============================================================
   TESTIMONIALS (homepage)
============================================================ */
.testimonials-section {
  padding: 120px var(--gutter) 110px;
  position: relative;
  overflow: hidden;
}

/* Subtle diagonal gold texture in the background */
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(201,168,76,.03) 0%, transparent 50%),
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 60px,
      rgba(201,168,76,.025) 60px,
      rgba(201,168,76,.025) 61px
    );
  pointer-events: none;
}

/* Large decorative number — mirrors the intro section style */
.testimonials-section::after {
  content: '"';
  font-family: var(--font-display);
  font-size: 320px;
  font-weight: 400;
  color: rgba(201,168,76,.04);
  position: absolute;
  right: var(--gutter);
  top: 40px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Header row — label + title on the left, intro text on the right */
.testi-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}
.testi-intro {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--slate-light);
  max-width: 460px;
  padding-bottom: 6px;
}

/* 3-column testimonial card grid */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;                               /* hairline gap between cards */
}

/* Individual card */
.testi-card {
  position: relative;
  background: var(--navy-mid);
  border: 1px solid rgba(201,168,76,.1);
  padding: 52px 44px 44px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow: hidden;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}
.testi-card:hover {
  background: rgba(30,58,95,.6);
  border-color: rgba(201,168,76,.28);
  transform: translateY(-4px);
}

/* Left gold accent bar that grows on hover */
.testi-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--t);
}
.testi-card:hover::before { transform: scaleY(1); transform-origin: top; }

/* Large opening quotation mark */
.testi-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 96px;
  font-style: italic;
  font-weight: 300;
  line-height: 0.7;
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
  opacity: 0.85;
}

/* Testimonial body copy */
.testi-body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ivory);
  flex: 1;
  margin-bottom: 36px;
}

/* Thin gold rule divider */
.testi-rule {
  width: 48px;
  height: 1.5px;
  background: var(--gold);
  opacity: 0.55;
  margin-bottom: 28px;
  transition: width var(--t), opacity var(--t-fast);
}
.testi-card:hover .testi-rule { width: 80px; opacity: 1; }

/* Author row */
.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Avatar circle with initials */
.testi-avatar {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--gold);
  transition: background var(--t-fast), border-color var(--t-fast);
}
.testi-card:hover .testi-avatar {
  background: rgba(201,168,76,.2);
  border-color: rgba(201,168,76,.5);
}

.testi-name {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--ivory);
  margin-bottom: 4px;
}
.testi-role {
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 300;
  letter-spacing: .04em;
  color: var(--slate-light);
}

/* Centered CTA button below the grid */
.testi-cta {
  text-align: center;
  margin-top: 72px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
  :root { --gutter: 40px; }
  .intro-section { grid-template-columns: 1fr; gap: 0; }
  .intro-left .big-num { font-size: 140px; }
  /* Tablet: keep 2-col grid, reduce row height */
  .work-grid { grid-template-rows: repeat(2, 280px); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  /* Testimonials: 2-col grid */
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid .testi-card:last-child { grid-column: span 2; }
  .testi-header { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; }
  .contact-left { padding: 140px 40px 60px; border-right: none; border-bottom: 1px solid rgba(201,168,76,.12); }
  .contact-right { padding: 60px 40px 80px; }
  .works-intro { flex-direction: column; align-items: flex-start; gap: 40px; }
  .manifesto { grid-template-columns: 1fr; gap: 24px; }
  .manifesto blockquote { padding-left: 24px; }
  .services-hero-simple { flex-direction: column; align-items: flex-start; gap: 32px; }
  .services-hero-simple p { text-align: left; }
  .about-img-pair { grid-template-columns: 1fr; }
  .svc-visual-strip { grid-template-columns: 1fr; }
  .svc-card:nth-child(2), .svc-card:nth-child(3) { margin-top: 0; }
}
@media (max-width: 768px) {
  :root { --gutter: 24px; }
  nav { padding: 18px var(--gutter); }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: clamp(40px, 12vw, 80px); }
  .stats-strip { grid-template-columns: 1fr; margin: 60px var(--gutter); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(201,168,76,.15); }
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  /* Mobile: work grid single col, gallery 1-col */
  .work-grid { grid-template-columns: 1fr; grid-template-rows: repeat(4, 260px); }
  .works-gallery { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .form-2col { grid-template-columns: 1fr; }
  .acc-header { grid-template-columns: 44px 1fr 36px; }
  .acc-tag { display: none; }
  .acc-body { grid-template-columns: 44px 1fr; }
  .svc-tag { display: none; }
  /* Testimonials: single col on mobile */
  .testi-grid { grid-template-columns: 1fr; }
  .testi-grid .testi-card:last-child { grid-column: span 1; }
  .testi-card { padding: 40px 32px 36px; }
  .testimonials-section::after { display: none; }
  .testi-header { margin-bottom: 48px; }
}



/* ============================================================
   VALUES INTRO STRIP (about page — between images and values grid)
============================================================ */
.values-intro-strip {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 52px var(--gutter);
  border-top: 1px solid rgba(201,168,76,.12);
  border-bottom: 1px solid rgba(201,168,76,.12);
  background: var(--navy-mid);
}
.vis-label {
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold);
  display: flex; align-items: center; gap: 14px;
}
.vis-label::before {
  content: ''; display: block;
  width: 28px; height: 1.5px; background: var(--gold);
  flex-shrink: 0;
}
.vis-headline {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 34px);
  font-weight: 400; line-height: 1.2;
}
.vis-headline em { font-style: italic; color: var(--gold); }
.vis-rule {
  width: 60px; height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .values-intro-strip { grid-template-columns: 1fr; gap: 16px; padding: 40px var(--gutter); }
  .vis-rule { display: none; }
}

/* ============================================================
   WORKS FILTER — updated for works-intro context
============================================================ */
.works-intro {
  padding: 120px var(--gutter) 48px;
  display: flex; justify-content: space-between; align-items: flex-end;
  border-bottom: 1px solid rgba(201,168,76,.12);
  gap: 40px; flex-wrap: wrap;
}
.works-intro h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 110px);
  font-weight: 700; line-height: .92;
}
.works-intro h1 em { font-style: italic; color: var(--gold); }

/* Override the old masonry columns approach */
.works-gallery { columns: unset !important; }

/* Ensure gallery items are proper anchors */
a.gallery-item { text-decoration: none; color: inherit; display: block; }
a.work-item    { text-decoration: none; color: inherit; display: block; }


/* ============================================================
       PROJECT DETAIL PAGE — STYLES
    ============================================================ */

    /* Back nav */
    .back-link {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    }

    /* ── HERO BANNER ── */
    .project-hero {
      height: 92vh;
      position: relative;
      overflow: hidden;
      display: flex; align-items: flex-end;
    }
    .project-hero-img {
      position: absolute; inset: 0;
    }
    .project-hero-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      transform: scale(1.04);
      animation: heroZoom 8s ease forwards;
    }
    @keyframes heroZoom {
      from { transform: scale(1.08); }
      to   { transform: scale(1); }
    }
    .project-hero-img::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(
        to top,
        rgba(9,14,20,.92) 0%,
        rgba(9,14,20,.3)  50%,
        transparent       100%
      );
    }

    .project-hero-content {
      position: relative; z-index: 2;
      padding: 0 var(--gutter) 72px;
      width: 100%;
      opacity: 0;
      animation: fadeUp .9s var(--ease) .3s forwards;
    }
    .project-back {
      display: inline-flex; align-items: center; gap: 10px;
      font-family: var(--font-sans); font-size: 11px;
      letter-spacing: .18em; text-transform: uppercase;
      color: rgba(201,168,76,.7);
      margin-bottom: 40px;
      transition: color .25s ease;
      cursor: pointer;
    }
    .project-back:hover { color: var(--gold); }
    .project-back-arrow { font-size: 16px; transition: transform .25s ease; }
    .project-back:hover .project-back-arrow { transform: translateX(-5px); }

    .project-title {
      font-family: var(--font-display);
      font-size: clamp(52px, 8vw, 110px);
      font-weight: 400; line-height: .9;
      letter-spacing: -.02em;
      margin-bottom: 32px;
    }
    .project-title em { font-style: normal; color: var(--gold); }

    .project-hero-meta {
      display: flex; gap: 40px; flex-wrap: wrap;
      align-items: center;
    }
    .hero-meta-item {}
    .hero-meta-label {
      font-family: var(--font-sans);
      font-size: 9.5px; letter-spacing: .22em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 6px;
    }
    .hero-meta-value {
      font-family: var(--font-sans);
      font-size: 13px; color: rgba(250,248,243,.75);
      letter-spacing: .04em;
    }

    /* Scroll hint */
    .scroll-hint {
      position: absolute; right: var(--gutter); bottom: 72px; z-index: 2;
      display: flex; flex-direction: column; align-items: center; gap: 10px;
      font-family: var(--font-sans); font-size: 9px; letter-spacing: .22em;
      text-transform: uppercase; color: rgba(201,168,76,.5);
      animation: fadeUp .8s var(--ease) .8s both;
    }
    .scroll-hint-line {
      width: 1px; height: 50px;
      background: linear-gradient(to bottom, transparent, rgba(201,168,76,.5));
      animation: scrollPulse 2.2s ease infinite;
    }

    /* ── INFO STRIP ── */
    .project-info-strip {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 1px;
      background: rgba(201,168,76,.1);
      border-top: 1px solid rgba(201,168,76,.1);
      border-bottom: 1px solid rgba(201,168,76,.1);
    }
    .info-cell {
      background: var(--navy);
      padding: 40px 48px;
      transition: background .25s ease;
    }
    .info-cell:hover { background: var(--navy-mid); }
    .info-cell-label {
      font-family: var(--font-sans);
      font-size: 9.5px; letter-spacing: .22em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 14px;
    }
    .info-cell-value {
      font-family: var(--font-display);
      font-size: 18px; font-weight: 400;
      line-height: 1.4;
    }
    .info-cell-value.large {
      font-size: 15px; line-height: 1.75;
      font-family: var(--font-body);
      color: rgba(250,248,243,.7);
      font-weight: 300;
    }

    /* Tags in info strip */
    .tag-chips { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
    .tag-chip {
      font-family: var(--font-sans);
      font-size: 10px; font-weight: 600;
      letter-spacing: .14em; text-transform: uppercase;
      color: var(--navy); background: var(--gold);
      padding: 5px 14px;
    }

    /* ── PROJECT DESCRIPTION ── */
    .project-body {
      padding: 100px var(--gutter);
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 80px;
    }
    .project-body-label {
      font-family: var(--font-sans);
      font-size: 11px; letter-spacing: .22em;
      text-transform: uppercase; color: var(--gold);
      padding-top: 8px;
    }
    .project-body-text h2 {
      font-family: var(--font-display);
      font-size: clamp(28px, 3.5vw, 48px);
      font-weight: 400; line-height: 1.2;
      margin-bottom: 32px;
    }
    .project-body-text h2 em { font-style: normal; color: var(--gold); }
    .project-body-text p {
      color: rgba(250,248,243,.65);
      font-size: 15px; line-height: 1.9;
      margin-bottom: 20px;
    }

    /* ── IMAGE GALLERY ── */
    .project-gallery { padding: 0 var(--gutter) 100px; }
    .gallery-label {
      font-family: var(--font-sans);
      font-size: 11px; letter-spacing: .22em;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 32px;
      display: flex; align-items: center; gap: 14px;
    }
    .gallery-label::before { content: ''; display: block; width: 32px; height: 1.5px; background: var(--gold); }

    /* 4 images: 2-col top, 2 more staggered below */
    .proj-img-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 3px;
      align-items: start;
    }
    .proj-img-item {
      overflow: hidden;
      background: var(--navy-light);
      position: relative;
    }
    .proj-img-item:nth-child(1) { aspect-ratio: 16/10; }
    .proj-img-item:nth-child(2) { aspect-ratio: 16/10; }
    .proj-img-item:nth-child(3) { aspect-ratio: 4/3; }
    .proj-img-item:nth-child(4) { aspect-ratio: 4/3; }
    .proj-img-item img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform .8s var(--ease);
    }
    .proj-img-item:hover img { transform: scale(1.04); }

    /* ── NEXT PROJECT ── */
    .next-project {
      display: block;
      padding: 64px var(--gutter);
      border-top: 1px solid rgba(201,168,76,.12);
      background: var(--navy-mid);
      cursor: pointer; text-decoration: none; color: var(--ivory);
      position: relative; overflow: hidden;
      transition: padding-left .45s var(--ease);
    }
    .next-project::before {
      content: '';
      position: absolute; inset: 0;
      background: rgba(201,168,76,.06);
      transform: scaleX(0); transform-origin: left;
      transition: transform .6s var(--ease);
    }
    .next-project:hover::before { transform: scaleX(1); }
    .next-project:hover { padding-left: calc(var(--gutter) + 20px); }
    .next-project > * { position: relative; z-index: 1; }
    .next-label {
      font-family: var(--font-sans); font-size: 10px;
      letter-spacing: .22em; text-transform: uppercase;
      color: var(--gold); margin-bottom: 14px;
      display: flex; align-items: center; gap: 12px;
    }
    .next-label::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--gold); }
    .next-title {
      font-family: var(--font-display);
      font-size: clamp(36px, 5vw, 72px);
      font-weight: 400; line-height: 1;
    }
    .next-arrow {
      position: absolute; right: var(--gutter); top: 50%;
      transform: translateY(-50%);
      font-size: 36px; color: rgba(201,168,76,.3);
      transition: color .3s ease, transform .35s var(--ease);
    }
    .next-project:hover .next-arrow { color: var(--gold); transform: translateY(-50%) translateX(10px); }

    /* Responsive */
    @media (max-width: 900px) {
      .project-info-strip { grid-template-columns: 1fr 1fr; }
      .project-body { grid-template-columns: 1fr; gap: 32px; }
      .proj-img-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
      .proj-img-item:nth-child(1),
      .proj-img-item:nth-child(2),
      .proj-img-item:nth-child(3),
      .proj-img-item:nth-child(4) { aspect-ratio: 4/3 !important; }
    }
    @media (max-width: 600px) {
      .project-title { font-size: clamp(40px, 12vw, 72px); }
      .project-info-strip { grid-template-columns: 1fr; }
      .project-hero-meta { gap: 24px; }
    }
