:root {
  --ivory: #f7f2ea;
  --paper: #fffdf8;
  --wine: #7a2638;
  --wine-dark: #541927;
  --plum: #2b1720;
  --sage: #74806a;
  --gold: #c79b62;
  --ink: #261f21;
  --muted: #6f6668;
  --line: rgba(43, 23, 32, 0.15);
  --shadow: 0 30px 80px rgba(43, 23, 32, 0.14);
  --display: "Iowan Old Style", "Baskerville", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #fff;
  background: var(--plum);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 14px clamp(28px, 4vw, 72px);
  border-bottom: 1px solid transparent;
  transition:
    min-height 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled {
  min-height: 66px;
  background: rgba(255, 253, 248, 0.94);
  border-color: var(--line);
  box-shadow: 0 8px 28px rgba(43, 23, 32, 0.07);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--ivory);
  background: var(--wine);
  font-family: var(--display);
  font-size: 21px;
  font-style: italic;
  font-weight: 700;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 38px);
}

.site-nav a,
.site-footer nav a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav a::after,
.site-footer nav a::after,
.text-link::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-footer nav a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 13px 10px;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: var(--plum);
  transition: transform 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid var(--wine);
  border-radius: 999px;
  color: #fff;
  background: var(--wine);
  box-shadow: 0 10px 22px rgba(122, 38, 56, 0.18);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  background: var(--wine-dark);
  box-shadow: 0 14px 28px rgba(122, 38, 56, 0.25);
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 10px 20px;
  font-size: 14px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  min-height: min(880px, 100svh);
  gap: 0;
  padding: 78px clamp(28px, 4vw, 72px) 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(199, 155, 98, 0.2), transparent 28%),
    var(--ivory);
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 6vw, 82px) clamp(52px, 5vw, 84px) clamp(58px, 6vw, 82px) 0;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--wine);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #e0bd8d;
}

h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h1 {
  max-width: 760px;
  font-size: clamp(48px, 4.8vw, 74px);
  line-height: 1.01;
}

.hero-line,
.hero-highlight {
  display: block;
}

.hero-highlight {
  width: max-content;
  max-width: 100%;
  color: var(--wine);
  white-space: nowrap;
}

.hero-line-final {
  white-space: nowrap;
}

h2 {
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.02;
}

.hero-intro {
  max-width: 650px;
  margin: 30px 0 0;
  color: #51484a;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 34px;
}

.text-link {
  position: relative;
  color: var(--wine);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 38px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  list-style: none;
}

.trust-list li::before {
  margin-right: 9px;
  color: var(--sage);
  content: "●";
  font-size: 8px;
  vertical-align: 2px;
}

.hero-media {
  position: relative;
  min-height: 640px;
  margin: 26px 0 26px -72px;
  overflow: hidden;
  border-radius: 2px 26px 26px 2px;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      var(--ivory) 0%,
      rgba(247, 242, 234, 0.98) 10%,
      rgba(247, 242, 234, 0.84) 22%,
      rgba(247, 242, 234, 0.4) 36%,
      transparent 54%
    ),
    linear-gradient(180deg, rgba(43, 23, 32, 0.02), rgba(43, 23, 32, 0.08));
  content: "";
  pointer-events: none;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 100% center;
}

.hero-media figcaption {
  position: absolute;
  z-index: 2;
  right: clamp(22px, 3vw, 52px);
  bottom: clamp(24px, 4vw, 58px);
  display: grid;
  gap: 6px;
  max-width: 250px;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: rgba(43, 23, 32, 0.68);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  font-family: var(--display);
  font-size: 19px;
  line-height: 1.35;
}

.chapter-label {
  color: #ebc894;
  font-family: var(--body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.statement-section {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 760px;
  padding: 100px 24px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(43, 23, 32, 0.9), rgba(43, 23, 32, 0.74)),
    url("assets/bg1.webp") center / cover;
}

.statement-section::before {
  position: absolute;
  top: 0;
  left: clamp(24px, 8vw, 140px);
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.18);
  content: "";
}

.statement-inner {
  width: min(100%, 1050px);
  padding-left: clamp(0px, 8vw, 110px);
}

.statement-inner h2 {
  max-width: 950px;
}

.statement-inner > p:not(.eyebrow) {
  max-width: 850px;
  margin: 34px 0;
  color: rgba(255, 255, 255, 0.82);
}

.button-light {
  border-color: #fff;
  color: var(--plum);
  background: #fff;
  box-shadow: none;
}

.button-light:hover {
  color: #fff;
  background: transparent;
}

.editorial-section {
  padding: clamp(92px, 10vw, 168px) clamp(24px, 7vw, 112px);
  background: var(--paper);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(36px, 8vw, 130px);
  align-items: end;
  max-width: 1320px;
  margin: 0 auto 90px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -12px;
}

.section-heading p:last-child {
  margin: 0 0 8px;
  color: var(--muted);
}

.photo-story {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(290px, 0.8fr) minmax(220px, 0.62fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}

.photo-card {
  margin: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-card-large {
  aspect-ratio: 0.93;
}

.photo-card-small {
  aspect-ratio: 0.86;
  margin-top: 130px;
}

.story-copy {
  padding: 30px 0;
}

.story-copy p {
  margin: 0 0 24px;
}

.chapter-number {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--wine);
  font-family: var(--display);
  font-size: 28px;
  font-style: italic;
  line-height: 1.2;
}

.conversation-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 5vw, 82px);
  align-items: center;
  min-height: 0;
  padding: clamp(58px, 6vw, 84px) clamp(24px, 7vw, 112px);
  overflow: hidden;
  color: #fff;
  background: var(--sage);
}

.conversation-visual {
  position: relative;
  width: 100%;
  max-width: 480px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  box-shadow: 0 28px 70px rgba(43, 23, 32, 0.2);
  justify-self: end;
}

.conversation-visual img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.conversation-copy {
  max-width: 820px;
}

.conversation-copy p:last-child {
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.88);
}

.closing-section {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 740px;
  padding: 100px 24px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(43, 23, 32, 0.94), rgba(43, 23, 32, 0.66)),
    url("assets/bg2.jpg") center / cover;
}

.closing-card {
  width: min(100%, 1050px);
  padding: clamp(36px, 6vw, 84px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(43, 23, 32, 0.56);
  box-shadow: var(--shadow);
  backdrop-filter: blur(9px);
  text-align: center;
}

.closing-card p:not(.eyebrow) {
  max-width: 820px;
  margin: 34px auto;
  color: rgba(255, 255, 255, 0.84);
}

.button-gold {
  border-color: var(--gold);
  color: var(--plum);
  background: var(--gold);
  box-shadow: none;
}

.button-gold:hover {
  border-color: #e3bd89;
  background: #e3bd89;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 70px;
  padding: 70px clamp(24px, 7vw, 112px) 32px;
  color: #fff;
  background: var(--plum);
}

.site-footer > div p {
  max-width: 540px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.brand-footer {
  color: #fff;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 14px;
}

.copyright {
  grid-column: 1 / -1;
  margin: 30px 0 0;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}

.mobile-join {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 20px;
  }

  .hero {
    grid-template-columns: 1fr 0.85fr;
  }

  .hero-copy {
    padding-right: 42px;
  }

  h1 {
    font-size: clamp(48px, 6vw, 68px);
  }

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

  .story-copy {
    grid-column: 2;
    grid-row: 1;
  }

  .photo-card-small {
    grid-column: 2;
    margin-top: 0;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 74px;
  }

  body {
    padding-bottom: 72px;
    font-size: 16px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 68px;
    padding: 10px 18px;
    background: rgba(255, 253, 248, 0.97);
    border-color: var(--line);
  }

  .brand {
    font-size: 14px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .menu-button {
    display: block;
  }

  .menu-button[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 10px 18px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 20px 40px rgba(43, 23, 32, 0.1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    min-height: 48px;
    padding: 12px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .header-cta {
    display: none;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 68px 18px 0;
  }

  .hero-copy {
    order: 2;
    padding: 52px 22px 58px;
  }

  h1 {
    font-size: clamp(44px, 13vw, 60px);
    overflow-wrap: normal;
  }

  .hero-line-final {
    white-space: normal;
  }

  h2 {
    font-size: clamp(38px, 10.5vw, 54px);
  }

  .hero-intro {
    margin-top: 24px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
  }

  .text-link {
    align-self: center;
  }

  .trust-list {
    display: grid;
    margin-top: 34px;
  }

  .hero-media {
    order: 1;
    min-height: 450px;
    margin: 18px 0 0;
    border-radius: 18px;
  }

  .hero-media img {
    object-position: 94% center;
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(43, 23, 32, 0.28), transparent 45%);
  }

  .hero-media figcaption {
    right: 18px;
    bottom: 18px;
    left: 18px;
    max-width: none;
  }

  .statement-section {
    min-height: auto;
    padding: 84px 22px;
  }

  .statement-section::before {
    display: none;
  }

  .statement-inner {
    padding-left: 0;
  }

  .statement-inner > p:not(.eyebrow),
  .closing-card p:not(.eyebrow),
  .conversation-copy p:last-child {
    margin-top: 26px;
  }

  .editorial-section {
    padding: 84px 22px;
  }

  .section-heading {
    display: block;
    margin-bottom: 54px;
  }

  .section-heading h2 {
    margin-bottom: 26px;
  }

  .photo-story {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .story-copy {
    order: 2;
    padding: 0;
  }

  .photo-card-large {
    order: 1;
    width: 100%;
  }

  .photo-card-small {
    order: 3;
    width: 78%;
    margin-left: auto;
  }

  .conversation-section {
    display: block;
    min-height: auto;
    padding: 64px 22px;
  }

  .conversation-visual {
    max-width: 520px;
    margin-bottom: 30px;
  }

  .closing-section {
    min-height: auto;
    padding: 70px 16px;
  }

  .closing-card {
    padding: 42px 22px;
  }

  .site-footer {
    display: block;
    padding: 60px 22px 38px;
  }

  .site-footer nav {
    margin-top: 38px;
  }

  .mobile-join {
    position: fixed;
    z-index: 45;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    color: #fff;
    background: rgba(122, 38, 56, 0.96);
    box-shadow: 0 16px 34px rgba(43, 23, 32, 0.32);
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    backdrop-filter: blur(14px);
  }
}

@media (max-width: 410px) {
  .brand {
    gap: 8px;
    font-size: 13px;
  }

  .hero-media {
    min-height: 390px;
  }

  h1 {
    font-size: clamp(40px, 11.2vw, 46px);
  }

  .button {
    width: 100%;
  }

  .photo-card-small {
    width: 88%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
