:root {
  --black: #090a0b;
  --graphite: #111315;
  --graphite-soft: #191c1f;
  --white: #f5f5f2;
  --paper: #e9e9e5;
  --muted: #9a9d9f;
  --line: rgba(255, 255, 255, 0.15);
  --line-dark: rgba(17, 19, 21, 0.16);
  --bronze: #bd8d51;
  --bronze-bright: #d1a467;
  --container: 1280px;
  --pad: clamp(22px, 4vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.container {
  width: min(100%, var(--container));
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section {
  position: relative;
  padding-block: clamp(92px, 10vw, 156px);
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--bronze-bright);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.site-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  height: 82px;
  border-bottom: 1px solid transparent;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    height 220ms ease;
}

.has-scrolled .site-header,
.site-header.menu-open {
  height: 70px;
  border-bottom-color: var(--line);
  background: rgba(9, 10, 11, 0.88);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 100%;
  gap: 40px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font-size: 14px;
  font-weight: 750;
}

.brand img {
  width: 30px;
  height: 35px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 44px);
}

.main-nav a,
.header-link,
.footer-links a {
  color: rgba(245, 245, 242, 0.72);
  font-size: 13px;
  transition: color 160ms ease;
}

.main-nav a:hover,
.header-link:hover,
.footer-links a:hover {
  color: var(--white);
}

.header-link {
  border-bottom: 1px solid var(--bronze);
  padding-block: 4px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: var(--white);
  transition: transform 180ms ease;
}

.site-header.menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 15px 28px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.button-primary {
  background: var(--bronze);
  color: #0b0c0d;
}

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

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding: 8px 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 650;
}

.text-action span {
  color: var(--bronze-bright);
}

.dark-action {
  border-bottom-color: rgba(17, 19, 21, 0.35);
  color: var(--graphite);
}

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

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  min-height: 112px;
  gap: 42px;
}

.footer-inner > p,
.footer-inner small {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

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

.mobile-cta {
  display: none;
}

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

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

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