/* =================================================================
   Bench — concept site stylesheet
   Visual posture: warm off-white, deep forest, burnt amber.
   "We are your bench of experts. Pick up the phone."
   ================================================================= */

:root {
  /* Palette */
  --bg: #FAF7F2;
  --bg-2: #F3EFE6;
  --surface-dark: #1B3A2D;
  --surface-darker: #102218;
  --ink: #0F1F1A;
  --body: #3A4842;
  --muted: #7B847F;
  --rule: #D7D2C7;
  --stone: #E7E1D4;
  --amber: #C2762E;
  --amber-hover: #A86319;
  --amber-soft: #F4E4CE;

  /* Type */
  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Scale */
  --container: 1180px;
  --gutter: 24px;
  --radius: 14px;
  --radius-sm: 8px;

  /* Motion */
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--body);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'ss01', 'cv11';
}

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

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

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--bg); padding: 12px 16px;
  z-index: 1000;
}
.skip:focus { left: 12px; top: 12px; }

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

/* ----------------- TYPOGRAPHY ----------------- */

h1, h2, h3, h4 {
  color: var(--ink);
  font-family: var(--font-sans);
  margin: 0;
  letter-spacing: -0.018em;
  line-height: 1.08;
}

em { font-style: italic; font-family: var(--font-serif); font-weight: 500; }

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

/* ----------------- BUTTONS ----------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.005em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .2s var(--ease);
  white-space: nowrap;
}

.btn-lg { padding: 14px 24px; font-size: 16px; }
.btn-xl { padding: 18px 32px; font-size: 17px; }

.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover { background: var(--surface-dark); transform: translateY(-1px); }

.btn-amber {
  background: var(--amber);
  color: #fff;
}
.btn-amber:hover { background: var(--amber-hover); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--rule);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--bg-2); }

.btn-ghost-light {
  background: transparent;
  color: var(--bg);
  border-color: rgba(250, 247, 242, 0.3);
}
.btn-ghost-light:hover { border-color: var(--bg); background: rgba(250, 247, 242, 0.08); }

/* ----------------- HEADER ----------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--rule);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 0;
  min-height: 72px;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.wordmark-dot {
  width: 12px; height: 12px;
  background: var(--amber);
  border-radius: 3px;
  display: inline-block;
  transform: translateY(0px);
}
.wordmark-dot.light { background: var(--amber); }

.wordmark-text { display: inline-block; }
.wordmark-period { color: var(--amber); }

.primary-nav {
  display: flex;
  gap: 30px;
  font-size: 15px;
  font-weight: 500;
  color: var(--body);
}
.primary-nav a { transition: color .15s var(--ease); }
.primary-nav a:hover { color: var(--ink); }

.header-cta { font-size: 14px; padding: 10px 18px; }

@media (max-width: 880px) {
  .primary-nav { display: none; }
}

/* ----------------- HERO ----------------- */

.hero {
  padding: 70px 0 88px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 85% 8%, rgba(194, 118, 46, 0.08), transparent 60%),
    radial-gradient(700px 400px at 5% 90%, rgba(27, 58, 45, 0.06), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--surface-dark);
  margin: 0 0 24px 0;
}

.eyebrow-dash {
  width: 28px; height: 2px;
  background: var(--amber);
  display: inline-block;
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(44px, 6.5vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 24px 0;
  color: var(--ink);
}

.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--surface-dark);
}

.hero-accent {
  color: var(--amber);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}

.hero-sub {
  font-size: 19px;
  line-height: 1.5;
  color: var(--body);
  max-width: 540px;
  margin: 0 0 36px 0;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-meta {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
}

.hero-meta-item .num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 30px;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1;
}

.hero-meta-item .lbl {
  font-size: 13px;
  color: var(--muted);
  max-width: 160px;
  margin-top: 4px;
  line-height: 1.35;
}

.hero-meta-divider {
  width: 1px;
  height: 36px;
  background: var(--rule);
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(15, 31, 26, 0.12));
}

/* ----------------- SECTIONS ----------------- */

.section {
  padding: 96px 0;
  position: relative;
}

.section-head {
  max-width: 760px;
  margin-bottom: 56px;
}

.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber);
  margin: 0 0 14px 0;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(34px, 4.5vw, 54px);
  letter-spacing: -0.02em;
  margin: 0 0 18px 0;
  line-height: 1.05;
}

.section-lede {
  font-size: 19px;
  color: var(--body);
  max-width: 660px;
  margin: 0;
}

/* ----------------- BENCH GRID ----------------- */

.section-bench { background: var(--bg-2); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }

.bench-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width: 980px) {
  .bench-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .bench-grid { grid-template-columns: 1fr; }
}

.operator-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
  position: relative;
}

.operator-card:hover {
  transform: translateY(-3px);
  border-color: var(--surface-dark);
  box-shadow: 0 18px 40px rgba(15, 31, 26, 0.08);
}

.operator-card.featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.operator-card.featured .operator-name,
.operator-card.featured .operator-role { color: var(--bg); }
.operator-card.featured .operator-blurb { color: rgba(250, 247, 242, 0.85); }
.operator-card.featured .operator-credentials { color: var(--amber); border-top-color: rgba(250, 247, 242, 0.15); }

.operator-avatar {
  width: 56px; height: 56px;
  border-radius: 14px;
  overflow: hidden;
}
.operator-avatar svg { width: 100%; height: 100%; }

.operator-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.015em;
  margin: 0 0 4px 0;
  line-height: 1.1;
}

.operator-role {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--surface-dark);
  margin: 0 0 14px 0;
}

.operator-blurb {
  font-size: 15.5px;
  color: var(--body);
  margin: 0 0 18px 0;
  line-height: 1.5;
}

.operator-credentials {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--amber);
  border-top: 1px solid var(--rule);
  padding-top: 14px;
  margin: auto 0 0 0;
}

.operator-card-summary {
  background: linear-gradient(160deg, var(--surface-dark) 0%, var(--surface-darker) 100%);
  color: var(--bg);
  border: none;
  padding: 36px 28px;
  justify-content: space-between;
}

.summary-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--amber);
  margin: 0 0 16px 0;
}

.summary-stat {
  display: flex;
  flex-direction: column;
  margin: 0 0 16px 0;
}
.big-num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 72px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--bg);
}
.big-lbl {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.7);
  margin-top: 6px;
}

.summary-copy {
  font-size: 15px;
  color: rgba(250, 247, 242, 0.78);
  line-height: 1.5;
  margin: 0 0 20px 0;
}

.link-arrow {
  font-size: 14px;
  font-weight: 600;
  color: var(--amber);
  border-bottom: 1px solid var(--amber);
  padding-bottom: 2px;
  transition: color .2s var(--ease), border-color .2s var(--ease);
  align-self: flex-start;
}
.link-arrow:hover { color: #fff; border-color: #fff; }

/* ----------------- HOW WE WORK ----------------- */

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 880px) { .how-grid { grid-template-columns: 1fr; gap: 28px; } }

.how-card {
  padding: 36px 0 0 0;
  border-top: 2px solid var(--ink);
}

.how-num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 14px;
}

.how-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.015em;
  margin: 0 0 14px 0;
  line-height: 1.15;
}

.how-body {
  font-size: 16.5px;
  color: var(--body);
  line-height: 1.55;
  margin: 0;
}
.how-body em { color: var(--surface-dark); }

/* ----------------- SERVICES ----------------- */

.section-services {
  background: var(--bg-2);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--bg);
  overflow: hidden;
}

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

.service-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 28px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  transition: background .2s var(--ease);
}
.service-item:hover { background: var(--bg-2); }
.service-item:nth-child(2n) { border-right: none; }
.service-item:nth-last-child(-n+1) { border-bottom: none; }
@media (max-width: 720px) {
  .service-item { border-right: none; }
  .service-item:nth-last-child(-n+1) { border-bottom: none; }
}

.service-num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 14px;
  color: var(--amber);
  letter-spacing: 0.08em;
  background: var(--amber-soft);
  width: 32px; height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.service-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 4px 0;
}

.service-desc {
  font-size: 15px;
  color: var(--body);
  margin: 0;
  line-height: 1.5;
}

/* ----------------- PROOF ----------------- */

.section-proof {
  background: var(--ink);
  color: var(--bg);
}
.proof-eyebrow { color: var(--amber); }
.proof-title { color: var(--bg); }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 72px;
}
@media (max-width: 880px) { .proof-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .proof-grid { grid-template-columns: 1fr; } }

.proof-stat {
  border-top: 1px solid rgba(250, 247, 242, 0.18);
  padding-top: 20px;
}

.proof-num {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 64px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--amber);
  margin: 0 0 8px 0;
}

.proof-lbl {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.72);
  line-height: 1.5;
  margin: 0;
}

.proof-quote {
  margin: 0;
  max-width: 880px;
  padding: 40px 0 0 0;
  border-top: 2px solid var(--amber);
}

.proof-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--bg);
  margin: 0 0 20px 0;
}

.proof-attr {
  font-size: 14px;
  color: rgba(250, 247, 242, 0.6);
  font-style: normal;
}

/* ----------------- CTA ----------------- */

.section-cta {
  background: var(--surface-dark);
  color: var(--bg);
  padding: 120px 0;
  text-align: center;
}

.cta-inner { max-width: 720px; margin: 0 auto; }

.cta-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(40px, 6vw, 68px);
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 20px 0;
  color: var(--bg);
}

.cta-sub {
  font-size: 19px;
  color: rgba(250, 247, 242, 0.78);
  max-width: 540px;
  margin: 0 auto 40px auto;
}

.cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----------------- FOOTER ----------------- */

.site-footer {
  background: var(--surface-darker);
  color: rgba(250, 247, 242, 0.7);
  padding: 80px 0 32px 0;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(250, 247, 242, 0.1);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }

.footer-brand .wordmark-light .wordmark-text { color: var(--bg); }

.footer-tag {
  margin-top: 16px;
  font-family: var(--font-serif);
  font-style: italic;
  color: rgba(250, 247, 242, 0.55);
  font-size: 15px;
  max-width: 280px;
}

.footer-col { display: flex; flex-direction: column; gap: 10px; }

.footer-h {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--amber);
  margin: 0 0 6px 0;
}

.footer-col a { color: rgba(250, 247, 242, 0.78); transition: color .15s var(--ease); }
.footer-col a:hover { color: var(--bg); }

.footer-addr { margin: 12px 0 0 0; color: rgba(250, 247, 242, 0.55); line-height: 1.5; }

.footer-base {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(250, 247, 242, 0.45);
}
.footer-base em { color: var(--amber); font-style: italic; }

/* ----------------- REVEAL ANIMATION ----------------- */

[data-reveal-item] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
[data-reveal-item].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal-item] { opacity: 1; transform: none; }
}
