:root {
  --ink: #101619;
  --muted: #5f6c70;
  --paper: #f3f0e8;
  --teal: #0b625d;
  --teal-dark: #073d3a;
  --signal: #c25932;
  --line: rgba(16, 22, 25, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }

.skip-link {
  background: var(--ink);
  color: white;
  left: 12px;
  padding: 10px 14px;
  position: fixed;
  top: -60px;
  z-index: 100;
}
.skip-link:focus { top: 12px; }

.site-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  left: 0;
  margin: 0 auto;
  max-width: 1440px;
  padding: 24px 54px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}
.brand { align-items: center; display: inline-flex; gap: 10px; }
.brand-mark {
  background-blend-mode: multiply;
  background-color: var(--paper);
  background-image: url("/brcs-company-logo.png");
  background-position: -38px -24px;
  background-repeat: no-repeat;
  background-size: 122px 122px;
  border-radius: 50%;
  height: 46px;
  overflow: hidden;
  position: relative;
  width: 46px;
}
.brand-name { display: flex; flex-direction: column; gap: 2px; line-height: 1; text-transform: uppercase; }
.brand-name strong { font-size: .86rem; font-weight: 800; letter-spacing: .23em; }
.brand-name span { font-size: .54rem; font-weight: 600; letter-spacing: .2em; }
nav { align-items: center; display: flex; font-size: .82rem; font-weight: 600; gap: 30px; letter-spacing: .04em; }
nav a { transition: color 180ms ease; }
nav a:hover, nav a:focus-visible { color: var(--teal); }
.nav-contact { border: 1px solid var(--ink); padding: 10px 17px; }

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 790px;
  overflow: hidden;
  padding: 150px max(7vw, 54px) 78px;
  position: relative;
}
.hero::after {
  background: linear-gradient(90deg, rgba(16,22,25,.08) 1px, transparent 1px), linear-gradient(rgba(16,22,25,.08) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  inset: 0 0 0 60%;
  mask-image: linear-gradient(to right, transparent, black 30%);
  opacity: .32;
  pointer-events: none;
  position: absolute;
}
.eyebrow, .section-kicker {
  align-items: center;
  color: var(--teal);
  display: flex;
  font-size: .73rem;
  font-weight: 800;
  gap: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow span { background: var(--signal); height: 2px; width: 32px; }
.hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 7vw, 7.35rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .94;
  margin: 33px 0 28px;
  max-width: min(760px, 62vw);
  position: relative;
  z-index: 2;
}
.hero h1 em { color: var(--teal); font-weight: 400; }
.hero-copy { color: var(--muted); font-size: 1.12rem; line-height: 1.75; margin: 0; max-width: 650px; position: relative; z-index: 2; }
.hero-actions { align-items: center; display: flex; gap: 30px; margin-top: 38px; position: relative; z-index: 2; }
.button-primary {
  background: var(--teal);
  color: white;
  display: inline-block;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .05em;
  padding: 16px 21px;
  transition: background 180ms ease, transform 180ms ease;
}
.button-primary:hover, .button-primary:focus-visible { background: var(--teal-dark); transform: translateY(-2px); }
.text-link { border-bottom: 1px solid var(--line); font-size: .84rem; font-weight: 700; padding-bottom: 5px; }
.text-link span { color: var(--signal); margin-left: 5px; }
.development-note { bottom: 38px; color: var(--muted); font-size: .69rem; left: max(7vw, 54px); letter-spacing: .1em; margin: 0; position: absolute; text-transform: uppercase; }
.hero-visual { height: min(50vw, 680px); position: absolute; right: -3vw; top: 50%; transform: translateY(-48%); width: min(50vw, 680px); z-index: 1; }
.hero-visual img { height: 100%; mix-blend-mode: multiply; object-fit: contain; position: relative; width: 100%; z-index: 2; }
.orbit { border: 1px solid rgba(11,98,93,.19); border-radius: 50%; inset: 2%; position: absolute; }
.orbit-two { border-color: rgba(194,89,50,.22); inset: 18%; }

.section-shell { margin: 0 auto; max-width: 1440px; padding: 118px max(7vw, 54px); }
.mission { border-top: 1px solid var(--line); }
.mission-grid { display: grid; gap: 9vw; grid-template-columns: 1.15fr .85fr; margin-top: 28px; }
.mission h2, .section-heading h2, .contact h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.04;
  margin: 0;
}
.mission-copy { color: var(--muted); font-size: 1rem; line-height: 1.85; padding-top: 10px; }
.mission-copy p:first-child { margin-top: 0; }

.focus { background: #e9e4d8; max-width: none; }
.focus > * { margin-left: auto; margin-right: auto; max-width: 1240px; }
.section-heading { align-items: end; display: flex; justify-content: space-between; }
.section-heading h2 { font-size: clamp(2.7rem, 4vw, 4.3rem); margin-top: 20px; }
.section-heading > p { color: var(--muted); line-height: 1.65; margin: 0; max-width: 360px; }
.focus-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 65px; }
.focus-card { border-left: 1px solid var(--line); min-height: 310px; padding: 0 28px 10px; }
.focus-card:last-child { border-right: 1px solid var(--line); }
.card-number { color: var(--signal); font-family: Georgia, "Times New Roman", serif; font-size: .85rem; }
.focus-card h3 { font-family: Georgia, "Times New Roman", serif; font-size: 1.7rem; font-weight: 400; margin: 88px 0 17px; }
.focus-card p { color: var(--muted); font-size: .9rem; line-height: 1.7; margin: 0; }

.stage { padding-bottom: 0; padding-top: 0; }
.stage-panel { background: var(--teal-dark); color: white; display: grid; gap: 10vw; grid-template-columns: .9fr 1.1fr; padding: 90px max(6vw, 62px); }
.section-kicker.light { color: #d6a080; }
.stage h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.6rem, 4vw, 4.3rem); font-weight: 400; letter-spacing: -.04em; line-height: 1.04; margin: 22px 0 27px; }
.stage-intro p { color: rgba(255,255,255,.7); line-height: 1.75; margin: 0; }
.stage-list { list-style: none; margin: 0; padding: 0; }
.stage-list li { align-items: center; border-top: 1px solid rgba(255,255,255,.18); display: grid; font-family: Georgia, "Times New Roman", serif; font-size: 1.12rem; gap: 24px; grid-template-columns: 34px 1fr; line-height: 1.4; padding: 23px 0; }
.stage-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.18); }
.stage-list span { color: #d6a080; font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif; font-size: .7rem; font-weight: 800; }

.contact { display: grid; gap: 9vw; grid-template-columns: 1.25fr .75fr; }
.contact h2 { font-size: clamp(2.5rem, 4vw, 4.2rem); margin-top: 22px; }
.contact-copy { color: var(--muted); line-height: 1.75; padding-top: 30px; }
.contact-copy .button-primary { margin-top: 18px; }
.button-primary.dark { background: var(--ink); }
.button-primary.dark:hover, .button-primary.dark:focus-visible { background: var(--teal); }

footer { background: var(--ink); color: white; display: grid; gap: 22px; grid-template-columns: 1fr 1fr; padding: 58px max(7vw, 54px) 32px; }
.footer-brand { font-size: .86rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
footer > p { color: rgba(255,255,255,.58); font-size: .86rem; margin: 0; text-align: right; }
.footer-meta { border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.45); display: flex; font-size: .7rem; grid-column: 1 / -1; justify-content: space-between; letter-spacing: .06em; padding-top: 24px; text-transform: uppercase; }
.footer-meta a { color: rgba(255,255,255,.8); }

@media (max-width: 960px) {
  .site-header { padding: 22px 28px; }
  nav a:not(.nav-contact) { display: none; }
  .hero { min-height: 760px; padding-left: 28px; padding-right: 28px; }
  .hero h1, .hero-copy { max-width: 72%; }
  .hero-visual { opacity: .55; right: -23vw; }
  .development-note { left: 28px; }
  .section-shell { padding: 90px 28px; }
  .mission-grid, .contact { gap: 55px; grid-template-columns: 1fr; }
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .focus-card:nth-child(3), .focus-card:last-child { border-top: 1px solid var(--line); padding-top: 28px; }
  .focus-card:last-child { border-right: 0; }
  .stage-panel { gap: 60px; grid-template-columns: 1fr; padding: 70px 48px; }
}

@media (max-width: 640px) {
  .brand-mark { background-position: -35px -22px; background-size: 112px 112px; height: 42px; width: 42px; }
  .brand-name strong { font-size: .76rem; }
  .brand-name span { font-size: .48rem; letter-spacing: .16em; }
  .nav-contact { padding: 9px 13px; }
  .hero { justify-content: flex-start; min-height: 850px; padding-top: 145px; }
  .hero h1 { font-size: clamp(3.4rem, 17vw, 4.8rem); max-width: none; }
  .hero-copy { max-width: none; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-visual { bottom: 24px; height: 330px; opacity: .28; right: -145px; top: auto; transform: none; width: 330px; }
  .development-note { bottom: 25px; font-size: .58rem; max-width: 65%; }
  .section-heading { align-items: start; flex-direction: column; gap: 32px; }
  .focus-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .focus-card, .focus-card:nth-child(3), .focus-card:last-child { border-bottom: 0; border-left: 1px solid var(--line); border-right: 0; border-top: 1px solid var(--line); min-height: 230px; padding: 25px 24px; }
  .focus-card h3 { margin-top: 45px; }
  .stage { padding-left: 0; padding-right: 0; }
  .stage-panel { padding: 64px 28px; }
  .contact-copy { padding-top: 0; }
  .contact-copy .button-primary { font-size: .72rem; max-width: 100%; overflow-wrap: anywhere; }
  footer { grid-template-columns: 1fr; padding-left: 28px; padding-right: 28px; }
  footer > p { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
