/* ============================================================
   VANMETER — Ohio Lobbying Firm
   Stylesheet: Gun Metal & Champagne Gold, Premium, Responsive
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Gun Metal Palette — true neutral steel gray, no blue */
  --gm-darkest:    #0f1011;
  --gm-dark:       #1c1e1f;
  --gm-mid:        #252829;
  --gm-base:       #2f3335;
  --gm-light:      #3e4447;
  --gm-mist:       #5c6568;
  --gm-soft:       #8c9598;

  /* Champagne Gold Accent */
  --gold:          #c8a96e;
  --gold-light:    #dfc28f;
  --gold-dark:     #a07840;
  --gold-pale:     #f0e8d8;

  /* Gun Metal Accent — neutral depth tones */
  --gm-accent:     #404c50;
  --gm-accent-lg:  #536068;

  /* Neutrals */
  --cream:         #f5f0e8;
  --warm-white:    #fdfaf5;
  --white:         #ffffff;
  --ink:           #1a1c1d;
  --ink-mid:       #3a3e40;
  --ink-soft:      #6b7173;

  --font-display: 'Raleway', system-ui, -apple-system, sans-serif;
  --font-body:    'Lato', system-ui, -apple-system, sans-serif;

  --container: 1200px;
  --gap:        2rem;
  --radius:     3px;
  --radius-lg:  6px;

  --transition: 240ms cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 1px 4px rgba(15,16,17,0.12), 0 1px 2px rgba(15,16,17,0.08);
  --shadow-md: 0 4px 20px rgba(15,16,17,0.18);
  --shadow-lg: 0 16px 48px rgba(15,16,17,0.24);
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--warm-white);
  line-height: 1.65;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.lead {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1.75;
  font-family: var(--font-body);
  letter-spacing: 0.01em;
}

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: 6rem;
}

.section-header {
  margin-bottom: 4rem;
}

.section-heading {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--gm-darkest);
  margin-block: 0.75rem 1rem;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-sub {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.75;
  font-weight: 300;
}

.label-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(200,169,110,0.1);
  padding: 0.4em 1em;
  border-radius: 2rem;
  border: 1px solid rgba(200,169,110,0.28);
  font-family: var(--font-body);
}

.label-tag--light {
  color: var(--gold-light);
  background: rgba(200,169,110,0.12);
  border-color: rgba(200,169,110,0.35);
}

/* Section split layout */
.section-split {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 4rem;
  align-items: start;
}

.section-split__label {
  position: sticky;
  top: 6rem;
}

.section-split__label .section-heading {
  margin-top: 1.25rem;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 300;
}

.section-split__label .section-sub {
  margin-top: 1rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95em 2.2em;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
  font-family: var(--font-body);
}

.btn--primary {
  background: var(--gold);
  color: var(--gm-darkest);
}

.btn--primary:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(160,120,64,0.32);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.38);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.65);
}

.btn--full { width: 100%; }

/* ---------- Navigation ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 21, 25, 0.0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}

.site-header.scrolled {
  background: rgba(15, 16, 17, 0.96);
  backdrop-filter: blur(16px);
  border-bottom-color: rgba(255,255,255,0.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container);
  margin-inline: auto;
  padding: 1.35rem 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--white);
  text-decoration: none;
}

.nav-logo__img {
  height: 48px;
  width: auto;
  display: block;
  filter: sepia(0.3) saturate(1.4) hue-rotate(5deg) brightness(0.95);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-link {
  color: rgba(255,255,255,0.7);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: color var(--transition);
  font-family: var(--font-body);
}

.nav-link:hover { color: var(--white); }

.nav-link--cta {
  background: var(--gold);
  color: var(--gm-darkest) !important;
  font-weight: 500;
  padding: 0.5rem 1.3rem;
}

.nav-link--cta:hover {
  background: var(--gold-light);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--gm-darkest);
  background-image:
    linear-gradient(
      105deg,
      rgba(15,16,17,0.97) 0%,
      rgba(15,16,17,0.88) 45%,
      rgba(28,30,31,0.60) 100%
    ),
    url('capitol-flags.jpg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,169,110,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,169,110,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 70% at 30% 50%, black 20%, transparent 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -180px;
  right: -180px;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(64,76,80,0.22) 0%, transparent 65%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(200,169,110,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 8rem 4rem;
  max-width: 860px;
}

.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  font-family: var(--font-body);
}

.hero-headline {
  font-size: clamp(3rem, 7.5vw, 6rem);
  font-weight: 200;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-headline em {
  font-style: normal;
  color: var(--gold);
  position: relative;
  font-weight: 400;
}

.hero-headline em::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.72);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 2.75rem;
  font-weight: 300;
}

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

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 1;
}

.hero-scroll-indicator span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, rgba(200,169,110,0.55), 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; }
}

/* ---------- Marquee Strip ---------- */
.marquee-strip {
  background: var(--gm-mid);
  overflow: hidden;
  padding-block: 0.9rem;
  border-block: 1px solid rgba(200,169,110,0.15);
}

.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200,169,110,0.75);
  padding-inline: 1.75rem;
  font-family: var(--font-body);
}

.marquee-track .sep {
  color: rgba(200,169,110,0.25);
  padding-inline: 0;
}

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

/* ---------- Our Story ---------- */
.our-story {
  background: var(--warm-white);
}

.story-body p {
  color: var(--ink-mid);
  line-height: 1.85;
  margin-bottom: 1.35rem;
  font-weight: 300;
}

.story-body .lead {
  color: var(--ink);
}

.story-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(46,66,82,0.1);
  flex-wrap: wrap;
}

.stat {}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 3.25rem;
  font-weight: 200;
  color: var(--gm-base);
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}

.stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mid);
  font-family: var(--font-body);
}

/* ---------- Parallax Banners ---------- */
.parallax-banner {
  position: relative;
  height: 48vh;
  min-height: 300px;
  max-height: 520px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.parallax-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,16,17,0.42) 0%,
    rgba(15,16,17,0.18) 50%,
    rgba(15,16,17,0.42) 100%
  );
}

.parallax-banner--capitol-flags {
  background-image: url('rotunda-dome.jpg');
  background-position: center 40%;
}

.parallax-banner--tile-floor {
  background-image: url('tile-floor.jpg');
  background-position: center 60%;
  height: 38vh;
}

.parallax-banner--rotunda-dome {
  background-image: url('ohio-statehouse.jpg');
  background-position: center 40%;
}

.parallax-banner--iron-fence {
  background-image: url('iron-fence.jpg');
  background-position: center 50%;
  height: 38vh;
}

/* ---------- Our History ---------- */
.our-history {
  background: var(--cream);
  border-top: 1px solid rgba(47,51,53,0.07);
}

/* ---------- Services ---------- */
.services {
  background: var(--gm-dark);
}

.services .section-heading {
  color: var(--warm-white);
}

.services .section-sub {
  color: rgba(245,240,232,0.72);
}

.services .label-tag {
  color: var(--gold);
  background: rgba(200,169,110,0.1);
  border-color: rgba(200,169,110,0.22);
}

/* Services — Editorial List */
.services-list {
  border-top: 1px solid rgba(200,169,110,0.15);
  margin-top: 1rem;
}

.service-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid rgba(200,169,110,0.1);
  cursor: default;
  position: relative;
  transition: padding-left var(--transition);
}

.service-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}

.service-row:hover {
  padding-left: 1.25rem;
}

.service-row:hover::before {
  transform: scaleY(1);
}

.service-row__num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(200,169,110,0.58);
  letter-spacing: 0.08em;
  font-style: italic;
  flex-shrink: 0;
}

.service-row__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 300;
  color: rgba(245,240,232,0.82);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
  line-height: 1.1;
  margin-bottom: 0;
}

.service-row:hover .service-row__title {
  color: var(--gold-light);
}

.service-row__desc {
  font-size: 0.855rem;
  color: rgba(245,240,232,0.65);
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.4s ease, margin-top 0.3s ease, opacity 0.3s ease;
  line-height: 1.75;
  font-weight: 300;
  opacity: 0;
}

.service-row:hover .service-row__desc {
  max-height: 200px;
  margin-top: 0.6rem;
  opacity: 1;
}

.service-row__tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200,169,110,0.68);
  white-space: nowrap;
  font-family: var(--font-body);
  border: 1px solid rgba(200,169,110,0.32);
  padding: 0.35em 0.85em;
  border-radius: 2rem;
  transition: all var(--transition);
}

.service-row:hover .service-row__tag {
  color: var(--gold);
  border-color: rgba(200,169,110,0.45);
}


/* ---------- Expertise / Industries ---------- */
/* Dark — flows directly from services, zero visual break */
.expertise {
  background: var(--gm-dark);
  padding-top: 0;
}

.expertise .section-heading {
  color: var(--warm-white);
}

.expertise .section-sub {
  color: rgba(245,240,232,0.72);
}

.expertise .label-tag {
  color: var(--gold);
  background: rgba(200,169,110,0.1);
  border-color: rgba(200,169,110,0.22);
}

.industries-list {
  border-top: 1px solid rgba(200,169,110,0.15);
  margin-top: 1rem;
}

.industry-row {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: start;
  gap: 2rem;
  padding: 2.25rem 0;
  border-bottom: 1px solid rgba(200,169,110,0.1);
  cursor: default;
  position: relative;
  transition: padding-left var(--transition);
}

.industry-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.35s ease;
}

.industry-row:hover {
  padding-left: 1.25rem;
}

.industry-row:hover::before {
  transform: scaleY(1);
}

.industry-row__num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(200,169,110,0.58);
  letter-spacing: 0.08em;
  font-style: italic;
  flex-shrink: 0;
}

.industry-row__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 300;
  color: rgba(245,240,232,0.82);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--transition);
  line-height: 1.1;
  margin-bottom: 0;
}

.industry-row:hover .industry-row__title {
  color: var(--gold-light);
}

.industry-row__desc {
  font-size: 0.855rem;
  color: rgba(245,240,232,0.65);
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  transition: max-height 0.4s ease, margin-top 0.3s ease, opacity 0.3s ease;
  line-height: 1.75;
  font-weight: 300;
  opacity: 0;
}

.industry-row:hover .industry-row__desc {
  max-height: 160px;
  margin-top: 0.6rem;
  opacity: 1;
  color: rgba(245,240,232,0.85);
}

.industry-row__tag {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(200,169,110,0.68);
  white-space: nowrap;
  font-family: var(--font-body);
  border: 1px solid rgba(200,169,110,0.32);
  padding: 0.35em 0.85em;
  border-radius: 2rem;
  transition: all var(--transition);
}

.industry-row:hover .industry-row__tag {
  color: var(--gold);
  border-color: rgba(200,169,110,0.45);
}


/* ---------- Our Team ---------- */
.our-team {
  background: var(--cream);
}

.team-header {
  margin-bottom: 3.5rem;
}

.team-header .section-heading {
  color: var(--gm-darkest);
  margin-block: 0.75rem 0;
}

.team-roster {
  border-top: 1px solid rgba(47,51,53,0.12);
}

.roster-entry {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3.5rem;
  padding: 3rem 0;
  border-bottom: 1px solid rgba(47,51,53,0.08);
  align-items: start;
  transition: background var(--transition);
  border-radius: var(--radius);
}

.roster-entry__left {
  padding-right: 1rem;
}

.roster-entry__name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 200;
  color: var(--gm-darkest);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}

.roster-entry:hover .roster-entry__name {
  color: var(--gold-dark);
}

.roster-entry__title {
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-family: var(--font-body);
}

.roster-entry__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0.35rem;
}

.roster-entry__bio {
  font-size: 1rem;
  color: var(--ink-mid);
  line-height: 1.85;
  font-weight: 300;
}

.roster-entry__photo-wrap {
  margin-bottom: 1.25rem;
  overflow: hidden;
  border-radius: var(--radius);
  max-width: 200px;
  box-shadow: -4px 6px 18px rgba(15,16,17,0.45);
}

.roster-entry__photo {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  filter: grayscale(15%);
  transition: filter var(--transition);
}

.roster-entry:hover .roster-entry__photo {
  filter: grayscale(0%);
}

/* ---------- Bio Actions ---------- */
.bio-actions {
  margin-top: 0.85rem;
  white-space: nowrap;
}

/* ---------- Bio Read More Button ---------- */
.bio-read-more {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  margin-right: 1.25rem;
  background: none;
  border: none;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  transition: color var(--transition);
}
.bio-read-more:hover { color: var(--gold-light); }

.bio-contact {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26,28,29,0.45);
  text-decoration: none;
  border-bottom: 1px solid rgba(26,28,29,0.2);
  padding-bottom: 1px;
  transition: color var(--transition), border-color var(--transition);
}
.bio-contact:hover {
  color: rgba(26,28,29,0.8);
  border-color: rgba(26,28,29,0.4);
}

/* ---------- Bio Modals ---------- */
.bio-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.bio-modal.is-open { display: block; }

.bio-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,11,12,0.82);
  cursor: pointer;
}

.bio-modal__panel {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(680px, 92vw);
  max-height: 85vh;
  overflow-y: auto;
  background: var(--gm-dark);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 2.5rem;
}

.bio-modal__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: var(--gm-soft);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: color var(--transition);
}
.bio-modal__close:hover { color: var(--white); }

.bio-modal__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(200,169,110,0.2);
}

.bio-modal__photo {
  width: 72px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius);
  flex-shrink: 0;
  box-shadow: -3px 4px 12px rgba(15,16,17,0.5);
}

.bio-modal__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--warm-white);
  margin-bottom: 0.2rem;
}

.bio-modal__title {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.bio-modal__body p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(253,250,245,0.9);
  margin-bottom: 1rem;
}
.bio-modal__body p:last-child { margin-bottom: 0; }

/* ---------- Contact ---------- */
.contact {
  background: var(--gm-darkest);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}

.contact-info .section-heading {
  color: var(--warm-white);
  margin-block: 1rem 1.25rem;
}

.contact-info > p {
  color: rgba(245,240,232,0.72);
  line-height: 1.8;
  margin-bottom: 2.75rem;
  font-weight: 300;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-detail__label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
}

.contact-detail__value {
  color: rgba(245,240,232,0.88);
  font-size: 1rem;
  font-weight: 300;
}

.contact-detail__value a {
  color: rgba(245,240,232,0.88);
  transition: color var(--transition);
}

.contact-detail__value a:hover {
  color: var(--gold-light);
}

/* Contact Form */
.contact-form {
  background: var(--gm-mid);
  border: 1px solid rgba(200,169,110,0.1);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.form-group:last-of-type { margin-bottom: 0; }

label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(245,240,232,0.78);
  text-transform: uppercase;
  font-family: var(--font-body);
}

label span { color: var(--gold); }

input, textarea {
  width: 100%;
  background: rgba(15,16,17,0.4);
  border: 1px solid rgba(200,169,110,0.12);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  font-family: var(--font-body);
  font-size: 0.925rem;
  color: var(--warm-white);
  font-weight: 300;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
}

input::placeholder, textarea::placeholder {
  color: rgba(245,240,232,0.38);
}

input:focus, textarea:focus {
  outline: none;
  border-color: rgba(200,169,110,0.5);
  background: rgba(15,16,17,0.6);
}

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

.form-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(245,240,232,0.48);
  text-align: center;
  font-weight: 300;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--gm-darkest);
  border-top: 1px solid rgba(200,169,110,0.08);
  padding-block: 2.75rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand .nav-logo {
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.48);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color var(--transition);
  font-family: var(--font-body);
}

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

.footer-legal {
  text-align: right;
}

.footer-legal p {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.6;
  font-weight: 300;
}

.footer-disclaimer a {
  color: rgba(255,255,255,0.52);
  transition: color var(--transition);
}

.footer-disclaimer a:hover { color: var(--gold); }

/* ---------- Scroll Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

/* ---------- Responsive ---------- */

/* Tablet: ≤1024px */
@media (max-width: 1024px) {
  .section { padding-block: 4.5rem; }

  .section-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .section-split__label { position: static; }

  .service-row {
    grid-template-columns: 40px 1fr auto;
    cursor: pointer;
  }
  .service-row__tag { display: none; }

  /* Disable sticky-hover expansion on touch — only is-open controls visibility */
  .service-row:hover { padding-left: 0; }
  .service-row:hover::before { transform: scaleY(0); }
  .service-row:hover .service-row__title { color: rgba(245,240,232,0.82); }
  .service-row:hover .service-row__desc { max-height: 0; margin-top: 0; opacity: 0; }
  .service-row:hover .service-row__tag { color: rgba(200,169,110,0.68); border-color: rgba(200,169,110,0.32); }

  /* Tap-to-expand open state */
  .service-row.is-open { padding-left: 1.25rem; }
  .service-row.is-open::before { transform: scaleY(1); }
  .service-row.is-open .service-row__title { color: var(--gold-light); }
  .service-row.is-open .service-row__desc {
    max-height: 200px;
    margin-top: 0.6rem;
    opacity: 1;
  }

  /* Industries: remove leftover arrow column */
  .industry-row {
    grid-template-columns: 40px 1fr;
    cursor: pointer;
  }
  .industry-row__tag { display: none; }

  /* Tap-to-expand open state */
  .industry-row.is-open { padding-left: 1.25rem; }
  .industry-row.is-open::before { transform: scaleY(1); }
  .industry-row.is-open .industry-row__title { color: var(--gold-light); }
  .industry-row.is-open .industry-row__desc {
    max-height: 300px;
    margin-top: 0.6rem;
    opacity: 1;
    color: rgba(245,240,232,0.85);
  }

  /* Team roster: single column at tablet */
  .roster-entry { grid-template-columns: 1fr; gap: 1rem; }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* Tablet: disable fixed parallax (iOS doesn't support background-attachment: fixed) */
@media (max-width: 1024px) {
  .parallax-banner {
    background-attachment: scroll;
    height: 35vh;
    min-height: 220px;
  }
}

/* Mobile: ≤768px */
@media (max-width: 768px) {
  .section { padding-block: 3.5rem; }

  /* Nav */
  .nav { padding: 1rem 1.25rem; }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 201;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 85vw);
    background: var(--gm-dark);
    border-left: 1px solid rgba(200,169,110,0.08);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 200;
  }

  .nav-menu.open { transform: translateX(0); }

  .nav-link {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    padding: 0.75rem 1rem;
    width: 100%;
  }

  .nav-link--cta {
    margin-top: 1rem;
    text-align: center;
  }

  /* Hero */
  .hero-content { padding-block: 6rem 3rem; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group .btn { width: 100%; justify-content: center; }

  /* Services */
  .service-row {
    grid-template-columns: 36px 1fr;
    gap: 1rem;
    padding: 1.75rem 0;
  }
  .service-row__tag { display: none; }
  .service-row__title { font-size: 1.3rem; }

  /* Industries */
  .industry-row {
    grid-template-columns: 36px 1fr;
    gap: 1rem;
    padding: 1.75rem 0;
  }
  .industry-row__tag { display: none; }
  .industry-row__title { font-size: 1.3rem; }

  /* Team */
  .roster-entry__name { font-size: 1.6rem; }
  .roster-entry__photo-wrap { max-width: 160px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.85rem; }

  /* Footer */
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-legal { text-align: left; }
}

/* Small Mobile: ≤480px */
@media (max-width: 480px) {
  .story-stats { gap: 1.5rem; }
  .roster-entry { padding: 2rem 0; }
}
