:root {
  --gold: #9f8145;
  --gold-dark: #806636;
  --gold-soft: #c8b27d;
  --charcoal: #353535;
  --grey: #706f6f;
  --paper: #f7f5f0;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(38, 31, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 15% 12%, rgba(159, 129, 69, 0.12), transparent 28rem),
    radial-gradient(circle at 88% 85%, rgba(112, 111, 111, 0.09), transparent 30rem),
    var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.48;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.028'/%3E%3C/svg%3E");
}

.page-shell {
  display: grid;
  min-height: calc(100vh - 64px);
  padding: clamp(18px, 4vw, 52px);
  place-items: center;
}

.hero {
  position: relative;
  width: min(100%, 1100px);
  overflow: hidden;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(159, 129, 69, 0.24);
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: -1;
  border: 1px solid rgba(159, 129, 69, 0.2);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100%, 780px);
  min-height: min(760px, calc(100vh - 140px));
  margin: 0 auto;
  padding: clamp(52px, 8vw, 96px) clamp(28px, 7vw, 76px);
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.hero__logo {
  display: block;
  width: min(100%, 560px);
  height: auto;
}

.hero__divider {
  width: 72px;
  height: 1px;
  margin: clamp(28px, 5vw, 46px) 0 24px;
  background: var(--gold);
}

.hero__eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1 {
  max-width: 700px;
  margin: 0;
  color: var(--charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.6vw, 4.15rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.hero__text {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--grey);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.75;
}

.download-button {
  display: grid;
  width: min(100%, 470px);
  margin-top: 34px;
  padding: 18px 22px;
  color: var(--white);
  background: var(--gold);
  border: 1px solid var(--gold);
  box-shadow: 0 12px 32px rgba(128, 102, 54, 0.2);
  grid-template-columns: 26px 1fr;
  column-gap: 13px;
  align-items: center;
  text-align: left;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.download-button svg {
  grid-row: 1 / span 2;
}

.download-button span {
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.download-button small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.download-button:hover {
  background: var(--gold-dark);
  box-shadow: 0 16px 38px rgba(128, 102, 54, 0.28);
  transform: translateY(-2px);
}

.download-button:focus-visible {
  outline: 3px solid rgba(159, 129, 69, 0.35);
  outline-offset: 5px;
}

.download-button:active {
  transform: translateY(0);
}

.hero__note {
  margin: 22px 0 0;
  color: #898787;
  font-size: 0.82rem;
  letter-spacing: 0.045em;
}

.hero__decor {
  position: absolute;
  z-index: 0;
  width: 230px;
  height: 230px;
  opacity: 0.09;
  border: 1px solid var(--gold);
  transform: rotate(45deg);
}

.hero__decor--left {
  top: -145px;
  left: -105px;
}

.hero__decor--right {
  right: -122px;
  bottom: -150px;
}

.site-footer {
  display: flex;
  min-height: 64px;
  padding: 16px 24px 22px;
  color: #777575;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
}

@media (max-width: 680px) {
  .page-shell {
    min-height: auto;
    padding: 12px;
  }

  .hero__content {
    min-height: calc(100vh - 94px);
    padding: 48px 28px;
  }

  .hero__logo {
    width: min(100%, 400px);
  }

  .hero__text {
    line-height: 1.62;
  }

  .download-button {
    padding: 16px 17px;
  }

  .site-footer {
    min-height: 70px;
    padding-inline: 18px;
    flex-wrap: wrap;
    line-height: 1.5;
  }
}

@media (max-width: 420px) {
  .hero::before {
    inset: 7px;
  }

  .hero__content {
    padding-inline: 22px;
  }

  .download-button {
    grid-template-columns: 23px 1fr;
    column-gap: 10px;
  }

  .download-button span {
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .download-button {
    transition: none;
  }
}
