:root {
  --ink: #17212b;
  --ink-soft: #4e5a64;
  --paper: #f5f3ee;
  --paper-bright: #fbfaf7;
  --navy: #0f1a24;
  --navy-2: #162633;
  --line: #d9d7d0;
  --accent: #9b8c69;
  --accent-soft: #c8bea5;
  --white: #ffffff;
  --max: 1180px;
  --radius: 3px;
  --shadow: 0 24px 60px rgba(15, 26, 36, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-bright);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

img,
svg {
  max-width: 100%;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 40px), 880px);
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  text-decoration: none;
  border: 1px solid var(--line);
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(217, 215, 208, 0.75);
}

.site-header.compact {
  position: relative;
}

.nav-wrap {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  min-width: 260px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
}

.brand-mark svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  letter-spacing: 0.22em;
  font-size: 0.96rem;
}

.brand-text span {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.72rem;
  letter-spacing: 0.045em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a,
.footer-links a {
  text-decoration: none;
}

.site-nav a {
  font-size: 0.92rem;
  color: #35414b;
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--accent);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--white) !important;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  margin: 5px 0;
}

.hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(to right, rgba(23, 33, 43, 0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(23, 33, 43, 0.035) 1px, transparent 1px),
    var(--paper-bright);
  background-size: 64px 64px;
}

.hero-grid {
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 70px;
  padding: 90px 0 95px;
}

.eyebrow,
.statement-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.statement h2,
.contact-section h2,
.privacy-title h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3.8rem, 7vw, 7rem);
  line-height: 0.94;
}

.hero h1 span {
  color: var(--accent);
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: 1.23rem;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.91rem;
  letter-spacing: 0.02em;
  transition: 160ms ease;
}

.button-primary {
  background: var(--navy);
  color: var(--white);
}

.button-primary:hover {
  background: var(--accent);
}

.button-light {
  border-color: rgba(255,255,255,0.58);
  color: var(--white);
}

.button-light:hover {
  background: var(--white);
  color: var(--navy);
}

.text-link {
  text-decoration: none;
  font-weight: 700;
}

.text-link span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.hero-visual {
  position: relative;
  width: min(100%, 510px);
  aspect-ratio: 1;
  justify-self: end;
}

.orbit {
  position: absolute;
  inset: 50%;
  border: 1px solid rgba(155, 140, 105, 0.55);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit::before,
.orbit::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--accent);
  border-radius: 50%;
}

.orbit-a {
  width: 78%;
  height: 78%;
}

.orbit-a::before {
  top: 8%;
  left: 20%;
}

.orbit-a::after {
  bottom: 16%;
  right: 7%;
}

.orbit-b {
  width: 56%;
  height: 56%;
}

.orbit-b::before {
  right: 0;
  top: 48%;
}

.orbit-b::after {
  left: 13%;
  bottom: 11%;
}

.orbit-c {
  width: 34%;
  height: 34%;
  border-color: rgba(23, 33, 43, 0.2);
}

.visual-core {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 158px;
  height: 158px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.8;
  box-shadow: var(--shadow);
}

.visual-core span {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
}

.visual-tag {
  position: absolute;
  padding: 8px 11px;
  background: rgba(251, 250, 247, 0.94);
  border: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--ink-soft);
  box-shadow: 0 12px 30px rgba(15,26,36,0.06);
}

.tag-one {
  top: 11%;
  right: 4%;
}

.tag-two {
  left: 0;
  top: 48%;
}

.tag-three {
  bottom: 9%;
  right: 15%;
}

.statement {
  padding: 110px 0;
  background: var(--paper);
  text-align: center;
}

.statement h2 {
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.08;
}

.statement p:last-child {
  max-width: 760px;
  margin: 30px auto 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.section {
  padding: 120px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 62px;
}

.section-heading h2,
.approach-intro h2,
.about-panel h2 {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  line-height: 1.05;
}

.section-heading > p,
.approach-intro > p {
  margin: 0 0 3px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-card {
  min-height: 295px;
  padding: 28px 28px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.28);
}

.service-card:hover {
  background: var(--paper);
}

.card-number {
  display: block;
  margin-bottom: 58px;
  color: var(--accent);
  font-size: 0.76rem;
  letter-spacing: 0.15em;
}

.service-card h3,
.industry-row h3,
.principle h3 {
  margin: 0 0 13px;
  font-size: 1.25rem;
}

.service-card p,
.industry-row p,
.principle p {
  margin: 0;
  color: var(--ink-soft);
}

.section-dark {
  background: var(--navy);
  color: var(--white);
}

.section-heading.light > p,
.section-dark .industry-row p {
  color: rgba(255,255,255,0.68);
}

.industry-list {
  border-top: 1px solid rgba(255,255,255,0.18);
}

.industry-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  padding: 31px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.industry-row > span {
  color: var(--accent-soft);
  font-size: 0.76rem;
  letter-spacing: 0.15em;
}

.industry-row h3 {
  color: var(--white);
}

.industry-row p {
  max-width: 760px;
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
  align-items: start;
}

.approach-intro {
  position: sticky;
  top: 130px;
}

.principles {
  border-top: 1px solid var(--line);
}

.principle {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.principle > span {
  color: var(--accent);
  font-size: 0.76rem;
  letter-spacing: 0.15em;
}

.about-section {
  background: var(--paper);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}

.about-panel {
  min-height: 480px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 78% 20%, rgba(155,140,105,0.3), transparent 24%),
    linear-gradient(145deg, #13222f, #0f1a24);
  color: var(--white);
}

.about-panel::after {
  content: "W";
  align-self: flex-end;
  color: rgba(255,255,255,0.06);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13rem;
  line-height: 0.6;
}

.about-copy {
  align-self: center;
}

.about-copy p {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.about-copy .about-lead {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  line-height: 1.4;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.about-values span {
  font-weight: 800;
}

.about-values p {
  margin: 8px 0 0;
  font-size: 0.9rem;
}

.contact-section {
  padding: 110px 0;
  background: var(--accent);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 90px;
  align-items: center;
}

.contact-section .eyebrow {
  color: rgba(255,255,255,0.78);
}

.contact-section h2 {
  max-width: 720px;
  font-size: clamp(2.8rem, 5.6vw, 5.3rem);
  line-height: 1.02;
}

.contact-card p {
  margin-top: 0;
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 28px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.78);
}

.site-footer {
  padding: 34px 0;
  background: #0b131a;
  color: rgba(255,255,255,0.72);
  font-size: 0.84rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 32px;
  align-items: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.footer-brand strong {
  color: var(--white);
  letter-spacing: 0.18em;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.site-footer p {
  margin: 0;
}

.privacy-main {
  min-height: 70vh;
  padding: 95px 0 120px;
}

.privacy-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}

.privacy-title {
  position: sticky;
  top: 50px;
  align-self: start;
}

.privacy-title h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.98;
}

.privacy-title > p:last-child {
  color: var(--ink-soft);
}

.privacy-copy section {
  padding: 0 0 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.privacy-copy h2 {
  margin-top: 0;
  font-size: 1.22rem;
}

.privacy-copy p {
  color: var(--ink-soft);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 980px) {
  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 20px 24px;
    background: var(--paper-bright);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .site-nav .nav-cta {
    margin-top: 8px;
  }

  .hero-grid,
  .section-heading,
  .approach-grid,
  .about-grid,
  .contact-grid,
  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 50px;
    padding-top: 70px;
  }

  .hero-visual {
    justify-self: center;
    width: min(100%, 440px);
  }

  .section-heading {
    gap: 22px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-grid {
    gap: 50px;
  }

  .approach-intro,
  .privacy-title {
    position: static;
  }

  .about-grid {
    gap: 50px;
  }

  .about-panel {
    min-height: 390px;
  }

  .contact-grid {
    gap: 40px;
  }

  .privacy-layout {
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 660px) {
  .container,
  .narrow {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav-wrap {
    min-height: 74px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand-text strong {
    font-size: 0.85rem;
  }

  .brand-text span {
    font-size: 0.62rem;
  }

  .site-nav {
    top: 74px;
  }

  .hero-grid {
    min-height: auto;
    padding: 62px 0 70px;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 15vw, 5.6rem);
  }

  .hero-lead {
    font-size: 1.06rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-visual {
    width: 94vw;
    max-width: 390px;
  }

  .visual-tag {
    font-size: 0.68rem;
  }

  .statement,
  .section,
  .contact-section {
    padding: 82px 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 250px;
  }

  .industry-row {
    grid-template-columns: 48px 1fr;
  }

  .principle {
    grid-template-columns: 46px 1fr;
  }

  .about-panel {
    min-height: 330px;
    padding: 28px;
  }

  .about-panel::after {
    font-size: 8.5rem;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .privacy-main {
    padding: 70px 0 90px;
  }
}
