:root {
  --ink: #0f0e0c;
  --ink-soft: #191714;
  --gold: #f5c800;
  --gold-deep: #deae00;
  --cream: #faf8f4;
  --stone: #efebe2;
  --mist: #e3ddd2;
  --white: #ffffff;
  --muted: #6f685f;
  --border: #d9d2c6;
  --success: #dff3e5;
  --shadow: 0 24px 60px rgba(15, 14, 12, 0.12);
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.page {
  display: none;
  min-height: 100vh;
}

.page.active {
  display: block;
}

.section-shell {
  padding: 8rem 4rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.74rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--gold-deep);
}

.display {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.9rem, 5vw, 5.7rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.display em {
  color: var(--gold-deep);
  font-style: italic;
  font-weight: 400;
}

.lead {
  font-size: 1.02rem;
  line-height: 1.9;
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

.btn-gold,
.btn-ink,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 52px;
  padding: 0.95rem 1.8rem;
  border: 0;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.74rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn-gold {
  background: var(--gold);
  color: var(--ink);
}

.btn-gold:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(222, 174, 0, 0.28);
}

.btn-ink {
  background: var(--ink);
  color: var(--gold);
}

.btn-ink:hover {
  background: #27231e;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

#nav {
  position: fixed;
  inset: 0 0 auto;
  height: var(--nav-h);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

#nav.scrolled {
  background: rgba(250, 248, 244, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(15, 14, 12, 0.08);
}

.nav-logo {
  display: inline-flex;
  align-items: center;
}

.nav-logo img {
  display: block;
  width: auto;
  height: 42px;
}

.nav-pages {
  list-style: none;
  display: flex;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
}

.nav-pages a {
  position: relative;
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.nav-pages a::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.1rem;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold-deep);
  transition: transform 0.24s ease;
}

.nav-pages a:hover {
  color: var(--ink);
}

.nav-pages a:hover::after {
  transform: scaleX(1);
}

.nav-hamburger {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
}

#mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background:
    radial-gradient(circle at top right, rgba(245, 200, 0, 0.18), transparent 32%),
    linear-gradient(135deg, #f8f4ec, #efe7d7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

#mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
}

#mobile-nav a {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  font-weight: 600;
}

.mobile-close {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 1.8rem;
}

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
}

.hero-visual {
  position: relative;
  overflow: hidden;
}

.hero-visual img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.hero-visual img.loaded {
  transform: scale(1);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 14, 12, 0.08), transparent 55%);
}

.hero-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 4rem) 5rem 4rem 4rem;
  background:
    radial-gradient(circle at 90% 90%, rgba(245, 200, 0, 0.13), transparent 22%),
    linear-gradient(180deg, #141210 0%, #0b0a09 100%);
  color: var(--white);
}

.hero-panel .eyebrow {
  color: rgba(255, 255, 255, 0.58);
  margin-bottom: 1.6rem;
}

.hero-panel .eyebrow::before {
  background: var(--gold);
}

.hero-panel .display {
  color: var(--white);
  font-size: clamp(3.5rem, 6vw, 6.5rem);
  margin-bottom: 1.7rem;
}

.hero-copy {
  max-width: 470px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.4rem;
}

.hero-panel .btn-outline {
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
  -webkit-text-fill-color: var(--gold);
  border: 1.5px solid rgba(245, 200, 0, 0.42);
}

.hero-panel .btn-outline:hover {
  background: rgba(245, 200, 0, 0.1);
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  border-color: rgba(245, 200, 0, 0.9);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 3.6rem;
  background: rgba(255, 255, 255, 0.08);
}

.hero-stat {
  background: rgba(255, 255, 255, 0.02);
  padding: 1.5rem 1.3rem;
}

.hero-stat strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--gold);
}

.hero-stat span {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.marquee-strip {
  overflow: hidden;
  background: var(--gold);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  padding: 0.85rem 0;
}

.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
}

.marquee-inner span {
  padding: 0 2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.marquee-inner .sep {
  opacity: 0.35;
  padding: 0;
}

.split-intro,
.story-grid,
.ceo-grid,
.workplan-band,
.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-intro-media,
.story-media,
.ceo-media {
  min-height: 520px;
  position: relative;
  overflow: hidden;
}

.split-intro-media img,
.story-media img,
.ceo-media img {
  height: 100%;
  object-fit: cover;
}

.split-intro-copy {
  background: var(--white);
  padding: 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
}

.services-preview {
  background: var(--white);
}

.card-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2px;
  background: var(--mist);
}

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

.service-card,
.team-card,
.testimonial-card,
.value-card,
.mini-card {
  background: var(--white);
  border: 1px solid var(--border);
}

.service-card {
  position: relative;
  padding: 2.7rem 2.2rem 2.8rem;
  min-height: 300px;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform 0.35s var(--ease);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  margin-bottom: 1.5rem;
  font-size: 1.35rem;
}

.service-card h3,
.value-card h3,
.mini-card h3 {
  margin: 0 0 0.9rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
}

.service-card p,
.value-card p,
.mini-card p,
.team-card p,
.testimonial-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 0.92rem;
}

.service-num {
  position: absolute;
  right: 1.2rem;
  bottom: 0.7rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  color: #ece6dc;
}

.testimonial-band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4rem;
  align-items: center;
  padding: 7rem 4rem;
  background: var(--ink);
}

.testimonial-band-label {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.1rem;
  line-height: 0.95;
  color: var(--gold);
}

.testimonial-band blockquote {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.5;
  color: var(--white);
  font-style: italic;
}

.testimonial-band cite {
  display: inline-block;
  margin-top: 1.3rem;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.45);
  font-style: normal;
}

.mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 4px;
}

.mosaic-item {
  position: relative;
  overflow: hidden;
}

.mosaic-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.mosaic-item:hover img {
  transform: scale(1.05);
}

.mosaic-item.tall {
  grid-row: span 2;
}

.mosaic-label {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  background: var(--gold);
  padding: 0.35rem 0.8rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero-banner,
.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: flex-end;
}

.page-hero {
  padding: calc(var(--nav-h) + 4rem) 4rem 4rem;
}

.page-hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 14, 12, 0.88), rgba(15, 14, 12, 0.18));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.page-hero-content .eyebrow {
  color: rgba(255, 255, 255, 0.58);
}

.page-hero-content .eyebrow::before {
  background: var(--gold);
}

.page-hero-content .display {
  color: var(--white);
}

.page-hero-content p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.8;
}

#page-team .page-hero {
  min-height: 72vh;
}

#page-team .page-hero img {
  object-position: center 18%;
}

.story-grid {
  gap: 7rem;
  align-items: center;
  padding: 8rem 4rem;
}

.story-badge {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 170px;
  height: 170px;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.story-badge strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
}

.story-badge span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mission-panel {
  background: var(--stone);
}

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

.mini-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.72);
}

.mini-card .label {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--gold-deep);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.values-section {
  background: var(--ink);
}

.values-section .section-header .eyebrow,
.ceo-copy .eyebrow,
.dark-copy .eyebrow {
  color: rgba(255, 255, 255, 0.45);
}

.values-section .section-header .eyebrow::before,
.ceo-copy .eyebrow::before,
.dark-copy .eyebrow::before {
  background: var(--gold);
}

.values-section .display,
.ceo-copy .display {
  color: var(--white);
}

.value-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.6rem 2.3rem;
}

.value-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.5rem;
  line-height: 0.9;
  color: rgba(245, 200, 0, 0.17);
  margin-bottom: 0.8rem;
}

.value-card h3 {
  color: var(--white);
}

.value-card p {
  color: rgba(255, 255, 255, 0.58);
}

.ceo-grid {
  min-height: 640px;
}

.ceo-copy {
  background: linear-gradient(180deg, #171411, #0f0d0b);
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ceo-quote {
  margin: 1rem 0 2rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.55;
  color: var(--white);
  font-style: italic;
}

.ceo-copy p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.85;
}

.ceo-name {
  margin-top: 1.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.76rem;
}

.services-list {
  padding: 8rem 4rem;
  background: var(--cream);
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--border);
}

.service-row:last-child {
  border-bottom: 1px solid var(--border);
}

.service-row:nth-child(even) .service-media {
  order: 2;
}

.service-media {
  min-height: 420px;
  overflow: hidden;
}

.service-media img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.service-row:hover .service-media img {
  transform: scale(1.04);
}

.service-copy {
  padding: 4.8rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-copy .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.6rem;
  color: var(--mist);
  line-height: 1;
}

.service-copy h2 {
  margin: 0.6rem 0 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.35rem;
  line-height: 1.1;
}

.service-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1.5rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.process-hero {
  min-height: 54vh;
  padding: calc(var(--nav-h) + 4rem) 4rem 4rem;
  background:
    repeating-linear-gradient(0deg, rgba(245, 200, 0, 0.04) 0, rgba(245, 200, 0, 0.04) 1px, transparent 1px, transparent 58px),
    repeating-linear-gradient(90deg, rgba(245, 200, 0, 0.04) 0, rgba(245, 200, 0, 0.04) 1px, transparent 1px, transparent 58px),
    linear-gradient(180deg, #13110e, #090807);
}

.dark-copy {
  max-width: 650px;
}

.dark-copy .display,
.dark-copy p {
  color: var(--white);
}

.dark-copy p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.85;
}

.process-steps {
  padding: 8rem 4rem;
}

.process-step {
  display: grid;
  grid-template-columns: 110px 1fr 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3.4rem 0;
  border-bottom: 1px solid var(--border);
}

.process-step:first-child {
  border-top: 1px solid var(--border);
}

.process-step .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 5.1rem;
  color: var(--gold-deep);
  line-height: 1;
}

.process-step h3 {
  margin: 0 0 0.9rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.process-step .image {
  min-height: 250px;
  overflow: hidden;
}

.process-step .image img {
  height: 100%;
  object-fit: cover;
}

.workplan-band {
  gap: 4rem;
  padding: 6rem 4rem;
  background: var(--gold);
}

.workplan-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.3rem;
  line-height: 1;
}

.workplan-band p {
  margin: 0 0 1.4rem;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.85;
}

.team-section,
.testimonials-section {
  padding: 8rem 4rem;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  padding: 2.5rem 2rem 2rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.team-card img {
  width: min(240px, 100%);
  display: block;
  height: min(240px, 100vw - 5rem);
  border-radius: 50%;
  border: 6px solid var(--stone);
  object-fit: cover;
  object-position: center 18%;
  background: linear-gradient(180deg, rgba(240, 236, 228, 0.95), rgba(232, 225, 213, 0.95));
}

.team-photo {
  flex-shrink: 0;
}

.team-photo-thelma {
  object-position: center 22%;
}

.team-photo-lonnah {
  object-position: center 16%;
}

.team-photo-alvin {
  object-position: center 18%;
}

.team-card-body {
  width: 100%;
  padding: 2rem 0 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  text-align: center;
}

.team-background {
  margin-top: 1.7rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}

.team-background strong {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.team-background ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  text-align: left;
  color: var(--muted);
  line-height: 1.8;
}

.role-badge {
  display: inline-block;
  margin-bottom: 0.85rem;
  padding: 0.28rem 0.7rem;
  background: var(--gold);
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.team-card h3 {
  margin: 0 0 0.7rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.pill {
  padding: 0.28rem 0.62rem;
  border: 1px solid var(--border);
  background: var(--stone);
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bio-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.bio-panel {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
}

.bio-panel h4 {
  margin: 0 0 0.85rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.45rem;
}

.bio-panel strong {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--gold-deep);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.bio-panel ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

.testimonial-card {
  padding: 2.5rem 2.2rem;
}

.testimonial-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 4.2rem;
  line-height: 0.9;
  color: var(--gold-deep);
}

.testimonial-card p {
  margin: 1rem 0 1.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.25rem;
  line-height: 1.7;
  font-style: italic;
  color: var(--ink);
}

.testimonial-source {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.partner-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 4rem;
  padding: 4rem;
  background: var(--ink);
}

.partner-band img {
  height: 430px;
  object-fit: cover;
}

.partner-band .eyebrow {
  color: rgba(255, 255, 255, 0.45);
}

.partner-band .eyebrow::before {
  background: var(--gold);
}

.partner-band .display,
.partner-band p {
  color: var(--white);
}

.partner-band p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.9;
}

.contact-shell {
  min-height: 100vh;
}

.contact-left {
  background:
    radial-gradient(circle at top right, rgba(245, 200, 0, 0.1), transparent 30%),
    linear-gradient(180deg, #16130f, #0b0a08);
  padding: calc(var(--nav-h) + 4rem) 4rem 5rem;
}

.contact-left .display,
.contact-left p {
  color: var(--white);
}

.contact-left p {
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.85;
  max-width: 420px;
}

.contact-card {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--ink);
  flex-shrink: 0;
}

.contact-item strong,
.contact-direct strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.69rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.4);
}

.contact-item span,
.contact-item a,
.contact-direct span,
.contact-direct a {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

.contact-direct-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.contact-direct {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.04);
}

.contact-right {
  background: var(--stone);
  padding: calc(var(--nav-h) + 4rem) 5rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-right h2 {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.3rem;
}

.contact-right .sub {
  margin: 0 0 2rem;
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  background: var(--white);
  padding: 1rem 1.05rem;
  color: var(--ink);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.map-strip {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.map-strip img {
  height: 100%;
  object-fit: cover;
  filter: grayscale(18%);
}

.map-card {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  padding: 1.4rem 1.7rem;
  background: rgba(255, 255, 255, 0.94);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
}

.map-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

#footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 2.5rem 4rem;
  background: #090807;
  border-top: 3px solid var(--gold);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-logo img {
  display: block;
  width: auto;
  height: 46px;
}

.footer-copy b {
  color: var(--gold);
}

.footer-copy,
.footer-tagline {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.08em;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1100px) {
  #nav {
    padding: 0 1.5rem;
  }

  .nav-pages,
  .nav-cta {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero,
  .split-intro,
  .story-grid,
  .ceo-grid,
  .testimonial-band,
  .partner-band,
  .contact-shell,
  .workplan-band {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 46vh;
  }

  .hero-panel,
  .split-intro-copy,
  .ceo-copy,
  .contact-left,
  .contact-right {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .section-shell,
  .services-list,
  .team-section,
  .testimonials-section,
  .process-steps,
  .page-hero,
  .process-hero,
  #footer,
  .testimonial-band,
  .workplan-band {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .card-grid-4,
  .card-grid-3,
  .mission-grid,
  .bio-panels {
    grid-template-columns: 1fr 1fr;
  }

  .service-row,
  .process-step {
    grid-template-columns: 1fr;
  }

  .service-row:nth-child(even) .service-media {
    order: 0;
  }

  .process-step .image {
    min-height: 220px;
  }

  #page-team .page-hero {
    min-height: 64vh;
  }

  .mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(3, 220px);
  }

  .mosaic-item.tall {
    grid-row: span 1;
  }

  .team-card img {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 720px) {
  .card-grid-4,
  .card-grid-3,
  .mission-grid,
  .bio-panels,
  .contact-direct-grid,
  .contact-form-row {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 220px);
  }

  .process-step {
    gap: 1.5rem;
  }

  .team-card img {
    width: 200px;
    height: 200px;
  }
}
