@font-face {
  font-family: "Helvetica Neue LT";
  src: url("/fonts/HelveticaNeueLTStd-Roman.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue LT";
  src: url("/fonts/HelveticaNeueLTStd-Md.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue LT";
  src: url("/fonts/HelveticaNeueLTStd-Md.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Helvetica Neue LT";
  src: url("/fonts/HelveticaNeueLTStd-Bd.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --white: #ffffff;
  --bg: #f4f4f4;
  --bg-soft: #ececec;
  --header: #e6e6e6;
  --charcoal: #1a1a1c;
  --ink: #1a1a1c;
  --cream: #fff7ec;
  --honey: #d98a24;
  --honey-deep: #c47a1c;
  --muted: rgba(26, 26, 28, 0.62);
  --muted-on-dark: rgba(255, 255, 255, 0.72);
  --line: rgba(26, 26, 28, 0.12);
  --line-on-dark: rgba(255, 255, 255, 0.16);
  --font: "Helvetica Neue LT", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 4.5rem;
  --pad: clamp(1.25rem, 4vw, 3.5rem);
  --max: 72rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--charcoal);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
.h-display {
  font-family: var(--font);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.12;
  margin: 0;
}

p {
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

[data-in] {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.75s var(--ease),
    transform 0.75s var(--ease);
}

[data-in].show {
  opacity: 1;
  transform: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.85rem;
  padding: 0.75rem 1.45rem;
  border-radius: 2px;
  border: 1px solid transparent;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    background 0.3s var(--ease),
    color 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.btn-primary {
  background: var(--honey);
  color: var(--charcoal);
}

.btn-primary:hover {
  background: var(--honey-deep);
  color: var(--cream);
}

.btn-dark {
  background: var(--charcoal);
  color: var(--white);
}

.btn-dark:hover {
  background: #000;
}

.btn-outline {
  background: transparent;
  border-color: var(--charcoal);
  color: var(--charcoal);
}

.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
}

.btn-ghost-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn-light {
  background: var(--white);
  color: var(--charcoal);
}

.btn-light:hover {
  background: var(--bg-soft);
}

.eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--honey);
  margin-bottom: 0.85rem;
}

.lead {
  font-size: clamp(1rem, 1.4vw, 1.125rem);
  color: var(--muted);
  max-width: 38rem;
  line-height: 1.7;
}

.section {
  padding: clamp(4rem, 9vw, 6.5rem) var(--pad);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.page-hero {
  padding: calc(var(--nav-h) + 3.5rem) var(--pad) 2.25rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  font-size: clamp(2.1rem, 5.5vw, 3.5rem);
  max-width: 16ch;
  letter-spacing: -0.015em;
}

.page-hero .lead {
  margin-top: 1.1rem;
}

.cta-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 3.75rem var(--pad);
  background: var(--charcoal);
  color: var(--white);
}

.cta-strip h2 {
  font-size: clamp(1.55rem, 3.5vw, 2.25rem);
  max-width: 18ch;
  letter-spacing: -0.015em;
}

.cta-strip p {
  margin-top: 0.65rem;
  color: var(--muted-on-dark);
  max-width: 30rem;
  font-size: 0.98rem;
}
