:root {
  --black: #090909;
  --soft-black: #161616;
  --white: #f8f8f3;
  --muted: #b9b9b2;
  --yellow: #ffc800;
  --line: rgba(255,255,255,.16);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 10;
  background: var(--yellow);
  color: var(--black);
  padding: .75rem 1rem;
  font-weight: 800;
}
.skip-link:focus { left: 1rem; }

.site-header {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .05em;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--yellow);
  color: var(--black);
  border-radius: 50%;
  font-size: .8rem;
}
.header-link {
  text-decoration: none;
  font-weight: 800;
  border-bottom: 3px solid var(--yellow);
}

.hero {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  min-height: 700px;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  padding: 5rem 0;
}
.eyebrow {
  margin: 0 0 1rem;
  color: var(--yellow);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin-bottom: 1.5rem;
  font-size: clamp(3.4rem, 8vw, 7.5rem);
  line-height: .86;
  letter-spacing: -.06em;
  text-transform: uppercase;
}
h1 span { color: var(--yellow); }
.intro {
  max-width: 650px;
  color: #d6d6cf;
  font-size: clamp(1rem, 2vw, 1.25rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2rem;
}
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.2rem;
  border: 2px solid var(--white);
  text-decoration: none;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.button:hover, .button:focus-visible { transform: translateY(-3px); }
.button-primary { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
.button-secondary { background: transparent; }
.button-secondary:hover { background: var(--white); color: var(--black); }
.button-dark { background: var(--black); border-color: var(--black); color: var(--white); }

.hero-art { position: relative; }
.logo-frame {
  padding: 1rem;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: 24px 24px 0 var(--yellow);
}
.logo-frame img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.stamp {
  position: absolute;
  right: -1rem;
  bottom: -3.4rem;
  margin: 0;
  color: var(--black);
  background: var(--yellow);
  padding: .55rem .8rem;
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  transform: rotate(-3deg);
}

.categories {
  background: var(--white);
  color: var(--black);
  padding: 6rem max(1rem, calc((100% - var(--max))/2));
}
.section-heading {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.section-heading .eyebrow { color: #745b00; }
h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: .98;
  letter-spacing: -.045em;
  text-transform: uppercase;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #c8c8c0;
  border: 1px solid #c8c8c0;
}
.category-card {
  min-height: 320px;
  padding: 2rem;
  background: var(--white);
}
.category-number {
  color: #927200;
  font-weight: 900;
  letter-spacing: .14em;
}
.category-card h3 {
  margin: 5rem 0 1rem;
  font-size: 1.6rem;
  text-transform: uppercase;
}
.category-card p { color: #4e4e49; }

.values {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 7rem 0;
}
.values-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  padding: clamp(2rem, 5vw, 5rem);
  border: 1px solid var(--line);
  background: var(--soft-black);
}
.value-list p {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  color: #d0d0ca;
}
.value-list strong { color: var(--white); }

.final-cta {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  background: var(--yellow);
  color: var(--black);
}
.final-cta img { width: 180px; }
.final-cta .eyebrow { color: #4d3c00; }
.final-cta h2 { margin-bottom: .4rem; }
.final-cta p:last-child { margin-bottom: 0; }

footer {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 2rem 0 3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .85rem;
}

@media (max-width: 800px) {
  .site-header { min-height: 68px; }
  .brand { font-size: .9rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 4rem 0 6rem; }
  .hero-art { max-width: 560px; }
  .logo-frame { box-shadow: 14px 14px 0 var(--yellow); }
  .stamp { right: 0; }
  .section-heading, .values-panel { grid-template-columns: 1fr; }
  .category-grid { grid-template-columns: 1fr; }
  .category-card { min-height: auto; }
  .category-card h3 { margin-top: 2rem; }
  .final-cta { grid-template-columns: 95px 1fr; }
  .final-cta img { width: 95px; }
  .final-cta .button { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .header-link { display: none; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .final-cta { grid-template-columns: 1fr; }
  .final-cta img { width: 120px; }
  footer { flex-direction: column; }
}

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