:root {
  color-scheme: light;
  --ink: #172322;
  --muted: #586866;
  --line: #d8e2df;
  --paper: #f7faf9;
  --panel: #ffffff;
  --teal: #057f78;
  --teal-dark: #035b57;
  --amber: #b86f15;
  --cardinal: #b61f35;
  --graphite: #20292e;
  --shadow: 0 22px 70px rgba(24, 39, 38, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(247, 250, 249, 0.82);
  border-bottom: 1px solid rgba(216, 226, 223, 0.8);
  backdrop-filter: blur(18px);
}

.brand,
nav,
.hero-actions,
.link-row,
.contact-links,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 750;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: white;
  background: var(--graphite);
  border-radius: 8px;
  font-size: 0.82rem;
}

nav {
  gap: clamp(12px, 2.4vw, 28px);
  color: var(--muted);
  font-size: 0.92rem;
}

nav a:hover,
.contact-links a:hover,
.link-row a:hover {
  color: var(--teal-dark);
}

.hero {
  position: relative;
  min-height: 82vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 104px clamp(20px, 6vw, 76px) 58px;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(247, 250, 249, 0.98), rgba(247, 250, 249, 0.86) 42%, rgba(247, 250, 249, 0.26)),
    linear-gradient(180deg, rgba(247, 250, 249, 0.3), rgba(247, 250, 249, 0.86));
}

.hero-content {
  position: relative;
  max-width: 820px;
}

.eyebrow,
.label,
.tag {
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(2.75rem, 6.2vw, 5.25rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 1.35rem;
  line-height: 1.12;
}

.hero-copy {
  max-width: 650px;
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  line-height: 1.6;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 750;
}

.primary {
  color: white;
  background: var(--teal-dark);
}

.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}
