:root {
  /* High-Contrast Modernism — deep black, chrome/silver, gold accent */
  --gold: #e9c349;          /* tertiary — accent, used sparingly */
  --gold-bright: #ffe088;   /* accent hover */
  --gold-dim: #8f7200;      /* deep gold */
  --on-gold: #3c2f00;       /* text on gold surfaces */
  --metal: #c6c6c6;         /* chrome/silver — display headings */
  --bg: #131313;            /* surface / background */
  --bg-elev: #1c1b1b;       /* surface-container-low */
  --bg-elev-2: #20201f;     /* surface-container */
  --bg-lowest: #0e0e0e;     /* deepest — footer */
  --border: #4c4546;        /* outline-variant */
  --outline: #988e90;       /* outline */
  --text: #e5e2e1;          /* on-surface */
  --text-dim: #cfc4c5;      /* on-surface-variant */
  --text-muted: #988e90;    /* muted */
  --danger: #ffb4ab;
  --success: #86ac6b;

  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Montserrat', 'Inter', system-ui, -apple-system, sans-serif;

  --max-w: 1440px;
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 16px;
  --s-4: 24px;
  --s-5: 40px;
  --s-6: 64px;
  --s-7: 120px;

  --radius: 0px;
  --radius-lg: 0px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --header-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

img, video { display: block; max-width: 100%; height: auto; }

a { color: var(--gold); text-decoration: none; transition: color 0.2s var(--ease); }
a:hover { color: var(--gold-bright); }

button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--metal);
}
h1, h2 {
  text-transform: uppercase;
  font-weight: 800;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); line-height: 1.04; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); font-weight: 600; letter-spacing: 0; color: var(--text); }
h4 { font-weight: 600; color: var(--text); }

p { color: var(--text-dim); }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s-4);
}

section {
  padding: var(--s-6) 0;
  position: relative;
}

.section-heading {
  text-align: center;
  margin-bottom: var(--s-6);
}
.section-heading .eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s-2);
}
.section-heading h2 { margin-bottom: var(--s-3); }
.section-heading p { max-width: 680px; margin: 0 auto; }

/* Label-caps eyebrow / kicker */
.eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Left-aligned, asymmetric section lead (replaces the centered heading vocabulary) */
.section-lead {
  max-width: 620px;
  margin-bottom: var(--s-6);
}
.section-lead .eyebrow { margin-bottom: var(--s-3); }
.section-lead h2 { margin-bottom: var(--s-3); }
.section-lead p { font-size: 1.05rem; }

/* Reveal on scroll — only engaged when JS is present, so no-JS renders fully */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--i, 0) * 90ms);
  will-change: opacity, transform;
}
.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 16px 34px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.25s var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--on-gold);
}
.btn-primary:hover {
  background: var(--gold-bright);
  color: var(--on-gold);
  box-shadow: 0 0 24px rgba(233, 195, 73, 0.25);
}
.btn-outline {
  background: transparent;
  color: var(--metal);
  border-color: var(--metal);
}
.btn-outline:hover {
  background: var(--metal);
  color: var(--bg);
  border-color: var(--metal);
}

/* Header / Nav — glass bar */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(19, 19, 19, 0.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(152, 142, 144, 0.18);
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(14, 14, 14, 0.9);
  border-bottom-color: var(--border);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: var(--s-2);
}
.brand img {
    height: auto;
    width: 387px;
    filter: brightness(1.15);
    min-width: 380px;
}

.nav-links {
  display: none;
  list-style: none;
  gap: var(--s-5);
}
.nav-links a {
  color: var(--text-dim);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  display: none;
  align-items: center;
  gap: var(--s-4);
}
.nav-phone {
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.nav-phone:hover { color: var(--gold); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 6px;
  z-index: 110;
  margin-left: 20px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: all 0.3s var(--ease);
  transform-origin: center;
}
body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: rgba(14, 14, 14, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 105;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s;
}
body.nav-open .mobile-nav {
  opacity: 1;
  visibility: visible;
}
.mobile-nav ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.mobile-nav a {
  font-family: var(--font-display);
  color: var(--text);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--gold); }
.mobile-nav .phone {
  margin-top: var(--s-5);
  font-size: 1.125rem;
  color: var(--gold);
}

/* Hero — cinematic video, left-framed */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(19, 19, 19, 0.94) 0%, rgba(19, 19, 19, 0.6) 42%, rgba(19, 19, 19, 0.15) 100%),
    linear-gradient(180deg, rgba(19, 19, 19, 0) 55%, rgba(19, 19, 19, 0.9) 100%);
  z-index: -1;
}
.hero-content {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s-4);
  text-align: left;
}
.hero .eyebrow {
  letter-spacing: 0.3em;
  margin-bottom: var(--s-4);
  color: var(--gold);
}
.hero h1 {
  max-width: 16ch;
  margin-bottom: var(--s-5);
  color: var(--metal);
}
.hero h1 .hero-accent { color: var(--text); }
.hero p {
  font-size: 1.125rem;
  color: var(--text-dim);
  max-width: 44ch;
  margin: 0 0 var(--s-6);
}
.hero-actions {
  display: flex;
  gap: var(--s-4);
  justify-content: flex-start;
  flex-wrap: wrap;
}
.hero-scroll {
  position: absolute;
  bottom: var(--s-5);
  right: var(--s-5);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(10px); }
}
@media (max-width: 768px) {
  .hero-scroll { display: none; }
  .hero h1 { max-width: 100%; }
  .brand img {
    height: auto;
    width: 100%;
    filter: brightness(1.15);
    max-width: 348px;
    min-width: unset;
}
}

/* Story — combined About + Services + Why Us, one flowing section */
.story { background: var(--bg); }
.story-rule {
  border: 0;
  border-top: 1px solid transparent;
  margin: var(--s-6) 0;
}
.movement-head {
  max-width: 620px;
  margin-bottom: var(--s-5);
}
.movement-head .eyebrow { margin-bottom: var(--s-3); }
.movement-head p { font-size: 1.05rem; }
.movement-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: var(--s-3);
}

/* About movement — banner on top, then who-we-are in two columns */
.about-image {
  margin-bottom: var(--s-6);
}
.about-image img {
  display: block;
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 0 auto;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
.about-intro .eyebrow { margin-bottom: var(--s-3); }
.about-intro p { max-width: 60ch; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-4);
}
@media (min-width: 768px) {
  .about-content { grid-template-columns: 1.25fr 1fr; gap: var(--s-6); align-items: center; }
}
.about-stat .num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-stat .label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--s-1);
  display: block;
}

/* Services — desktop: hover a heading, its image + caption previews on the right; mobile: stacked */
.services {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
.service-head {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--s-3);
  align-items: center;
  margin-bottom: var(--s-4);
}
.service-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 0.9;
  color: var(--gold);
}
.service-head h3 { margin: 0; }
.service-media { margin: 0; }
.service-media img {
  display: block;
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
}
.service-media figcaption {
  margin-top: 0;
  color: var(--text-dim);
  font-size: 0.95rem;
  max-width: 52ch;
}
@media (min-width: 768px) {
  /* left column = intro + headings, right column = image panel anchored to the top */
  #whatwedo { position: relative; min-height: 520px; }
  #whatwedo .movement-head { max-width: 46%; }
  .services { display: block; }
  .service-head {
    width: 46%;
    max-width: 460px;
    margin: 0;
    padding: var(--s-4) 0;
    cursor: default;
  }
  .service-head h3 {
    color: var(--text-muted);
    transition: color 0.3s var(--ease);
  }
  .service-num {
    opacity: 0.4;
    transition: opacity 0.3s var(--ease);
  }
  .service.is-active .service-head h3 { color: var(--metal); }
  .service.is-active .service-num { opacity: 1; }
  .service-media {
    position: absolute;
    top: 0;
    right: 0;
    width: 46%;
    max-width: 540px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.45s var(--ease);
  }
  .service.is-active .service-media { opacity: 1; }
  .service-media figcaption { max-width: none; }
}

/* The Difference — pull-quote + asymmetric ledger */
.lead-quote {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -0.015em;
  color: var(--text);
  max-width: 18ch;
  margin: 0 0 var(--s-6);
}
.lead-quote em {
  font-style: italic;
  color: var(--gold);
}
.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
.diff-item h3 {
  font-size: 1.1rem;
  margin-bottom: var(--s-2);
  display: flex;
  gap: var(--s-2);
  align-items: baseline;
}
.diff-item .tick { color: var(--gold); flex-shrink: 0; }
.diff-item p { font-size: 0.95rem; color: var(--text-dim); }
@media (min-width: 700px) {
  .diff-grid { grid-template-columns: 1fr 1fr; gap: var(--s-5) var(--s-6); }
}
@media (min-width: 1024px) {
  .diff-grid { grid-template-columns: repeat(3, 1fr); }
}

/* No-catch explainer */
.nocatch .eyebrow { margin-bottom: var(--s-3); }
.nocatch > h2 { margin-bottom: var(--s-3); }
.nocatch-lead {
  font-size: 1.15rem;
  color: var(--text);
  max-width: 60ch;
  margin-bottom: var(--s-6);
}
.nocatch-points {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
.nocatch-point { border-top: 2px solid var(--gold); padding-top: var(--s-3); }
.nocatch-k {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--s-2);
}
.nocatch-point p { font-size: 0.95rem; color: var(--text-dim); }
@media (min-width: 768px) {
  .nocatch-points { grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
}

/* Process — 3 steps */
.process { background: var(--bg-elev); }
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
}
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: var(--s-3);
}
.step h3 { margin-bottom: var(--s-2); }
.step p { color: var(--text-dim); font-size: 0.98rem; max-width: 42ch; }
.step a { color: var(--gold); }
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); gap: var(--s-6); }
}

/* Trust bar */
.trustbar { background: var(--bg); padding: var(--s-6) 0; }
.trust-items {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  text-align: center;
}
.trust-item { display: flex; flex-direction: column; align-items: center; gap: var(--s-1); }
.trust-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.trust-label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.trust-label a { color: var(--text-muted); }
.trust-label a:hover { color: var(--gold); }
@media (min-width: 768px) {
  .trust-items { grid-template-columns: repeat(4, 1fr); gap: var(--s-4); }
}

/* Hours badge on office card */
.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  align-self: flex-start;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 6px 12px;
  margin-bottom: var(--s-2);
}
.hours-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 8px var(--success);
}

/* Footer reviews link */
.footer-reviews { list-style: none; margin-top: var(--s-3); }
.footer-reviews a { color: var(--text-dim); font-size: 0.9rem; }
.footer-reviews a:hover { color: var(--gold); }

/* Specials */
.specials { background: var(--bg-elev); }
.specials-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  align-items: center;
}
.specials-banner-media img {
  display: block;
  width: 100%;
  max-width: 640px;
  height: auto;
  margin: 0 auto;
}
.specials-banner-body .eyebrow { margin-bottom: var(--s-3); }
.specials-banner-body h2 { margin-bottom: var(--s-3); }
.specials-banner-body p { max-width: 52ch; margin-bottom: var(--s-5); }
.specials-actions {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-bottom: var(--s-4);
}
.specials-phone {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.specials-phone:hover { color: var(--gold-bright); }
@media (min-width: 768px) {
  .specials-banner { grid-template-columns: 1.05fr 0.95fr; gap: var(--s-7); }
  .specials-banner-body { order: 2; }
  .specials-banner-media { order: 1; }
}

/* Carousel (shared) */
.carousel {
  position: relative;
}
.carousel-viewport {
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.5s var(--ease);
  gap: var(--s-4);
}
.carousel-slide {
  flex: 0 0 100%;
  min-width: 0;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-4);
  margin-top: var(--s-5);
}
.carousel-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
}
.carousel-arrow:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.carousel-arrow svg { width: 16px; height: 16px; }
.carousel-dots {
  display: flex;
  gap: var(--s-2);
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: all 0.2s var(--ease);
}
.carousel-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}


/* Testimonials — single editorial pull-quote */
.testimonials { background: var(--bg); }
.testimonials .carousel-slide { flex: 0 0 100%; }
.testimonial-card {
  padding: var(--s-5) 0 0;
  border-top: 2px solid var(--gold);
  height: 100%;
}
@media (min-width: 768px) {
  .testimonial-card {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    grid-template-rows: auto auto;
    column-gap: var(--s-7);
    align-items: start;
  }
  .testimonial-stars-img { grid-column: 1; grid-row: 1; }
  .testimonial-quote { grid-column: 1; grid-row: 2; margin-bottom: 0; }
  .testimonial-author { grid-column: 2; grid-row: 1 / 3; align-self: center; }
}
.testimonial-stars-img {
  display: block;
  width: 110px;
  height: auto;
  margin-bottom: var(--s-4);
}
.testimonial-quote {
  font-family: var(--font);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  color: var(--text);
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: var(--s-5);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}
.testimonial-avatar-img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.testimonial-name {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.testimonial-role {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Contact */
.contact { background: var(--bg-elev); }

/* Prominent main-office card */
.office-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: var(--s-5);
}
.office-main { display: flex; flex-direction: column; gap: var(--s-3); }
.office-main .eyebrow { margin-bottom: var(--s-1); }
.office-main h3 { font-size: clamp(1.6rem, 2.8vw, 2.15rem); }
.office-main > p { max-width: 46ch; }
.office-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3) var(--s-4);
  margin: var(--s-2) 0;
  padding-top: var(--s-3);
  border-top: 1px solid var(--border);
}
.office-details > div { display: flex; flex-direction: column; gap: 3px; }
.office-details dt {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
.office-details dd { color: var(--text); font-size: 0.95rem; line-height: 1.4; }
.office-details a { color: var(--text); overflow-wrap: anywhere; }
.office-details a:hover { color: var(--gold); }
.office-actions { display: flex; gap: var(--s-3); flex-wrap: wrap; margin-top: var(--s-2); }
.office-map {
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 260px;
}
.office-map iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  filter: grayscale(0.5) sepia(0.25) contrast(1.05);
}

/* Team of managers */
.team-head { margin: 0 0 var(--s-4); }
.team-head .eyebrow { display: block; margin-bottom: var(--s-2); }
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
.person-card {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  background: var(--bg-elev-2);
  border: 1px solid var(--border);
  padding: var(--s-4);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.person-card:hover { border-color: var(--gold); box-shadow: 0 0 24px rgba(233, 195, 73, 0.1); }
.person-avatar {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
}
.person-id { display: flex; flex-direction: column; gap: 4px; }
.person-name { font-size: 1.15rem; font-weight: 600; }
.person-role {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-transform: uppercase;
}
.person-contact {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-top: auto;
  padding-top: var(--s-3);
  border-top: 1px solid var(--border);
}
.person-contact > div { display: flex; flex-direction: column; gap: 2px; }
.person-contact dt {
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.person-contact dd { font-size: 0.9rem; }
.person-contact a { color: var(--text); overflow-wrap: anywhere; }
.person-contact a:hover { color: var(--gold); }

/* Team + inquiry — two columns (team 2x2 left, form right) */
.contact-bottom {
  margin-top: var(--s-7);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
}
.contact-form-block .form-card { max-width: 100%; }

@media (min-width: 640px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 768px) {
  .office-card { grid-template-columns: 1.05fr 0.95fr; padding: var(--s-6); gap: var(--s-6); }
}
@media (min-width: 1024px) {
  .contact-bottom { grid-template-columns: 1fr 1fr; gap: var(--s-6); align-items: stretch; }
  /* stretch the form column to match the team column; the message box fills the slack */
  .contact-form-block { display: flex; flex-direction: column; }
  .contact-form-block > div:not(.team-head) { flex: 1; display: flex; }
  .contact-form-block .form-card { flex: 1; display: flex; flex-direction: column; }
  .contact-form-block .form-card .form-row:not(.two) { flex: 1; }
  .contact-form-block .form-card .form-row:not(.two) .form-field { height: 100%; }
  .contact-form-block .form-card textarea { flex: 1; }
}
@media (max-width: 460px) {
  .office-details { grid-template-columns: 1fr; }
}

/* Forms */
.form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s-5);
}
/* Honeypot: off-screen (not display:none, so bots still fill it) */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
  margin-bottom: var(--s-3);
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-family: var(--font);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 600;
}
.form-field label .req { color: var(--gold); }
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--bg-lowest);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 14px;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
  width: 100%;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}
.form-field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}
.form-checkbox {
  display: flex;
  gap: var(--s-2);
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-dim);
  cursor: pointer;
}
.form-checkbox input { margin-top: 3px; accent-color: var(--gold); }
.form-disclaimer {
  margin-top: var(--s-4);
  padding: var(--s-3) var(--s-4);
  border: 1px solid var(--border);
  background: var(--bg-lowest);
  max-height: 160px;
  overflow-y: auto;
}
.form-disclaimer p {
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}
.form-actions {
  margin-top: var(--s-4);
  display: flex;
  gap: var(--s-3);
  align-items: center;
  flex-wrap: wrap;
}
.form-status {
  font-size: 0.875rem;
  color: var(--text-dim);
}
.form-status.success { color: var(--success); }
.form-status.error { color: var(--danger); }

/* Application page */
.app-page { padding-top: calc(var(--header-h) + var(--s-5)); }
.app-hero {
  padding: var(--s-6) 0 var(--s-5);
  border-bottom: 1px solid var(--border);
}
.app-hero .container { max-width: 880px; }
.app-hero .eyebrow { margin-bottom: var(--s-3); }
.app-hero h1 { max-width: 16ch; }
.app-hero p { max-width: 580px; margin-top: var(--s-3); }
.mode-toggle {
  display: inline-flex;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px;
  margin: var(--s-5) 0 0;
  position: relative;
}
.mode-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.mode-toggle label {
  padding: 10px 24px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: all 0.2s var(--ease);
  letter-spacing: 0.05em;
}
.mode-toggle input:checked + label {
  background: var(--gold);
  color: var(--on-gold);
}

.app-form { padding-top: var(--s-6); padding-bottom: var(--s-7); }

fieldset {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s-5);
  margin-bottom: var(--s-4);
}
fieldset[hidden] { display: none; }
legend {
  padding: 0 var(--s-3);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
fieldset h3 { margin-bottom: var(--s-3); font-size: 1.125rem; }

.collapsible-trigger {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-dim);
  padding: var(--s-2) 0;
  user-select: none;
}
.collapsible-trigger:hover { color: var(--gold); }
.collapsible-trigger input { accent-color: var(--gold); }
.collapsible-body { display: none; margin-top: var(--s-3); }
.collapsible-body.open { display: block; }

/* Terms */
.terms-page { padding-top: calc(var(--header-h) + var(--s-5)); padding-bottom: var(--s-7); }
.terms-page .container { max-width: 780px; }
.terms-page .eyebrow { margin-bottom: var(--s-2); }
.terms-page h1 { margin-bottom: var(--s-6); }
.terms-page h2 {
  margin: var(--s-6) 0 var(--s-3);
  padding-top: var(--s-4);
  border-top: 1px solid var(--border);
  font-size: 1.6rem;
}
.terms-page p { margin-bottom: var(--s-3); color: var(--text-dim); }
.terms-page p strong { color: var(--text); }
.terms-page ul { margin: 0 0 var(--s-3) var(--s-4); color: var(--text-dim); }
.terms-page li { margin-bottom: var(--s-2); }
.terms-page li strong { color: var(--text); }

/* Toast */
.toast {
  position: fixed;
  bottom: var(--s-4);
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  color: var(--text);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  z-index: 200;
  font-size: 0.9rem;
  max-width: 90%;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease), visibility 0.3s;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.toast.success { border-color: var(--success); }
.toast.error { border-color: var(--danger); }

/* Footer */
.site-footer {
  background: var(--bg-lowest);
  border-top: 1px solid var(--border);
  padding: var(--s-7) 0 var(--s-5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-5);
  margin-bottom: var(--s-5);
}
.footer-brand img { height: 32px; margin-bottom: var(--s-3); }
.footer-brand p { font-size: 0.9rem; max-width: 320px; }
.footer-col h4 {
  font-family: var(--font);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: var(--s-4);
  font-weight: 600;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: var(--s-2); }
.footer-col a { color: var(--text-dim); font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold); }
.footer-social { display: flex; gap: var(--s-3); }
.footer-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease);
}
.footer-social a:hover { border-color: var(--gold); }
.footer-social img { width: 16px; height: 16px; opacity: 0.8; }
.footer-bottom {
  padding-top: var(--s-4);
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--gold); }

/* Breakpoints */
@media (min-width: 640px) {
  .form-row.two { grid-template-columns: 1fr 1fr; }
  .form-row.three { grid-template-columns: 1fr 1fr 1fr; }
}

@media (min-width: 768px) {
  .container { padding: 0 var(--s-6); }
  .hero-content { padding-left: var(--s-6); padding-right: var(--s-6); }
  section { padding: var(--s-7) 0; }

  .nav-links { display: flex; }
  .nav-cta { display: flex; }
  .nav-toggle { display: none; }
  .site-header nav { margin-left: auto; margin-right: auto; }

  .carousel-slide { flex: 0 0 calc((100% - var(--s-4)) / 2); }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; text-align: left; }
}

@media (min-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(4, 1fr); }
  .carousel-slide { flex: 0 0 calc((100% - var(--s-4) * 2) / 3); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero-scroll { animation: none; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Premium scrollbar + selection */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }
::selection { background: var(--gold); color: var(--on-gold); }
