:root {
  --ink: #171b18;
  --forest: #18382f;
  --forest-deep: #0d2721;
  --ivory: #f6f1e8;
  --paper: #fffdf8;
  --rose: #b85769;
  --gold: #b88b4a;
  --muted: #696b65;
  --line: rgb(23 27 24 / 16%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

main {
  overflow: hidden;
}

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

h1,
h2,
h3,
blockquote {
  font-family: Didot, "Bodoni MT", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(24px, 4vw, 62px);
  color: white;
}

.brand,
.nav-button {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.brand {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-button {
  border-bottom: 1px solid currentColor;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  padding: 7px 0;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto auto 1fr;
  padding: 52px clamp(24px, 5vw, 72px) clamp(34px, 5vw, 66px);
  background: var(--forest-deep);
  color: white;
}

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

.hero-image {
  object-fit: cover;
  object-position: 57% 47%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgb(7 22 18 / 72%) 0%, rgb(7 22 18 / 26%) 46%, transparent 72%),
    linear-gradient(180deg, rgb(7 18 15 / 58%) 0%, transparent 25%, transparent 66%, rgb(7 18 15 / 74%) 100%);
}

.hero-top,
.hero-bottom {
  position: relative;
  z-index: 2;
}

.hero-top {
  grid-row: 1;
  max-width: 710px;
}

.hero-kicker,
.section-label {
  margin-bottom: 14px;
  color: #4a3b42;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-kicker {
  color: #fff3db;
  font-family: Didot, "Bodoni MT", Georgia, serif;
  font-size: clamp(1.05rem, 1.55vw, 1.48rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.18;
  white-space: nowrap;
}

.hero h1 {
  max-width: 10ch;
  margin-bottom: 0;
  color: #ffe0ef;
  font-size: clamp(3.8rem, 7.2vw, 7.2rem);
  line-height: 0.9;
  text-shadow: 0 3px 18px rgb(22 10 24 / 72%);
  text-wrap: balance;
}

.keep-together {
  white-space: nowrap;
}

.hero-bottom {
  grid-row: 2;
  width: min(560px, 100%);
  margin-top: clamp(118px, 15vh, 205px);
}

.hero-bottom p {
  max-width: 342px;
  margin-bottom: 18px;
  color: #fff3db;
  font-family: Didot, "Bodoni MT", Georgia, serif;
  font-size: clamp(1.55rem, 2.7vw, 2.1rem);
  font-weight: 700;
  line-height: 1.22;
  text-shadow: 0 2px 14px rgb(22 10 24 / 76%);
}

.contact-button {
  width: min(342px, 100%);
  flex-direction: column;
  gap: 2px;
  margin: 0;
  border-color: #f4d1df;
  border-radius: 24px;
  background: #fff7ec;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 10px 28px rgb(8 18 15 / 24%);
}

.contact-title {
  color: var(--ink);
  font-size: 1rem;
}

.contact-method {
  color: #2b1f26;
  font-size: 1.22rem;
}

.contact-number {
  color: #8f4f78;
  font-size: 1.32rem;
}

.button,
button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 2px;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 9px 16px;
  text-decoration: none;
  text-transform: uppercase;
}

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

.button.contact-button {
  border-radius: 24px;
}

@media (max-width: 1020px) and (min-width: 761px) {
  .hero-image {
    inset: -8% -3% 0;
    width: 106%;
    height: 108%;
    object-position: 58% 36%;
  }

  .hero-bottom {
    margin-top: clamp(170px, 22vh, 270px);
  }
}

.credential-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.credential-band > div {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px clamp(22px, 4vw, 58px);
  border-right: 1px solid var(--line);
}

.credential-band > div:last-child {
  border-right: 0;
}

.credential-band strong {
  color: var(--forest);
  font-family: Didot, "Bodoni MT", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.credential-band span {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.essentials,
.reading-details,
.closing-cta,
.signup-page {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.essentials,
.reading-details {
  padding: clamp(54px, 7vw, 86px) 0;
}

.essentials {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.essentials::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background:
    linear-gradient(90deg, rgb(246 241 232 / 38%) 0%, rgb(246 241 232 / 8%) 42%, rgb(246 241 232 / 18%) 100%),
    url("assets/essentials-bg.png") center / cover no-repeat;
  opacity: 0.82;
  pointer-events: none;
}

.essentials::after {
  content: none;
}

@media (max-width: 900px) and (min-width: 761px) {
  .essentials::before {
    background:
      linear-gradient(180deg, rgb(246 241 232 / 34%) 0%, rgb(246 241 232 / 10%) 48%, rgb(246 241 232 / 24%) 100%),
      url("assets/essentials-bg-mobile.png") center / cover no-repeat;
    opacity: 0.78;
  }
}

.section-heading h2,
.essentials h2,
.reading-details h2,
.closing-cta h2 {
  color: #2b1f26;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4.4vw, 4.35rem);
  line-height: 1;
  text-wrap: balance;
}

.closing-cta h2 {
  color: #fff7ec;
}

.essentials-copy h2 {
  color: #8f4f78;
  margin-bottom: 18px;
  font-size: clamp(1.85rem, 3vw, 2.9rem);
  line-height: 1.08;
}

.essentials-copy {
  max-width: 640px;
}

.essentials-copy .lead {
  color: #8f4f78;
  font-family: Didot, "Bodoni MT", Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.35;
}

.essentials-copy > p:not(.section-label) {
  color: #4a3b42;
  font-family: Arial, Helvetica, sans-serif;
  max-width: 620px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.55;
  text-transform: uppercase;
}

.essentials-panel {
  border: 1px solid #f4d1df;
  background: rgb(255 247 236 / 86%);
  box-shadow: 0 24px 70px rgb(143 79 120 / 9%);
  backdrop-filter: blur(1px);
}

.essentials-panel > div {
  min-height: 110px;
  padding: 24px 28px;
  border-bottom: 1px solid #f4d1df;
}

.essentials-panel > div:last-child {
  border-bottom: 0;
}

.essentials-panel strong {
  display: block;
  color: #8f4f78;
  font-family: Didot, "Bodoni MT", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 400;
  line-height: 1;
}

.essentials-panel span {
  display: block;
  margin-top: 9px;
  color: #4a3b42;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.section-heading.compact {
  max-width: 790px;
  margin-bottom: 40px;
}

.reading-details {
  width: 100%;
  padding-left: max(24px, calc((100vw - 1160px) / 2));
  padding-right: max(24px, calc((100vw - 1160px) / 2));
  background: #fff3db;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.detail-grid article {
  min-height: 218px;
  padding: clamp(22px, 2.5vw, 30px);
  border: 1px solid #f4d1df;
  background: #fff7ec;
}

.detail-grid h3 {
  margin-bottom: 14px;
  color: #2b1f26;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  line-height: 1;
}

.detail-grid strong {
  display: block;
  margin-bottom: 24px;
  color: #8f4f78;
  font-family: Didot, "Bodoni MT", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1;
}

.detail-grid p {
  margin-bottom: 0;
}

.featured-detail {
  background: #f9e3ea;
}

.closing-cta {
  width: 100%;
  padding: clamp(58px, 8vw, 96px) max(24px, calc((100vw - 1160px) / 2));
  background: #8f4f78;
  color: #fff7ec;
}

.closing-cta .section-label,
.closing-cta p {
  color: #fff3db;
}

.closing-cta h2 {
  max-width: 930px;
}

.closing-cta > p:not(.section-label) {
  max-width: 610px;
  margin: 28px 0;
}

.closing-cta .button {
  border-color: #fff7ec;
  background: #fff7ec;
  color: #2b1f26;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 32px max(24px, calc((100vw - 1160px) / 2));
  background: var(--ink);
  color: rgb(255 255 255 / 67%);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signup-body {
  background: var(--paper);
}

.signup-header {
  position: relative;
  color: var(--ink);
}

.signup-page {
  padding-top: clamp(58px, 8vw, 100px);
  padding-bottom: clamp(72px, 10vw, 120px);
}

.signup-hero {
  max-width: 880px;
  margin-bottom: 54px;
}

.signup-hero h1 {
  margin-bottom: 22px;
  color: var(--forest);
  font-size: clamp(3.7rem, 8vw, 7.6rem);
  line-height: 0.9;
}

.signup-hero > p:last-child {
  max-width: 650px;
}

.signup-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px;
  align-items: start;
}

.signup-info,
form {
  border: 1px solid var(--line);
}

.signup-info {
  padding: 30px;
  background: var(--forest-deep);
  color: white;
}

.signup-info .section-label {
  color: #e4b8c0;
}

.signup-info h2 {
  margin-bottom: 28px;
  font-size: 2.5rem;
}

.signup-info dl {
  margin: 0;
}

.signup-info dl div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.signup-info dt,
.signup-info dd {
  font-size: 0.85rem;
}

.signup-info dd {
  margin: 0;
  font-weight: 700;
}

.location-note {
  margin: 28px 0 0;
  color: rgb(255 255 255 / 68%);
  font-size: 0.9rem;
}

form {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--ivory);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

label {
  display: grid;
  gap: 9px;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgb(23 27 24 / 24%);
  border-radius: 0;
  background: white;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.45;
  padding: 14px 13px;
  text-transform: none;
}

input::placeholder,
textarea::placeholder {
  color: #7d7f79;
  font-weight: 400;
}

textarea {
  resize: vertical;
}

form button {
  width: 100%;
  margin-top: 4px;
  background: var(--forest-deep);
}

.form-note {
  margin: -4px 0 0;
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 760px) {
  .home .site-header {
    display: none;
  }

  .hero {
    height: min(86svh, 740px);
    min-height: 680px;
    grid-template-rows: auto 1fr auto;
    padding: max(12px, env(safe-area-inset-top)) 18px max(24px, env(safe-area-inset-bottom));
  }

  .hero-image {
    inset: -5% -2% 0;
    width: 104%;
    height: 105%;
    object-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgb(8 21 18 / 75%) 0%, rgb(8 21 18 / 26%) 20%, transparent 34%, transparent 67%, rgb(8 18 15 / 86%) 100%);
  }

  .hero-top {
    width: 100%;
    max-width: 355px;
  }

  .hero-kicker {
    margin-bottom: 8px;
    font-size: clamp(0.98rem, 4.8vw, 1.24rem);
    letter-spacing: 0.01em;
    transform: scaleX(0.74);
    transform-origin: left top;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.55rem, 12vw, 3.75rem);
    line-height: 0.92;
  }

  .hero-bottom {
    grid-row: 3;
    width: 100%;
    margin-top: 0;
    text-align: left;
    transform: translateY(-34px);
  }

  .hero-bottom p {
    max-width: calc(100vw - 36px);
    margin: 0 0 14px;
    font-size: clamp(1.38rem, 6vw, 1.62rem);
    font-weight: 700;
    line-height: 1.18;
  }

  .hero-bottom .button {
    width: 100%;
  }

  .hero-bottom .contact-button {
    width: min(292px, 100%);
    min-height: 66px;
    border-radius: 24px;
    padding: 8px 14px;
  }

  .credential-band {
    grid-template-columns: 1fr;
  }

  .credential-band > div {
    min-height: 104px;
    padding: 22px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .credential-band > div:last-child {
    border-bottom: 0;
  }

  .credential-band strong {
    font-size: 2.25rem;
  }

  .essentials,
  .reading-details,
  .signup-page {
    width: min(100% - 36px, 1160px);
  }

  .essentials,
  .detail-grid,
  .signup-layout,
  .field-row {
    grid-template-columns: 1fr;
  }

  .essentials,
  .reading-details {
    padding: 54px 0;
  }

  .essentials {
    gap: 30px;
  }

  .essentials::before {
    display: block;
    background:
      linear-gradient(180deg, rgb(246 241 232 / 34%) 0%, rgb(246 241 232 / 10%) 48%, rgb(246 241 232 / 24%) 100%),
      url("assets/essentials-bg-mobile.png") center / cover no-repeat;
    opacity: 0.74;
  }

  .essentials::after {
    display: none;
  }

  .section-heading h2,
  .essentials h2,
  .reading-details h2,
  .closing-cta h2 {
    font-size: clamp(2.35rem, 11vw, 3.45rem);
  }

  .essentials-copy h2 {
    margin-bottom: 16px;
    font-size: 2rem;
    line-height: 1.06;
  }

  .essentials-copy > p:not(.section-label) {
    font-size: 0.86rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
  }

  .section-heading.compact {
    margin-bottom: 34px;
  }

  .reading-details {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .detail-grid article {
    min-height: 0;
  }

  .closing-cta {
    padding: 58px 20px;
  }

  .closing-cta .button {
    width: 100%;
  }

  footer {
    flex-direction: column;
    padding: 30px 20px;
  }

  .signup-header {
    padding: 18px;
  }

  .signup-page {
    padding-top: 50px;
  }

  .signup-hero {
    margin-bottom: 36px;
  }

  .signup-hero h1 {
    font-size: clamp(3.4rem, 17vw, 5.4rem);
  }
}

@media (max-width: 390px) {
  .hero {
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-bottom p {
    font-size: 1.16rem;
  }
}

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