:root {
  --black: #111111;
  --black-soft: #191919;
  --cream: #f6f3ee;
  --paper: #ffffff;
  --gold: #d2ba73;
  --gold-deep: #b99b4f;
  --silver: #c7c7c7;
  --ink: #171717;
  --muted: #6d6861;
  --powder: #dce6f4;
  --blue: #2447bb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.7;
}

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

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  min-height: 124px;
  padding: 34px 8vw;
  display: grid;
  grid-template-columns: minmax(170px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 34px;
  color: var(--paper);
}

.signature {
  width: max-content;
  color: var(--paper);
  font-family: "Brush Script MT", "Segoe Script", cursive;
  font-size: 43px;
  line-height: 0.85;
  transform: rotate(-3deg);
}

.nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
}

.nav a:hover {
  color: var(--paper);
}

.nav a[aria-current="page"] {
  color: var(--paper);
}

.header-cta {
  justify-self: end;
  min-height: 72px;
  padding: 23px 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--gold);
  color: var(--paper);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.hero {
  position: relative;
  min-height: 860px;
  padding: 190px 8vw 150px;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: 70px;
  overflow: hidden;
  background: linear-gradient(135deg, #101010 0%, #151515 62%, #222222 100%);
  color: var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), rgba(255, 255, 255, 0.08) calc(25% - 1px), rgba(255, 255, 255, 0.08) 25%, transparent 25%),
    linear-gradient(90deg, transparent 0, transparent calc(50% - 1px), rgba(255, 255, 255, 0.08) calc(50% - 1px), rgba(255, 255, 255, 0.08) 50%, transparent 50%),
    linear-gradient(90deg, transparent 0, transparent calc(75% - 1px), rgba(255, 255, 255, 0.08) calc(75% - 1px), rgba(255, 255, 255, 0.08) 75%, transparent 75%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -92px;
  height: 170px;
  background: var(--cream);
  border-top: 18px solid var(--gold);
  border-radius: 50% 50% 0 0 / 44% 44% 0 0;
}

.hero-lines {
  position: absolute;
  left: -120px;
  bottom: 110px;
  width: 270px;
  height: 600px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 52% 48% 38% 62%;
  transform: rotate(-18deg);
}

.hero-lines::before,
.hero-lines::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.hero-lines::before {
  inset: 55px 24px 140px 46px;
}

.hero-lines::after {
  inset: 150px -34px 45px 90px;
}

.hero-copy,
.hero-stage {
  position: relative;
  z-index: 2;
}

.kicker {
  margin: 0 0 24px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero h1,
.intro h2,
.book-copy h2,
.about-copy h2,
.newsletter h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.05;
}

.hero h1 {
  max-width: 620px;
  color: #d8ca90;
  font-size: 66px;
}

.hero-copy p:not(.kicker) {
  max-width: 580px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  line-height: 1.55;
}

.hero-actions {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  min-height: 66px;
  padding: 21px 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
}

.button.gold {
  background: var(--gold);
  color: var(--paper);
}

.button.gold:hover,
.header-cta:hover {
  background: var(--gold-deep);
}

.button.outline {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--paper);
}

.hero-stage {
  min-height: 530px;
}

.photo-frame {
  position: relative;
  z-index: 1;
  width: min(690px, 100%);
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #222;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.42);
}

.photo-frame::before {
  content: "";
  position: absolute;
  top: -92px;
  right: -82px;
  width: 330px;
  height: 220px;
  z-index: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 231, 169, 0.34), transparent 34%),
    linear-gradient(140deg, rgba(245, 181, 118, 0.24), rgba(255, 248, 225, 0.08) 46%, rgba(82, 48, 26, 0.16));
  mix-blend-mode: soft-light;
  box-shadow:
    inset 0 0 95px rgba(255, 199, 116, 0.18),
    inset 0 -60px 120px rgba(83, 46, 21, 0.18);
}

.photo-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 530px;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.8) contrast(0.94) brightness(0.8);
}

.photo-frame img.hero-photo--wea {
  object-position: 100% 50%;
  filter: sepia(0.18) saturate(1.12) contrast(0.9) brightness(1.04);
}

.stage-card {
  position: relative;
  z-index: 2;
  width: min(500px, 78%);
  min-height: 72px;
  margin: -34px 0 0 auto;
  padding: 19px 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 8px;
  background: #262626;
  color: var(--paper);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.stage-card span {
  color: var(--gold);
  font-weight: 900;
}

.stage-card p {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  line-height: 1.35;
}

.stage-card strong {
  display: block;
  margin-bottom: 7px;
  font-size: 25px;
  line-height: 1.08;
}

.stage-card small {
  display: block;
  font-family: Inter, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: rgba(250, 247, 239, 0.76);
}

.intro {
  padding: 104px 8vw 120px;
  background: var(--cream);
}

.intro-copy {
  max-width: 1180px;
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(380px, 1fr);
  align-items: center;
  gap: 64px;
  text-align: left;
}

.review-callout {
  width: 100%;
  max-width: 520px;
  margin: 0;
}

.review-callout img {
  width: 100%;
  border-radius: 3px;
  background: var(--paper);
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.14);
}

.intro-text {
  max-width: 600px;
}

.intro h2 {
  color: var(--black);
  font-size: 52px;
}

.intro h2::after,
.book-copy h2::after,
.about-copy h2::after {
  content: "";
  display: block;
  width: 250px;
  height: 3px;
  margin: 22px auto 0;
  background: var(--gold);
  border-radius: 999px;
  transform: rotate(-2deg);
}

.intro h2::after {
  margin-left: 0;
}

.intro p {
  max-width: 760px;
  margin: 28px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
}

.topic-grid {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.topic-grid article {
  min-height: 340px;
  padding: 0 34px 42px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 2px solid #1c1c1c;
  border-radius: 8px;
  background: var(--paper);
  overflow: hidden;
}

.card-rule {
  height: 28px;
  margin: 0 -34px auto;
  background: var(--gold);
  border-bottom: 2px solid #1c1c1c;
}

.card-rule.silver {
  background: var(--silver);
}

.card-rule.dark {
  background: var(--black-soft);
}

.topic-grid span {
  margin: 0 0 28px;
  color: var(--gold-deep);
  font-size: 15px;
  font-weight: 900;
}

.topic-grid h3 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  line-height: 1.12;
}

.topic-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.book-section {
  padding: 96px 5vw 112px;
  display: grid;
  grid-template-columns: minmax(250px, 0.28fr) minmax(640px, 0.72fr);
  align-items: center;
  gap: 40px;
  background: var(--black);
  color: var(--paper);
}

.book-copy {
  max-width: 460px;
}

.book-copy h2 {
  color: var(--gold);
  font-size: 58px;
}

.book-copy h2::after {
  margin-left: 0;
}

.book-copy p {
  margin: 34px 0 30px;
  color: rgba(255, 255, 255, 0.84);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.55;
}

.publisher-sheet {
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  background: var(--powder);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.4);
}

.publisher-sheet-mobile {
  width: min(100%, 744px);
  justify-self: center;
}

.publisher-sheet-link {
  display: block;
  cursor: zoom-in;
}

.publisher-sheet img {
  width: min(100%, 924px);
  max-width: 100%;
  max-height: none;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 4px;
  background: var(--paper);
}

.about {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(360px, 1.24fr);
  background: var(--cream);
}

.about-image {
  position: relative;
  min-height: 720px;
  background:
    radial-gradient(circle at 52% 24%, rgba(255, 224, 166, 0.36), transparent 34%),
    linear-gradient(155deg, #ead4b4 0%, #bc9a74 48%, #2e2821 100%);
  overflow: hidden;
}

.about-image::before,
.about-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.about-image::before {
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 230, 176, 0.38), transparent 34%),
    linear-gradient(145deg, rgba(238, 178, 106, 0.14), rgba(255, 249, 226, 0.04) 50%, rgba(73, 39, 18, 0.14));
  mix-blend-mode: soft-light;
}

.about-image::after {
  box-shadow:
    inset 0 0 110px rgba(255, 203, 123, 0.14),
    inset -70px 0 120px rgba(255, 224, 166, 0.12),
    inset 0 -90px 150px rgba(56, 32, 17, 0.14);
}

.about-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: center 34%;
  filter: sepia(0.12) saturate(1.08) contrast(1.04) brightness(1.02);
}

.about-copy {
  min-height: 720px;
  padding: 94px 8vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-copy h2 {
  max-width: 660px;
  color: var(--black);
  font-size: 52px;
}

.about-copy h2::after {
  margin-left: 0;
}

.about-copy p {
  max-width: 690px;
  margin: 30px 0 0;
  color: #403c37;
  font-size: 18px;
  line-height: 1.75;
}

.about-actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.about-actions .button {
  width: 246px;
  min-height: 58px;
  padding: 0 22px;
  flex: 0 0 246px;
}

.pw-feature {
  gap: 10px;
  border-color: #1c1c1c;
  background: var(--paper);
  color: var(--black);
}

.pw-feature:hover {
  background: #f2eee5;
}

.pw-feature img {
  width: 28px;
  height: 24px;
  flex: 0 0 auto;
  object-fit: contain;
}

.contact-page {
  background: var(--cream);
}

.contact-hero {
  min-height: 520px;
  padding: 190px 8vw 92px;
  display: flex;
  align-items: flex-end;
  background: var(--black);
  color: var(--paper);
}

.contact-hero h1 {
  max-width: 860px;
  margin: 0;
  color: #d8ca90;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 72px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.03;
}

.contact-section {
  padding: 96px 8vw 118px;
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 0.62fr);
  align-items: start;
  gap: 64px;
  background: var(--cream);
}

.contact-intro {
  position: sticky;
  top: 32px;
}

.contact-intro h2 {
  max-width: 430px;
  margin: 0;
  color: var(--black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
}

.contact-intro p {
  max-width: 460px;
  margin: 24px 0 38px;
  color: #403c37;
  font-size: 20px;
  line-height: 1.6;
}

.contact-intro img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 28%;
  border-radius: 8px;
  filter: saturate(0.88) contrast(0.95);
}

.contact-form {
  padding: 44px;
  border: 2px solid #1c1c1c;
  border-radius: 8px;
  background: var(--paper);
}

.contact-form fieldset {
  margin: 42px 0 0;
  padding: 40px 0 0;
  border: 0;
  border-top: 1px solid #ded6c8;
}

.contact-form legend,
.contact-form label span,
.radio-group p {
  color: var(--black);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: uppercase;
}

.contact-form legend {
  padding: 0 0 10px;
}

.form-grid {
  display: grid;
  gap: 24px;
}

.form-grid.two-column {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.contact-form .form-grid + label,
.contact-form fieldset > label + label,
.radio-group {
  margin-top: 24px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfc6b8;
  border-radius: 4px;
  background: #fbfaf7;
  color: var(--ink);
  font: inherit;
}

.contact-form input {
  min-height: 58px;
  padding: 0 16px;
}

.contact-form textarea {
  min-height: 138px;
  padding: 14px 16px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(210, 186, 115, 0.35);
  outline-offset: 1px;
  border-color: var(--gold-deep);
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}

.radio-group p {
  width: 100%;
  margin: 0;
}

.radio-group label {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #403c37;
  font-size: 17px;
  line-height: 1.3;
}

.radio-group input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--gold-deep);
}

.contact-submit {
  width: 100%;
  margin-top: 42px;
  cursor: pointer;
}

.newsletter {
  padding: 86px 8vw;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.75fr);
  align-items: center;
  gap: 54px;
  background: var(--black-soft);
  color: var(--paper);
}

.newsletter h2 {
  max-width: 780px;
  color: var(--gold);
  font-size: 42px;
}

.signup label {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.signup-row {
  display: flex;
  gap: 12px;
}

.signup input,
.signup button {
  min-height: 64px;
  border: 0;
  border-radius: 7px;
  font: inherit;
}

.signup input {
  min-width: 0;
  flex: 1;
  padding: 0 18px;
  background: var(--paper);
  color: var(--ink);
}

.signup button {
  padding: 0 24px;
  background: var(--gold);
  color: var(--paper);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.site-footer {
  min-height: 150px;
  padding: 42px 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: #0d0d0d;
  color: var(--paper);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .site-header {
    position: relative;
    grid-template-columns: 1fr;
    background: var(--black);
  }

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

  .header-cta {
    justify-self: start;
  }

  .hero {
    min-height: auto;
    padding-top: 92px;
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: auto;
  }

  .photo-frame {
    margin: 0;
  }

  .book-section,
  .about,
  .contact-section,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    min-height: auto;
    padding-top: 96px;
  }

  .contact-intro {
    position: static;
  }

  .contact-intro img {
    max-height: 440px;
  }

  .about-image,
  .about-image img,
  .about-copy {
    min-height: auto;
  }

  .about-image img {
    height: 560px;
  }
}

@media (max-width: 860px) {
  body {
    font-size: 16px;
  }

  .site-header {
    padding: 24px;
    gap: 22px;
  }

  .signature {
    font-size: 34px;
  }

  .nav {
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    padding-bottom: 2px;
    font-size: 12px;
  }

  .header-cta {
    width: 100%;
    min-height: 58px;
    padding: 18px;
  }

  .hero {
    padding: 64px 24px 124px;
    gap: 44px;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-copy p:not(.kicker),
  .intro p,
  .book-copy p {
    font-size: 19px;
  }

  .hero-actions,
  .about-actions,
  .signup-row,
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .about-actions .button {
    flex: 0 0 auto;
  }

  .photo-frame::before {
    display: none;
  }

  .photo-frame img {
    height: 360px;
  }

  .stage-card {
    width: calc(100% - 24px);
  }

  .intro,
  .book-section,
  .about-copy,
  .contact-hero,
  .contact-section,
  .newsletter,
  .site-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .book-section {
    padding-top: 78px;
    padding-bottom: 84px;
    gap: 30px;
  }

  .intro-copy {
    max-width: 640px;
    margin-bottom: 58px;
    grid-template-columns: 1fr;
    gap: 34px;
    text-align: center;
  }

  .review-callout {
    max-width: 500px;
    margin: 0 auto;
  }

  .intro-text {
    max-width: none;
  }

  .intro h2::after {
    margin-left: auto;
  }

  .intro p {
    margin-left: auto;
    margin-right: auto;
  }

  .book-copy {
    max-width: none;
  }

  .contact-hero h1 {
    font-size: 48px;
  }

  .contact-form {
    padding: 28px;
  }

  .form-grid.two-column {
    grid-template-columns: 1fr;
  }

  .intro h2,
  .about-copy h2 {
    font-size: 38px;
  }

  .book-copy h2 {
    font-size: 50px;
  }

  .book-copy p {
    margin-top: 26px;
    margin-bottom: 26px;
    font-size: 20px;
    line-height: 1.5;
  }

  .newsletter h2 {
    font-size: 34px;
  }

  .topic-grid {
    grid-template-columns: 1fr;
  }

  .topic-grid article {
    min-height: 280px;
  }

  .publisher-sheet {
    width: calc(100% + 24px);
    max-width: none;
    margin-left: -12px;
    padding: 4px;
  }

  .publisher-sheet-mobile {
    justify-self: stretch;
  }

  .publisher-sheet img {
    width: 100%;
    max-height: none;
  }

  .about-image img {
    height: 430px;
  }

  .socials {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 38px;
  }

  .contact-hero h1 {
    font-size: 40px;
  }

  .contact-intro h2 {
    font-size: 34px;
  }

  .contact-form {
    padding: 22px;
  }

  .intro h2,
  .about-copy h2 {
    font-size: 32px;
  }

  .book-copy h2 {
    font-size: 44px;
  }

  .book-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .publisher-sheet {
    width: calc(100% + 32px);
    margin-left: -16px;
    padding: 0;
    border-radius: 0;
  }

  .topic-grid h3 {
    font-size: 27px;
  }

  .review-callout {
    width: calc(100% + 32px);
    max-width: none;
    margin-left: -16px;
  }
}
