/* ============================================================
   UNITY BROTHERS — Premium Design System
   ============================================================ */

:root {
  /* Palette */
  --bg: #0B0B0C;
  --bg-2: #131316;
  --bg-3: #1A1A1E;
  --cream: #F5F1E8;
  --cream-2: #EBE6D9;
  --cream-3: #DDD6C4;
  --gold: #BFA181;
  --gold-2: #D4B886;
  --gold-dim: #8A745A;
  --text: #EFEDE6;
  --text-dim: #9A9388;
  --text-faint: #6A6359;
  --on-cream: #1A1A1E;
  --on-cream-dim: #5A5249;
  --on-cream-faint: #908874;
  --line: rgba(191, 161, 129, 0.16);
  --line-strong: rgba(191, 161, 129, 0.36);
  --line-cream: rgba(26, 26, 30, 0.10);
  --line-cream-strong: rgba(26, 26, 30, 0.24);

  /* Type */
  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, system-ui, sans-serif;

  /* Layout */
  --container: 1320px;
  --container-narrow: 1080px;
  --gutter: clamp(20px, 4vw, 56px);

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  max-width: 100vw;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  max-width: 100vw;
  position: relative;
  touch-action: pan-y;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

::selection { background: var(--gold); color: var(--bg); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }

section { padding: clamp(72px, 10vw, 140px) 0; position: relative; }

.section-dark { background: var(--bg); color: var(--text); }
.section-dark-2 { background: var(--bg-2); color: var(--text); }
.section-cream { background: var(--cream); color: var(--on-cream); }
.section-cream-2 { background: var(--cream-2); color: var(--on-cream); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.section-cream .eyebrow { color: var(--gold-dim); }
.section-cream .eyebrow::before { background: var(--gold-dim); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.display {
  font-size: clamp(48px, 8.5vw, 132px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.025em;
}
.display em { font-style: italic; color: var(--gold); font-weight: 300; }

h2.section-title, .section-title {
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.section-title em { font-style: italic; color: var(--gold); }

h3 { font-size: clamp(24px, 2.5vw, 36px); font-weight: 400; }

.lead {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  color: var(--text-dim);
  max-width: 56ch;
}
.section-cream .lead { color: var(--on-cream-dim); }

.small-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.section-cream .small-label { color: var(--on-cream-faint); }

/* ============================================================
   BUTTONS / LINKS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 32px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
  z-index: -1;
}
.btn:hover { color: var(--bg); }
.btn:hover::after { transform: translateY(0); }

.btn-solid {
  background: var(--gold);
  color: var(--bg);
}
.btn-solid::after { background: var(--cream); }
.btn-solid:hover { color: var(--bg); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line-strong);
  transition: all 0.3s var(--ease);
}
.link-arrow::after {
  content: '→';
  display: inline-block;
  transition: transform 0.3s var(--ease);
}
.link-arrow:hover { color: var(--gold-2); border-bottom-color: var(--gold); }
.link-arrow:hover::after { transform: translateX(6px); }
.section-cream .link-arrow { color: var(--gold-dim); border-bottom-color: var(--line-cream-strong); }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all 0.4s var(--ease);
  background: transparent;
}
.nav.scrolled {
  background: rgba(11, 11, 12, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-brand-mark {
  width: 44px; height: 44px;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--gold);
  font-style: italic;
  transition: all 0.4s var(--ease);
}
.nav-brand:hover .nav-brand-mark {
  background: var(--gold);
  color: var(--bg);
}
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-name {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--text);
}
.nav-brand-sub {
  font-family: var(--font-serif);
  font-size: 13px;
  font-style: italic;
  color: var(--gold);
  margin-top: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
}
.nav-links a {
  position: relative;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 12px 22px !important;
  transition: all 0.3s var(--ease) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold);
  color: var(--bg) !important;
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1px;
  background: var(--text);
  margin-left: auto;
  transition: all 0.3s var(--ease);
}
.nav-toggle span:nth-child(2) { width: 16px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-3.5px) rotate(-45deg); width: 24px; }

@media (max-width: 960px) {
  .nav-brand-text { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(360px, 86vw);
    height: 100vh;
    background: var(--bg-2);
    border-left: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 80px 40px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease), visibility 0.5s var(--ease);
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
  }
  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }
  .nav-links a { font-size: 14px; }
}

/* ============================================================
   HERO (home)
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  padding-bottom: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: grayscale(0.3) contrast(1.05);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11,11,12,0.6) 0%, rgba(11,11,12,0.85) 60%, var(--bg) 100%),
    radial-gradient(ellipse at 30% 50%, rgba(191,161,129,0.08), transparent 60%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}
.hero-eyebrow { margin-bottom: 32px; font-size: 14px; letter-spacing: 0.34em; }
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(56px, 10vw, 156px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
  max-width: 14ch;
}
.hero-title em { font-style: italic; color: var(--gold); font-weight: 300; }
.hero-meta {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-top: 64px;
}
.hero-tagline {
  font-size: 16px;
  font-weight: 300;
  color: var(--text-dim);
  max-width: 44ch;
  line-height: 1.6;
}
.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: var(--gutter);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}
.hero-scroll::after {
  content: '';
  width: 1px; height: 48px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollHint 2s var(--ease) infinite;
}
@keyframes scrollHint {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* Marquee strip */
.marquee {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  max-width: 100vw;
  /* Soft fade on left/right edges so items don't appear to "pop" */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 60s linear infinite;
  white-space: nowrap;
  width: max-content;
  will-change: transform;
}
.marquee-item {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.2vw, 32px);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 56px;
}
.marquee-item::after {
  content: '✦';
  color: var(--gold);
  font-style: normal;
}
@keyframes marquee {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
@media (max-width: 768px) {
  .marquee { padding: 18px 0; }
  .marquee-track { animation-duration: 90s; gap: 40px; }
  .marquee-item { gap: 40px; font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding: 200px 0 80px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.32;
  filter: grayscale(0.4);
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,11,12,0.5) 0%, rgba(11,11,12,0.92) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(48px, 7.5vw, 108px);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 28px 0 24px;
  max-width: 14ch;
}
.page-hero-title em { font-style: italic; color: var(--gold); }
.page-hero-lead {
  max-width: 56ch;
  margin-top: 16px;
}
.breadcrumb {
  display: flex;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 28px;
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: var(--gold); }

/* ============================================================
   GRID HELPERS / SHARED COMPONENTS
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 40px; } }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 100px);
  margin-bottom: clamp(56px, 8vw, 96px);
  align-items: end;
}
@media (max-width: 860px) { .section-head { grid-template-columns: 1fr; gap: 32px; } }

/* ============================================================
   FEATURED PROJECTS (home)
   ============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 960px) { .projects-grid { grid-template-columns: 1fr; } }

.project-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  transition: all 0.5s var(--ease);
}
.project-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.project-card-image {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
}
.project-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.project-card:hover .project-card-image img { transform: scale(1.05); }
.project-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,11,12,0.9) 100%);
}
.project-card-tag {
  position: absolute;
  top: 24px; left: 24px;
  z-index: 2;
  padding: 8px 14px;
  background: rgba(11,11,12,0.7);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.project-card-meta {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  z-index: 2;
}
.project-card-value {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 8px;
}
.project-card-name {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 6px;
}
.project-card-loc {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 860px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: 56px 32px;
  border-right: 1px solid var(--line);
  text-align: left;
}
.stat:last-child { border-right: 0; }
@media (max-width: 860px) {
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 600px) {
  .stat { padding: 28px 20px; text-align: center; }
  .stat-value { font-size: 40px; }
  .stat-label { margin-top: 10px; letter-spacing: 0.14em; }
}
.stat-value {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.stat-value sup { font-size: 0.45em; color: var(--gold-dim); margin-left: 4px; vertical-align: super; }
.stat-label {
  margin-top: 18px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .services-grid { grid-template-columns: 1fr; } }
.section-cream .services-grid { border-top-color: var(--line-cream); }

.service {
  padding: 48px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background 0.4s var(--ease);
}
.section-cream .service { border-color: var(--line-cream); }
.service:hover { background: var(--bg-2); }
.section-cream .service:hover { background: var(--cream-2); }
.services-grid > .service:nth-child(3n) { border-right: 0; }
@media (max-width: 960px) {
  .services-grid > .service:nth-child(3n) { border-right: 1px solid var(--line); }
  .services-grid > .service:nth-child(2n) { border-right: 0; }
}
@media (max-width: 640px) {
  .services-grid > .service { border-right: 0 !important; }
}

.service-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 28px;
}
.section-cream .service-num { color: var(--on-cream); }
.service-name {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
  line-height: 1.15;
}
.service-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 28px;
}
.section-cream .service-desc { color: var(--on-cream-dim); }
.service-link {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.section-cream .service-link { color: var(--gold-dim); }

/* ============================================================
   CLIENTS / LOGOS
   ============================================================ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}
@media (max-width: 860px) { .clients-grid { grid-template-columns: repeat(2, 1fr); } }
.section-cream .clients-grid { border-color: var(--line-cream); }
.client {
  padding: 44px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
  font-family: var(--font-serif);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  transition: all 0.3s var(--ease);
}
.section-cream .client { border-color: var(--line-cream); color: var(--on-cream-dim); }
.client:last-child { border-right: 0; }
.client:hover { color: var(--gold); background: var(--bg-2); }
.section-cream .client:hover { color: var(--gold-dim); background: var(--cream-2); }
@media (max-width: 860px) {
  .client { border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .client:nth-child(2n) { border-right: 0; }
  .client:nth-last-child(-n+2) { border-bottom: 0; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta {
  padding: clamp(80px, 12vw, 160px) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
  filter: grayscale(0.6);
}
.cta-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, rgba(11,11,12,0.85) 50%, var(--bg) 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6.5vw, 88px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 24px 0 32px;
}
.cta-title em { font-style: italic; color: var(--gold); }
.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #050505;
  color: var(--text-dim);
  padding: 80px 0 32px;
  border-top: 1px solid var(--line);
}
.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 540px) { .footer-top { grid-template-columns: 1fr; } }

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--text);
  margin-bottom: 8px;
}
.footer-brand-sub {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 28px;
}
.footer-brand-text {
  font-size: 14px;
  line-height: 1.65;
  max-width: 38ch;
}

.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; font-size: 14px; }
.footer-col a { transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--gold); }

.footer-contact { font-size: 14px; line-height: 1.7; }
.footer-contact a { display: block; margin-bottom: 8px; }
.footer-contact-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-faint);
  display: block;
  margin: 16px 0 4px;
}

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text-faint);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 860px) { .about-story { grid-template-columns: 1fr; } }
.about-story-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  filter: grayscale(0.2);
}
.about-story-image {
  position: relative;
}
.about-story-image::after {
  content: '';
  position: absolute;
  bottom: -24px; right: -24px;
  width: 100px; height: 100px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
}

.vm-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line-cream);
}
@media (max-width: 860px) { .vm-block { grid-template-columns: 1fr; } }
.vm-pane {
  padding: clamp(40px, 5vw, 72px);
  border-right: 1px solid var(--line-cream);
}
.vm-pane:last-child { border-right: 0; }
@media (max-width: 860px) {
  .vm-pane { border-right: 0; border-bottom: 1px solid var(--line-cream); }
  .vm-pane:last-child { border-bottom: 0; }
}
.vm-icon {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--gold-dim);
  margin-bottom: 28px;
}
.vm-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.1;
}
.vm-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--on-cream-dim);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
@media (max-width: 960px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .values-grid { grid-template-columns: 1fr; } }
.value {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}
.value-num {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  margin-bottom: 24px;
  font-size: 14px;
}
.value-name {
  font-family: var(--font-serif);
  font-size: 24px;
  margin-bottom: 14px;
  line-height: 1.2;
}
.value-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

.safety-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 860px) { .safety-block { grid-template-columns: 1fr; } }
.safety-list { list-style: none; margin-top: 32px; }
.safety-list li {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-dim);
}
.safety-list li::before {
  content: '0' counter(item);
  counter-increment: item;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 4px;
}
.safety-list { counter-reset: item; }
.safety-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(0.3);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 96px);
  padding: clamp(60px, 8vw, 100px) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
@media (max-width: 860px) { .service-detail { grid-template-columns: 1fr; } }
.service-detail-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(0.2);
}
.service-detail-num {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 24px;
}
.service-detail-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.service-detail-title em { font-style: italic; color: var(--gold); }
.service-detail-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-dim);
  margin-bottom: 32px;
}
.service-detail-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 32px;
  margin-top: 32px;
}
@media (max-width: 540px) { .service-detail-list { grid-template-columns: 1fr; } }
.service-detail-list li {
  font-size: 14px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  color: var(--text);
  display: flex;
  gap: 12px;
}
.service-detail-list li::before {
  content: '+';
  color: var(--gold);
  font-weight: 300;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 860px) { .process { grid-template-columns: repeat(2, 1fr); } }
.process-step {
  padding: 56px 32px;
  border-right: 1px solid var(--line);
  position: relative;
}
.process-step:last-child { border-right: 0; }
@media (max-width: 860px) {
  .process-step:nth-child(2) { border-right: 0; }
  .process-step:nth-child(1), .process-step:nth-child(2) { border-bottom: 1px solid var(--line); }
}
.process-step-num {
  font-family: var(--font-serif);
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 24px;
  font-style: italic;
}
.process-step-name {
  font-family: var(--font-serif);
  font-size: 22px;
  margin-bottom: 14px;
}
.process-step-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ============================================================
   PROJECTS PAGE
   ============================================================ */
.filter-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}
.pill {
  padding: 10px 22px;
  border: 1px solid var(--line);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: all 0.3s var(--ease);
  cursor: pointer;
}
.pill:hover, .pill.active { background: var(--gold); color: var(--bg); border-color: var(--gold); }

.flagship-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 860px) { .flagship-grid { grid-template-columns: 1fr; } }
.flagship {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}
.flagship-image {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.flagship-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.flagship:hover .flagship-image img { transform: scale(1.06); }
.flagship-body {
  padding: 36px 0 8px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 32px;
}
.flagship-tag {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
  margin-bottom: 14px;
}
.flagship-name {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 8px;
}
.flagship-loc {
  font-size: 13px;
  color: var(--text-dim);
}
.flagship-value {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 32px);
  color: var(--gold);
  white-space: nowrap;
  text-align: right;
}
.flagship-value small {
  display: block;
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--text-faint);
  margin-bottom: 4px;
}

.notable-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 860px) { .notable-grid { grid-template-columns: 1fr; } }
.notable {
  padding: 44px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.notable-grid > .notable:nth-child(3n) { border-right: 0; }
@media (max-width: 860px) { .notable { border-right: 0; } }
.notable-tag {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-2);
  font-weight: 600;
  margin-bottom: 20px;
}
.notable-name {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.notable-desc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.65;
}

/* ============================================================
   TEAM PAGE
   ============================================================ */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 540px) { .leadership-grid { grid-template-columns: 1fr; max-width: 360px; } }

.person {
  position: relative;
}
.person-avatar {
  aspect-ratio: 3/4;
  background: var(--bg-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
  transition: all 0.4s var(--ease);
}
.person:hover .person-avatar { border-color: var(--gold); }
.person-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(0.5) contrast(0.95);
  transition: all 0.6s var(--ease);
}
.person:hover .person-avatar img { filter: grayscale(0.1) contrast(1); transform: scale(1.04); }
.person-avatar:not(.has-photo) {
  background: radial-gradient(120% 100% at 50% 0%, #20201C 0%, #141414 55%, #0B0B0C 100%);
}
.person-initials {
  font-family: var(--font-serif);
  font-size: 120px;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: -0.02em;
}
@media (max-width: 540px) { .person-initials { font-size: 96px; } }
.person-body { padding: 24px 0 8px; }
.person-role {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.person-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 4px;
}
.person-qual {
  font-size: 13px;
  color: var(--text-dim);
  font-style: italic;
  font-family: var(--font-serif);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
@media (max-width: 960px) { .tech-grid { grid-template-columns: repeat(2, 1fr); } }
.tech {
  padding: 40px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s var(--ease);
}
.tech:hover { background: var(--bg-2); }
.tech-grid > .tech:nth-child(4n) { border-right: 0; }
@media (max-width: 960px) {
  .tech-grid > .tech:nth-child(4n) { border-right: 1px solid var(--line); }
  .tech-grid > .tech:nth-child(2n) { border-right: 0; }
}
.tech-initials {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--gold-dim);
  margin-bottom: 16px;
}
.tech-name {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.2;
}
.tech-role {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.tech-qual { font-size: 13px; color: var(--text-dim); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 860px) { .contact-strip { grid-template-columns: 1fr; } }
.contact-strip-item {
  padding: 48px 36px;
  border-right: 1px solid var(--line);
}
.contact-strip-item:last-child { border-right: 0; }
@media (max-width: 860px) {
  .contact-strip-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .contact-strip-item:last-child { border-bottom: 0; }
}
.contact-strip-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.contact-strip-value {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--text);
  line-height: 1.3;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.form { display: flex; flex-direction: column; gap: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-field { position: relative; }
.form-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
.form-input, .form-textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  padding: 12px 0;
  font-weight: 300;
  transition: border-color 0.3s var(--ease);
}
.form-input:focus, .form-textarea:focus { outline: 0; border-bottom-color: var(--gold); }
.form-textarea { min-height: 120px; resize: vertical; font-family: inherit; }

.office-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 40px 36px;
  margin-bottom: 24px;
  transition: all 0.4s var(--ease);
}
.office-card:hover { border-color: var(--gold); }
.office-tag {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.office-title {
  font-family: var(--font-serif);
  font-size: 24px;
  margin-bottom: 14px;
}
.office-addr {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

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

/* ============================================================
   WHATSAPP — Floating Action Button + Inline Tile
   ============================================================ */
.wa-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 99;
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 60px;
  background: #0B0B0C;
  border: 1px solid var(--gold);
  border-radius: 100px;
  color: var(--gold);
  text-decoration: none;
  overflow: hidden;
  transition: background 0.45s var(--ease), color 0.45s var(--ease), box-shadow 0.45s var(--ease), transform 0.45s var(--ease);
  box-shadow: 0 14px 38px rgba(0,0,0,0.42);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.wa-fab-icon {
  width: 60px; height: 60px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}
.wa-fab-icon svg { width: 24px; height: 24px; }
.wa-fab-text {
  max-width: 0;
  white-space: nowrap;
  overflow: hidden;
  transition: max-width 0.55s var(--ease), padding 0.55s var(--ease);
  padding-right: 0;
  position: relative;
  z-index: 2;
}
.wa-fab:hover {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 18px 48px rgba(191,161,129,0.32);
  transform: translateY(-2px);
}
.wa-fab:hover .wa-fab-text {
  max-width: 260px;
  padding-right: 28px;
}

/* Pulsing ring */
.wa-fab::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid var(--gold);
  opacity: 0;
  animation: wa-ping 2.8s cubic-bezier(0,0,0.2,1) infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes wa-ping {
  0%   { opacity: 0.55; transform: scale(1); }
  80%  { opacity: 0;    transform: scale(1.45); }
  100% { opacity: 0;    transform: scale(1.45); }
}

@media (max-width: 540px) {
  .wa-fab { bottom: 20px; right: 20px; height: 54px; }
  .wa-fab-icon { width: 54px; height: 54px; }
  .wa-fab-icon svg { width: 22px; height: 22px; }
}

/* WhatsApp inline tile (contact strip / hero) */
.wa-tile {
  display: block;
  padding: 48px 36px;
  border-right: 1px solid var(--line);
  text-decoration: none;
  background: linear-gradient(180deg, rgba(191,161,129,0.06), transparent 60%);
  position: relative;
  transition: background 0.4s var(--ease);
}
.wa-tile:hover { background: linear-gradient(180deg, rgba(191,161,129,0.14), rgba(191,161,129,0.02)); }
.wa-tile:last-child { border-right: 0; }
.wa-tile-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.wa-tile-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: grid;
  place-items: center;
  color: var(--gold);
  flex-shrink: 0;
}
.wa-tile-icon svg { width: 16px; height: 16px; }
.wa-tile-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.wa-tile-value {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--text);
  line-height: 1.3;
}
.wa-tile-cta {
  margin-top: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.wa-tile:hover .wa-tile-cta { color: var(--gold-2); }

/* Override contact-strip to 4 columns when WhatsApp present */
.contact-strip.has-wa {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 960px) { .contact-strip.has-wa { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .contact-strip.has-wa { grid-template-columns: 1fr; } }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 8px;
  gap: 24px;
}
@media (max-width: 860px) { .gallery-grid { grid-template-columns: repeat(6, 1fr); gap: 16px; } }
@media (max-width: 540px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } }

.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
  border: 1px solid var(--line);
  cursor: zoom-in;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease), filter 0.6s var(--ease);
  filter: grayscale(0.05);
}
.gallery-item:hover img { transform: scale(1.05); filter: grayscale(0); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,11,12,0.78) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item-meta {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  z-index: 2;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.gallery-item:hover .gallery-item-meta { opacity: 1; transform: translateY(0); }
.gallery-item-tag {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.gallery-item-name {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--text);
  line-height: 1.2;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(7,7,8,0.94);
  backdrop-filter: blur(20px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
  border: 1px solid var(--line);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 48px; height: 48px;
  border: 1px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 20px;
  cursor: pointer;
  background: rgba(11,11,12,0.6);
  transition: all 0.3s var(--ease);
}
.lightbox-close:hover { background: var(--gold); color: var(--bg); }

/* Person photo override (Director portrait) */
.person-avatar.has-photo img { filter: grayscale(0) contrast(1); }
.person-avatar.has-photo { background: linear-gradient(180deg, #1A1A1E, #0B0B0C); }

/* Footer WhatsApp link styling */
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-top: 6px;
  color: var(--gold);
}
.footer-wa:hover { color: var(--gold-2); }
.footer-wa svg { width: 14px; height: 14px; }

/* ============================================================
   CLIENT CORRECTIONS (14 Jun) — global overrides
   ============================================================ */

/* Item 6: uniform font — remove ALL italic / slanted text sitewide */
*, *::before, *::after { font-style: normal !important; }

/* Item 4: make the "Interiors, fit-out and finishes" heading
   bigger and more prominent */
.section-title-strong {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 400;
  color: var(--text);
}

/* Item 9: highlight the Director + Registration boxes on About */
.highlight-grid { border-top: 0 !important; }
.highlight-box {
  padding: 24px 26px;
  border: 1px solid var(--gold);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  background: rgba(191, 161, 129, 0.08);
}
.highlight-box .small-label { color: var(--gold-dim); }

/* ============================================================
   SANGLI SITE GALLERY — slideshow
   ============================================================ */
.site-gallery { padding-bottom: 80px; }

.slideshow {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  background: var(--bg-2);
}
@media (max-width: 600px) { .slideshow { aspect-ratio: 4 / 3; } }

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.85s ease;
}
.slide.active { opacity: 1; }
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(11, 11, 12, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text);
  font-size: 18px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s;
  z-index: 2;
}
.slide-prev { left: 20px; }
.slide-next { right: 20px; }
.slide-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--bg); }

.slide-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}
.slide-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: background 0.3s;
  padding: 0;
}
.slide-dot.active { background: var(--gold); }

/* Team page — phone link on person card */
.person-phone {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
  color: var(--gold);
  text-decoration: none;
}
.person-phone:hover { color: var(--gold-2); }

/* ============================================================
   MPCB SANGLI — project detail section
   ============================================================ */
.mpcb-sangli { padding-bottom: 72px; }
.mpcb-sangli .slideshow { margin-bottom: 0; }

.mpcb-scope {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 780px) { .mpcb-scope { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .mpcb-scope { grid-template-columns: 1fr; } }

.mpcb-scope-item {
  padding: 28px 24px;
  border-right: 1px solid var(--line);
  font-family: var(--font-serif);
  font-size: 16px;
  line-height: 1.4;
}
.mpcb-scope-item:last-child { border-right: 0; }
@media (max-width: 780px) {
  .mpcb-scope-item:nth-child(2n) { border-right: 0; }
}

.mpcb-scope-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
