/* Cinematic opening. The portrait is the original photograph, not a generated edit. */
:root {
  --cover-dark: #23191b;
  --cover-cream: #fff4e6;
  --cover-muted: #d6bdb1;
}

.cover-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 4.5%;
  color: var(--cover-cream);
}
.cover-header .brand-dot { color: #d39880; }
.cover-header .brand-description { color: #d5bfb5; font-size: 10px; }
.cover-header nav { display: flex; gap: 32px; font-size: 13px; }
.cover-header nav a { padding-block: 8px; text-underline-offset: 7px; }
.cover-header nav a:hover { text-decoration: underline; }
.cover-edition { font-size: 12px; text-align: right; color: #d5bfb5; }
.cover-edition > span { display: block; font-size: 10px; letter-spacing: .13em; margin-top: 3px; }

.cover {
  position: relative;
  min-height: 100svh;
  background: var(--cover-dark);
  color: var(--cover-cream);
  overflow: clip;
  isolation: isolate;
  --cover-progress: 0;
  --portrait-scale: 1;
}
.cover::before {
  content: '';
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(ellipse at 0% 58%, #59303980, transparent 65%);
}
.cover::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Cpath fill='%23fff' filter='url(%23grain)' d='M0 0h180v180H0z'/%3E%3C/svg%3E");
}
.cover-portrait {
  position: absolute;
  inset: 0 0 0 auto;
  width: 72%;
  margin: 0;
  z-index: 0;
  transform: scale(var(--portrait-scale));
  transform-origin: 63% 35%;
}
.cover-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
}
.cover-shade {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, #23191b 0%, #23191bf5 25%, #23191ba8 43%, #23191b20 63%, transparent 76%),
    linear-gradient(0deg, #23191b 0%, #23191bc9 13%, transparent 46%),
    linear-gradient(180deg, #23191b70, transparent 22%);
}
.cover-content {
  position: relative;
  z-index: 3;
  max-width: 1540px;
  margin: auto;
  padding: clamp(132px, 15vh, 175px) 4.5% 164px;
}
.cover-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #dbb5a3;
  font-size: 11px;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.cover-kicker > span { width: 35px; height: 1px; background: #d09a83; }
.cover h1 {
  font-size: clamp(4.3rem, min(7vw, 10vh), 6.5rem);
  letter-spacing: -.038em;
  line-height: .94;
  margin: 28px 0 25px;
  max-width: 720px;
}
.cover-line { display: block; }
.cover-line.question-lead { margin-top: 14px; font-size: .76em; line-height: 1.04; }
.cover-line.question { font-size: 1.23em; line-height: .95; margin-top: 3px; }
.cover-line em { color: #e7b09a; font-weight: 400; }
.cover-description { max-width: 405px; font-size: 15px; line-height: 1.65; color: #ead5c9; }
.cover-cta {
  margin-top: 26px;
  padding: 19px 26px;
  min-height: 58px;
  background: #a25c46;
  border-color: #bb806655;
  color: #fff6eb;
  gap: 28px;
  font-size: 14px;
}
.cover-cta:hover { background: #b06a50; }
.cover-meta { display: flex; gap: 32px; margin-top: 28px; color: #e6d0c3; font-size: 12px; line-height: 1.6; }
.cover-meta p > span { display: block; color: #d0b7ab; margin-top: 4px; }
.cover-meta p + p { border-left: 1px solid #9b7b6d70; padding-left: 32px; }
.cover-meta time { font-size: 14px; }
.cover-signature {
  position: absolute;
  z-index: 3;
  right: 6%;
  bottom: 178px;
  text-align: right;
  color: #e7d5ca;
}
.cover-signature > span:first-child { display: block; font-size: 11px; letter-spacing: .05em; }
.cover-signature > span:last-child { display: block; font-family: var(--serif); font-size: 28px; font-style: italic; margin-top: 7px; }
.cover-whispers { position: absolute; inset: 0; pointer-events: none; z-index: 2; opacity: calc(.25 * (1 - var(--cover-progress))); }
.cover-whispers span { position: absolute; font: italic 24px var(--serif); color: #c4a18e; letter-spacing: .02em; }
.cover-whispers span:nth-child(1) { top: 18%; left: 43%; transform: rotate(-11deg); }
.cover-whispers span:nth-child(2) { top: 20%; right: 4%; transform: rotate(8deg); }
.cover-whispers span:nth-child(3) { top: 65%; right: 3%; transform: rotate(-6deg); }
.cover-whispers span:nth-child(4) { top: 51%; left: 48%; transform: rotate(6deg); }
.cover-scroll {
  position: absolute;
  bottom: 108px;
  left: 4.5%;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #d5bfb2;
  font-size: 10px;
  letter-spacing: .04em;
}
.cover-scroll > span { font-size: 22px; font-weight: 400; }
.cover-dissolve {
  position: absolute;
  z-index: 4;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 104px;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, #5c463c 25%, #a48e7b 55%, #decfbb 80%, var(--paper) 100%);
}
.intro { padding-top: 64px; }
.release-scene { height: auto; background: var(--paper); }
.release-stage { position: relative; height: auto; min-height: 470px; }
.release-scene .thought { display: none; }
.release-message { padding: 60px 24px 92px; }

/* After the cover, keep large surfaces light. Burgundy becomes an accent. */
.meeting { background: #f0e5d9; color: var(--ink); }
.meeting em, .meeting .eyebrow { color: var(--burgundy); }
.meeting .season-mark, .meeting .date-year, .meeting .meeting-title > p, .meeting .meeting-footnote { color: var(--muted); }
.meeting .date-day, .meeting .date-month { color: var(--burgundy); }
.meeting .date-time, .meeting .meeting-bottom { border-color: #c9b5a5; }
.meeting .text-link { color: var(--burgundy); }
.meeting .text-link:hover { color: var(--terra); }
.season-price { background: #e8d8cf; border-color: #bda092; color: var(--ink); }
.season-price .eyebrow, .season-price .price, .season-price .plain-list li::before { color: var(--burgundy); }
.season-price > p:not(.price) { color: var(--muted); }
.season-price .saving-pill { background: var(--burgundy); color: var(--paper); }
.season-price .light-button { background: var(--burgundy); color: var(--paper); }
.season-price .light-button:hover { background: #602d38; }

@media (prefers-reduced-motion: no-preference) {
  html:not([data-reduced-motion='true']) .cover-line { animation: cover-line-in 1.3s both cubic-bezier(.2,.65,.25,1); }
  html:not([data-reduced-motion='true']) .cover-line:nth-child(2) { animation-delay: .09s; }
  html:not([data-reduced-motion='true']) .cover-line:nth-child(3) { animation-delay: .19s; }
  html:not([data-reduced-motion='true']) .cover-line:nth-child(4) { animation-delay: .3s; }
}
@keyframes cover-line-in { from { opacity: .05; transform: translateY(16px); } to { opacity: 1; transform: none; } }

@media (min-width: 1700px) {
  .cover-portrait { width: 66%; }
  .cover-content { padding-left: 0; padding-right: 0; }
}
@media (min-width: 701px) and (max-width: 1100px) {
  .cover-header { padding: 24px 4%; }
  .cover-header nav { gap: 22px; font-size: 12px; }
  .cover-edition { font-size: 11px; }
  .cover-content { padding: 122px 4% 144px; }
  .cover h1 { font-size: clamp(3.5rem, 7.5vw, 5rem); max-width: 57%; }
  .cover-description { max-width: 355px; font-size: 14px; }
  .cover-cta { font-size: 13px; padding: 17px 20px; gap: 20px; }
  .cover-meta { gap: 20px; font-size: 11px; }
  .cover-meta p + p { padding-left: 20px; }
  .cover-signature { bottom: 150px; right: 4%; }
  .cover-signature > span:last-child { font-size: 22px; }
  .cover-whispers span { font-size: 20px; }
  .cover-whispers span:nth-child(4) { display: none; }
  .cover-scroll { left: 4%; bottom: 96px; }
  .cover-dissolve { height: 90px; }
}

@media (max-width: 700px) {
  .cover-header { padding: 20px 22px; align-items: start; }
  .cover-header .brand-name { font-size: 29px; }
  .cover-header .brand-description { font-size: 9px; }
  .cover-header nav { display: none; }
  .cover-edition { font-size: 10px; padding-top: 4px; }
  .cover-edition > span { font-size: 9px; }
  .cover { min-height: 100svh; }
  .cover-portrait {
    width: 100%;
    inset: 0 0 auto;
    transform-origin: 50% 28%;
    mask-image: linear-gradient(180deg, #000 0%, #000 60%, transparent 100%);
  }
  .cover-portrait img { width: 100%; height: auto; object-fit: contain; }
  .cover-shade {
    background:
      linear-gradient(180deg, #23191b65 0%, transparent 85px, transparent 235px, #23191b90 305px, #23191b 390px),
      linear-gradient(90deg, #23191b30, transparent 24%, transparent 82%, #23191b30);
  }
  .cover-content { padding: clamp(290px, 80vw, 475px) 24px 140px; }
  .cover-kicker { font-size: 9px; letter-spacing: .11em; gap: 10px; }
  .cover-kicker > span { width: 20px; }
  .cover h1 { font-size: clamp(2.55rem, 11.8vw, 4.6rem); line-height: .97; margin: 20px 0; max-width: 100%; }
  .cover-line.question-lead { margin-top: 12px; font-size: .85em; line-height: 1; }
  .cover-line.question { font-size: 1.3em; margin-top: 0; line-height: 1; }
  .cover-description { max-width: 390px; font-size: 16px; line-height: 1.55; }
  .cover-cta { min-height: 54px; padding: 16px; font-size: 14px; gap: 12px; margin-top: 23px; }
  .cover-meta { margin-top: 23px; gap: 19px; font-size: 10px; }
  .cover-meta time { font-size: 14px; }
  .cover-meta p > span { margin-top: 5px; }
  .cover-meta p + p { padding-left: 19px; }
  .cover-signature { display: none; }
  .cover-whispers span { font-size: 16px; }
  .cover-whispers span:nth-child(1) { top: 105px; left: 6px; transform: rotate(-80deg); }
  .cover-whispers span:nth-child(2) { top: 115px; right: 0; transform: rotate(80deg); }
  .cover-whispers span:nth-child(3), .cover-whispers span:nth-child(4) { display: none; }
  .cover-scroll { left: 24px; bottom: 94px; font-size: 9px; gap: 12px; }
  .cover-dissolve { height: 84px; }
  .intro { padding-top: 48px; }
}
@media (max-width: 370px) {
  .cover-content { padding-top: 278px; }
  .cover h1 { font-size: 42px; }
  .cover-meta { gap: 12px; }
  .cover-meta p + p { padding-left: 12px; }
  .cover-cta { padding-inline: 14px; gap: 10px; font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .cover-portrait { transform: none; }
  .cover-line { animation: none; opacity: 1; transform: none; }
}
html[data-reduced-motion='true'] .cover-portrait { transform: none; }
html[data-reduced-motion='true'] .cover-line { animation: none; opacity: 1; transform: none; }
