:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #7a4900;
  color: #fff8ea;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

.hero {
  align-items: center;
  background-image: url("/assets/ohmora-share-background.jpg");
  background-position: center;
  background-size: cover;
  display: flex;
  min-height: 100vh;
  overflow: hidden;
  padding: clamp(32px, 8vw, 88px) 24px;
  position: relative;
}

.veil {
  background: rgba(75, 43, 7, 0.68);
  inset: 0;
  position: absolute;
}

.content {
  margin: 0 auto;
  max-width: 620px;
  position: relative;
  width: 100%;
}

.brand {
  color: #f4d94e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-style: italic;
  font-weight: 700;
  margin: 0 0 52px;
}

.eyebrow {
  color: #f4d94e;
  font-size: 13px;
  font-weight: 800;
  margin: 0 0 12px;
  text-transform: uppercase;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 8vw, 64px);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  max-width: 600px;
}

.intro {
  color: #fff4d9;
  font-size: 18px;
  line-height: 1.65;
  margin: 24px 0 0;
  max-width: 560px;
}

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

.button {
  align-items: center;
  border: 1px solid rgba(255, 248, 234, 0.72);
  border-radius: 6px;
  display: inline-flex;
  font-size: 15px;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  text-decoration: none;
}

.primary {
  background: #cca900;
  border-color: #cca900;
  color: #382400;
}

.secondary {
  background: rgba(255, 248, 234, 0.12);
  color: #fff8ea;
}

.button:focus-visible {
  outline: 3px solid #fff8ea;
  outline-offset: 3px;
}

.footnote {
  color: rgba(255, 248, 234, 0.78);
  font-size: 13px;
  line-height: 1.55;
  margin: 24px 0 0;
}

.hidden {
  display: none;
}

@media (max-width: 540px) {
  .brand {
    margin-bottom: 36px;
  }

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