:root {
  --ink: #11100f;
  --paper: #f6efe4;
  --cream: #fff9ef;
  --ember: #ff4f32;
  --gold: #f7b733;
  --deep: #241316;
  --rose: #b82f52;
  --muted: #6f625d;
  --line: rgba(17, 16, 15, 0.16);
  --shadow: 0 28px 80px rgba(17, 16, 15, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(246, 239, 228, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--cream);
  background: var(--ink);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 900;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 18px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.nav a {
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(28px, 6vw, 72px);
  min-height: calc(100vh - 78px);
  padding: clamp(48px, 7vw, 96px) clamp(20px, 5vw, 72px) clamp(56px, 8vw, 104px);
  background:
    radial-gradient(circle at 80% 16%, rgba(255, 79, 50, 0.34), transparent 30%),
    radial-gradient(circle at 20% 85%, rgba(247, 183, 51, 0.42), transparent 34%),
    linear-gradient(135deg, var(--paper), #ead6c6 48%, #d5a58f);
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 950px;
  margin-bottom: 28px;
  font-size: clamp(64px, 10vw, 160px);
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 span {
  display: block;
  color: var(--ember);
}

.hero-text {
  max-width: 700px;
  color: var(--deep);
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 700;
  line-height: 1.15;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

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

.button.ghost {
  background: transparent;
}

.hero-visual {
  display: grid;
  align-items: start;
  padding-top: clamp(28px, 6vw, 92px);
}

.portrait-card {
  transform: rotate(2deg);
}

.portrait-frame {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: end start;
  overflow: hidden;
  padding: 28px;
  color: var(--cream);
  background:
    linear-gradient(160deg, rgba(17, 16, 15, 0.1), rgba(17, 16, 15, 0.84)),
    radial-gradient(circle at 48% 24%, rgba(255, 249, 239, 0.34), transparent 18%),
    linear-gradient(135deg, #1d1517, #6d2231 48%, #f05a38);
  box-shadow: var(--shadow);
}

.portrait-frame img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: min(84%, 430px);
  height: auto;
  transform: translate(-50%, -50%);
  border: 8px solid rgba(255, 249, 239, 0.88);
  border-radius: 0;
  box-shadow: 0 24px 70px rgba(17, 16, 15, 0.34);
  object-fit: contain;
  image-rendering: auto;
}

.portrait-frame img.book-cover {
  width: min(92%, 500px);
  max-height: 82%;
  object-fit: contain;
}

.portrait-frame img.hero-portrait {
  width: auto;
  height: auto;
  max-width: min(82%, 460px);
  max-height: calc(100% - 96px);
  border: 8px solid rgba(255, 249, 239, 0.88);
  border-radius: 0;
  transform: translate(-50%, -50%);
  object-fit: contain;
  object-position: center center;
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 249, 239, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(17, 16, 15, 0), rgba(17, 16, 15, 0.58));
}

.portrait-frame::before {
  position: absolute;
  inset: 26px;
  content: "";
  border: 2px solid rgba(255, 249, 239, 0.55);
}

.portrait-frame span {
  position: absolute;
  top: 28px;
  left: 28px;
  z-index: 2;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.portrait-card p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.statement-band {
  padding: clamp(34px, 5vw, 58px) clamp(20px, 5vw, 72px);
  color: var(--cream);
  background: var(--ink);
}

.statement-band p {
  max-width: 1160px;
  margin: 0;
  font-size: clamp(32px, 5vw, 72px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.split-section,
.feature-section,
.resources,
.contact-section,
.social-proof {
  padding: clamp(58px, 8vw, 110px) clamp(20px, 5vw, 72px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 92px);
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.body-copy p,
.resources p,
.contact-section p,
.section-heading p {
  max-width: 760px;
  color: var(--deep);
  font-size: clamp(18px, 2vw, 24px);
}

.social-proof {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  margin-bottom: clamp(28px, 5vw, 56px);
}

.section-heading h2 {
  margin-bottom: 0;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.85fr 1.15fr 0.95fr;
  gap: 12px;
  align-items: stretch;
}

.photo-grid figure {
  min-height: clamp(260px, 34vw, 520px);
  margin: 0;
  overflow: hidden;
  background: var(--ink);
}

.photo-grid figure:nth-child(2),
.photo-grid figure:nth-child(4) {
  margin-top: clamp(28px, 6vw, 84px);
}

.photo-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-grid img.contain-image {
  padding: 18px;
  background: #f4d177;
  object-fit: contain;
}

.feature-section {
  color: var(--cream);
  background:
    linear-gradient(135deg, rgba(36, 19, 22, 0.95), rgba(36, 19, 22, 0.88)),
    radial-gradient(circle at 86% 16%, rgba(255, 79, 50, 0.48), transparent 28%);
}

.feature-section .eyebrow {
  color: var(--gold);
}

.feature-section h2 {
  max-width: 1100px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: rgba(255, 249, 239, 0.22);
}

.feature-grid article {
  min-height: 300px;
  padding: clamp(24px, 3vw, 36px);
  background: rgba(36, 19, 22, 0.82);
}

.feature-grid span {
  display: block;
  margin-bottom: 50px;
  color: var(--gold);
  font-size: 14px;
  font-weight: 900;
}

.feature-grid h3 {
  font-size: clamp(28px, 4vw, 56px);
  line-height: 0.95;
  text-transform: uppercase;
}

.feature-grid p {
  color: rgba(255, 249, 239, 0.82);
  font-size: 18px;
}

.quote-section {
  padding: clamp(58px, 8vw, 110px) clamp(20px, 8vw, 120px);
  background: var(--gold);
}

blockquote {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(42px, 7vw, 118px);
  font-weight: 900;
  line-height: 0.88;
  text-transform: uppercase;
}

.quote-section p {
  margin-top: 22px;
  color: var(--deep);
  font-size: 16px;
  font-weight: 800;
}

.resources {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  background: var(--cream);
}

.resource-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.resource-list li {
  padding: 24px;
  border: 2px solid var(--ink);
  background: var(--paper);
}

.resource-list a {
  display: block;
  margin-bottom: 8px;
  color: var(--rose);
  font-size: 22px;
  font-weight: 900;
}

.resource-list span {
  display: block;
  color: var(--deep);
  font-size: 16px;
}

.contact-section {
  color: var(--cream);
  background: var(--ink);
}

.contact-section .eyebrow {
  color: var(--gold);
}

.contact-section p {
  color: rgba(255, 249, 239, 0.82);
}

.contact-section .button {
  margin-top: 18px;
  border-color: var(--cream);
  color: var(--ink);
  background: var(--cream);
}

@media (max-width: 880px) {
  .site-header,
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .split-section,
  .resources,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .portrait-frame {
    min-height: 420px;
  }

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

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

  .photo-grid figure:nth-child(2),
  .photo-grid figure:nth-child(4) {
    margin-top: 0;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 58px;
  }

  .hero-text {
    font-size: 20px;
  }

  .button {
    width: 100%;
  }

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

.options-page {
  background: var(--paper);
}

.options-hero {
  padding: clamp(44px, 6vw, 78px) clamp(20px, 5vw, 72px) clamp(28px, 4vw, 46px);
  border-bottom: 1px solid var(--line);
}

.options-hero h1 {
  max-width: 1200px;
  margin-bottom: 20px;
  font-size: clamp(56px, 8vw, 126px);
}

.options-hero p {
  max-width: 850px;
  color: var(--deep);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  padding: clamp(28px, 5vw, 72px);
}

.photo-option {
  display: grid;
  grid-template-rows: 280px auto;
  min-height: 460px;
  border: 2px solid var(--ink);
  background: var(--cream);
}

.photo-option figure {
  display: grid;
  margin: 0;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
}

.photo-option img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.photo-option-body {
  padding: 16px;
}

.photo-option h2 {
  margin-bottom: 8px;
  font-size: 30px;
}

.photo-option p {
  margin-bottom: 10px;
  color: var(--deep);
  font-size: 15px;
}

.option-status {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 10px;
  color: var(--cream);
  background: var(--ink);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.option-status.use {
  background: var(--rose);
}

.option-status.maybe {
  background: #6f625d;
}

.option-status.avoid {
  background: #11100f;
}
