:root {
  --ink: #342b2b;
  --wine: #803e4f;
  --wine-dark: #6b3140;
  --cream: #fbf7f2;
  --paper: #fffdf9;
  --line: rgba(73, 54, 50, .18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}

.site-header {
  min-height: 92px;
  padding: 18px clamp(24px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.brand {
  color: var(--ink);
  text-decoration: none;
  display: grid;
  gap: 2px;
}

.brand-name {
  font: 600 27px/1 "Newsreader", serif;
  letter-spacing: -.02em;
}

.brand-line {
  color: #786b68;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.header-link {
  color: var(--wine);
  font-size: 14px;
  font-weight: 600;
  text-underline-offset: 5px;
}

.hero {
  position: relative;
  min-height: calc(100svh - 92px);
  isolation: isolate;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #eee2da;
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-photo {
  z-index: -2;
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(250,247,242,.98) 0%, rgba(250,247,242,.93) 38%, rgba(250,247,242,.28) 62%, rgba(250,247,242,0) 82%);
}

.hero-content {
  width: min(650px, 48vw);
  margin: -38px 0 82px clamp(24px, 7vw, 108px);
  animation: arrive .75s ease-out both;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1 {
  max-width: 650px;
  margin: 0;
  font: 500 clamp(50px, 5vw, 78px)/.98 "Newsreader", serif;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.intro {
  max-width: 590px;
  margin: 27px 0 0;
  color: #574b49;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  padding: 15px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid var(--wine);
  border-radius: 2px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.button:hover { transform: translateY(-2px); }

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

.button-primary:hover { background: var(--wine-dark); }

.button-secondary {
  background: rgba(255,255,255,.35);
  color: var(--wine);
}

.button-secondary:hover { background: rgba(255,255,255,.75); }

.program-note {
  margin: 27px 0 0;
  color: #6f615e;
  font-size: 13px;
  line-height: 1.6;
}

.program-note strong { color: var(--ink); }

.trust-strip {
  position: absolute;
  inset: auto 0 0;
  min-height: 64px;
  padding: 16px clamp(24px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 45px);
  background: rgba(48, 38, 37, .92);
  color: #f7eee9;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.trust-strip i {
  width: 3px;
  height: 3px;
  flex: 0 0 3px;
  border-radius: 50%;
  background: #d8a7a9;
}

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

@media (max-width: 820px) {
  .site-header { min-height: 78px; }
  .brand-line { display: none; }
  .hero {
    min-height: auto;
    padding-top: 69vw;
    display: block;
    background: var(--cream);
  }
  .hero-photo {
    height: 69vw;
    min-height: 360px;
    max-height: 520px;
    object-position: 70% center;
  }
  .hero-shade {
    height: 69vw;
    min-height: 360px;
    max-height: 520px;
    background: linear-gradient(0deg, var(--cream) 0%, rgba(251,247,242,0) 30%);
  }
  .hero-content {
    width: auto;
    margin: 0;
    padding: 52px 24px 42px;
  }
  h1 { font-size: clamp(45px, 13vw, 66px); }
  .intro { font-size: 17px; }
  .actions { display: grid; }
  .button { width: 100%; }
  .trust-strip {
    position: static;
    display: grid;
    gap: 10px;
    padding-block: 24px;
  }
  .trust-strip i { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}
