:root {
  color-scheme: light;
  --ink: #08273b;
  --ink-deep: #062235;
  --muted: #486272;
  --gold: #e2aa43;
  --gold-deep: #b77a16;
  --paper: #f7f3ea;
  --paper-soft: #fffaf1;
  --line: rgba(8, 39, 59, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

body {
  min-height: 100%;
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

.page {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  overflow: hidden;
}

.page::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(
      circle at 72% 24%,
      rgba(231, 170, 63, 0.3),
      transparent 30%
    ),
    linear-gradient(135deg, #fffaf1 0%, #f6efe1 48%, #e4cca0 100%);
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 241, 0.88);
  backdrop-filter: blur(14px);
}

.nav,
.hero,
.site-footer {
  width: min(100%, 80rem);
  margin: 0 auto;
  padding-right: clamp(1.25rem, 4vw, 2.5rem);
  padding-left: clamp(1.25rem, 4vw, 2.5rem);
}

.nav {
  display: flex;
  height: clamp(6rem, 9vw, 7rem);
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  display: block;
  width: min(300px, 78vw);
  height: auto;
}

.hero {
  display: flex;
  flex: 1;
  align-items: center;
  padding-top: clamp(4rem, 8vw, 7rem);
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.hero-content {
  max-width: 48rem;
}

.eyebrow {
  max-width: 42rem;
  margin: 0 0 1.25rem;
  color: var(--gold-deep);
  font-size: clamp(0.76rem, 1.6vw, 0.88rem);
  font-weight: 900;
  letter-spacing: 0.28em;
  line-height: 1.7;
  text-transform: uppercase;
}

h1 {
  max-width: 46rem;
  margin: 0;
  color: var(--ink-deep);
  font-size: clamp(3.25rem, 8vw, 4.75rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
}

.intro {
  max-width: 42rem;
  margin: 1.75rem 0 0;
  color: #26475a;
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.email-button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  margin-top: 2.25rem;
  border-radius: 0.375rem;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1;
  padding: 0.95rem 1.5rem;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    transform 160ms ease;
}

.email-button:hover {
  background: #f0bb57;
  transform: translateY(-1px);
}

.email-button:focus-visible {
  outline: 3px solid rgba(8, 39, 59, 0.32);
  outline-offset: 3px;
}

.site-footer {
  display: flex;
  gap: 0.75rem;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

@media (max-width: 700px) {
  .nav {
    height: 6rem;
  }

  .site-footer {
    flex-direction: column;
  }
}
