:root {
  --yellow: #ffc400;
  --yellow-bright: #ffd21a;
  --black: #070707;
  --ink: #111111;
  --paper: #f4f1e9;
  --white: #ffffff;
  --muted: #a8a8a8;
  --line: rgba(255, 255, 255, 0.17);
  --shell: min(1180px, calc(100% - 48px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--yellow-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--black);
  padding: 10px 16px;
  font-weight: 800;
}

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border: 0;
}

.header-inner {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.brand {
  flex: 0 0 auto;
  width: 220px;
  display: block;
  padding: 0;
  background: transparent;
  border: 0;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(26px, 3vw, 46px);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a,
.desktop-nav a:visited {
  color: var(--white) !important;
}

.desktop-nav a:not(.nav-cta) {
  padding: 10px 0;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, color 180ms ease;
}

.desktop-nav a:not(.nav-cta):hover {
  color: var(--yellow) !important;
  border-color: var(--yellow);
}

.desktop-nav .nav-cta,
.desktop-nav .nav-cta:visited {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--yellow) !important;
  padding: 10px 0;
  border-bottom: 1px solid var(--yellow);
  transition: color 180ms ease, border-color 180ms ease;
}

.nav-cta:hover,
.button-primary:hover {
  transform: translateY(-2px);
}

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

.mobile-nav {
  display: none;
  position: relative;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(50px, 7vw, 104px);
  align-items: center;
  padding-block: clamp(148px, 12vw, 180px) clamp(78px, 8vw, 118px);
}

.eyebrow {
  margin: 0 0 20px;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.review-copy h2,
.contact h2,
.contact h1 {
  margin: 0;
  font-size: clamp(3.45rem, 7.3vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.hero h1 span,
.contact h2 span {
  color: var(--yellow);
}

.hero-lead {
  max-width: 650px;
  margin: 34px 0 0;
  color: #d4d4d4;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 180ms ease, transform 180ms ease;
}

.button-primary {
  background: var(--yellow);
  color: var(--black) !important;
}

.button-primary:visited {
  color: var(--black) !important;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid currentColor;
  padding-block: 6px;
  font-weight: 800;
}

.text-link,
.text-link:visited {
  color: var(--white) !important;
}

.text-link span {
  color: var(--yellow);
}

.hero-art {
  position: relative;
  min-height: 500px;
}

.hero-art::before,
.hero-art::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-art::before {
  inset: 2% 0 0 12%;
  border: 1px solid rgba(255, 196, 0, 0.5);
  border-radius: 50%;
}

.hero-art::after {
  width: 78%;
  aspect-ratio: 1;
  left: 16%;
  top: 12%;
  background: repeating-linear-gradient(135deg, transparent 0 14px, rgba(255, 196, 0, 0.12) 15px 16px);
  border-radius: 50%;
}

.hero-card {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  border: 2px solid var(--yellow);
}

.hero-card span {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.hero-card strong {
  margin-top: auto;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.9;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.hero-card small {
  margin-top: 12px;
  font-weight: 700;
}

.hero-card-main {
  width: min(72%, 345px);
  aspect-ratio: 0.84;
  left: 5%;
  top: 5%;
  padding: 28px;
  background: var(--yellow);
  color: var(--black);
  transform: rotate(-4deg);
}

.hero-card-dark {
  width: min(54%, 260px);
  aspect-ratio: 0.9;
  right: 1%;
  bottom: 2%;
  padding: 24px;
  background: var(--black);
  color: var(--white);
  transform: rotate(5deg);
}

.orbit-word {
  position: absolute;
  z-index: 3;
  right: 0;
  top: 4%;
  color: var(--yellow);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.marquee-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #c6c6c6;
  font-size: clamp(0.72rem, 1.3vw, 0.92rem);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.marquee-inner i {
  width: 6px;
  height: 6px;
  background: var(--yellow);
  transform: rotate(45deg);
}

.section {
  padding-block: clamp(100px, 13vw, 180px);
}

.services {
  background: var(--paper);
  color: var(--ink);
}

.services .eyebrow,
.about .eyebrow {
  color: #8a6800;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.5fr);
  column-gap: clamp(40px, 10vw, 140px);
  align-items: end;
  margin-bottom: 64px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.approach h2,
.about h2,
.review-copy h2 {
  font-size: clamp(2.75rem, 5.5vw, 5.5rem);
}

.section-heading > p:last-child {
  margin: 0;
  color: #55514a;
  font-size: 1.05rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid #aaa69d;
  border-left: 1px solid #aaa69d;
}

.service-card {
  position: relative;
  min-height: 340px;
  padding: clamp(30px, 4vw, 50px);
  background: var(--paper);
  border-right: 1px solid #aaa69d;
  border-bottom: 1px solid #aaa69d;
  transition: background 220ms ease, color 220ms ease;
}

.service-card.featured,
.service-card:hover {
  background: var(--yellow);
  color: var(--black);
}

.card-index {
  margin: 0 0 68px;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 460px;
  margin: 0;
  font-size: clamp(1.8rem, 3.1vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.service-card > p:not(.card-index) {
  max-width: 470px;
  margin: 22px 50px 0 0;
  color: #55514a;
}

.service-card:hover > p:not(.card-index),
.service-card.featured > p:not(.card-index) {
  color: #312800;
}

.card-mark {
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 1.25rem;
}

.statement {
  background: var(--yellow);
  color: var(--black);
  padding-block: clamp(80px, 10vw, 138px);
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.28fr 1.72fr;
  gap: 30px;
}

.statement-number {
  margin: 8px 0 0;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.statement-copy {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.5rem, 5.5vw, 5.6rem);
  line-height: 1;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.statement-copy strong {
  font-weight: 900;
}

.approach {
  background: var(--black);
}

.approach-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 10vw, 150px);
}

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

.approach-intro > p:last-child {
  max-width: 540px;
  margin: 30px 0 0;
  color: #bcbcbc;
  font-size: 1.05rem;
}

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

.principle {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding-block: 36px;
  border-bottom: 1px solid var(--line);
}

.principle > span {
  color: var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
}

.principle h3 {
  margin: 0;
  font-size: clamp(1.6rem, 2.7vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.principle p {
  margin: 16px 0 0;
  color: #a9a9a9;
}

.review-focus {
  background: var(--yellow);
  color: var(--black);
  padding-block: clamp(80px, 11vw, 150px);
}

.review-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(50px, 9vw, 132px);
  align-items: center;
}

.review-visual {
  position: relative;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
  background: var(--black);
  color: var(--white);
  transform: rotate(-2.5deg);
}

.review-visual::after {
  content: "";
  position: absolute;
  inset: -18px 18px 18px -18px;
  z-index: -1;
  border: 2px solid var(--black);
}

.quote-mark {
  position: absolute;
  top: 6px;
  left: 30px;
  color: var(--yellow);
  font-family: Georgia, serif;
  font-size: 11rem;
  line-height: 1;
}

.review-visual p {
  margin: 0 0 22px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.045em;
  text-transform: uppercase;
}

.stars {
  color: var(--yellow);
  letter-spacing: 0.16em;
}

.review-copy .eyebrow {
  color: #6d5200;
}

.review-copy > p:not(.eyebrow) {
  max-width: 640px;
  margin: 30px 0;
  font-size: 1.08rem;
}

.dark-link span {
  color: var(--black);
}

.dark-link,
.dark-link:visited {
  color: var(--black) !important;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: clamp(50px, 10vw, 140px);
}

.about-copy {
  padding-top: 36px;
  border-top: 2px solid var(--black);
}

.about-copy p {
  margin: 0 0 24px;
  color: #46423d;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.contact {
  padding-block: clamp(100px, 14vw, 190px);
  background: var(--black);
}

.contact-inner {
  text-align: center;
}

.contact h2 {
  font-size: clamp(2.85rem, 6.7vw, 7rem);
}

.contact h1 {
  font-size: clamp(2.85rem, 6.7vw, 7rem);
  margin-bottom: 28px;
}

.email-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 56px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--yellow);
  font-size: clamp(1.25rem, 3.3vw, 2.9rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  transition: color 180ms ease;
}

.email-link:hover {
  color: var(--yellow);
}

.email-link,
.email-link:visited {
  color: var(--white) !important;
}

.email-link:hover {
  color: var(--yellow) !important;
}

.email-link span {
  color: var(--yellow);
}

.contact-note {
  margin: 18px 0 0;
  color: #858585;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.footer-inner {
  min-height: 112px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  color: #8b8b8b;
  font-size: 0.8rem;
  font-weight: 700;
}

.footer-brand {
  justify-self: start;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 900;
}

.footer-brand span {
  color: var(--yellow);
}

.footer-inner p {
  margin: 0;
  text-align: center;
}

.footer-inner > a:last-child {
  justify-self: end;
  color: var(--white);
}

@media (max-width: 920px) {
  :root {
    --shell: min(100% - 36px, 760px);
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-nav summary {
    cursor: pointer;
    list-style: none;
    border: 1px solid #505050;
    padding: 9px 14px;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav[open] summary {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
  }

  .mobile-nav nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(290px, calc(100vw - 36px));
    display: grid;
    background: var(--black);
    border: 1px solid #555;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  }

  .mobile-nav nav a {
    padding: 15px 18px;
    border-bottom: 1px solid #333;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
  }

  .mobile-nav nav a:last-child {
    background: var(--yellow);
    color: var(--black);
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .approach-grid,
  .review-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 70px;
  }

  .hero-art {
    min-height: 470px;
    width: min(100%, 560px);
    margin-inline: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    max-width: 600px;
    margin-top: 26px;
  }

  .approach-intro {
    position: static;
  }

  .review-visual {
    width: min(90%, 520px);
    margin-inline: auto;
  }

  .about-copy {
    padding-top: 28px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 28px);
  }

  html {
    scroll-padding-top: 74px;
  }

  .header-inner {
    min-height: 78px;
  }

  .brand {
    width: 190px;
    height: auto;
    padding: 0;
  }

  .hero-grid {
    padding-block: 118px 82px;
  }

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

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

  .hero-art {
    min-height: 385px;
  }

  .hero-card-main {
    padding: 22px;
  }

  .hero-card-dark {
    padding: 19px;
  }

  .orbit-word {
    display: none;
  }

  .marquee-inner {
    min-height: 58px;
    overflow: hidden;
    justify-content: flex-start;
    white-space: nowrap;
  }

  .marquee-inner span:nth-of-type(4),
  .marquee-inner i:nth-of-type(3) {
    display: none;
  }

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

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

  .card-index {
    margin-bottom: 48px;
  }

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

  .statement-copy {
    font-size: clamp(2.25rem, 10.4vw, 3.65rem);
  }

  .principle {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .review-visual {
    min-height: 360px;
    padding: 28px;
  }

  .quote-mark {
    font-size: 8rem;
  }

  .contact h2 br {
    display: none;
  }

  .email-link {
    gap: 10px;
    font-size: clamp(1.05rem, 5.2vw, 1.55rem);
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    padding-block: 28px;
  }

  .footer-inner p {
    grid-column: 1 / -1;
    grid-row: 2;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .hero-art,
  .hero-marquee,
  .site-footer {
    display: none;
  }

  body,
  .services,
  .about,
  .approach,
  .contact {
    background: #fff;
    color: #000;
  }

  .section,
  .contact {
    padding-block: 36px;
  }
}
