/* ── RESET & ROOT ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #111111;
  --ink:     #1c1b19;
  --ink-2:   #232220;
  --white:   #ffffff;
  --warm:    #f5f3ef;
  --smoke:   #eceae5;
  --mid:     #8c887f;
  --muted:   #5e5a54;
  --gold:    #B5A47B;
  --gold-lt: #cfc0a1;
  --gold-dk: #8c7e5a;
  --navy:    #1B3A5C;
  --border:  #e2dfd9;
  --display:    'Raleway', Arial, sans-serif;
  --serif:      'Raleway', Arial, sans-serif;
  --raleway:    'Raleway', Arial, sans-serif;
  --sans:       'Roboto', Arial, sans-serif;
  --condensed:  'Roboto Condensed', Arial, sans-serif;
  --max:     1200px;
  --gutter:  clamp(1.5rem, 5vw, 5rem);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

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

/* ── SCROLL REVEAL ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ── NAV ───────────────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

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

.nav-logo-text {
  font-family: var(--raleway);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111111;
}

.nav-links {
  display: flex;
  gap: clamp(1.6rem, 2.5vw, 2.8rem);
  list-style: none;
  align-items: center;
  margin-left: auto;
}

.nav-links a {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active { color: var(--ink); }

.nav-links > li > a:not(.nav-cta):not(.nav-search)::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -6px;
  height: 1px;
  background: var(--gold);
  transition: right 0.25s ease;
}
.nav-links > li > a:not(.nav-cta):not(.nav-search):hover::after,
.nav-links > li > a.active:not(.nav-cta)::after { right: 0; }

.nav-search {
  color: var(--gold) !important;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-search:hover { color: var(--gold-dk) !important; }

.nav-cta {
  border: 1px solid var(--gold) !important;
  padding: 0.5rem 1.4rem;
  color: var(--gold) !important;
  transition: all 0.2s !important;
}

.nav-cta:hover,
.nav-cta.active {
  background: var(--gold) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--ink);
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 64px; right: 0; left: auto;
    width: min(320px, 85vw);
    background: var(--white);
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    padding: 2rem 1.8rem 2.5rem;
    gap: 1.5rem;
    border-left: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    box-shadow: -8px 12px 32px rgba(0,0,0,0.12);
  }
  .nav-links.open { display: flex; }
}

/* ── BUTTONS ───────────────────────────────────────────────── */
.btn-gold, .btn-ghost, .btn-outline, .btn-black, .btn-white {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95rem 2.3rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid transparent;
}

.btn-gold { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-dk); border-color: var(--gold-dk); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(140,126,90,0.28); }

.btn-ghost { border-color: rgba(255,255,255,0.4); color: rgba(255,255,255,0.88); }
.btn-ghost:hover { background: var(--white); color: var(--black); border-color: var(--white); transform: translateY(-2px); }

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

.btn-black { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn-black:hover { background: #000; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.18); }

.btn-white { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }

/* ── HERO CINEMA (full-bleed video) ─────────────────────────── */
.hero-cinema {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  overflow: hidden;
  background: var(--black);
}

.hero-cinema-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: brightness(0.9) saturate(1.05);
}

.hero-cinema-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(8,8,10,0.85) 0%, rgba(8,8,10,0.15) 45%),
    linear-gradient(100deg, rgba(8,8,10,0.75) 0%, rgba(8,8,10,0.2) 65%);
  pointer-events: none;
}

.hero-cinema-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(5rem, 12vh, 9rem) var(--gutter) clamp(7rem, 16vh, 11rem);
}

.hero-cinema-eyebrow {
  font-family: var(--condensed);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.hero-cinema-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--gold); }

.hero-cinema-hed {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4.5vw, 3.75rem);
  font-weight: 500;
  color: var(--white);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin-bottom: 1.8rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.35);
}

.hero-cinema-hed em { font-style: italic; color: var(--gold-lt); }

.hero-cinema-sub {
  font-size: 0.88rem;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 1.9;
  max-width: 480px;
  margin-bottom: 2.6rem;
  text-shadow: 0 1px 14px rgba(0,0,0,0.4);
}

.hero-cinema-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.stats-band {
  background: var(--warm);
  border-bottom: 1px solid var(--border);
}

.stats-band-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem 2rem;
  text-align: center;
}

.stat-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  position: relative;
}

.stat-cell + .stat-cell::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 50%;
  transform: translateY(-50%);
  height: 70%;
  width: 1px;
  background: var(--gold-lt);
}

.stat-cell .n {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 600;
  color: var(--gold-dk);
  line-height: 1;
}

.stat-cell .l {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 700px) {
  .stats-band-inner { grid-template-columns: repeat(2, 1fr); padding: 3rem var(--gutter); }
  .stat-cell:nth-child(3)::before { display: none; }
}

@media (max-width: 700px) {
  .hero-cinema { min-height: 88vh; }
}

/* ── HERO (home — split layout) ─────────────────────────────── */
.hero {
  min-height: 92vh;
  padding-top: 64px;
  display: grid;
  grid-template-columns: 52% 48%;
  background: var(--warm);
  position: relative;
  overflow: hidden;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 10vh, 8rem) var(--gutter);
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--condensed);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-eyebrow::before {
  content: '';
  width: 34px; height: 1px;
  background: var(--gold);
}

.hero-hed {
  font-family: var(--display);
  font-size: clamp(1.7rem, 4vw, 3.4rem);
  font-weight: 500;
  color: var(--black);
  line-height: 0.98;
  letter-spacing: -0.01em;
  margin-bottom: 1.6rem;
}

.hero-hed em { font-style: italic; color: var(--gold); }

.hero-sub {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.95;
  max-width: 420px;
  margin-bottom: 2.5rem;
}

.hero-meta {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  margin: -1.4rem 0 2.4rem;
}

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

.hero-media {
  position: relative;
  min-height: 520px;
}

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

.hero-media::after {
  content: '';
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255,255,255,0.55);
  pointer-events: none;
}

.hero-accent {
  position: absolute;
  left: -70px;
  bottom: clamp(2rem, 6vh, 4rem);
  width: clamp(180px, 20vw, 260px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  z-index: 3;
}

.hero-chip {
  position: absolute;
  right: clamp(1.5rem, 4vw, 3rem);
  bottom: clamp(2rem, 6vh, 4rem);
  background: rgba(17,17,17,0.82);
  backdrop-filter: blur(6px);
  color: var(--white);
  padding: 1rem 1.5rem;
  z-index: 3;
  border-left: 2px solid var(--gold);
}

.hero-chip .n {
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--gold-lt);
  line-height: 1.1;
}

.hero-chip .l {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-media { min-height: 62vw; order: -1; }
  .hero-accent { display: none; }
  .hero-text { padding-top: 3rem; padding-bottom: 4rem; }
}

/* ── PAGE HERO (interior pages) ────────────────────────────── */
.page-hero {
  padding-top: 64px;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.38;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,10,10,0.88) 20%, rgba(10,10,10,0.35) 100%);
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4.5rem, 11vh, 8rem) var(--gutter) clamp(3.5rem, 8vh, 6rem);
}

.page-hero-eyebrow {
  font-family: var(--condensed);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.page-hero-eyebrow::before {
  content: '';
  width: 30px; height: 1px;
  background: var(--gold);
}

.page-hero-hed {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.25vw, 2.8rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.02;
  letter-spacing: -0.01em;
  max-width: 720px;
}

.page-hero-hed em { font-style: italic; color: var(--gold-lt); }

.page-hero-sub {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1.9;
  max-width: 480px;
  margin-top: 1.4rem;
}

/* ── TICKER ─────────────────────────────────────────────────── */
.ticker {
  background: var(--ink);
  padding: 1rem 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 36s linear infinite;
}

.ticker-item {
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  padding: 0 2.5rem;
  flex-shrink: 0;
}

.ticker-dot { color: var(--gold); }

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

/* ── STATS ROW ─────────────────────────────────────────────── */
.stats-row {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: clamp(2.5rem, 5vh, 4rem) var(--gutter);
}

.stats-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat { padding: 0 2.5rem; border-right: 1px solid var(--border); }
.stat:first-child { padding-left: 0; }
.stat:last-child  { border-right: none; }

.stat-num {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.1vw, 3.4rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.56rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  line-height: 1.5;
}

@media (max-width: 680px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .stat { border-right: none; padding: 0; }
}

/* ── SECTION COMMON ─────────────────────────────────────────── */
.section { padding: clamp(3.5rem, 7vh, 6rem) var(--gutter); }

.section-eyebrow {
  font-family: var(--condensed);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-eyebrow::before {
  content: '';
  width: 26px; height: 1px;
  background: var(--gold);
}

.section-hed {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.9vw, 3.1rem);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
  color: var(--ink);
}

.section-hed em { font-style: italic; color: var(--gold); }

.section-body {
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.95;
  max-width: 580px;
}

.gold-rule { width: 30px; height: 1px; background: var(--gold); margin-bottom: 1.2rem; }

/* ── SERVICE CARDS (with photos) ────────────────────────────── */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2.5rem, 5vh, 4rem);
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.service-card-photo {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--smoke);
  position: relative;
}

.service-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-photo img { transform: scale(1.05); }

.service-card-photo .service-card-num {
  position: absolute;
  top: 0; left: 0;
  background: var(--white);
  font-family: var(--display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  padding: 0.4rem 0.9rem;
  line-height: 1;
  z-index: 2;
}

.service-card-inner {
  padding: 1.8rem 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card-tag {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 0.55rem;
}

.service-card-title {
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.1vw, 1.7rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.service-card-body {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  flex: 1;
  margin-bottom: 1.5rem;
}

.service-card-body ul {
  list-style: none;
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.service-card-body li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.74rem;
  align-items: flex-start;
}

.service-card-body li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

.service-card-link {
  font-family: var(--sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dk);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  transition: gap 0.2s;
  margin-top: auto;
}

.service-card-link:hover { gap: 0.75rem; }

@media (max-width: 760px) {
  .service-cards { grid-template-columns: 1fr; }
}

/* ── AREAS GRID ─────────────────────────────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vh, 4rem);
}

.area-tile {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink);
  display: block;
}

.area-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, opacity 0.4s ease;
  opacity: 0.85;
}

.area-tile:hover img { transform: scale(1.06); opacity: 0.65; }

.area-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.05) 55%);
  pointer-events: none;
}

.area-tile-label {
  position: absolute;
  left: 1.3rem;
  bottom: 1.1rem;
  z-index: 2;
}

.area-tile-name {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.15;
}

.area-tile-sub {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-lt);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
}

.area-tile:hover .area-tile-sub { opacity: 1; transform: none; }

@media (max-width: 760px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr; }
}

/* ── GUIDE BAND ─────────────────────────────────────────────── */
.guide-band {
  background: var(--ink);
  padding: clamp(4rem, 8vh, 6.5rem) var(--gutter);
  position: relative;
  overflow: hidden;
}

.guide-band::before {
  content: 'CPG';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-size: clamp(12rem, 26vw, 22rem);
  font-weight: 600;
  color: rgba(255,255,255,0.028);
  line-height: 1;
  pointer-events: none;
}

.guide-band-inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.guide-band .section-eyebrow { color: var(--gold); }
.guide-band .section-hed { color: var(--white); }
.guide-band .section-hed em { color: var(--gold-lt); }
.guide-band .section-body { color: rgba(255,255,255,0.82); }

.guide-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2.5rem, 5vh, 3.5rem);
}

.guide-card {
  background: var(--ink-2);
  border: 1px solid rgba(181,164,123,0.28);
  padding: clamp(2rem, 4vh, 3rem);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.guide-card:hover { border-color: var(--gold); transform: translateY(-4px); }

.guide-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 56px; height: 3px;
  background: var(--gold);
}

.guide-card-tag {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.guide-card-title {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.7vw, 2.05rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.guide-card-title em { font-style: italic; color: var(--gold-lt); }

.guide-card-body {
  font-size: 0.76rem;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  line-height: 1.9;
  margin-bottom: 1.6rem;
}

.guide-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 2rem;
}

.guide-card li {
  display: flex;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  align-items: flex-start;
}

.guide-card li::before { content: '—'; color: var(--gold); flex-shrink: 0; }

.guide-card .btn-gold { align-self: flex-start; margin-top: auto; }

@media (max-width: 720px) {
  .guide-cards { grid-template-columns: 1fr; }
}

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials {
  background: var(--warm);
  padding: clamp(4rem, 8vh, 6.5rem) var(--gutter);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials-inner { max-width: var(--max); margin: 0 auto; }

.testimonial-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2.5rem, 5vh, 3.5rem);
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: clamp(2rem, 4vh, 3rem);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.09); transform: translateY(-4px); }

.testimonial-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  margin-bottom: 1.2rem;
}

.testimonial-text {
  font-family: var(--display);
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.6rem;
}

.testimonial-attr {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dk);
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

.testimonial-attr a { color: inherit; transition: color 0.2s; }
.testimonial-attr a:hover { color: var(--gold); }

.testimonial-attr .src {
  display: block;
  margin-top: 0.25rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--mid);
  text-transform: none;
}

@media (max-width: 720px) {
  .testimonial-cards { grid-template-columns: 1fr; }
}

/* ── PULL QUOTE ─────────────────────────────────────────────── */
.pull-quote {
  background: var(--warm);
  padding: clamp(4rem, 8vh, 6.5rem) var(--gutter);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pull-quote-inner { max-width: 780px; margin: 0 auto; text-align: center; }

.pull-mark {
  font-family: var(--display);
  font-size: 3.8rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 0.5;
  margin-bottom: 1.5rem;
}

.pull-text {
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.9vw, 2.4rem);
  font-weight: 500;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

.pull-attr {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}

/* ── TEAM GRID ──────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.5vw, 2rem);
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.team-card:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.1); transform: translateY(-4px); }

.team-photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--smoke);
  position: relative;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: grayscale(30%);
}

.team-card:hover .team-photo img { transform: scale(1.03); filter: grayscale(0%); }

.team-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 260px;
}

.team-photo-placeholder p {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  text-align: center;
}

.team-info { padding: 1.4rem 1.6rem 1.8rem; border-top: 2px solid var(--gold); }

.team-name {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.15rem;
  line-height: 1.2;
}

.team-role {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.9rem;
}

.team-contact { display: flex; flex-direction: column; gap: 0.2rem; }

.team-contact a {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--muted);
  transition: color 0.2s;
}

.team-contact a:hover { color: var(--gold-dk); }

@media (max-width: 680px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ── IDX SEARCH BAND ────────────────────────────────────────── */
.idx-band {
  position: relative;
  padding: clamp(4.5rem, 10vh, 8rem) var(--gutter);
  background: var(--ink);
  overflow: hidden;
  text-align: center;
}

.idx-band-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}

.idx-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.85) 100%);
}

.idx-band-inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.idx-band .eyebrow {
  font-family: var(--condensed);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.idx-band .hed {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4.3vw, 3.3rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 1.2rem;
}

.idx-band .hed em { font-style: italic; color: var(--gold-lt); }

.idx-band .sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  line-height: 1.9;
  margin-bottom: 2.2rem;
}

/* ── PROCESS STEPS ──────────────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  margin-top: clamp(2rem, 5vh, 4rem);
}

.p-step {
  padding: clamp(2rem, 4vh, 3rem) 2rem clamp(2rem, 4vh, 3rem) 0;
  border-right: 1px solid var(--border);
}

.p-step:first-child { padding-left: 0; }
.p-step:last-child  { border-right: none; padding-right: 0; }

.p-step-n {
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 500;
  color: var(--gold-lt);
  line-height: 1;
  margin-bottom: 1.2rem;
}

.p-step-title {
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}

.p-step-body {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
}

@media (max-width: 680px) {
  .process-steps { grid-template-columns: 1fr; }
  .p-step { border-right: none; border-bottom: 1px solid var(--border); padding: 2rem 0; }
  .p-step:last-child { border-bottom: none; }
}

/* ── VALUATION / SIDE BLOCK ─────────────────────────────────── */
.val-block {
  background: var(--warm);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: clamp(2rem, 4vh, 3.5rem);
}

.val-block-label {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 1rem;
}

.val-block-hed {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.3vw, 1.8rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 0.9rem;
}

.val-block-body {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 1.8rem;
}

/* ── SPLIT PHOTO SECTION ────────────────────────────────────── */
.photo-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.photo-split-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.photo-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-split-media::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,0.6);
  pointer-events: none;
}

@media (max-width: 760px) {
  .photo-split { grid-template-columns: 1fr; }
  .photo-split-media { aspect-ratio: 16 / 10; }
}

/* ── CONTACT ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-label {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.3rem;
}

.contact-value {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.65;
  margin-bottom: 1.4rem;
}

.contact-value a { transition: color 0.2s; }
.contact-value a:hover { color: var(--gold-dk); }

.team-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  padding: 1.3rem 1.6rem;
  transition: box-shadow 0.25s ease;
}

.contact-card:hover { box-shadow: 0 10px 30px rgba(0,0,0,0.07); }

.contact-card-name {
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.15rem;
}

.contact-card-role {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 0.65rem;
}

.contact-card-links { display: flex; flex-direction: column; gap: 0.15rem; }

.contact-card-links a {
  font-size: 0.7rem;
  font-weight: 300;
  color: var(--muted);
  transition: color 0.2s;
}

.contact-card-links a:hover { color: var(--gold-dk); }

/* Contact form */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-field { display: flex; flex-direction: column; gap: 0.45rem; }
.form-field.full { grid-column: 1 / -1; }

label {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

input, textarea, select {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(181,164,123,0.14);
}

textarea { min-height: 130px; resize: vertical; }

.form-stack { display: flex; flex-direction: column; gap: 1.2rem; }

.form-note { font-size: 0.62rem; font-weight: 300; color: var(--mid); margin-top: 0.5rem; }

@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: 1; }
}

@media (max-width: 700px) {
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ── CTA STRIP ──────────────────────────────────────────────── */
.cta-strip {
  background: var(--ink);
  padding: clamp(5rem, 10vh, 8rem) var(--gutter);
  position: relative;
  overflow: hidden;
}

.cta-strip-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}

.cta-strip::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(17,17,17,0.92) 30%, rgba(17,17,17,0.6) 100%);
}

.cta-strip-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-strip .eyebrow {
  font-family: var(--condensed);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.cta-strip .hed {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.9vw, 4.25rem);
  font-weight: 500;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}

.cta-strip .hed em { font-style: italic; color: var(--gold-lt); }

.cta-strip .sub {
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.cta-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── FOOTER ─────────────────────────────────────────────────── */
footer { background: #0a0a0a; border-top: 3px solid var(--gold); }

.foot-top {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 5vh, 4rem) var(--gutter);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.foot-brand { display: flex; flex-direction: column; gap: 1.2rem; }

.foot-logo img { height: 38px; padding: 0; border-radius: 2px; }

.foot-logo-text {
  font-family: var(--raleway);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.foot-tagline {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  font-style: italic;
  letter-spacing: 0.02em;
  color: var(--gold-lt);
  margin-bottom: 0.5rem;
}

.foot-address {
  font-size: 0.66rem;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.foot-address a { color: var(--gold); transition: color 0.2s; }
.foot-address a:hover { color: var(--gold-lt); }

.foot-nav { display: flex; flex-direction: column; gap: 0.5rem; padding-top: 0.2rem; }

.foot-nav-label, .foot-social-label {
  font-size: 0.48rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.4rem;
}

.foot-nav a {
  font-size: 0.66rem;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}

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

.foot-social-col { display: flex; flex-direction: column; gap: 0.5rem; padding-top: 0.2rem; }

.foot-social-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.66rem;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.foot-social-link:hover { color: var(--gold); }
.foot-social-link svg { flex-shrink: 0; opacity: 0.55; transition: opacity 0.2s; }
.foot-social-link:hover svg { opacity: 1; }

.foot-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.2rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.foot-copy {
  font-size: 0.54rem;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.03em;
  line-height: 1.8;
}

.foot-eho {
  font-size: 0.54rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em;
}

@media (max-width: 720px) {
  .foot-top { grid-template-columns: 1fr 1fr; }
  .foot-brand { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .foot-top { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
}

/* ── ABOUT: BIO LAYOUTS ─────────────────────────────────────── */
.bio-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
  padding-top: clamp(3rem, 6vh, 5rem);
  border-top: 1px solid var(--border);
  margin-top: clamp(3rem, 6vh, 5rem);
}

.bio-layout:first-of-type { border-top: none; margin-top: 0; padding-top: 0; }

.bio-layout.flip .bio-photo { order: 2; }

.bio-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--smoke);
}

.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.bio-photo::after {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255,255,255,0.55);
  pointer-events: none;
}

.bio-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
}

.bio-placeholder p {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid);
  text-align: center;
}

.bio-name {
  font-family: var(--display);
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 0.35rem;
  color: var(--ink);
}

.bio-role {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-dk);
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.bio-body {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.95;
}

.bio-body p + p { margin-top: 1rem; }

.bio-details {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.bio-detail {
  display: flex;
  gap: 1.5rem;
  align-items: baseline;
  background: var(--white);
  padding: 0.7rem 1rem;
}

.bio-detail-label {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--mid);
  flex-shrink: 0;
  width: 56px;
}

.bio-detail-value { font-size: 0.72rem; font-weight: 300; color: var(--ink); }

.bio-detail-value a { transition: color 0.2s; }
.bio-detail-value a:hover { color: var(--gold-dk); }

@media (max-width: 760px) {
  .bio-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .bio-layout.flip .bio-photo { order: 0; }
  .bio-photo { aspect-ratio: 4 / 3; }
}

/* ── UTILITY ─────────────────────────────────────────────────── */
.ruled-list { list-style: none; }

.ruled-list li {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--ink);
  display: grid;
  grid-template-columns: 1rem 1fr;
  gap: 0.75rem;
  align-items: start;
}

.ruled-list li:first-child { border-top: 1px solid var(--border); }
.ruled-list li::before { content: '—'; color: var(--gold); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

@media (max-width: 760px) {
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
}
