:root {
  --ink: #24201c;
  --muted: #6f665d;
  --paper: #fbf8f3;
  --cream: #f2e9de;
  --gold: #a96f1d;
  --gold-dark: #805012;
  --white: #fff;
  --line: rgba(62, 48, 35, 0.16);
  --shadow: 0 24px 70px rgba(58, 42, 29, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

.site-header {
  min-height: 78px;
  padding: 0 5vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(251, 248, 243, 0.96);
  border-bottom: 1px solid var(--line);
}

.brand,
.footer-brand {
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font: 700 0.68rem/1 Inter, sans-serif;
  letter-spacing: 0.1em;
}

.site-header nav,
footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.site-header nav a,
footer nav a {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
}

.site-header nav a:hover,
.site-header nav a:focus-visible,
footer nav a:hover,
footer nav a:focus-visible {
  color: var(--gold-dark);
}

.hero {
  position: relative;
  min-height: clamp(500px, 67vw, 720px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #d9ccbe;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(30, 24, 19, 0.84) 0%, rgba(30, 24, 19, 0.57) 34%, rgba(30, 24, 19, 0.08) 68%),
    linear-gradient(0deg, rgba(30, 24, 19, 0.3), transparent 45%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 690px;
  padding: clamp(60px, 9vw, 120px) 7vw;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f3c981;
}

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

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3rem, 7.5vw, 6.8rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.6vw, 4.25rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
}

.button-primary {
  color: var(--ink);
  background: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #f0d6aa;
}

.intro {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(80px, 11vw, 150px) 5vw;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(40px, 8vw, 110px);
}

.intro-copy {
  padding-top: 30px;
  color: var(--muted);
  font-size: 1.08rem;
}

.publisher {
  padding: clamp(68px, 8vw, 110px) 5vw;
  background: var(--cream);
}

.publisher-card {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(36px, 7vw, 84px);
  background: var(--white);
  border: 1px solid rgba(96, 70, 45, 0.12);
  box-shadow: var(--shadow);
}

.publisher-card .lead {
  max-width: 760px;
  margin-bottom: 50px;
  color: var(--muted);
  font-size: 1.12rem;
}

.steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  list-style: none;
}

.steps li {
  padding: 26px;
  border-top: 2px solid var(--gold);
  background: var(--paper);
}

.steps li > span {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
}

.steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-note {
  margin-top: 34px;
  padding: 20px 24px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  border: 1px solid var(--line);
}

.trust-note strong {
  white-space: nowrap;
}

.trust-note p {
  margin: 0;
  color: var(--muted);
}

.contact {
  max-width: 840px;
  margin: 0 auto;
  padding: clamp(80px, 11vw, 140px) 5vw;
  text-align: center;
}

.contact > p:not(.eyebrow) {
  color: var(--muted);
}

.email-link {
  color: var(--gold-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 3vw, 2rem);
  text-underline-offset: 6px;
}

footer {
  padding: 48px 5vw 30px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px 48px;
  color: var(--white);
  background: var(--ink);
}

footer p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.88rem;
}

footer nav {
  justify-content: flex-end;
}

footer nav a {
  color: rgba(255, 255, 255, 0.75);
}

.copyright {
  grid-column: 1 / -1;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.legal-hero {
  padding: clamp(72px, 10vw, 130px) 5vw;
  color: var(--white);
  background: var(--ink);
  text-align: center;
}

.legal-hero h1 {
  margin-bottom: 16px;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
}

.legal-hero p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.legal {
  max-width: 850px;
  margin: 0 auto;
  padding: clamp(60px, 9vw, 110px) 5vw;
}

.legal h2 {
  margin-top: 52px;
  margin-bottom: 15px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.015em;
}

.legal h2:first-child {
  margin-top: 0;
}

.legal p,
.legal li {
  color: #504941;
}

.legal a {
  color: var(--gold-dark);
}

.legal .summary {
  margin-bottom: 42px;
  padding: 24px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
}

@media (max-width: 820px) {
  .site-header {
    padding-top: 14px;
    padding-bottom: 14px;
    align-items: flex-start;
    flex-direction: column;
  }

  .site-header nav {
    gap: 12px 18px;
  }

  .hero {
    min-height: 620px;
  }

  .hero > img {
    object-position: center;
  }

  .hero-overlay {
    background: linear-gradient(0deg, rgba(30, 24, 19, 0.88) 0%, rgba(30, 24, 19, 0.52) 68%, rgba(30, 24, 19, 0.18));
  }

  .intro,
  .steps {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    padding-top: 0;
  }

  .trust-note {
    align-items: flex-start;
    flex-direction: column;
  }

  footer {
    grid-template-columns: 1fr;
  }

  footer nav {
    justify-content: flex-start;
  }

  .copyright {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
