/* =============================================================
   ROTUNDA, RIVER & RANGE  |  Master Stylesheet
   High-End Strategic Advisory Website
   ============================================================= */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Montserrat:wght@300;400;500;600&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;1,8..60,300;1,8..60,400&display=swap');

/* ── CSS Variables ── */
:root {
  --blue:       #1F3A44;
  --blue-dark:  #162930;
  --blue-mid:   #2A4D5A;
  --stone:      #6B6E6A;
  --sand:       #D6CBB8;
  --sand-light: #EDE6D8;
  --sand-pale:  #F7F3EC;
  --clay:       #9B6A4F;
  --sage:       #7A8F7A;
  --white:      #FDFAF6;
  --ink:        #1A1A18;

  --font-serif:   'Libre Baskerville', Georgia, serif;
  --font-body:    'Source Serif 4', Georgia, serif;
  --font-sans:    'Montserrat', Helvetica, sans-serif;

  --max-width: 1320px;
  --nav-h:     80px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

/* ── Typography Scale ── */
.t-display {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.t-h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.015em;
}
.t-h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.t-h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
}
.t-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
}
.t-body-lg {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  line-height: 1.75;
  font-weight: 300;
}
.t-body {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 400;
}
.t-caption {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  color: var(--stone);
}

/* ── Layout Utilities ── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.5rem, 5vw, 4rem);
  padding-right: clamp(1.5rem, 5vw, 4rem);
}
.container--narrow {
  max-width: 860px;
}
.container--mid {
  max-width: 1080px;
}

/* ── Divider ── */
.rule {
  border: none;
  border-top: 1px solid rgba(107, 110, 106, 0.2);
  margin: 0;
}
.rule--sand { border-top-color: rgba(214, 203, 184, 0.4); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  transition: all 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn--primary {
  background: var(--blue);
  color: var(--sand-light);
  border: 1px solid var(--blue);
}
.btn--primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(31, 58, 68, 0.35);
}
.btn--outline {
  background: transparent;
  color: var(--blue);
  border: 1px solid var(--blue);
}
.btn--outline:hover {
  background: var(--blue);
  color: var(--sand-light);
  transform: translateY(-2px);
}
.btn--outline-light {
  background: transparent;
  color: var(--sand-light);
  border: 1px solid rgba(214, 203, 184, 0.5);
}
.btn--outline-light:hover {
  background: rgba(214, 203, 184, 0.12);
  border-color: var(--sand-light);
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease-out);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.site-nav.scrolled {
  background: rgba(22, 41, 48, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(214, 203, 184, 0.1);
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-logo__name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sand-light);
  letter-spacing: 0.02em;
  line-height: 1;
}
.nav-logo__tag {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(214, 203, 184, 0.55);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(214, 203, 184, 0.75);
  transition: color 0.25s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 100%;
  height: 1px;
  background: var(--clay);
  transition: right 0.35s var(--ease-out);
}
.nav-links a:hover,
.nav-links a.active { color: var(--sand-light); }
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }
.nav-cta {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand-light);
  border: 1px solid rgba(214, 203, 184, 0.3);
  padding: 0.6rem 1.4rem;
  transition: all 0.3s;
}
.nav-cta:hover {
  background: rgba(214, 203, 184, 0.1);
  border-color: rgba(214, 203, 184, 0.6);
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 4px 0;
}
.nav-toggle span {
  display: block;
  height: 1px;
  background: var(--sand-light);
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--blue-dark);
  padding: 2rem;
  z-index: 99;
  border-top: 1px solid rgba(214, 203, 184, 0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand-light);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(214, 203, 184, 0.1);
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ═══════════════════════════════════════════════════
   HERO — HOMEPAGE
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--blue-dark);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/truckeeriverinlbao_54016951581_o.jpg');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero__bg.loaded { transform: scale(1); }
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(22, 41, 48, 0.95) 0%,
    rgba(22, 41, 48, 0.5) 50%,
    rgba(22, 41, 48, 0.2) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 180px;
  padding-bottom: clamp(4rem, 8vw, 8rem);
  width: 100%;
}
.hero__eyebrow {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--clay);
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--sand-light);
  margin-bottom: 2rem;
  max-width: 900px;
}
.hero__title em {
  font-style: italic;
  color: var(--sand);
}
.hero__sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: rgba(214, 203, 184, 0.8);
  max-width: 580px;
  margin-bottom: 3rem;
  font-weight: 300;
}
.hero__actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  right: clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}
.hero__scroll span {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(214, 203, 184, 0.5);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--clay), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ═══════════════════════════════════════════════════
   INTRO BAND
═══════════════════════════════════════════════════ */
.intro-band {
  background: var(--sand-pale);
  border-top: 3px solid var(--clay);
  padding: 3.5rem 0;
}
.intro-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.intro-stat {
  text-align: center;
}
.intro-stat__num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.intro-stat__label {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
}
.intro-divider {
  width: 1px;
  height: 50px;
  background: var(--sand);
}
@media (max-width: 700px) {
  .intro-band__inner { justify-content: center; }
  .intro-divider { display: none; }
}

/* ═══════════════════════════════════════════════════
   SECTION BASE
═══════════════════════════════════════════════════ */
.section {
  padding: clamp(5rem, 10vw, 10rem) 0;
}
.section--dark {
  background: var(--blue);
  color: var(--sand-light);
}
.section--mid {
  background: var(--blue-mid);
  color: var(--sand-light);
}
.section--sand {
  background: var(--sand-pale);
}
.section--sand-warm {
  background: var(--sand-light);
}
.section--white {
  background: var(--white);
}

.section__header {
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section__eyebrow {
  margin-bottom: 1rem;
}
.section__title {
  margin-bottom: 1.5rem;
}
.section__lead {
  max-width: 680px;
  color: var(--stone);
}
.section--dark .section__lead,
.section--mid .section__lead {
  color: rgba(214, 203, 184, 0.7);
}

/* ═══════════════════════════════════════════════════
   ABOUT PREVIEW (Homepage)
═══════════════════════════════════════════════════ */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.about-preview__image {
  position: relative;
}
.about-preview__photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  object-position: left 10%;
  display: block;
  border-radius: 2px;
}
.about-preview__accent {
  display: none;
}
.about-preview__frame {
  display: none;
}
.about-preview__content { }
.about-preview__quote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--blue);
  border-left: 3px solid var(--clay);
  padding-left: 1.5rem;
  margin: 2rem 0;
}
.about-preview__link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  border-bottom: 1px solid var(--clay);
  padding-bottom: 2px;
  margin-top: 2rem;
  transition: gap 0.3s;
}
.about-preview__link:hover { gap: 1rem; }
@media (max-width: 800px) {
  .about-preview { grid-template-columns: 1fr; }
  .about-preview__accent { display: none; }
}

/* ═══════════════════════════════════════════════════
   SERVICES GRID (Homepage teaser)
═══════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(107, 110, 106, 0.15);
}
.service-card {
  background: var(--white);
  padding: clamp(2rem, 3vw, 3rem);
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease-out);
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { background: var(--sand-pale); }
.service-card__number {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--clay);
  margin-bottom: 1.5rem;
}
.service-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--blue);
  margin-bottom: 1rem;
}
.service-card__desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--stone);
}
.service-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 1.5rem;
  transition: gap 0.3s;
}
.service-card:hover .service-card__arrow { gap: 0.8rem; }
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 550px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   PULL QUOTE / STATEMENT
═══════════════════════════════════════════════════ */
.statement-section {
  text-align: center;
  padding: clamp(6rem, 12vw, 12rem) 0;
  position: relative;
  overflow: hidden;
}
.statement-section__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/04042024solarovercanals22_53633871263_o.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: brightness(0.25) saturate(0.6);
}
.statement-section__content {
  position: relative;
  z-index: 2;
}
.statement-mark {
  font-family: var(--font-serif);
  font-size: 8rem;
  line-height: 0.5;
  color: var(--clay);
  opacity: 0.4;
  display: block;
  margin-bottom: 1rem;
}
.statement-text {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 3rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--sand-light);
  max-width: 900px;
  margin: 0 auto 2rem;
}
.statement-attr {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(214, 203, 184, 0.55);
}

/* ═══════════════════════════════════════════════════
   IMAGE MOSAIC
═══════════════════════════════════════════════════ */
.mosaic {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 0.5rem;
}
.mosaic--two {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}
.mosaic__main {
  grid-row: 1 / 3;
}
.mosaic--two .mosaic__main {
  grid-row: auto;
}
.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mosaic__main img { min-height: 480px; }
.mosaic__secondary img { min-height: 200px; }
@media (max-width: 700px) {
  .mosaic { grid-template-columns: 1fr; grid-template-rows: auto; }
  .mosaic__main { grid-row: auto; }
  .mosaic--two { grid-template-columns: 1fr; }
  .mosaic__main img { min-height: 260px; }
  .mosaic__secondary img { min-height: 160px; }
}

/* ═══════════════════════════════════════════════════
   PAGE HERO (interior pages)
═══════════════════════════════════════════════════ */
.page-hero {
  background: var(--blue);
  padding: calc(var(--nav-h) + 5rem) 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(155, 106, 79, 0.12) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero__eyebrow { margin-bottom: 1.2rem; }
.page-hero__title {
  color: var(--sand-light);
  margin-bottom: 1.5rem;
}
.page-hero__lead {
  color: rgba(214, 203, 184, 0.7);
  max-width: 600px;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.8;
  font-weight: 300;
}

/* ═══════════════════════════════════════════════════
   BIOGRAPHY / ABOUT PAGE
═══════════════════════════════════════════════════ */
.bio-layout {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.bio-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.bio-sidebar__photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
  margin-bottom: 2rem;
}
.bio-sidebar__credential {
  border-top: 1px solid rgba(107, 110, 106, 0.2);
  padding-top: 1.2rem;
  margin-bottom: 1.2rem;
}
.bio-sidebar__credential-label {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.3rem;
}
.bio-sidebar__credential-value {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  color: var(--blue);
  line-height: 1.4;
}

.bio-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  font-weight: 700;
  color: var(--blue);
  margin-top: 3.5rem;
  margin-bottom: 1.2rem;
  padding-top: 3.5rem;
  border-top: 1px solid rgba(107, 110, 106, 0.15);
}
.bio-body h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.bio-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: #2a2a28;
  margin-bottom: 1.4rem;
}
.bio-body p:last-child { margin-bottom: 0; }
.bio-pull {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--blue);
  border-left: 3px solid var(--clay);
  padding: 1rem 1.5rem;
  margin: 2.5rem 0;
  background: var(--sand-pale);
}

@media (max-width: 900px) {
  .bio-layout { grid-template-columns: 1fr; }
  .bio-sidebar { position: static; }
}

/* ═══════════════════════════════════════════════════
   TIMELINE
═══════════════════════════════════════════════════ */
.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--clay), rgba(155, 106, 79, 0.1));
}
.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateX(-15px);
  transition: all 0.6s var(--ease-out);
}
.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.35rem;
  width: 9px;
  height: 9px;
  background: var(--clay);
  border-radius: 50%;
  transform: translateX(-4px);
}
.timeline-item__date {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.4rem;
}
.timeline-item__role {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 0.2rem;
}
.timeline-item__org {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--stone);
  margin-bottom: 0.7rem;
}
.timeline-item__desc {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #3a3a38;
}

/* ═══════════════════════════════════════════════════
   SERVICES PAGE
═══════════════════════════════════════════════════ */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: start;
  padding: clamp(3rem, 5vw, 5rem) 0;
  border-bottom: 1px solid rgba(107, 110, 106, 0.15);
}
.service-detail:last-child { border-bottom: none; }
.service-detail__meta { }
.service-detail__number {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 700;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 1rem;
}
.service-detail__title {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  color: var(--blue);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.service-detail__body p {
  font-size: 1rem;
  line-height: 1.85;
  color: #2a2a28;
  margin-bottom: 1.2rem;
}
.service-detail__list {
  margin-top: 1.5rem;
}
.service-detail__list li {
  display: flex;
  gap: 0.8rem;
  align-items: baseline;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #2a2a28;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(107, 110, 106, 0.1);
}
.service-detail__list li::before {
  content: '—';
  color: var(--clay);
  flex-shrink: 0;
  font-family: var(--font-sans);
}

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

/* ═══════════════════════════════════════════════════
   EXPERTISE / FOCUS AREAS
═══════════════════════════════════════════════════ */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(107, 110, 106, 0.12);
}
.expertise-card {
  background: var(--white);
  padding: clamp(2.5rem, 4vw, 4rem);
  position: relative;
  overflow: hidden;
}
.expertise-card::after {
  content: attr(data-number);
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  color: var(--sand-pale);
  line-height: 1;
  pointer-events: none;
  transition: color 0.4s;
}
.expertise-card:hover::after { color: var(--sand); }
.expertise-card__icon {
  width: 40px;
  height: 1px;
  background: var(--clay);
  margin-bottom: 1.5rem;
}
.expertise-card__title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 1rem;
  line-height: 1.25;
}
.expertise-card__desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--stone);
}
@media (max-width: 700px) {
  .expertise-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   INSIGHTS / PERSPECTIVES
═══════════════════════════════════════════════════ */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.insight-card {
  display: flex;
  flex-direction: column;
}
.insight-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.insight-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.insight-card:hover .insight-card__image img {
  transform: scale(1.05);
}
.insight-card__category {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 0.7rem;
}
.insight-card__title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--blue);
  margin-bottom: 0.8rem;
  flex: 1;
}
.insight-card__excerpt {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--stone);
  margin-bottom: 1.2rem;
}
.insight-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  border-bottom: 1px solid var(--sand);
  padding-bottom: 2px;
  transition: border-color 0.3s, gap 0.3s;
  align-self: flex-start;
}
.insight-card:hover .insight-card__link {
  border-color: var(--clay);
  gap: 0.9rem;
}
@media (max-width: 900px) {
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .insights-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   FEATURED INSIGHT (full-width)
═══════════════════════════════════════════════════ */
.insight-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0;
  background: var(--blue);
}
.insight-featured__image {
  position: relative;
  overflow: hidden;
  min-height: 450px;
}
.insight-featured__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.insight-featured__content {
  padding: clamp(3rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.insight-featured__tag {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.insight-featured__tag::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--clay);
}
.insight-featured__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: var(--sand-light);
  line-height: 1.25;
  margin-bottom: 1.2rem;
}
.insight-featured__excerpt {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(214, 203, 184, 0.7);
  margin-bottom: 2rem;
}
@media (max-width: 750px) {
  .insight-featured { grid-template-columns: 1fr; }
  .insight-featured__image { min-height: 240px; }
}

/* ═══════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.contact-info__item {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.contact-info__icon {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(107, 110, 106, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info__icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--clay);
  fill: none;
  stroke-width: 1.5;
}
.contact-info__label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.3rem;
}
.contact-info__value {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: var(--blue);
  line-height: 1.5;
}
.contact-info__value a {
  color: var(--blue);
  transition: color 0.2s;
}
.contact-info__value a:hover { color: var(--clay); }

/* Contact Form */
.contact-form { }
.form-group {
  margin-bottom: 1.8rem;
}
.form-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.5rem;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: transparent;
  border: 1px solid rgba(107, 110, 106, 0.3);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.3s;
  outline: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
}
.form-textarea {
  min-height: 140px;
  resize: vertical;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6E6A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}
.form-notice {
  font-size: 0.8rem;
  color: var(--stone);
  margin-top: 1rem;
  line-height: 1.6;
}

@media (max-width: 850px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   FAQ ACCORDION
═══════════════════════════════════════════════════ */
.faq-list { }
.faq-item {
  border-bottom: 1px solid rgba(107, 110, 106, 0.2);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.faq-icon {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(107, 110, 106, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--clay);
}
.faq-icon {
  position: relative;
}
.faq-item.open .faq-icon { background: var(--blue); border-color: var(--blue); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-answer-inner {
  font-size: 0.96rem;
  line-height: 1.85;
  color: var(--stone);
  padding-bottom: 1.5rem;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* ═══════════════════════════════════════════════════
   VALUES STRIP
═══════════════════════════════════════════════════ */
.values-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid rgba(214, 203, 184, 0.2);
  border-bottom: 1px solid rgba(214, 203, 184, 0.2);
  margin: 4rem 0;
}
.value-pill {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(214, 203, 184, 0.15);
}
.value-pill:last-child { border-right: none; }
.value-pill__text {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(214, 203, 184, 0.65);
}
.value-pill__text strong {
  display: block;
  font-weight: 500;
  color: var(--sand-light);
  margin-bottom: 0.25rem;
  font-size: 0.72rem;
}

/* ═══════════════════════════════════════════════════
   CTA BAND
═══════════════════════════════════════════════════ */
.cta-band {
  background: var(--blue-dark);
  padding: clamp(5rem, 9vw, 9rem) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(155, 106, 79, 0.15) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band__eyebrow { margin-bottom: 1.2rem; }
.cta-band__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--sand-light);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.cta-band__sub {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: rgba(214, 203, 184, 0.65);
  max-width: 500px;
  margin: 0 auto 3rem;
  font-weight: 300;
}
.cta-band__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.site-footer {
  background: var(--ink);
  color: rgba(214, 203, 184, 0.55);
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(214, 203, 184, 0.1);
}
.footer-brand__name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sand-light);
  margin-bottom: 0.3rem;
}
.footer-brand__tag {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 1.5rem;
}
.footer-brand__desc {
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 300px;
}
.footer-col__heading {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(214, 203, 184, 0.35);
  margin-bottom: 1.2rem;
}
.footer-col__links { }
.footer-col__links li {
  margin-bottom: 0.7rem;
}
.footer-col__links a {
  font-size: 0.88rem;
  color: rgba(214, 203, 184, 0.55);
  transition: color 0.25s;
}
.footer-col__links a:hover { color: var(--sand-light); }
.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.78rem;
}
.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(214, 203, 184, 0.4);
  transition: color 0.25s;
}
.footer-legal a:hover { color: var(--sand-light); }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 550px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out);
}
.fade-in.visible { opacity: 1; }

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.stagger.visible > *:nth-child(1) { transition-delay: 0.0s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.2s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.3s; opacity: 1; transform: none; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.4s; opacity: 1; transform: none; }

/* ═══════════════════════════════════════════════════
   UTILITY
═══════════════════════════════════════════════════ */
.text-blue   { color: var(--blue); }
.text-clay   { color: var(--clay); }
.text-stone  { color: var(--stone); }
.text-sand   { color: var(--sand); }
.text-light  { color: var(--sand-light); }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE TWEAKS
═══════════════════════════════════════════════════ */
@media (max-width: 600px) {
  .hero__title { font-size: 2.6rem; }
  .section { padding: 4rem 0; }
  .page-hero { padding-top: calc(var(--nav-h) + 3rem); padding-bottom: 3rem; }
}
