:root {
  --paper: #f4efe3;
  --paper-deep: #e9dfca;
  --ink: #20201d;
  --muted: #67645c;
  --line: rgba(35, 35, 30, 0.15);
  --teal: #176b70;
  --teal-soft: #d5ebe7;
  --gold: #b8892f;
  --copper: #a45d34;
  --green: #4c8a4d;
  --white: #fffaf0;
  --shadow: 0 24px 60px rgba(41, 34, 22, 0.18);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(95, 83, 59, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(95, 83, 59, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 28px 28px;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  isolation: isolate;
  background: #d9ceb8;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 42% center;
  z-index: -2;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(244, 239, 227, 0.14) 0%, rgba(244, 239, 227, 0.18) 47%, rgba(244, 239, 227, 0.88) 67%, rgba(244, 239, 227, 0.96) 100%),
    linear-gradient(0deg, rgba(26, 23, 18, 0.2), transparent 42%);
}

.hero__content {
  width: min(520px, calc(100% - 40px));
  margin-left: auto;
  margin-right: max(40px, calc((100vw - 1120px) / 2));
  padding: 80px 0;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(3.05rem, 6.2vw, 5.55rem);
  line-height: 0.9;
  text-transform: uppercase;
  max-width: 10.6ch;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
  line-height: 1.1;
}

.subtitle {
  color: var(--teal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1.15;
}

.hero__copy {
  max-width: 520px;
  margin-bottom: 28px;
  color: #3e3b34;
  font-size: 1.1rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(32, 32, 29, 0.2);
  border-radius: 6px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

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

.button--secondary {
  background: rgba(255, 250, 240, 0.72);
  color: var(--ink);
  backdrop-filter: blur(10px);
}

.band {
  padding: 84px 0;
  background: var(--white);
}

.intro__grid,
.decision-band__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 64px;
  align-items: start;
}

.intro p,
.decision-list p,
.book-band__content p,
.closing p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.78;
}

.signals {
  padding: 96px 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.signal-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.72);
  box-shadow: 0 12px 34px rgba(43, 35, 22, 0.06);
}

.signal-card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.signal-dot {
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 40px;
  border-radius: 999px;
}

.signal-dot--teal {
  background: var(--teal);
}

.signal-dot--gold {
  background: var(--gold);
}

.signal-dot--green {
  background: var(--green);
}

.signal-dot--copper {
  background: var(--copper);
}

.book-band {
  padding: 96px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(23, 107, 112, 0.12), transparent 32%),
    linear-gradient(180deg, #f9f4e8, #efe5d1);
}

.book-band__grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 72px;
  align-items: center;
}

.book-band__image-wrap img {
  width: min(420px, 100%);
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.module-grid span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 13px 15px;
  border-left: 3px solid var(--teal);
  background: rgba(255, 250, 240, 0.68);
  color: #38352f;
  font-size: 0.95rem;
  line-height: 1.28;
}

.decision-band {
  padding: 88px 0;
  background: #fbf7ee;
}

.decision-list {
  display: grid;
  gap: 14px;
}

.decision-list p {
  margin: 0;
  padding: 20px 0 20px 28px;
  border-top: 1px solid var(--line);
  position: relative;
}

.decision-list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 29px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--teal);
  border-radius: 999px;
  background: var(--paper);
}

.closing {
  padding: 108px 0 120px;
  text-align: center;
  background:
    linear-gradient(rgba(32, 32, 29, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(32, 32, 29, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
}

.closing__inner {
  max-width: 780px;
}

.closing p {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    padding-top: 72vh;
    align-items: end;
  }

  .hero__image {
    height: 72vh;
    object-position: 28% center;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, transparent 0%, rgba(244, 239, 227, 0.08) 50%, var(--paper) 72%),
      linear-gradient(0deg, var(--paper) 0%, transparent 34%);
  }

  .hero__content {
    width: min(680px, calc(100% - 40px));
    margin: 0 auto;
    padding: 30px 0 58px;
  }

  h1 {
    max-width: 10.6ch;
  }

  .intro__grid,
  .book-band__grid,
  .decision-band__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .signal-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .wrap,
  .hero__content {
    width: min(100% - 28px, 680px);
  }

  .hero {
    padding-top: 60vh;
  }

  .hero__image {
    height: 60vh;
    object-position: 24% center;
  }

  h1 {
    font-size: clamp(2.35rem, 13vw, 3.45rem);
  }

  h2 {
    font-size: clamp(1.9rem, 10vw, 2.8rem);
  }

  .hero__actions,
  .button {
    width: 100%;
  }

  .signal-row,
  .module-grid {
    grid-template-columns: 1fr;
  }

  .band,
  .signals,
  .book-band,
  .decision-band,
  .closing {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .signal-card {
    min-height: auto;
  }
}
