:root {
  --ink: #0d0b0a;
  --ink-panel: #17140f;
  --burgundy: #55141e;
  --burgundy-bright: #8c2a36;
  --gold: #b9924c;
  --gold-bright: #e0c081;
  --cream: #faf5ea;
  --cream-muted: rgba(250, 245, 234, 0.66);
  --border: rgba(185, 146, 76, 0.22);
  --display: "Bodoni Moda", Georgia, serif;
  --sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
  color: var(--cream);
  background: var(--ink);
  font-family: var(--sans);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 35%, rgba(85, 20, 30, 0.25), transparent 34rem),
    var(--ink);
}

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

.landing {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-height: 100svh;
  overflow: hidden;
  position: relative;
}

.landing::before {
  background-image:
    radial-gradient(circle at 15% 25%, rgba(224, 192, 129, 0.35) 0 0.55px, transparent 0.65px),
    radial-gradient(circle at 75% 68%, rgba(224, 192, 129, 0.24) 0 0.5px, transparent 0.6px);
  background-size: 9px 9px, 13px 13px;
  content: "";
  inset: 0;
  opacity: 0.12;
  pointer-events: none;
  position: absolute;
}

.landing__header,
.landing__footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-inline: clamp(20px, 5vw, 72px);
  position: relative;
  z-index: 2;
}

.landing__header {
  border-bottom: 1px solid var(--border);
  min-height: 76px;
}

.wordmark {
  align-items: center;
  display: inline-flex;
  gap: 12px;
}

.wordmark__monogram {
  align-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  display: inline-flex;
  font-family: var(--display);
  font-size: 15px;
  font-style: italic;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.wordmark__text {
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.header-cta {
  border: 1px solid rgba(224, 192, 129, 0.52);
  border-radius: 999px;
  color: var(--cream);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 11px 17px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--gold-bright);
  color: var(--ink);
  outline: none;
}

.hero {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vh, 60px) 22px clamp(34px, 6vh, 70px);
  position: relative;
  text-align: center;
  z-index: 1;
}

.portrait-card {
  background: #5e6262;
  border: 1px solid rgba(224, 192, 129, 0.3);
  border-radius: 20px;
  box-shadow:
    0 24px 55px rgba(0, 0, 0, 0.42),
    0 0 0 7px rgba(250, 245, 234, 0.02);
  height: clamp(132px, 19vh, 176px);
  margin-bottom: clamp(28px, 4vh, 42px);
  overflow: hidden;
  position: relative;
  width: clamp(182px, 25vw, 240px);
}

.portrait-card::after {
  background: linear-gradient(to top, rgba(13, 11, 10, 0.2), transparent 48%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.portrait-card img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: 50% 23%;
  width: 100%;
}

.hero__eyebrow {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin: 0 0 9px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--cream);
  font-family: var(--display);
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1;
  margin: 0;
}

.hero h1 em {
  color: var(--gold-bright);
  font-weight: 400;
}

.hero__promise {
  margin: clamp(24px, 3vh, 34px) 0 clamp(28px, 4vh, 42px);
}

.hero__promise p,
.hero__promise span {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
}

.hero__promise p {
  color: var(--cream);
  font-size: clamp(20px, 2.4vw, 29px);
  line-height: 1.25;
  margin: 0;
}

.hero__promise span {
  color: var(--cream-muted);
  display: block;
  font-size: clamp(16px, 1.8vw, 20px);
  margin-top: 10px;
}

.hero__actions {
  display: grid;
  gap: 13px;
  max-width: 410px;
  width: min(100%, 410px);
}

.action {
  align-items: center;
  border-radius: 999px;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.12em;
  min-height: 56px;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.action:hover,
.action:focus-visible {
  outline: none;
  transform: translateY(-2px);
}

.action--primary {
  background: var(--burgundy);
  border: 1px solid var(--burgundy-bright);
  box-shadow: 0 16px 35px rgba(85, 20, 30, 0.28);
  color: var(--cream);
}

.action--primary:hover,
.action--primary:focus-visible {
  background: var(--burgundy-bright);
}

.action--secondary {
  border: 1px solid var(--gold);
  color: var(--gold-bright);
}

.action--secondary:hover,
.action--secondary:focus-visible {
  background: var(--gold-bright);
  color: var(--ink);
}

.hero__note {
  color: rgba(250, 245, 234, 0.48);
  font-size: 12px;
  line-height: 1.5;
  margin: 22px 0 0;
}

.landing__footer {
  border-top: 1px solid var(--border);
  color: rgba(250, 245, 234, 0.42);
  font-size: 11px;
  gap: 18px;
  min-height: 74px;
}

.landing__footer p {
  margin: 0;
}

.landing__footer a {
  transition: color 180ms ease;
}

.landing__footer a:hover,
.landing__footer a:focus-visible {
  color: var(--gold-bright);
  outline: none;
}

@media (max-width: 600px) {
  .landing__header {
    min-height: 66px;
  }

  .header-cta {
    padding: 9px 12px;
  }

  .hero {
    justify-content: center;
    padding-block: 28px 32px;
  }

  .portrait-card {
    border-radius: 16px;
  }

  .landing__footer {
    align-items: center;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    min-height: 74px;
    text-align: center;
  }
}

@media (max-height: 720px) {
  .landing__header {
    min-height: 62px;
  }

  .hero {
    padding-block: 18px 22px;
  }

  .portrait-card {
    height: 112px;
    margin-bottom: 20px;
    width: 160px;
  }

  .hero__promise {
    margin-block: 18px 22px;
  }

  .action {
    min-height: 48px;
  }

  .hero__note {
    margin-top: 15px;
  }

  .landing__footer {
    min-height: 58px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
