:root {
  --obsidian: #0a0a0a;
  --graphite: #252525;
  --graphite-light: #333333;
  --bone: #f3efe8;
  --sand: #e7ded2;
  --orange: #d96a38;
  --orange-dark: #b95329;
  --green: #3bb273;
  --gold: #c89a3d;
  --steel: #6e6e6e;
  --steel-light: #a4a4a4;
  --white: #ffffff;
  --danger: #ef6b6b;

  --display: "Space Grotesk", sans-serif;
  --body: "Inter", sans-serif;

  --container: 1280px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;

  --shadow:
    0 24px 70px rgba(0, 0, 0, 0.18);

  --border-bone-08: rgba(243, 239, 232, 0.08);
  --border-bone-10: rgba(243, 239, 232, 0.1);
  --border-obsidian-08: rgba(10, 10, 10, 0.08);
  --border-obsidian-10: rgba(10, 10, 10, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  background: var(--bone);
  color: var(--obsidian);
  font-family: var(--body);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

button,
input,
select {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(217, 106, 56, 0.55);
  outline-offset: 4px;
}

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

.section {
  padding: 112px 0;
}

.section-dark {
  background: var(--obsidian);
  color: var(--bone);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--steel);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 1px;
  background: var(--orange);
}

.eyebrow.light {
  color: var(--steel-light);
}

h1,
h2,
h3,
h4 {
  font-family: var(--display);
}

h2 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h2 em {
  color: var(--orange);
  font-style: normal;
}

.section-copy {
  max-width: 650px;
  color: var(--graphite);
  font-size: 17px;
  line-height: 1.7;
}

.section-dark .section-copy {
  color: var(--steel-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--orange);
  color: var(--obsidian);
  box-shadow: 0 14px 35px rgba(217, 106, 56, 0.28);
}

.btn-primary:hover {
  background: #e47a48;
  box-shadow: 0 18px 42px rgba(217, 106, 56, 0.38);
}

.btn-outline {
  border: 1px solid rgba(243, 239, 232, 0.25);
  background: transparent;
  color: var(--bone);
}

.btn-outline:hover {
  border-color: rgba(243, 239, 232, 0.65);
  background: rgba(243, 239, 232, 0.06);
}

.btn-dark {
  background: var(--obsidian);
  color: var(--bone);
}

.icon {
  width: 19px;
  height: 19px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

  .section {
    padding: 82px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
