:root {
  --sand: #f4efe6;
  --ink: #2a2620;
  --ink-soft: #5f584e;
  --ink-mute: #7a7267;
  --plum: #794368;
  --rule: rgba(42, 38, 32, 0.1);
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
  --sans: "Archivo", Helvetica, Arial, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; }

figure, blockquote, h1, p { margin: 0; }

body {
  margin: 0;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--serif);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--plum); text-decoration: none; }
a:hover { color: var(--ink); }

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

/* ---------- nav ---------- */
.hero__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: clamp(20px, 2.6vw, 32px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--rule);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 28px; height: 28px; display: block; }
.brand__name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(15px, 1.4vw, 20px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero__badge {
  font-family: var(--mono);
  font-size: clamp(10px, 0.9vw, 12px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--plum);
  border: 1px solid rgba(121, 67, 104, 0.35);
  border-radius: 999px;
  padding: 8px 16px;
  white-space: nowrap;
}

/* ---------- body ---------- */
.hero__body {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  padding: clamp(40px, 5vw, 64px) clamp(24px, 4vw, 56px) clamp(32px, 4vw, 48px) clamp(24px, 5vw, 72px);
  animation: riseIn 0.6s ease both;
}

.eyebrow {
  margin-bottom: clamp(18px, 2.4vw, 30px);
  font-family: var(--mono);
  font-size: clamp(10px, 0.85vw, 11px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--plum);
}

.hero__title {
  margin: 0;
  font-weight: 300;
  font-size: clamp(40px, 5.3vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.hero__title em { font-style: italic; }

.hero__lede {
  margin-top: clamp(20px, 2.6vw, 34px);
  max-width: 49ch;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.62;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(14px, 1.6vw, 20px);
  margin-top: clamp(28px, 3.4vw, 46px);
  font-family: var(--sans);
}

.btn {
  background: var(--ink);
  color: var(--sand);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 18px 32px;
  border: 0;
  cursor: default;
  pointer-events: none;
}

.btn:disabled { opacity: 0.45; }

.hero__cta-note { font-size: 14px; color: var(--ink-mute); }

.hero__foot {
  margin-top: auto;
  padding-top: clamp(24px, 2.8vw, 36px);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.02em;
  line-height: 1.6;
  color: var(--ink-mute);
  max-width: 46ch;
}

/* ---------- personas ---------- */
.personas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: 1fr;
}

.persona {
  display: flex;
  align-items: flex-end;
  padding: clamp(16px, 1.8vw, 22px);
  min-height: clamp(180px, 22vw, 340px);
  background: #e0d6c6;
}

.persona--photo { position: relative; overflow: hidden; }
.persona--photo figcaption { position: relative; z-index: 1; }
.persona--photo .persona__name,
.persona--photo .persona__desc { color: #f4efe6; }
.persona__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% 30%;
}
.persona--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20, 16, 14, 0.72), rgba(20, 16, 14, 0.08) 55%, transparent);
}

.persona__img--renee { object-position: 60% 30%; }

.persona__img--dale { object-position: 32% 40%; }

.persona__name {
  font-family: var(--sans);
  font-size: clamp(13px, 1.1vw, 15px);
  font-weight: 600;
}
.persona__desc {
  font-family: var(--sans);
  font-size: clamp(12px, 1vw, 13px);
  color: var(--ink-soft);
}

.quote {
  background: var(--plum);
  min-height: clamp(180px, 22vw, 340px);
  color: var(--sand);
  padding: clamp(22px, 2.4vw, 30px) clamp(20px, 2vw, 26px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quote__text {
  font-size: clamp(20px, 2.1vw, 30px);
  line-height: 1.28;
  font-weight: 300;
  text-wrap: pretty;
}
.quote__by {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.02em;
  margin-top: 20px;
  opacity: 0.8;
}

/* ---------- breakpoints ---------- */
@media (max-width: 860px) {
  .hero__body { grid-template-columns: 1fr; }
  .hero__copy { padding: 40px 24px 32px; }
  .personas { grid-template-columns: 1fr 1fr; }
  .quote { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .btn { width: 100%; text-align: center; }
  .hero__cta { gap: 12px; }
  .personas { grid-template-columns: 1fr; }
  .persona { min-height: 190px; }
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__copy { animation: none; }
}
