/* ─── Tokens ─────────────────────────────────────────────── */
:root {
  --navy:   #0D1E35;
  --navy2:  #1A2B40;
  --gold:   #C4973A;
  --white:  #FFFFFF;
  --chalk:  #F5F4F1;
  --fog:    #6B7A8D;
  --rule:   #E0DDD8;
  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Inter', system-ui, sans-serif;
}

/* ─── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body { background: var(--white); color: var(--navy); font-family: var(--sans); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Utility ────────────────────────────────────────────── */
.u-label {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* ─── Admin bar offset ───────────────────────────────────── */
.admin-bar .site-nav { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-nav { top: 46px; }
}

/* ─── Nav ────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 72px;
  height: 80px;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.5s ease, border-color 0.5s ease, backdrop-filter 0.5s ease;
}

.site-nav.scrolled {
  background-color: rgba(13,30,53,0.97);
  border-bottom-color: rgba(196,151,58,0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-gradient {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to bottom, #0C1E34 0%, rgba(12,30,52,0) 100%);
  pointer-events: none;
  z-index: 299;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.site-nav.scrolled + .nav-gradient {
  opacity: 0;
}

.nav-wordmark {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.nav-wordmark__monogram {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  color: var(--white);
  letter-spacing: 0.06em;
  opacity: 0;
  transform: translateY(-8px);
}

.nav-wordmark__divider {
  width: 1px;
  height: 16px;
  background-color: rgba(196,151,58,0.45);
  opacity: 0;
}

.nav-wordmark__name {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-8px);
}

.nav-wordmark__logo {
  display: block;
  height: 32px;
  opacity: 0;
  transform: translateY(-8px);
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 48px;
  list-style: none;
}

.nav-links li { opacity: 0; transform: translateY(-8px); }

.nav-links a {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 12px;
  color: var(--white);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav-links a:hover { color: var(--gold); }

/* Services dropdown */
.nav-has-dropdown {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}
/* Invisible bridge covers the margin-top gap so hover doesn't drop out */
.nav-has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: -16px;
  right: -16px;
  height: 21px;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-top: 21px;
  transform: translateX(-50%) translateY(8px);
  background: rgba(8,18,32,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.07);
  border-top: 2px solid var(--gold);
  min-width: 280px;
  padding: 18px 0 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 200;
}
.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown__link {
  display: block;
  padding: 11px 28px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(14px, 1vw, 18px);
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  opacity: 0;
  transform: translateY(-5px);
  transition: color 0.2s ease, background 0.2s ease, opacity 0.3s ease, transform 0.3s ease;
  transition-delay: 0s;
}
.nav-dropdown__link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}
/* Staggered fade-in per item */
.nav-has-dropdown:hover .nav-dropdown__link:nth-child(1),
.nav-has-dropdown:focus-within .nav-dropdown__link:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.04s; }
.nav-has-dropdown:hover .nav-dropdown__link:nth-child(2),
.nav-has-dropdown:focus-within .nav-dropdown__link:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.09s; }
.nav-has-dropdown:hover .nav-dropdown__link:nth-child(3),
.nav-has-dropdown:focus-within .nav-dropdown__link:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.14s; }
.nav-has-dropdown:hover .nav-dropdown__link:nth-child(4),
.nav-has-dropdown:focus-within .nav-dropdown__link:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.19s; }
.nav-has-dropdown:hover .nav-dropdown__link:nth-child(5),
.nav-has-dropdown:focus-within .nav-dropdown__link:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.24s; }
.nav-has-dropdown:hover .nav-dropdown__link:nth-child(6),
.nav-has-dropdown:focus-within .nav-dropdown__link:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.29s; }
.nav-has-dropdown:hover .nav-dropdown__link:nth-child(7),
.nav-has-dropdown:focus-within .nav-dropdown__link:nth-child(7) { opacity: 1; transform: translateY(0); transition-delay: 0.34s; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  border: 1px solid rgba(196,151,58,0.55);
  transition: background 0.25s ease, border-color 0.25s ease;
  opacity: 0;
  transform: translateY(-8px);
}

.nav-cta span {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 11px;
  color: var(--white);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.nav-cta:hover {
  background-color: var(--gold);
  border-color: var(--gold);
}
.nav-cta:hover span { color: var(--navy); }

/* ─── Snap sections — homepage only (scoped via data-snap-section) ─── */
.services-cascade[data-snap-section] {
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 80px;
}
.projects-section[data-snap-section] {
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 72px 0 0;
}
.projects-section[data-snap-section] .section-header {
  flex-shrink: 0;
  padding: 0 72px;
  margin-bottom: 40px;
}
.projects-section[data-snap-section] .projects-grid {
  display: flex;
  flex-direction: row;
  flex: 1;
  gap: 2px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 72px 64px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.projects-section[data-snap-section] .projects-grid::-webkit-scrollbar { display: none; }
.projects-section[data-snap-section] .project-card {
  flex: 0 0 32vw;
  min-width: 240px;
  height: 100%;
  aspect-ratio: auto;
  opacity: 1;
  transform: none;
}
.projects-section[data-snap-section] .project-card--large {
  flex: 0 0 42vw;
  min-height: unset;
  grid-column: auto;
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  display: flex;
  min-height: 100vh;
}

.hero__left {
  display: flex;
  flex-direction: column;
  flex: 0 0 52%;
  padding: 100px 72px 52px;
  background-color: var(--navy);
  position: relative;
}

/* Content block grows to fill space above stats, centering itself */
.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(20px);
}

.hero__eyebrow-rule {
  width: 28px;
  height: 1px;
  background-color: var(--gold);
  flex-shrink: 0;
}

.hero__eyebrow span {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero__headline {
  margin-bottom: 36px;
  overflow: hidden;
}

.hero__headline-line {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(60px, 5.8vw, 84px);
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(40px);
}

.hero__headline-line--italic {
  font-style: italic;
}

.hero__body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  max-width: 380px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px);
}

.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 32px;
  opacity: 0;
  transform: translateY(20px);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  background-color: var(--gold);
  transition: background 0.25s ease, transform 0.25s ease;
}

.btn-primary span {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10px;
  color: var(--navy);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.btn-primary:hover { background-color: #D4A848; transform: translateY(-1px); }

.btn-ghost {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.btn-ghost:hover { color: rgba(255,255,255,0.8); }

/* Hero stats */
.hero__stats {
  display: flex;
  align-items: flex-end;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  opacity: 0;
}

.hero__stat { display: flex; flex-direction: column; gap: 6px; }

.hero__stat-number {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(26px, 2.5vw, 38px);
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.01em;
}

.hero__stat-label {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero__stat-divider {
  width: 1px;
  height: 36px;
  background-color: rgba(255,255,255,0.1);
}

/* Hero image panel */
.hero__right {
  flex: 1;
  position: relative;
  overflow: hidden;
  background-color: var(--navy2);
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 0.1s linear;
}

.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, rgba(13,30,53,0.35) 40%, rgba(13,30,53,0.1) 100%);
  z-index: 1;
}

.hero__image-caption {
  position: absolute;
  top: 60px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  opacity: 0;
  transform: translateX(10px);
}

.hero__image-caption-rule {
  width: 1px;
  height: 48px;
  background-color: rgba(196,151,58,0.4);
}

.hero__image-caption span {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  color: rgba(196,151,58,0.65);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

/* ─── Services Strip ─────────────────────────────────────── */
.services-strip {
  background-color: var(--chalk);
  padding: 0 72px;
  border-top: 1px solid var(--rule);
}

.services-strip__grid {
  display: flex;
  width: 100%;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 52px 48px 52px 0;
  flex: 1;
  border-right: 1px solid var(--rule);
  opacity: 0;
  transform: translateY(24px);
}

.service-item:first-child { padding-left: 0; }
.service-item:last-child { border-right: none; padding-left: 48px; }
.service-item:not(:first-child):not(:last-child) { padding-left: 48px; }

.service-item__number {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.service-item__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 24px);
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.service-item__desc {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(13px, 1vw, 15px);
  color: var(--fog);
  line-height: 1.75;
}

/* ─── Projects ───────────────────────────────────────────── */
.projects-section {
  padding: 120px 72px;
  background-color: var(--white);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(16px);
}

.section-eyebrow-rule {
  width: 24px;
  height: 1px;
  background-color: var(--gold);
}

.section-eyebrow span {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 3.2vw, 52px);
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(16px);
}

.section-link {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 11px;
  color: var(--fog);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.25s ease;
  opacity: 0;
}

.section-link:hover { color: var(--navy); }

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.project-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background-color: var(--navy2);
  opacity: 0;
  transform: translateY(32px);
}

.project-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}

.project-card:hover .project-card__image { transform: scale(1.04); }

.project-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,30,53,0.88) 0%, rgba(13,30,53,0.1) 50%, transparent 100%);
  z-index: 1;
  transition: opacity 0.4s ease;
}

.project-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
  transform: translateY(8px);
  transition: transform 0.4s ease;
}

.project-card:hover .project-card__content { transform: translateY(0); }

.project-card__category {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.project-card__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(20px, 1.8vw, 28px);
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.project-card__meta {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 10px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 8px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-card:hover .project-card__meta { opacity: 1; }

.project-card--large { grid-column: span 2; aspect-ratio: auto; min-height: 600px; }

/* ─── Quote CTA ──────────────────────────────────────────── */
/* Split panel: navy left, chalk right — mirrors .contact-split */
.quote-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: var(--navy);
}

.quote-section__left {
  background: var(--navy);
  padding: 96px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: sticky;
  top: 144px;
  align-self: start;
}

.quote-section__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(16px);
}

.quote-section__eyebrow-rule {
  width: 24px;
  height: 1px;
  background-color: var(--gold);
}

.quote-section__eyebrow span {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.26em;
  text-transform: uppercase;
}

.quote-section__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 3.5vw, 58px);
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(16px);
}

.quote-section__title em { font-style: italic; }

.quote-section__body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  max-width: 440px;
  opacity: 0;
  transform: translateY(16px);
}

.quote-section__right {
  background: var(--chalk);
  padding: 80px 72px;
  opacity: 0;
  transform: translateY(24px);
}

.quote-form { display: flex; flex-direction: column; gap: 16px; }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 12px 16px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 13px;
  color: var(--white);
  outline: none;
  transition: border-color 0.25s ease;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(196,151,58,0.5);
}

.form-field select option { background: var(--navy); }
.form-field textarea { resize: vertical; min-height: 100px; }

.form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background-color: var(--gold);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
  margin-top: 8px;
}

.form-submit span {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 10px;
  color: var(--navy);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.form-submit:hover { background-color: #D4A848; transform: translateY(-1px); }

/* ─── Footer ─────────────────────────────────────────────── */
.site-footer {
  background-color: var(--navy);
  padding: 64px 72px 40px;
  border-top: 1px solid rgba(196,151,58,0.18);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 56px;
}

.footer__brand { display: flex; flex-direction: column; gap: 16px; max-width: 220px; }

.footer__logo {
  display: block;
  height: 40px;
  width: auto;
  opacity: 0.88;
}

.footer__monogram {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 28px;
  color: var(--white);
  letter-spacing: 0.06em;
}

.footer__tagline {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  max-width: 200px;
  line-height: 1.6;
}

.footer__nav { display: flex; gap: 80px; }

.footer__nav-col { display: flex; flex-direction: column; gap: 16px; }

.footer__nav-title {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.footer__nav-col a {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
  line-height: 1;
}

.footer__nav-col a:hover { color: var(--white); }

.footer__contact { display: flex; flex-direction: column; gap: 10px; }

.footer__contact a {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}

.footer__contact a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__legal {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
}

.footer__credit {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 10px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.08em;
}

.footer__credit a { color: rgba(196,151,58,0.6); transition: color 0.25s ease; }
.footer__credit a:hover { color: var(--gold); }

/* ─── Hero Slider ────────────────────────────────────────── */
.hero__slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: none;
  display: block;
}

.hero__slide.is-active { opacity: 1; }

.hero__slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__slider-controls {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0;
  opacity: 0;
  transform: translateY(12px);
}

.hero__arrow-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.15);
}

.hero__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(13,30,53,0.5);
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero__arrow--prev { border-right: none; }
.hero__arrow--next { border-left: none; }

.hero__arrow:hover {
  background: rgba(196,151,58,0.2);
  border-color: rgba(196,151,58,0.5);
}

.hero__arrow svg {
  width: 14px;
  height: 14px;
  fill: none;
}

.hero__arrow:hover svg path { stroke: var(--gold); }

.hero__slider-caption {
  position: absolute;
  bottom: 40px;
  right: 48px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
}

/* Per-slide caption block */
.hero__caption-item {
  display: none;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
}

.hero__caption-item.is-active { display: flex; }

.hero__caption-category {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  color: rgba(196,151,58,0.65);
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero__caption-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
}

.hero__caption-location {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* Slide counter */
.hero__slider-counter {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.16em;
}

.hero__counter-current { color: rgba(255,255,255,0.7); }
.hero__counter-sep     { color: rgba(255,255,255,0.2); }
.hero__counter-total   { color: rgba(255,255,255,0.3); }

/* Progress bar */
.hero__slider-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: var(--gold);
  width: 0%;
  z-index: 10;
  opacity: 0.6;
}

/* ─── Cursor ─────────────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.15s ease, opacity 0.3s ease;
  transform: translate(-50%, -50%);
}

.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(196,151,58,0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94), opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
  transform: translate(-50%, -50%);
}

body:hover .cursor,
body:hover .cursor-follower { opacity: 1; }

/* ─── Page loader ────────────────────────────────────────── */
/* ─── SCB Loader ─────────────────────────────────────────── */
.scb-loader {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: linear-gradient(135deg, #0C1E34, #03090F);
  overflow: hidden;
  pointer-events: all;
}

.scb-loader.is--hidden {
  display: none;
}

.scb-loader__animation {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  overflow: hidden;
  color: var(--chalk);
}

.scb-loader__h1 {
  white-space: nowrap;
  justify-content: center;
  font-family: var(--serif);
  font-size: 12.5em;
  font-weight: 300;
  line-height: 0.75;
  color: currentColor;
  display: flex;
  position: relative;
}

.scb-loader__h1-start {
  justify-content: flex-end;
  display: flex;
  overflow: hidden;
  padding-top: 0.18em;
}

.scb-loader__h1-end {
  justify-content: flex-start;
  display: flex;
  overflow: hidden;
  padding-top: 0.18em;
}

.scb-loader__letter {
  display: block;
  position: relative;
}

.scb-loader__box {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 0;
  display: flex;
  position: relative;
}

.scb-loader__box-inner {
  justify-content: center;
  align-items: center;
  min-width: 1em;
  height: 95%;
  display: flex;
  position: relative;
}

.scb-loader__growing-image {
  justify-content: center;
  align-items: center;
  width: 0%;
  height: 100%;
  display: flex;
  position: absolute;
  overflow: hidden;
  background: #03090F;
}

.scb-loader__growing-image-wrap {
  width: 100%;
  min-width: 1em;
  height: 100%;
  position: absolute;
}

.scb-loader__cover,
.scb-loader__cover-extra {
  pointer-events: none;
  object-fit: cover;
  user-select: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.scb-loader__cover-extra.is--1 { z-index: 6; }
.scb-loader__cover-extra.is--2 { z-index: 5; }
.scb-loader__cover-extra.is--3 { z-index: 4; }
.scb-loader__cover-extra.is--4 { z-index: 3; }
.scb-loader__cover-extra.is--5 { z-index: 2; }
.scb-loader__cover-extra.is--6 { z-index: 1; }

@media (max-width: 991px) { .scb-loader__h1 { font-size: 9em; } }
@media (max-width: 767px) { .scb-loader__h1 { font-size: 5.5em; } }

/* ─── Logo ───────────────────────────────────────────────── */
.nav-wordmark__logo {
  display: block;
  width: 300px;
  height: auto;
  max-height: 40px;
  object-fit: contain;
  opacity: 0;
  transform: translateY(-8px);
}

/* ─── Buttons — enhanced hover animations ────────────────── */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.14);
  transform: translateX(-101%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover {
  background-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,151,58,0.28);
}

.btn-ghost {
  position: relative;
  padding-bottom: 3px;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(196,151,58,0.6);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-ghost:hover { color: rgba(255,255,255,0.85); }
.btn-ghost:hover::after { transform: scaleX(1); }

.nav-cta {
  position: relative;
  overflow: hidden;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.nav-cta span { position: relative; z-index: 1; }
.nav-cta:hover { background-color: transparent; }
.nav-cta:hover::before { transform: translateX(0); }
.nav-cta:hover span { color: var(--navy); }

/* ─── Service Item — hover image + link ──────────────────── */
.service-item {
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease;
}
.service-item__bg-image {
  position: absolute;
  inset: 0;
  background-image: var(--service-img);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.65s ease;
  z-index: 0;
}
.service-item__bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,30,53,0.82);
}
.service-item:hover .service-item__bg-image { opacity: 1; }

/* Text colour shifts only when a bg-image div is present (i.e. has a real image) */
.service-item:has(.service-item__bg-image):hover .service-item__number { color: var(--gold); }
.service-item:has(.service-item__bg-image):hover .service-item__title  { color: var(--white); }
.service-item:has(.service-item__bg-image):hover .service-item__desc   { color: rgba(255,255,255,0.6); }

/* No-image hover: subtle chalk tint */
.service-item:not(:has(.service-item__bg-image)):hover { background: rgba(196,151,58,0.03); }

.service-item__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  padding-bottom: 0;
}
a.service-item__inner { cursor: pointer; }
.service-item__cta {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 10px;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  margin-top: 4px;
}
.service-item:hover .service-item__cta { opacity: 1; transform: translateY(0); }

/* ─── Hamburger ──────────────────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
  width: 28px;
  padding: 4px 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 300;
  position: relative;
}
.hamburger__line {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.85);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.is-open .hamburger__line--top {
  transform: translateY(4px) rotate(45deg);
}
.hamburger.is-open .hamburger__line--bottom {
  transform: translateY(-4px) rotate(-45deg);
}

/* ─── Mobile Nav Overlay ─────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--navy);
  z-index: 200;
  /* transform is owned by GSAP — do not set here */
  pointer-events: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-left: 1px solid rgba(196,151,58,0.12);
}
.mobile-nav.is-open { pointer-events: all; }

.mobile-nav__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 96px 40px 56px;
}

.mobile-nav__links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav__link {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  overflow: hidden;
}
.mobile-nav__link:first-child { border-top: 1px solid rgba(255,255,255,0.06); }

.mobile-nav__link-num {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 0.26em;
  flex-shrink: 0;
  opacity: 0.7;
}

.mobile-nav__link-text {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 11vw, 54px);
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color 0.25s ease;
}

.mobile-nav__link:hover .mobile-nav__link-text { color: var(--gold); }
.mobile-nav__link:active .mobile-nav__link-text { color: var(--gold); }

.mobile-nav__cta {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  background-color: var(--gold);
  align-self: flex-start;
  text-decoration: none;
  transition: background 0.25s ease;
  position: relative;
  overflow: hidden;
}
.mobile-nav__cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-101%);
  transition: transform 0.35s ease;
}
.mobile-nav__cta-btn:hover::before { transform: translateX(0); }
.mobile-nav__cta-btn span {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  color: var(--navy);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

.mobile-nav__contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav__contact-item {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 0.25s ease;
}
.mobile-nav__contact-item:hover { color: rgba(255,255,255,0.7); }

.mobile-nav__services {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin: 8px 0;
}
.mobile-nav__service-link {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  padding: 8px 0;
  transition: color 0.2s ease;
}
.mobile-nav__service-link:hover { color: var(--gold); }

.mobile-nav__watermark {
  position: absolute;
  bottom: -30px;
  right: -12px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 200px;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* ─── Loader cleared ─────────────────────────────────────── */

/* ─── Typography improvements ────────────────────────────── */
.hero__headline-line {
  font-size: clamp(48px, 6.2vw, 92px);
}
.section-title {
  font-size: clamp(32px, 3.6vw, 58px);
}
.hero__body {
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
}
.quote-section__body {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.8;
}
.section-eyebrow span,
.section-eyebrow-rule + span {
  font-size: clamp(9px, 0.65vw, 11px);
  letter-spacing: 0.28em;
}

/* ─── Project Single — Hero ──────────────────────────────── */
.project-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
.project-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.project-hero__bg--placeholder {
  background: linear-gradient(155deg, #0e1620 0%, #16222f 30%, #1e2e3d 60%, #0a1018 100%);
}
.project-hero:hover .project-hero__bg { transform: scale(1.0); }
.project-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,16,24,0.92) 0%, rgba(10,16,24,0.45) 45%, rgba(10,16,24,0.2) 100%);
}
.project-hero__breadcrumb {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 32px 72px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(-8px);
}
.project-hero__breadcrumb a,
.project-hero__breadcrumb span {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.project-hero__breadcrumb a { color: rgba(255,255,255,0.35); transition: color 0.25s ease; }
.project-hero__breadcrumb a:hover { color: var(--white); }
.project-hero__breadcrumb span { color: rgba(255,255,255,0.6); }

.project-hero__badge {
  position: absolute;
  top: 32px;
  right: 72px;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
}
.project-hero__badge-rule { width: 20px; height: 1px; background: rgba(196,151,58,0.5); }
.project-hero__badge span {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  color: rgba(196,151,58,0.75);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.project-hero__title {
  position: relative;
  padding: 0 72px 0;
  opacity: 0;
  transform: translateY(20px);
}
.project-hero__title-line {
  display: block;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(72px, 8.5vw, 124px);
  color: var(--white);
  line-height: 0.92;
  letter-spacing: -0.025em;
}
.project-hero__title-line--italic { font-style: italic; padding-bottom: 40px; }

.project-hero__meta {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 24px 72px;
  border-top: 1px solid rgba(255,255,255,0.07);
  background: rgba(10,16,24,0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(12px);
}
.project-hero__meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 40px 0 0;
}
.project-hero__meta-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.09);
  margin-right: 40px;
}
.project-hero__meta-label {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.project-hero__meta-value {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 17px;
  color: rgba(255,255,255,0.88);
}
.project-hero__scroll {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}
.project-hero__scroll span {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.project-hero__scroll-rule { width: 1px; height: 22px; background: rgba(196,151,58,0.4); }
.project-hero__gold-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30%;
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(196,151,58,0.08));
}

/* ─── Project Single — Intro ─────────────────────────────── */
.project-intro {
  display: flex;
  gap: 0;
  padding: 110px 72px 96px;
  background: var(--chalk);
}
.project-intro__left {
  flex: 0 0 50%;
  padding-right: 72px;
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.project-intro__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
}
.project-intro__eyebrow-rule { width: 24px; height: 1px; background: var(--gold); }
.project-intro__eyebrow span {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.project-intro__headline {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 3.8vw, 54px);
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0;
}
.project-intro__italic {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(17px, 1.5vw, 22px);
  color: var(--fog);
  line-height: 1.55;
  margin: 0;
}
.project-intro__right {
  flex: 1;
  padding-left: 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.project-intro__body p {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(13,30,53,0.75);
  line-height: 1.8;
  margin-bottom: 20px;
}
.project-intro__scope { margin-top: 40px; }
.project-intro__scope-label {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  color: var(--fog);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.project-intro__scope-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.project-intro__scope-tag {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 11px;
  color: var(--navy);
  padding: 6px 14px;
  border: 1px solid var(--rule);
  letter-spacing: 0.04em;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.project-intro__scope-tag:hover { border-color: var(--gold); background: rgba(196,151,58,0.04); }

/* ─── Project Single — Primary Gallery ───────────────────── */
.project-gallery-primary { background: var(--navy); }
.project-gallery-primary__hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.project-gallery-primary__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}
.project-gallery-primary__hero:hover img { transform: scale(1.03); }
.project-gallery-primary__label {
  position: absolute;
  bottom: 36px;
  left: 72px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.project-gallery-primary__label-rule { width: 22px; height: 1px; background: rgba(196,151,58,0.55); }
.project-gallery-primary__label span {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.project-gallery-primary__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  background: var(--navy);
}
.project-gallery-primary__grid[data-count="1"] { grid-template-columns: 1fr; }
.project-gallery-primary__grid[data-count="3"] { grid-template-columns: repeat(3, 1fr); }
.project-gallery-primary__cell {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.project-gallery-primary__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.project-gallery-primary__cell:hover img { transform: scale(1.04); }
.project-gallery-primary__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(to top, rgba(13,30,53,0.7) 0%, transparent 100%);
}
.project-gallery-primary__caption span {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 16px;
  color: rgba(255,255,255,0.85);
}

/* ─── Project Single — Stats Ribbon ─────────────────────── */
.project-stats {
  display: flex;
  align-items: stretch;
  background: var(--navy);
  border-top: 1px solid rgba(196,151,58,0.08);
}
.project-stats__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 52px 56px;
}
.project-stats__item--bordered { border-left: 1px solid rgba(255,255,255,0.06); }
.project-stats__value {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 64px;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.project-stats__label {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

/* ─── Project Single — Quote ─────────────────────────────── */
.project-quote {
  background: #080e14;
  padding: 120px 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.project-quote__decorator {
  position: absolute;
  top: 20px;
  left: 60px;
  font-family: var(--serif);
  font-size: 320px;
  line-height: 1;
  color: rgba(196,151,58,0.04);
  font-weight: 300;
  pointer-events: none;
  user-select: none;
}
.project-quote__rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 48px;
}
.project-quote__text {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 3vw, 44px);
  color: var(--white);
  line-height: 1.3;
  text-align: center;
  letter-spacing: -0.01em;
  margin: 0 0 44px;
}
.project-quote__attribution {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.project-quote__name {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
}
.project-quote__location {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 10px;
  color: rgba(196,151,58,0.55);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ─── Project Single — Detail Gallery ───────────────────── */
.project-gallery-detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  background: var(--rule);
}
.project-gallery-detail__cell {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--navy2);
}
.project-gallery-detail__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s ease;
}
.project-gallery-detail__cell:hover img { transform: scale(1.04); }
.project-gallery-detail__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px;
  background: linear-gradient(to top, rgba(10,16,24,0.85) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.project-gallery-detail__caption-label {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  color: rgba(196,151,58,0.65);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.project-gallery-detail__caption span:last-child {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 20px;
  color: rgba(255,255,255,0.9);
}

/* ─── Project Single — Process ───────────────────────────── */
.project-process {
  background: var(--chalk);
  padding: 100px 72px;
  display: flex;
  gap: 0;
  align-items: flex-start;
}
.project-process__header {
  flex: 0 0 320px;
  padding-right: 0;
  padding-top: 8px;
}
.project-process__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.project-process__eyebrow-rule { width: 24px; height: 1px; background: var(--gold); }
.project-process__eyebrow span {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.project-process__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 3vw, 44px);
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}
.project-process__title em { font-style: italic; }
.project-process__steps {
  flex: 1;
  padding-left: 72px;
  display: flex;
  flex-direction: column;
}
.project-process__step {
  display: flex;
  gap: 36px;
  padding: 36px 0;
  border-bottom: 1px solid var(--rule);
}
.project-process__step:last-child { border-bottom: none; }
.project-process__step-num {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 64px;
  color: rgba(13,30,53,0.06);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
  text-align: right;
}
.project-process__step-content { display: flex; flex-direction: column; gap: 10px; }
.project-process__step-title {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 14px;
  color: var(--navy);
  letter-spacing: 0.04em;
  margin: 0;
}
.project-process__step-body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  color: var(--fog);
  line-height: 1.72;
  margin: 0;
}

/* ─── Project Single — Next ──────────────────────────────── */
.project-next {
  position: relative;
  display: flex;
  min-height: 480px;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
  background: var(--navy);
}
.project-next__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}
.project-next__bg--placeholder { background: linear-gradient(135deg, #0d1a0e 0%, #182618 50%, #0e1a0f 100%); }
.project-next:hover .project-next__bg { transform: scale(1.04); }
.project-next__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13,30,53,0.82) 0%, rgba(13,30,53,0.4) 55%, transparent 90%);
}
.project-next__content {
  position: relative;
  z-index: 1;
  padding: 64px 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.project-next__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
}
.project-next__eyebrow-rule { width: 22px; height: 1px; background: rgba(196,151,58,0.5); }
.project-next__eyebrow span {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  color: rgba(196,151,58,0.6);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.project-next__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.project-next__meta {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.project-next__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(52px, 7vw, 88px);
  color: var(--white);
  line-height: 0.92;
  letter-spacing: -0.025em;
  margin: 0;
  transition: color 0.3s ease;
}
.project-next:hover .project-next__title { color: rgba(255,255,255,0.9); }
.project-next__arrow {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.project-next:hover .project-next__arrow {
  border-color: rgba(196,151,58,0.5);
  background: rgba(196,151,58,0.1);
}
.project-next__gold-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(196,151,58,0.1));
  transition: width 0.6s ease;
}
.project-next:hover .project-next__gold-bar { width: 100%; }

/* ─── Project Single — Related ───────────────────────────── */
.project-related {
  background: var(--chalk);
  padding: 80px 72px 100px;
}
.project-related__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}
.project-related__eyebrow { display: flex; align-items: center; gap: 14px; }
.project-related__eyebrow-rule { width: 22px; height: 1px; background: var(--gold); }
.project-related__eyebrow span {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.project-related__all {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 11px;
  color: var(--fog);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid rgba(107,122,141,0.3);
  padding-bottom: 2px;
  transition: color 0.25s ease, border-color 0.25s ease;
}
.project-related__all:hover { color: var(--navy); border-color: var(--navy); }
.project-related__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.project-related__card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--navy2);
}
.project-related__card a { display: block; height: 100%; position: relative; }
.project-related__card img,
.project-related__card-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.project-related__card-placeholder { background: linear-gradient(160deg, #1A2B40, #0D1E35); }
.project-related__card:hover img { transform: scale(1.04); }
.project-related__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,30,53,0.85) 0%, transparent 55%);
  z-index: 1;
}
.project-related__card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.project-related__card-cat {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 9px;
  color: var(--gold);
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.project-related__card-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  color: var(--white);
  line-height: 1.15;
  margin: 0;
}
.project-related__card-year {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.16em;
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .site-nav { padding: 0 40px; }
  .hero__left { padding: 80px 40px 48px; }
  .services-strip { padding: 0 40px; }
  .projects-section { padding: 80px 40px; }
  .quote-section { grid-template-columns: 1fr; }
  .quote-section__left { padding: 64px 40px; }
  .quote-section__right { padding: 64px 40px; }
  .quote-section__right { flex: 0 0 auto; width: 100%; }
  .site-footer { padding: 48px 40px 32px; }
  .project-intro { padding: 80px 40px 72px; }
  .project-process { padding: 80px 40px; }
  .project-quote { padding: 100px 120px; }
  .project-next__content { padding: 52px 40px; }
  .project-related { padding: 64px 40px 80px; }
  .project-hero__breadcrumb { padding: 28px 40px; }
  .project-hero__badge { right: 40px; }
  .project-hero__title { padding: 0 40px 0; }
  .project-hero__meta { padding: 20px 40px; }
}

@media (max-width: 768px) {
  /* Nav */
  .site-nav { padding: 0 24px; height: 64px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-wordmark__logo { width: 180px; }

  /* Hero */
  .hero { flex-direction: column; min-height: auto; }
  .hero__left { flex: none; padding: 88px 24px 52px; min-height: 100svh; }
  .hero__right { display: none; }
  .hero__body { max-width: 100%; }

  /* Stats — 3 columns, centred */
  .hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    align-items: start;
    padding-top: 28px;
    gap: 0;
  }
  .hero__stat { align-items: center; }
  .hero__stat-divider { display: none; }
  .hero__stat-number { font-size: 28px; }
  .hero__stat-label { font-size: 8px; }

  /* Services — horizontal swipe on mobile */
  .services-strip { padding: 0; border-top: none; }
  .services-strip__grid {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 0 24px 20px;
    gap: 0;
  }
  .services-strip__grid::-webkit-scrollbar { display: none; }
  .service-item {
    flex: 0 0 78vw;
    border-right: 1px solid var(--rule);
    border-bottom: none;
    padding: 40px 28px;
    scroll-snap-align: start;
    transform: none !important;
  }
  .service-item:first-child { padding-left: 28px; }
  .service-item:last-child { border-right: none; }
  .service-item:not(:first-child):not(:last-child) { padding-left: 28px; }

  /* Projects — horizontal scroll */
  .projects-section { padding: 64px 24px; }
  .projects-grid {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin: 0 -24px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .projects-grid::-webkit-scrollbar { display: none; }
  .project-card {
    flex: 0 0 78vw;
    aspect-ratio: 3/4;
    scroll-snap-align: start;
    transform: none !important;
  }
  .project-card--large {
    flex: 0 0 85vw;
    min-height: auto;
    aspect-ratio: 3/4;
    grid-column: auto;
  }

  /* Quote */
  .quote-section { grid-template-columns: 1fr; }
  .quote-section__left { padding: 48px 24px; }
  .quote-section__right { padding: 48px 24px; }

  /* Footer */
  .footer__top { flex-direction: column; gap: 48px; }
  .footer__nav { gap: 40px; }
  .site-footer { padding: 48px 24px 32px; }

  /* Project single */
  .project-hero__breadcrumb { padding: 24px; font-size: 9px; }
  .project-hero__badge { display: none; }
  .project-hero__title { padding: 0 24px; }
  .project-hero__title-line { font-size: clamp(52px, 14vw, 72px); }
  .project-hero__meta { padding: 16px 24px; flex-wrap: wrap; gap: 12px; }
  .project-hero__meta-divider { display: none; }
  .project-hero__meta-item { padding: 0; flex: 0 0 45%; }
  .project-hero__scroll { display: none; }

  .project-intro { flex-direction: column; padding: 56px 24px; gap: 40px; }
  .project-intro__left { flex: none; padding-right: 0; border-right: none; border-bottom: 1px solid var(--rule); padding-bottom: 40px; }
  .project-intro__right { padding-left: 0; }

  .project-gallery-primary__grid { grid-template-columns: 1fr; }
  .project-gallery-primary__label { left: 24px; }

  .project-stats { flex-direction: column; }
  .project-stats__item { border-left: none !important; border-top: 1px solid rgba(255,255,255,0.06); padding: 32px 24px; }
  .project-stats__item:first-child { border-top: none; }
  .project-stats__value { font-size: 48px; }

  .project-quote { padding: 72px 24px; }
  .project-quote__text { font-size: 26px; }

  .project-gallery-detail { grid-template-columns: 1fr; }

  .project-process { flex-direction: column; padding: 56px 24px; gap: 40px; }
  .project-process__header { flex: none; }
  .project-process__steps { padding-left: 0; }
  .project-process__step { gap: 20px; }
  .project-process__step-num { font-size: 44px; width: 36px; }

  .project-next { min-height: 320px; }
  .project-next__content { padding: 40px 24px; }
  .project-next__title { font-size: clamp(40px, 10vw, 60px); }
  .project-next__arrow { width: 48px; height: 48px; }

  .project-related { padding: 56px 24px 72px; }
  .project-related__grid { grid-template-columns: 1fr; }
}

/* ─── Barba Transition ───────────────────────────────────── */
.transition {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
  overflow: clip;
}

.transition__panel {
  color: var(--navy);
  background-color: currentColor;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  visibility: hidden;
}

.transition__panel-top {
  transform-origin: bottom;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 0%;
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  overflow: hidden;
}

.transition__panel-bottom {
  transform-origin: top;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 0%;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  overflow: hidden;
}

.transition__panel-circle {
  background-color: currentColor;
  border-radius: 50%;
  width: 125%;
  height: 500%;
  aspect-ratio: auto;
  position: absolute;
}

.transition__logo {
  color: var(--chalk);
  opacity: 0;
  width: 9em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  transform: translate(-50%, -50%);
}

/* ─── Icon Buttons ───────────────────────────────────────── */
.btn-icon-link {
  gap: 0.5em;
  color: var(--gold);
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-icon-icon {
  z-index: 1;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 1em;
  height: 1em;
  display: flex;
  position: relative;
}

[data-icon-size="normal"] {
  font-size: 32px;
}

.btn-icon-icon__bg {
  background-color: currentColor;
  border-radius: 0.125em;
  width: 100%;
  height: 100%;
  position: absolute;
}

.btn-icon-icon__wrap {
  color: var(--gold);
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.btn-icon-icon__wrap.color--white { color: #fff; }

.btn-icon-icon__list {
  flex: none;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  display: flex;
}

.btn-icon-icon__arrow {
  flex: none;
  width: 1em;
  height: 100%;
  padding: 0.2em;
}

.btn-icon-content {
  gap: 0.5em;
  color: var(--white);
  background-color: var(--gold);
  border-radius: 0.25em;
  justify-content: flex-start;
  align-items: center;
  padding: 0.6125em 0.75em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.btn-icon-content__text {
  font-family: var(--sans);
  font-size: 0.875em;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  --text-duplicate-distance: 1.5em;
  text-shadow: 0px var(--text-duplicate-distance) currentColor;
}

.btn-icon-content__mask {
  z-index: 1;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.btn-icon-content__bg {
  z-index: 0;
  background-color: var(--navy);
  width: 120%;
  height: 100%;
  position: absolute;
  bottom: 0%;
  left: -10%;
  transform: translate(0, 175%) rotate(15deg);
}

[data-button-anim-target] {
  transition: transform 0.525s cubic-bezier(0.625, 0.05, 0, 1);
}

@media (hover: hover) and (pointer: fine) {
  .btn-icon-link:hover .btn-icon-content__text { transform: translate(0, calc(-1 * var(--text-duplicate-distance))); }
  .btn-icon-link:hover .btn-icon-icon__bg      { transform: rotate(90deg); }
  .btn-icon-link:hover .btn-icon-icon__arrow   { transform: translate(200%, 0); }
  .btn-icon-link:hover .btn-icon-content__bg   { transform: translate(0, 0) rotate(0deg); }
}

/* ─── Services Cascade ───────────────────────────────────── */
.services-cascade {
  background: var(--navy);
  padding: 80px 72px;
  overflow: hidden;
}

.services-cascade__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 56px;
}

.services-cascade .section-eyebrow { color: rgba(255,255,255,0.5); }
.services-cascade .section-title   { color: var(--white); }

.cascading-slider {
  position: relative;
  --gap: 12px;
}

.cascading-slider__viewport {
  display: flex;
  gap: var(--gap);
  overflow: visible;
  position: relative;
  height: 540px;
}

.cascading-slider__item {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  clip-path: inset(0px calc(var(--clip, 0) * 1px) round 6px);
  will-change: transform, clip-path;
}

.cascading-slider__item[data-status="active"] {
  cursor: default;
}

.cascading-slider__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.cascading-slider__image--placeholder {
  background: var(--navy2);
}

.cascading-slider__item:hover .cascading-slider__image {
  transform: scale(1.04);
}

.cascading-slider__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 28px;
  background: linear-gradient(to top, rgba(13,30,53,0.92) 0%, rgba(13,30,53,0) 100%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cascading-slider__number {
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.cascading-slider__title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
}

.cascading-slider__desc {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 28ch;
}

.cascading-slider__link {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.cascading-slider__nav {
  display: flex;
  gap: 8px;
  margin-top: 28px;
  justify-content: flex-end;
}

.cascading-slider__btn {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: border-color 0.25s, background 0.25s;
}

.cascading-slider__btn:hover {
  border-color: var(--gold);
  background: rgba(196,151,58,0.12);
}

/* Project hero scroll cue — sits in the meta bar row, inherits parent fade */
.project-hero__meta .hero__scroll-cue {
  margin-left: auto;
  padding-top: 0;
  flex-direction: row;
  gap: 10px;
  opacity: 1;
  transform: none;
}

/* ─── Hero Scroll Cue ────────────────────────────────────── */
.hero__scroll-cue {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 36px;
  opacity: 0;
  transform: translateY(8px);
}

.hero__scroll-mouse {
  width: 20px;
  height: 32px;
  border: 1px solid rgba(196,151,58,0.35);
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5px;
}

.hero__scroll-dot {
  width: 2px;
  height: 6px;
  background: var(--gold);
  border-radius: 1px;
  animation: scrollDot 1.9s ease infinite;
}

@keyframes scrollDot {
  0%   { transform: translateY(0);   opacity: 1; }
  70%  { transform: translateY(12px); opacity: 0.2; }
  100% { transform: translateY(0);   opacity: 1; }
}

.hero__scroll-label {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 8px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .hero__scroll-cue { padding-top: 24px; }
}

/* ─── Cascade + Buttons responsive ──────────────────────── */
@media (max-width: 1024px) {
  .services-cascade { padding: 64px 48px; }
  .services-cascade__header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 40px; }
  .cascading-slider__viewport { height: 480px; }
  .cascading-slider__title { font-size: 19px; }
}

@media (max-width: 768px) {
  .services-cascade { padding: 56px 24px; }
  .services-cascade__header { margin-bottom: 32px; }
  .cascading-slider__viewport { height: 420px; }
  .cascading-slider__title { font-size: 17px; }
  .cascading-slider__desc  { font-size: 12px; }

  [data-icon-size="normal"] { font-size: 38px; }

  .project-hero__meta .hero__scroll-cue { display: none; }
}

@media (max-width: 480px) {
  .cascading-slider__viewport { height: 360px; }
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY STRIP + LIGHTBOX
══════════════════════════════════════════════════════════════════ */

.project-gallery { padding: 0 0 0 0; }

.gallery-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 72px 72px 56px;
  height: 540px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.gallery-strip::-webkit-scrollbar { display: none; }

.gallery-strip__item {
  flex-shrink: 0;
  height: 100%;
  position: relative;
}

.gallery-strip__btn {
  height: 100%;
  padding: 0;
  background: none;
  border: none;
  display: block;
  cursor: zoom-in;
  outline-offset: 3px;
}

.gallery-strip__img {
  height: 100%;
  width: auto;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-strip__btn:hover .gallery-strip__img { opacity: 0.88; }

/* Lightbox overlay */
.gallery-lb {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-lb[hidden] { display: none; }

.gallery-lb__bg {
  position: absolute;
  inset: 0;
  background: var(--navy);
  opacity: 0.95;
  cursor: pointer;
}

.gallery-lb__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 90vw;
  max-height: 90vh;
}

.gallery-lb__img {
  max-height: 85vh;
  max-width: 88vw;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.gallery-lb__caption {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

.gallery-lb__close {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 2;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

.gallery-lb__close:hover { color: var(--gold); }
.gallery-lb__close svg { width: 24px; height: 24px; }

.gallery-lb__prev,
.gallery-lb__next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(13,30,53,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, color 0.25s;
}

.gallery-lb__prev { left: 20px; }
.gallery-lb__next { right: 20px; }
.gallery-lb__prev:hover,
.gallery-lb__next:hover { background: var(--gold); color: var(--white); border-color: var(--gold); }
.gallery-lb__prev svg,
.gallery-lb__next svg { width: 20px; height: 20px; }

.gallery-lb__counter {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.35);
}

@media (max-width: 1024px) {
  .gallery-strip { padding: 56px 48px 40px; height: 420px; }
}

@media (max-width: 768px) {
  .gallery-strip { padding: 40px 24px 32px; height: 320px; }
  .gallery-lb__prev { left: 8px; }
  .gallery-lb__next { right: 8px; }
  .gallery-lb__prev,
  .gallery-lb__next { width: 40px; height: 40px; }
}

/* ═══════════════════════════════════════════════════════════════
   COPY BUTTON (footer + contact page)
══════════════════════════════════════════════════════════════════ */

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(196,151,58,0.12);
  border: 1px solid rgba(196,151,58,0.3);
  border-radius: 4px;
  color: var(--gold);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
  flex-shrink: 0;
}

.copy-btn:hover { background: rgba(196,151,58,0.2); border-color: var(--gold); }
.copy-btn.is-copied { background: rgba(196,151,58,0.25); color: var(--gold); }

.copy-btn--dark {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
}
.copy-btn--dark:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); color: var(--white); }

.copy-btn__icon { width: 14px; height: 14px; flex-shrink: 0; }
.copy-btn__label { line-height: 1; }

/* ─── Footer additions (email row + social icons) ─────────── */
.footer__email-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer__social-link {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  font-family: var(--sans);
  font-size: 10px;
  transition: border-color 0.25s, color 0.25s;
}
.footer__social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer__social-link svg { width: 15px; height: 15px; }

@media (max-width: 768px) {
  .footer__email-row { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ═══════════════════════════════════════════════════════════════
   MISSION STATEMENT
══════════════════════════════════════════════════════════════════ */

.mission-statement {
  padding: 120px 72px;
  background: var(--chalk);
}

.mission-statement__inner {
  max-width: 840px;
  margin: 0 auto;
}

.mission-statement__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}
.mission-statement__eyebrow-rule { display: block; width: 32px; height: 1px; background: var(--gold); }
.mission-statement__eyebrow span:last-child {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.mission-statement__text {
  font-family: var(--serif);
  font-size: clamp(24px, 3.2vw, 48px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--navy);
  margin: 0;
  cursor: default;
}

@media (max-width: 1024px) {
  .mission-statement { padding: 88px 48px; }
}
@media (max-width: 768px) {
  .mission-statement { padding: 64px 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   PAGE HERO (shared: contact, services, projects)
══════════════════════════════════════════════════════════════════ */

.page-hero {
  background: var(--navy);
  padding: 160px 72px 88px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C4973A' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 1;
  pointer-events: none;
}

.page-hero__content { position: relative; z-index: 1; max-width: 720px; }

.page-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.page-hero__eyebrow-rule {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.page-hero__eyebrow span:last-child {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.page-hero__title {
  font-family: var(--serif);
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 300;
  line-height: 1.04;
  color: var(--white);
  margin: 0 0 24px;
}
.page-hero__title em { font-style: italic; color: rgba(255,255,255,0.65); }

.page-hero__sub {
  font-family: var(--sans);
  font-size: clamp(15px, 1.2vw, 18px);
  color: rgba(255,255,255,0.45);
  max-width: 480px;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .page-hero { padding: 120px 24px 64px; }
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════════════════════ */

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 100vh;
  background: var(--navy); /* fills left column gap when info is shorter than form */
}

.contact-split__info {
  background: var(--navy);
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: sticky;
  top: 144px;
  align-self: start;
}

.contact-info-block { display: flex; flex-direction: column; gap: 10px; }

.contact-info-block__label {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-info-block__value {
  font-family: var(--serif);
  font-size: 20px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  line-height: 1.3;
  transition: color 0.25s;
}

.contact-info-block__value--large {
  font-size: clamp(20px, 2.2vw, 30px);
  color: var(--white);
}

.contact-info-block__email-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-info-block a.contact-info-block__value:hover { color: var(--gold); }

.contact-split__form {
  background: var(--chalk);
  padding: 80px 72px;
}

.contact-form-wrap__eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-form-wrap__rule { display: block; width: 32px; height: 1px; background: var(--gold); }

.contact-form-wrap__eyebrow span:last-child {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact-form-wrap__title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 40px;
}
.contact-form-wrap__title em { font-style: italic; color: var(--fog); }

/* Light GF theme — contact page + homepage quote section */
.page-contact .gform_wrapper .gfield,
.quote-section .gform_wrapper .gfield { border-bottom-color: rgba(13,30,53,0.12); }
.page-contact .gform_wrapper .gfield:focus-within,
.quote-section .gform_wrapper .gfield:focus-within { border-bottom-color: rgba(196,151,58,0.45); }
.page-contact .gform_wrapper .gfield_label,
.quote-section .gform_wrapper .gfield_label { color: var(--gold); }
.page-contact .gform_wrapper input[type="text"],
.page-contact .gform_wrapper input[type="email"],
.page-contact .gform_wrapper input[type="tel"],
.page-contact .gform_wrapper textarea,
.page-contact .gform_wrapper select,
.quote-section .gform_wrapper input[type="text"],
.quote-section .gform_wrapper input[type="email"],
.quote-section .gform_wrapper input[type="tel"],
.quote-section .gform_wrapper textarea,
.quote-section .gform_wrapper select { color: var(--navy); }
.page-contact .gform_wrapper input::placeholder,
.page-contact .gform_wrapper textarea::placeholder,
.quote-section .gform_wrapper input::placeholder,
.quote-section .gform_wrapper textarea::placeholder { color: rgba(13,30,53,0.25); }

.where-we-work {
  background: var(--navy);
  padding: 96px 72px;
}

.where-we-work__inner { max-width: 600px; }
.where-we-work__title {
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin: 12px 0 24px;
}
.where-we-work__title em { font-style: italic; color: rgba(255,255,255,0.55); }
.where-we-work__body {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  margin-bottom: 36px;
}

@media (max-width: 1024px) {
  .contact-split { grid-template-columns: 1fr; }
  .contact-split__info,
  .contact-split__form { padding: 64px 48px; }
  .where-we-work { padding: 72px 48px; }
}

@media (max-width: 768px) {
  .contact-split__info,
  .contact-split__form { padding: 48px 24px; }
  .where-we-work { padding: 56px 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   PROJECTS ARCHIVE — LIST VIEW
══════════════════════════════════════════════════════════════════ */

.project-list {
  padding: 0 72px;
  border-top: 1px solid var(--rule);
}

.project-list__item {
  display: grid;
  grid-template-columns: 56px 1fr auto auto 48px;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: var(--navy);
  transition: color 0.25s;
  position: relative;
}

.project-list__item:hover { color: var(--gold); }
.project-list__item:hover .project-list__arrow { transform: translateX(4px); color: var(--gold); }

.project-list__num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--fog);
  flex-shrink: 0;
}

.project-list__main { display: flex; flex-direction: column; gap: 3px; }

.project-list__title {
  font-family: var(--serif);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 300;
  line-height: 1.1;
  margin: 0;
}

.project-list__cat {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.project-list__location,
.project-list__year {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--fog);
  white-space: nowrap;
}

.project-list__arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: var(--rule);
  transition: transform 0.3s cubic-bezier(0.625, 0.05, 0, 1), color 0.25s;
}
.project-list__arrow svg { width: 18px; height: 18px; }

/* Hover line underline */
.project-list__item::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.625, 0.05, 0, 1);
}
.project-list__item:hover::after { transform: scaleX(1); }

/* Preview follower */
.project-preview-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 340px;
  height: 240px;
  pointer-events: none;
  z-index: 500;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
}

.project-preview-follower__inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 3px;
}

.project-preview-follower__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.projects-cta,
.projects-empty {
  padding: 96px 72px;
  text-align: center;
}

.projects-cta__title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.08;
  margin: 0 0 40px;
}
.projects-cta__title em { font-style: italic; color: var(--fog); }

.projects-empty p { font-family: var(--sans); color: var(--fog); }
.projects-empty a { color: var(--gold); }

@media (max-width: 1024px) {
  .project-list { padding: 0 48px; }
  .project-list__item { grid-template-columns: 48px 1fr auto 40px; }
  .project-list__year { display: none; }
  .projects-cta { padding: 72px 48px; }
}

@media (max-width: 768px) {
  .project-list { padding: 0 24px; }
  .project-list__item { grid-template-columns: 40px 1fr 40px; gap: 16px; padding: 22px 0; }
  .project-list__location,
  .project-list__year { display: none; }
  .project-preview-follower { display: none; }
  .projects-cta { padding: 56px 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   FILTER BAR
══════════════════════════════════════════════════════════════════ */

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 40px 72px 32px;
  border-bottom: 1px solid var(--rule);
}

.filter-btn {
  padding: 8px 18px;
  border: 1px solid var(--rule);
  border-radius: 100px;
  background: transparent;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fog);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.filter-btn:hover { border-color: var(--navy); color: var(--navy); }

.filter-btn--active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

@media (max-width: 768px) {
  .filter-bar { padding: 32px 24px 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES OVERVIEW
══════════════════════════════════════════════════════════════════ */

.services-grid { padding: 72px; }

.services-grid__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.service-card {
  position: relative;
  display: block;
  text-decoration: none;
  background: var(--navy);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.service-card__img-wrap {
  position: absolute;
  inset: 0;
}

.service-card__img,
.service-card__img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.625, 0.05, 0, 1);
}

.service-card__img-placeholder { background: var(--fog); opacity: 0.25; }

.service-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,30,53,0.88) 0%, rgba(13,30,53,0.2) 60%, transparent 100%);
  transition: opacity 0.35s;
}

.service-card:hover .service-card__img { transform: scale(1.04); }
.service-card:hover .service-card__overlay { opacity: 0.85; }

.service-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 28px 32px;
  z-index: 1;
}

.service-card__num {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}

.service-card__title {
  font-family: var(--serif);
  font-size: clamp(18px, 1.8vw, 26px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin: 0 0 10px;
}

.service-card__body {
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  margin: 0 0 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s;
  opacity: 0;
}

.service-card:hover .service-card__body { max-height: 80px; opacity: 1; }

.service-card__link {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  transition: letter-spacing 0.3s;
}
.service-card:hover .service-card__link { letter-spacing: 0.22em; }

.services-cta {
  background: var(--navy);
  padding: 96px 72px;
  text-align: center;
}

.services-cta__inner { max-width: 640px; margin: 0 auto; }

.services-cta__title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 40px;
}
.services-cta__title em { font-style: italic; color: rgba(255,255,255,0.5); }

@media (max-width: 1280px) {
  .services-grid__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .services-grid { padding: 40px 24px; }
  .services-grid__inner { grid-template-columns: 1fr; gap: 2px; }
  .service-card { aspect-ratio: 4/3; }
  .services-cta { padding: 64px 24px; }
}

/* ═══════════════════════════════════════════════════════════════
   SERVICE INDIVIDUAL PAGE
══════════════════════════════════════════════════════════════════ */

/* Hero — same pattern as project hero */
.service-hero {
  position: relative;
  height: 90vh;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.service-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.service-hero .is-entered .service-hero__bg { transform: scale(1); }

.service-hero__bg--placeholder { background: var(--navy); }
.service-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,30,53,0.85) 0%, rgba(13,30,53,0.3) 60%, transparent 100%);
}

.service-hero__badge {
  position: absolute;
  top: 40px;
  left: 72px;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 1;
}
.service-hero__badge-rule { width: 32px; height: 1px; background: var(--gold); }
.service-hero__badge span { font-family: var(--sans); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }

.service-hero__title {
  position: relative;
  z-index: 1;
  padding: 0 72px 64px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-hero__title-line {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 100px);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
}
.service-hero__title-line--italic { font-style: italic; color: rgba(255,255,255,0.7); }
.service-hero__gold-bar { height: 3px; background: var(--gold); position: absolute; bottom: 0; left: 0; right: 0; }

/* Intro */
.service-intro { background: var(--chalk); padding: 120px 72px; }
.service-intro__inner { max-width: 1260px; margin: 0 auto; }
.service-intro__eyebrow { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 40px; }
.service-intro__eyebrow-rule { width: 32px; height: 1px; background: var(--gold); }
.service-intro__eyebrow span:last-child { font-family: var(--sans); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.service-intro__text {
  font-family: var(--serif);
  font-size: clamp(24px, 3.2vw, 48px);
  font-weight: 300;
  line-height: 1.4;
  color: var(--navy);
  margin: 0;
  cursor: default;
  text-align: center;
}

/* About two-col */
.service-about { background: var(--white); padding: 96px 72px; }
.service-about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.service-about__text { position: sticky; top: 144px; align-self: start; }
.service-about__title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 300;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 24px;
}
.service-about__body { font-family: var(--sans); font-size: clamp(15px, 1.2vw, 18px); line-height: 1.8; color: var(--fog); }
.service-about__body p { margin: 0 0 16px; }
.service-about__image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 2px; }

/* Process */
.service-process { background: var(--chalk); padding: 96px 0; }
.service-process__header { padding: 0 72px; margin-bottom: 56px; }
.service-process__eyebrow { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.service-process__eyebrow-rule { width: 32px; height: 1px; background: var(--gold); }
.service-process__eyebrow span:last-child { font-family: var(--sans); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.service-process__title { font-family: var(--serif); font-size: clamp(28px, 3vw, 42px); font-weight: 300; color: var(--navy); line-height: 1.15; margin: 0; }
.service-process__title em { font-style: italic; }

.service-process__steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 1px solid rgba(13,30,53,0.08); }
.service-process__step { display: flex; flex-direction: column; gap: 16px; padding: 40px 32px; border-right: 1px solid rgba(13,30,53,0.08); }
.service-process__step:first-child { padding-left: 72px; }
.service-process__step:last-child { border-right: none; padding-right: 72px; }
.service-process__step-num { font-family: var(--serif); font-size: 36px; font-weight: 300; color: var(--gold); opacity: 0.5; line-height: 1; }
.service-process__step-title { font-family: var(--serif); font-size: clamp(15px, 1.2vw, 18px); font-weight: 300; color: var(--navy); margin: 0 0 4px; }
.service-process__step-body { font-family: var(--sans); font-size: clamp(12px, 0.9vw, 14px); line-height: 1.7; color: var(--fog); margin: 0; }

/* Examples */
.service-examples { padding: 0; background: var(--white); }
.service-examples__header { padding: 72px 72px 40px; }
.service-examples__title { font-family: var(--serif); font-size: clamp(28px, 3vw, 42px); font-weight: 300; color: var(--navy); line-height: 1.15; margin: 12px 0 0; }
.service-examples__title em { font-style: italic; }

/* CTA */
.service-cta { background: var(--navy); padding: 96px 72px; text-align: center; }
.service-cta__inner { max-width: 640px; margin: 0 auto; }
.service-cta__title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin: 0 0 16px;
}
.service-cta__title em { font-style: italic; color: rgba(255,255,255,0.5); }
.service-cta__body { font-family: var(--sans); font-size: clamp(15px, 1.2vw, 18px); line-height: 1.8; color: rgba(255,255,255,0.45); margin: 0 0 40px; }

@media (max-width: 1024px) {
  .service-intro { padding: 88px 48px; }
  .service-about { padding: 72px 48px; }
  .service-process { padding: 72px 0; }
  .service-process__header { padding: 0 48px; }
  .service-about__inner { grid-template-columns: 1fr; gap: 40px; }
  .service-about__text { position: static; }
  .service-examples__header { padding: 56px 48px 32px; }
  .service-cta { padding: 72px 48px; }
  .service-process__steps { grid-template-columns: repeat(3, 1fr); }
  .service-process__step:first-child { padding-left: 48px; }
  .service-process__step:last-child { padding-right: 48px; border-right: 1px solid rgba(13,30,53,0.08); }
  .service-process__step:nth-child(3) { border-right: none; }
}

@media (max-width: 768px) {
  .service-hero__badge { left: 24px; }
  .service-hero__title { padding: 0 24px 48px; }
  .service-intro { padding: 64px 24px; }
  .service-about { padding: 56px 24px; }
  .service-process { padding: 56px 0; }
  .service-process__header { padding: 0 24px; }
  .service-examples__header { padding: 40px 24px 24px; }
  .service-cta { padding: 56px 24px; }
  .service-process__steps { grid-template-columns: 1fr; }
  .service-process__step,
  .service-process__step:first-child,
  .service-process__step:last-child { padding: 28px 24px; border-right: none; border-bottom: 1px solid rgba(13,30,53,0.08); }
  .service-process__step:last-child { border-bottom: none; }
}

/* ═══════════════════════════════════════════════════════════════
   v2.0 additions: accessibility, failsafe, video, generic pages
═══════════════════════════════════════════════════════════════ */

/* ─── Skip link + focus ──────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 1000;
  padding: 12px 20px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 16px; outline: none; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.nav-links a[aria-current="page"], .mobile-nav__link[aria-current="page"] .mobile-nav__link-text { color: var(--gold); }

/* ─── Semantic element resets for v2 markup ──────────────── */
.project-hero__meta dt, .project-hero__meta dd { margin: 0; }
.project-intro__scope-tags { list-style: none; padding: 0; margin: 0; }
.transition__logo-img { width: 100%; height: auto; object-fit: contain; }
.transition__logo-text { font-family: var(--serif); font-weight: 300; font-size: 2em; letter-spacing: 0.15em; color: #f4f4f4; }
.hero__slide-img--placeholder, .project-card__image--placeholder { background: linear-gradient(160deg, #1A2B40 0%, #0D1823 100%); height: 100%; position: absolute; inset: 0; }
.filter-bar[role="group"] .filter-btn[aria-pressed="true"] { }
.footer__bottom { flex-wrap: wrap; gap: 12px 32px; }
.footer__privacy {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s ease;
}
.footer__privacy:hover { color: var(--white); }

/* ─── Motion: honour the OS preference ───────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .scb-loader { display: none !important; }
}

/*
 * Failsafe: animated elements start hidden and are revealed by GSAP. If the
 * script never reports in (head.js swaps html.js for html.js-failed after 4s)
 * or JS is off entirely, force everything visible.
 */
html:not(.js) .scb-loader, html.js-failed .scb-loader, html.js-failed .transition { display: none !important; }
html:not(.js) .hero__eyebrow, html:not(.js) .hero__headline-line, html:not(.js) .hero__body, html:not(.js) .hero__cta-row, html:not(.js) .hero__stats,
html:not(.js) .hero__slider-caption, html:not(.js) .hero__slider-controls, html:not(.js) .hero__slide.is-active, html:not(.js) .nav-links li, html:not(.js) .nav-cta,
html:not(.js) .nav-wordmark__logo, html:not(.js) .nav-wordmark__monogram, html:not(.js) .nav-wordmark__name, html:not(.js) .nav-wordmark__divider,
html:not(.js) .section-eyebrow, html:not(.js) .section-title, html:not(.js) .section-link, html:not(.js) .project-card, html:not(.js) .project-card__meta,
html:not(.js) .project-hero__badge, html:not(.js) .project-hero__title, html:not(.js) .project-hero__meta, html:not(.js) .quote-section__eyebrow,
html:not(.js) .quote-section__title, html:not(.js) .quote-section__body, html:not(.js) .quote-section__right, html:not(.js) .service-card__body,
html:not(.js) [data-reveal], html:not(.js) .project-intro__left, html:not(.js) .project-intro__right, html:not(.js) .project-stats__item,
html:not(.js) .project-process__step, html:not(.js) .project-related__card,
html.js-failed .hero__eyebrow, html.js-failed .hero__headline-line, html.js-failed .hero__body, html.js-failed .hero__cta-row, html.js-failed .hero__stats,
html.js-failed .hero__slider-caption, html.js-failed .hero__slider-controls, html.js-failed .hero__slide.is-active, html.js-failed .nav-links li, html.js-failed .nav-cta,
html.js-failed .nav-wordmark__logo, html.js-failed .nav-wordmark__monogram, html.js-failed .nav-wordmark__name, html.js-failed .nav-wordmark__divider,
html.js-failed .section-eyebrow, html.js-failed .section-title, html.js-failed .section-link, html.js-failed .project-card, html.js-failed .project-card__meta,
html.js-failed .project-hero__badge, html.js-failed .project-hero__title, html.js-failed .project-hero__meta, html.js-failed .quote-section__eyebrow,
html.js-failed .quote-section__title, html.js-failed .quote-section__body, html.js-failed .quote-section__right, html.js-failed .service-card__body,
html.js-failed [data-reveal], html.js-failed .project-intro__left, html.js-failed .project-intro__right, html.js-failed .project-stats__item,
html.js-failed .project-process__step, html.js-failed .project-related__card {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}
html:not(.js) .cascading-slider__viewport, html.js-failed .cascading-slider__viewport { display: flex; gap: 24px; overflow-x: auto; }
html:not(.js) .cascading-slider__item, html.js-failed .cascading-slider__item { position: static; width: 60vw; flex-shrink: 0; }
html:not(.js) .mobile-nav, html.js-failed .mobile-nav { display: none; }

/* ─── Project video ──────────────────────────────────────── */
.project-video {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 64px;
  align-items: center;
  padding: 120px 72px;
  background: var(--chalk);
}
.project-video--portrait { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
.project-video__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.project-video__eyebrow-rule { width: 32px; height: 1px; background: var(--gold); }
.project-video__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0 0 24px;
}
.project-video__caption {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.75;
  color: var(--fog);
}
.project-video__media {
  position: relative;
  background: var(--navy);
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.project-video--portrait .project-video__media { aspect-ratio: 9 / 16; height: min(82vh, 780px); width: auto; justify-self: center; }
.project-video__player, .project-video__embed, .project-video__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: var(--navy);
}
.project-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(13,30,53,0.72);
  border: 1px solid rgba(196,151,58,0.6);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s ease, background 0.35s ease;
  backdrop-filter: blur(6px);
}
.project-video__play svg { width: 30px; height: 30px; margin-left: 4px; }
.project-video__play:hover { transform: translate(-50%, -50%) scale(1.08); background: var(--gold); color: var(--navy); }
.project-video.is-playing .project-video__play { opacity: 0; pointer-events: none; }
@media (max-width: 991px) {
  .project-video, .project-video--portrait { grid-template-columns: 1fr; gap: 40px; padding: 80px 32px; }
  .project-video--portrait .project-video__media { height: min(70vh, 640px); max-width: 100%; }
}
@media (max-width: 767px) {
  .project-video, .project-video--portrait { padding: 64px 20px; }
}

/* ─── Generic pages, 404, search ─────────────────────────── */
.page-hero--generic, .page-hero--error, .page-hero--search { padding-bottom: 72px; }
.prose {
  padding: 88px 72px 120px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: var(--navy);
}
.prose > * + * { margin-top: 1.25em; }
.prose h2, .prose h3, .prose h4 { font-family: var(--serif); font-weight: 400; line-height: 1.15; color: var(--navy); margin-top: 2em; }
.prose h2 { font-size: clamp(28px, 3vw, 40px); }
.prose h3 { font-size: clamp(22px, 2.2vw, 30px); }
.prose h4 { font-size: 20px; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li + li { margin-top: 0.4em; }
.prose blockquote { border-left: 2px solid var(--gold); padding-left: 24px; font-family: var(--serif); font-size: 1.3em; font-style: italic; }
.prose img, .prose__lead-image { border-radius: 2px; }
.prose__lead-image { margin-bottom: 48px; }
.page-404__body {
  padding: 72px 72px 140px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
}
.search-results { padding: 72px 72px 140px; }
.search-form { width: 100%; }
.search-form__label { display: block; font-family: var(--sans); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--fog); margin-bottom: 12px; }
.search-form__row { display: flex; gap: 12px; border-bottom: 1px solid var(--rule); padding-bottom: 12px; }
.search-form__input {
  flex: 1 1 auto;
  min-width: 0;
  border: none;
  background: transparent;
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 300;
  color: var(--navy);
}
.search-form__input:focus { outline: none; }
.search-form__submit { font-family: var(--sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); padding: 8px 0; }
.search-results__list { list-style: none; padding: 0; margin: 56px 0 0; border-top: 1px solid var(--rule); }
.search-results__item a {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  transition: color 0.2s ease;
}
.search-results__item a:hover { color: var(--gold); }
.search-results__type { font-family: var(--sans); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--fog); min-width: 90px; }
.search-results__title { font-family: var(--serif); font-size: clamp(22px, 2.2vw, 32px); font-weight: 300; }
@media (max-width: 767px) {
  .prose, .page-404__body, .search-results { padding-left: 20px; padding-right: 20px; }
}

/* No custom cursor on touch devices. */
@media (pointer: coarse), (hover: none) { .cursor, .cursor-follower { display: none !important; } }

/* Hero buttons wrap on narrow screens instead of widening the layout viewport. */
@media (max-width: 767px) {
  .hero__cta-row { flex-wrap: wrap; row-gap: 16px; max-width: 100%; }
  .hero__cta-row .btn-icon-link { max-width: 100%; }
}

/* Footer columns stack on phones so the contact column cannot widen the page. */
@media (max-width: 600px) {
  .footer__nav { flex-wrap: wrap; gap: 40px 24px; }
  .footer__nav-col { flex: 1 1 40%; min-width: 0; }
  .footer__nav-col.footer__contact { flex-basis: 100%; }
  .footer__email-row { flex-wrap: wrap; }
  .footer__nav-col a { overflow-wrap: anywhere; }
}

/* ═══════════════════════════════════════════════════════════════
   Enquiry form (Gravity Forms with its own CSS disabled)
   Dark variant is the default (homepage); .contact-split__form is light.
═══════════════════════════════════════════════════════════════ */
.gform_wrapper { --gf-text: var(--white); --gf-muted: rgba(255,255,255,0.4); --gf-line: rgba(255,255,255,0.14); --gf-line-active: var(--gold); --gf-placeholder: rgba(255,255,255,0.22); }
.contact-split__form .gform_wrapper { --gf-text: var(--navy); --gf-muted: rgba(13,30,53,0.5); --gf-line: rgba(13,30,53,0.16); --gf-placeholder: rgba(13,30,53,0.28); }

.gform_wrapper .gform_validation_container,
.gform_wrapper .gfield--type-honeypot,
.gform_wrapper .gform_hidden,
.gform_wrapper .gform_required_legend,
.gform_wrapper .gfield_required_text { display: none !important; }
.gform_wrapper .screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.gform_wrapper .gform_fields { display: grid; grid-template-columns: 1fr 1fr; column-gap: 40px; row-gap: 0; }
.gform_wrapper .gfield { grid-column: 1 / -1; padding: 26px 0 14px; margin: 0; border-bottom: 1px solid var(--gf-line); transition: border-color 0.3s ease; position: relative; }
.gform_wrapper .gfield--type-email, .gform_wrapper .gfield--type-phone { grid-column: span 1; }
.gform_wrapper .gfield:focus-within { border-bottom-color: var(--gf-line-active); }
.gform_wrapper .gfield--completed { border-bottom-color: rgba(196,151,58,0.45); }

.gform_wrapper .gfield_label {
  display: block;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.gform_wrapper .gfield_required { color: var(--gold); margin-left: 4px; }
.gform_wrapper .gfield_required::before { content: '*'; }
.gform_wrapper .gfield_required > * { display: none; }

.gform_wrapper input[type="text"], .gform_wrapper input[type="email"], .gform_wrapper input[type="tel"],
.gform_wrapper select, .gform_wrapper textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 4px 0 6px;
  margin: 0;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.3;
  color: var(--gf-text);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
}
.gform_wrapper input::placeholder, .gform_wrapper textarea::placeholder { color: var(--gf-placeholder); font-style: italic; }
.gform_wrapper textarea { min-height: 96px; resize: vertical; }
.gform_wrapper select { padding-right: 32px; cursor: pointer; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'><path d='M1 1l6 6 6-6' stroke='%23C4973A' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/></svg>"); background-repeat: no-repeat; background-position: right 4px center; }
.gform_wrapper select:invalid, .gform_wrapper select option[value=""] { color: var(--gf-placeholder); }
.gform_wrapper select option { color: var(--navy); background: var(--white); font-family: var(--sans); font-size: 15px; }
.gform_wrapper input:-webkit-autofill, .gform_wrapper textarea:-webkit-autofill { -webkit-text-fill-color: var(--gf-text); transition: background-color 9999s ease-in-out 0s; }

.gform_wrapper .gfield_description { font-family: var(--sans); font-size: 12px; line-height: 1.6; color: var(--gf-muted); margin-top: 8px; }
.gform_wrapper .gfield_validation_message, .gform_wrapper .validation_message {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #E0A96D;
  margin-top: 8px;
}
.gform_wrapper .gfield_error { border-bottom-color: #E0A96D; }
.gform_wrapper .gform_validation_errors {
  grid-column: 1 / -1;
  padding: 14px 18px;
  margin: 0 0 8px;
  border: 1px solid rgba(224,169,109,0.5);
  border-radius: 2px;
  font-family: var(--sans);
  font-size: 12px;
  line-height: 1.6;
  color: #E0A96D;
}
.gform_wrapper .gform_validation_errors h2 { font-size: 12px; font-weight: 500; margin: 0; }
.gform_wrapper .gform_validation_errors ol { display: none; }

.gform_wrapper .gform_footer { padding: 0; margin-top: 36px; display: flex; align-items: center; gap: 20px; }
.gform_wrapper .gform_button {
  width: auto;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 28px 18px 32px;
  background: var(--gold);
  border: 0;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--navy);
  transition: background 0.4s ease, color 0.4s ease, letter-spacing 0.4s cubic-bezier(0.625, 0.05, 0, 1), transform 0.4s ease;
}
.gform_wrapper .gform_button:hover { background: var(--white); letter-spacing: 0.32em; }
.contact-split__form .gform_wrapper .gform_button:hover { background: var(--navy); color: var(--white); }
.gform_wrapper .gform_button:disabled { opacity: 0.6; cursor: wait; }
.gform_wrapper .gform_ajax_spinner { width: 18px; height: 18px; border: 2px solid var(--gf-line); border-top-color: var(--gold); border-radius: 50%; animation: scb-spin 0.8s linear infinite; }
@keyframes scb-spin { to { transform: rotate(360deg); } }

.gform_confirmation_wrapper, .gform_confirmation_message {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.7;
  color: var(--gf-muted);
}
.gform_confirmation_message h3 { font-family: var(--serif); font-weight: 300; font-size: clamp(28px, 2.6vw, 40px); color: var(--gf-text); margin: 0 0 12px; }
.quote-section .gform_confirmation_wrapper, .quote-section .gform_confirmation_message { --gf-text: var(--white); --gf-muted: rgba(255,255,255,0.55); }
.contact-split__form .gform_confirmation_wrapper { --gf-text: var(--navy); --gf-muted: rgba(13,30,53,0.6); }

@media (max-width: 640px) {
  .gform_wrapper .gform_fields { grid-template-columns: 1fr; column-gap: 0; }
  .gform_wrapper .gfield--type-email, .gform_wrapper .gfield--type-phone { grid-column: 1 / -1; }
}
/* Form fields signal focus with the gold underline, not the outline ring. */
.gform_wrapper input:focus-visible, .gform_wrapper textarea:focus-visible, .gform_wrapper select:focus-visible { outline: none; }

/* ─── Cookie consent (Silktide) on brand ─────────────────── */
#stcm-wrapper {
  --fontFamily: var(--sans);
  --primaryColor: #C4973A;
  --backgroundColor: #0D1E35;
  --textColor: #F5F4F1;
  --boxShadow: 0 20px 60px rgba(0,0,0,0.45);
  --backdropBackgroundColor: rgba(6,18,27,0.6);
  --backdropBackgroundBlur: 4px;
  --iconColor: #0D1E35;
  --iconBackgroundColor: #C4973A;
}
#stcm-wrapper .stcm-nudge, #stcm-wrapper [class*="stcm-modal"] { border: 1px solid rgba(196,151,58,0.35); border-radius: 2px; }
#stcm-wrapper h2, #stcm-wrapper h3 { font-family: var(--serif); font-weight: 300; letter-spacing: -0.01em; }
#stcm-wrapper p { font-weight: 300; line-height: 1.65; }
#stcm-wrapper a { color: #C4973A; text-decoration: underline; text-underline-offset: 3px; }
#stcm-wrapper .stcm-button { border-radius: 2px; font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; white-space: nowrap; }
#stcm-wrapper .stcm-button-primary { background: #C4973A; color: #0D1E35; }
#stcm-wrapper .stcm-button-primary:hover { background: #F5F4F1; }
#stcm-wrapper .stcm-button-secondary { color: #F5F4F1; border-color: rgba(255,255,255,0.3); }
#stcm-wrapper .stcm-preferences-button { color: #C4973A; }
#stcm-wrapper .stcm-credit-link { display: none; }
.footer__cookies { background: none; border: 0; padding: 0; cursor: pointer; }

/* Stacked contact layout: the info panel must not stay sticky over the form. */
@media (max-width: 1024px) {
  .contact-split__info { position: static; }
}
#stcm-wrapper h1, #stcm-wrapper h2, #stcm-wrapper h3, #stcm-wrapper [class*="stcm-title"], #stcm-wrapper [class*="stcm-heading"] { font-family: var(--serif); font-weight: 300; font-size: 26px; letter-spacing: -0.01em; }
/* Name fields render as fieldset/legend: strip the browser chrome. */
.gform_wrapper fieldset { border: 0; padding: 26px 0 14px; margin: 0; min-width: 0; }
.gform_wrapper legend { padding: 0; float: left; width: 100%; }
.gform_wrapper legend + * { clear: both; }
.gform_wrapper .ginput_complex { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.gform_wrapper .ginput_complex label { display: none; }

/* ═══════════════════════════════════════════════════════════════
   Mobile fixes (2 Sept 2026, from live review on iPhone)
═══════════════════════════════════════════════════════════════ */
/* Intro loader must fit the phone width. */
@media (max-width: 767px) {
  .scb-loader__h1 { font-size: 12.5vw; }
}
@media (max-width: 1024px) {
  /* Split panels stack: nothing stays sticky over the form. */
  .quote-section__left { position: static; }
}
@media (max-width: 768px) {
  /* Section headers stack instead of squeezing title and link side by side. */
  .section-header { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 40px; }
  .projects-section[data-snap-section] .section-header { padding: 0 24px; }
  .projects-section[data-snap-section] .projects-grid { padding: 0 24px 40px; gap: 8px; }
  .projects-section[data-snap-section] .project-card { flex: 0 0 82vw; }
  .projects-section[data-snap-section] .project-card--large { min-height: 0; aspect-ratio: 3 / 4; }
  .services-cascade__header, .section-header { padding-left: 24px; padding-right: 24px; }

  /* Mobile menu: scrollable, compact, services in two columns. */
  .mobile-nav__inner { justify-content: flex-start; gap: 24px; padding: 88px 24px 40px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  .mobile-nav__link { padding: 14px 0; }
  .mobile-nav__link-text { font-size: clamp(30px, 8.5vw, 40px); }
  .mobile-nav__services { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 16px; padding: 14px 0; margin: 0; }
  .mobile-nav__service-link { padding: 6px 0; }
  .mobile-nav__cta { margin-top: auto; padding-top: 8px; }
  .mobile-nav__watermark { display: none; }
}
/* Cookie banner sits above content but below the open menu and the header. */
#stcm-wrapper { z-index: 190 !important; }
html:not(.scb-ready) #stcm-wrapper { display: none; }
html:not(.js) #stcm-wrapper, html.js-failed #stcm-wrapper { display: block; }
/* Filter pills: the active pill keeps white text on hover. */
.filter-btn--active:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }
.filter-btn:hover { background: rgba(13,30,53,0.06); }

/* Projects list: thumbnails visible on touch/narrow screens (no hover preview there). */
.project-list__thumb { display: none; }
@media (max-width: 991px) {
  .project-list__item { grid-template-columns: 40px 1fr auto auto 24px; gap: 14px 14px; padding: 20px 0 24px; }
  .project-list__thumb { display: block; grid-column: 1 / -1; width: 100%; height: auto; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 2px; margin-bottom: 4px; }
  .project-preview-follower { display: none; }
}
/* Cookie settings are reopened from the footer link, not a floating icon. */
#stcm-icon { display: none !important; }
