:root {
  --ink: #1d1100;
  --muted: #766e63;
  --paper: #f7f0e3;
  --line: rgba(188, 131, 0, 0.2);
  --white: #ffffff;
  --gold: #edb541;
  --amber: #bc8300;
  --pink: #f98dbe;
  color-scheme: light;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px clamp(20px, 4vw, 56px);
  color: var(--white);
}

.brand {
  font-weight: 850;
  text-decoration: none;
}

nav {
  display: flex;
  gap: clamp(16px, 3vw, 30px);
  color: rgba(255, 253, 247, 0.78);
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--white);
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(640px, 92svh, 920px);
  overflow: hidden;
  align-items: center;
  background: #1d1100;
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(29, 17, 0, 0.82), rgba(29, 17, 0, 0.2) 72%),
    linear-gradient(0deg, rgba(29, 17, 0, 0.74), transparent 58%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  padding: 112px clamp(20px, 7vw, 88px) 72px;
  color: var(--white);
}

.kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 8ch;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.4rem, 13vw, 10rem);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-content p:not(.kicker) {
  max-width: 620px;
  margin-bottom: 30px;
  color: rgba(255, 253, 247, 0.88);
  font-size: clamp(1.16rem, 2.1vw, 1.5rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 17px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button:hover,
.button:focus-visible {
  border-color: var(--pink);
  outline: none;
}

.about-section,
.site-footer {
  padding-inline: clamp(20px, 6vw, 88px);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 0.72fr);
  gap: clamp(30px, 8vw, 112px);
  padding-top: clamp(64px, 10vw, 110px);
  padding-bottom: clamp(60px, 10vw, 104px);
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5.4vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.about-section > p {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  padding-bottom: 30px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer a {
  color: var(--amber);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--pink);
}

@media (max-width: 760px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .hero {
    min-height: 760px;
  }

  .hero-content {
    padding-top: 126px;
  }

  .about-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 520px) {
  h1 {
    font-size: clamp(4rem, 21vw, 5.8rem);
  }

  .actions,
  .actions .button {
    width: 100%;
  }

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