:root {
  --bg: #080808;
  --bg-soft: #111111;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 210, 160, 0.26);
  --text: #f5f1eb;
  --muted: #bdb3a6;
  --accent: #f3ab53;
  --accent-deep: #7a4618;
  --accent-wash: rgba(243, 171, 83, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  --max: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(243, 171, 83, 0.16), transparent 28%),
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(180deg, #14110e 0%, #080808 28%, #0a0a0a 100%);
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

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

img {
  max-width: 100%;
}

.black-adam-page {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.black-adam-page::before,
.black-adam-page::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: 0;
}

.black-adam-page::before {
  top: -8rem;
  right: -10rem;
  width: 28rem;
  height: 28rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(243, 171, 83, 0.14), transparent 68%);
  filter: blur(12px);
}

.black-adam-page::after {
  bottom: -6rem;
  left: -8rem;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 72%);
  filter: blur(18px);
}

.site-header,
.hero-section,
.section-shell,
.contact-section {
  position: relative;
  z-index: 1;
}

.site-header {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 1.25rem 0 0;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.45);
  backdrop-filter: blur(18px);
  padding: 1rem 1.25rem;
}

.site-mark {
  display: inline-flex;
  align-items: center;
  max-width: 10rem;
}

.site-mark__image {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.hero-section {
  padding: 3rem 0 5rem;
}

.hero-shell,
.section-shell,
.contact-shell {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 2.5rem;
  min-height: calc(100svh - 9rem);
  align-items: end;
}

.hero-copy {
  padding: 3rem 0 2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 3rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.hero-brand-lockup {
  margin-top: 0.75rem;
}

.hero-brand-frame {
  width: min(100%, 33rem);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.hero-brand-image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-title {
  max-width: 13ch;
  margin: 1rem 0 0;
  font-size: clamp(1.6rem, 3.4vw, 3.15rem);
  line-height: 1.06;
  text-wrap: balance;
}

.hero-copy p:last-of-type {
  max-width: 39rem;
  margin: 1.5rem 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0 1.45rem;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--accent);
  color: #1d1005;
  box-shadow: 0 14px 34px rgba(243, 171, 83, 0.24);
}

.button--secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}

.hero-rail {
  align-self: stretch;
  display: grid;
  align-content: end;
  gap: 1.5rem;
  padding: 3rem 2rem 2rem;
  border-left: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(243, 171, 83, 0.1), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

.hero-rail__label,
.section-label {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-rail__lead {
  margin: 0;
  font-size: 1.85rem;
  line-height: 1.15;
}

.hero-rail__points {
  display: grid;
  gap: 1rem;
}

.hero-rail__points div {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.7;
}

.section-shell {
  padding: 5rem 0;
}

.intro-grid,
.philosophy-grid,
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
}

.section-title {
  margin: 1rem 0 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  text-wrap: balance;
}

.section-copy {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.9;
}

.accent-rule {
  width: min(100%, 8rem);
  height: 1px;
  margin: 1.5rem 0 0;
  background: linear-gradient(90deg, var(--accent), transparent);
}

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

.service-row {
  display: grid;
  grid-template-columns: 6rem minmax(0, 1fr) minmax(220px, 0.7fr);
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid var(--line);
}

.service-row:first-child {
  border-top: 0;
}

.service-index {
  color: var(--accent);
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 2rem;
  letter-spacing: 0.14em;
}

.service-title {
  margin: 0;
  font-size: 1.75rem;
}

.service-description {
  margin: 0.6rem 0 0;
  color: var(--muted);
  line-height: 1.8;
}

.service-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  color: #e7ddcf;
}

.service-bullets li {
  position: relative;
  padding-left: 1.15rem;
}

.service-bullets li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--accent);
}

.philosophy-block {
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
}

.philosophy-list {
  display: grid;
  gap: 1rem;
}

.philosophy-list div {
  padding: 1rem 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  line-height: 1.75;
}

.contact-section {
  padding: 0 0 5rem;
}

.contact-shell {
  padding: 2.2rem;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(243, 171, 83, 0.12), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  box-shadow: var(--shadow);
}

.contact-copy {
  max-width: 34rem;
}

.contact-links {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.contact-item {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.contact-item strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text);
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-item span,
.contact-item a {
  color: var(--muted);
  font-size: 1.1rem;
}

.contact-item a:hover,
.contact-item a:focus-visible {
  color: var(--text);
}

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 800ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.delay-1 {
  animation-delay: 100ms;
}

.delay-2 {
  animation-delay: 200ms;
}

.delay-3 {
  animation-delay: 300ms;
}

.service-row {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 700ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.service-row:nth-child(1) {
  animation-delay: 80ms;
}

.service-row:nth-child(2) {
  animation-delay: 160ms;
}

.service-row:nth-child(3) {
  animation-delay: 240ms;
}

.service-row:nth-child(4) {
  animation-delay: 320ms;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .intro-grid,
  .philosophy-grid,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-rail {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 2rem 0 0;
    background: none;
  }

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

  .service-index {
    font-size: 1.4rem;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-top: 0.75rem;
  }

  .site-header__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-section {
    padding-top: 1.5rem;
  }

  .hero-copy {
    padding-top: 1.5rem;
  }

  .hero-title {
    max-width: none;
  }

  .hero-brand-frame {
    padding: 0.6rem;
  }

  .button {
    width: 100%;
  }

  .section-shell,
  .contact-section {
    padding-bottom: 4rem;
  }

  .section-shell {
    padding-top: 4rem;
  }

  .contact-shell {
    padding: 1.5rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}
