:root {
  --bg: #f7f5f0;
  --surface: #ffffff;
  --ink: #231f20;
  --muted: #6f6a62;
  --line: #dfd8ca;
  --sage: #496a57;
  --sage-dark: #1f3c31;
  --clay: #a96f5f;
  --rose: #ead7d2;
  --mint: #dce9d5;
  --shadow: 0 18px 50px rgba(35, 31, 32, 0.16);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

:focus-visible {
  outline: 3px solid rgba(73, 106, 87, 0.35);
  outline-offset: 3px;
}

.landing-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 28px;
  color: white;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  line-height: 1;
}

.brand-mark {
  width: 24px;
  height: 24px;
  border: 1px solid currentColor;
  border-radius: 50%;
  position: relative;
  flex: 0 0 auto;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px 11px;
  background: currentColor;
  border-radius: 999px;
  transform: rotate(35deg);
  transform-origin: bottom center;
}

.brand-mark::after {
  transform: rotate(-35deg);
}

.landing-header nav,
.landing-footer {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.93rem;
  font-weight: 760;
}

.landing-hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  padding: 128px 28px 86px;
  isolation: isolate;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--rose);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(31, 60, 49, 0.88), rgba(31, 60, 49, 0.58) 42%, rgba(31, 60, 49, 0.2) 72%),
    linear-gradient(0deg, rgba(35, 31, 32, 0.35), rgba(35, 31, 32, 0.05));
}

.hero-content {
  max-width: 760px;
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--mint);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.02;
  font-weight: 520;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 8vw, 7rem);
}

h2 {
  font-size: clamp(2rem, 4.4vw, 4.4rem);
}

.hero-content p:not(.eyebrow) {
  max-width: 58ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
}

.hero-actions,
.input-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.hero-highlights span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.primary-link,
.secondary-link,
.login-form button,
.updates-form button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 820;
  text-align: center;
}

.primary-link,
.login-form button,
.updates-form button {
  background: white;
  color: var(--sage-dark);
}

.secondary-link {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.signal-strip,
.sneak-peek,
.ritual-band,
.access-band,
.updates-band,
.landing-footer {
  max-width: 1480px;
  margin: 0 auto;
  padding-left: 28px;
  padding-right: 28px;
}

.sneak-peek {
  padding-top: 76px;
  padding-bottom: 70px;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.7fr);
  gap: 36px;
  align-items: end;
  margin-bottom: 28px;
}

.section-intro .eyebrow {
  color: var(--sage);
}

.section-intro p:not(.eyebrow) {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
}

.teaser-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.teaser-product {
  min-width: 0;
  display: grid;
  grid-template-rows: minmax(230px, auto) minmax(0, 1fr);
  gap: 16px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.teaser-product img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(220, 233, 213, 0.62), rgba(234, 215, 210, 0.62)),
    var(--surface);
  padding: clamp(14px, 6vw, 34px);
}

.teaser-product span {
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.teaser-product h3 {
  margin: 8px 0 8px;
  font-size: 1.08rem;
  line-height: 1.16;
}

.teaser-product p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.teaser-product.is-locked img {
  background:
    linear-gradient(135deg, rgba(31, 60, 49, 0.12), rgba(169, 111, 95, 0.16)),
    var(--surface);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding-top: 1px;
  padding-bottom: 1px;
  background: var(--line);
}

.signal-strip article {
  min-height: 132px;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 24px;
  background: var(--surface);
}

.signal-strip span {
  color: var(--clay);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.signal-strip p,
.ritual-list p,
.access-band p,
.updates-band p {
  margin: 0;
  color: var(--muted);
}

.ritual-band {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: start;
  padding-top: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--line);
}

.ritual-band .eyebrow {
  color: var(--sage);
}

.ritual-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.ritual-list article {
  min-height: 126px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  background: var(--surface);
}

.ritual-list strong {
  font-size: 1.02rem;
}

.access-band,
.updates-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
  gap: 34px;
  align-items: center;
  padding-top: 68px;
  padding-bottom: 68px;
}

.access-band {
  border-bottom: 1px solid var(--line);
}

.access-band .eyebrow,
.updates-band .eyebrow {
  color: var(--sage);
}

.access-band h2,
.updates-band h2 {
  margin-bottom: 18px;
}

.login-form,
.updates-form {
  display: grid;
  gap: 8px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 16px 38px rgba(35, 31, 32, 0.08);
}

.login-form label,
.updates-form label {
  color: var(--muted);
  font-size: 0.9rem;
}

.login-form input,
.updates-form input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  padding: 0 16px;
}

.input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.login-form button,
.updates-form button {
  background: var(--sage-dark);
  color: white;
  min-width: 128px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--sage);
}

.hidden-field {
  position: absolute;
  left: -9999px;
}

.landing-footer {
  min-height: 92px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.landing-footer span {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  font-size: 1.35rem;
}

@media (max-width: 920px) {
  .landing-header {
    min-height: 70px;
    padding: 0 18px;
  }

  .landing-header nav {
    gap: 14px;
  }

  .landing-hero {
    min-height: 88vh;
    padding: 112px 18px 58px;
  }

  .hero-background {
    object-position: 62% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(31, 60, 49, 0.94), rgba(31, 60, 49, 0.72) 58%, rgba(31, 60, 49, 0.3)),
      linear-gradient(0deg, rgba(35, 31, 32, 0.34), rgba(35, 31, 32, 0.12));
  }

  .signal-strip,
  .sneak-peek,
  .ritual-band,
  .access-band,
  .updates-band,
  .landing-footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .signal-strip,
  .section-intro,
  .ritual-band,
  .access-band,
  .updates-band {
    grid-template-columns: 1fr;
  }

  .teaser-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .landing-header nav a:first-child {
    display: none;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .hero-actions,
  .hero-highlights,
  .input-row {
    grid-template-columns: 1fr;
  }

  .hero-highlights {
    display: grid;
  }

  .primary-link,
  .secondary-link,
  .hero-highlights span,
  .login-form button,
  .updates-form button {
    width: 100%;
  }

  .sneak-peek {
    padding-top: 54px;
    padding-bottom: 52px;
  }

  .teaser-grid {
    grid-template-columns: 1fr;
  }

  .teaser-product {
    grid-template-rows: auto auto;
  }

  .teaser-product img {
    max-height: 330px;
  }

  .ritual-band,
  .access-band,
  .updates-band {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .login-form,
  .updates-form {
    padding: 18px;
  }

  .landing-footer {
    display: grid;
    justify-content: start;
    gap: 8px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
}
