:root {
  color-scheme: light;
  --ink: #221719;
  --muted: #6f6261;
  --paper: #fff9f0;
  --cream: #f5eadc;
  --line: #e5d3c0;
  --wine: #941f3d;
  --wine-dark: #3a0716;
  --leaf: #536b45;
  --gold: #c18a36;
  --blue: #173c55;
  --shadow: 0 24px 80px rgba(50, 18, 20, .16);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
}
a { color: inherit; }
img { display: block; max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 10px clamp(18px, 5vw, 64px);
  background: rgba(255, 249, 240, .86);
  border-bottom: 1px solid rgba(229, 211, 192, .76);
  backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img {
  width: clamp(172px, 14vw, 238px);
  height: auto;
  max-height: 66px;
  object-fit: contain;
  object-position: center;
}
.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 750;
  text-decoration: none;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { background: #fff; color: var(--wine); box-shadow: 0 10px 28px rgba(58, 7, 22, .08); }
.nav-toggle { display: none; }

h1, h2, h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.04;
  letter-spacing: 0;
}
p { margin: 0; }
.eyebrow {
  color: var(--wine);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--wine);
  border-radius: 8px;
  font-weight: 850;
  text-decoration: none;
}
.button.primary { background: var(--wine); color: #fff; box-shadow: 0 16px 34px rgba(148, 31, 61, .22); }
.button.secondary { background: #fff; color: var(--wine); }
.text-link { color: var(--wine); font-weight: 850; text-decoration-thickness: 2px; text-underline-offset: 5px; }

.home-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .88fr);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
  min-height: calc(92vh - 88px);
  padding: clamp(34px, 5vw, 70px) clamp(18px, 5vw, 72px) 34px;
}
.hero-copy { max-width: 790px; }
.hero-copy h1 { margin-top: 14px; font-size: clamp(2.85rem, 5.4vw, 5.9rem); }
.hero-copy p:not(.eyebrow) { margin-top: 24px; max-width: 660px; color: var(--muted); font-size: clamp(1.12rem, 2vw, 1.38rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-gallery {
  display: flex;
  align-items: center;
  min-height: 540px;
}
.hero-app-link {
  display: block;
  width: min(440px, 100%);
  margin-left: auto;
  border-radius: 8px;
  text-decoration: none;
}
.hero-main {
  width: 100%;
  height: 500px;
  margin-left: auto;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 18px 52px rgba(34, 23, 25, .12);
}
.hero-main.hero-app-screen {
  width: 100%;
  height: min(690px, calc(100vh - 150px));
  object-fit: cover;
  object-position: top center;
  background: #fff;
}

.split-section,
.showcase,
.sub-hero,
.waitlist-panel,
.contact-panel {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(72px, 9vw, 118px);
}
.split-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
}
.section-copy h2,
.showcase h2,
.section-heading h2,
.cta-band h2,
.waitlist-panel h2,
.contact-panel h2 { margin-top: 12px; font-size: clamp(2.1rem, 4vw, 4.4rem); }
.section-copy p:not(.eyebrow),
.showcase p,
.cta-band p,
.waitlist-panel p,
.contact-panel p { margin-top: 18px; color: var(--muted); font-size: 1.08rem; }
.feature-stack { display: grid; gap: 14px; }
.feature-stack article,
.story-card,
.waitlist-panel,
.contact-panel,
.cta-band {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.64);
  box-shadow: 0 16px 48px rgba(58, 7, 22, .06);
}
.feature-stack article { padding: 24px; }
.feature-stack span { color: var(--gold); font-weight: 950; }
.feature-stack h3 { margin-top: 14px; font-size: 1.8rem; }
.feature-stack p { margin-top: 8px; color: var(--muted); }

.showcase {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.showcase img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.showcase img.blend-image {
  background: transparent;
  box-shadow: none;
  mix-blend-mode: multiply;
}
.showcase .text-link { display: inline-block; margin-top: 24px; }

.journal-strip {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(72px, 9vw, 118px);
}
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 24px; }
.section-heading h2 { max-width: 740px; }
.card-grid,
.blog-index {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.story-card { overflow: hidden; }
.story-card img {
  width: 100%;
  height: 245px;
  object-fit: contain;
  background: #fff;
}
.story-card div { padding: 20px; }
.story-card time { color: var(--leaf); font-size: .78rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.story-card h3 { margin-top: 10px; font-size: 1.45rem; }
.story-card h3 a { text-decoration: none; }
.story-card p { margin-top: 12px; color: var(--muted); }

.sub-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-top: clamp(42px, 7vw, 88px);
}
.sub-hero h1 { margin-top: 12px; font-size: clamp(3rem, 6vw, 6rem); }
.sub-hero p:not(.eyebrow) { margin-top: 20px; max-width: 680px; color: var(--muted); font-size: 1.18rem; }
.sub-hero img {
  width: 100%;
  max-height: 430px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.sub-hero img.hero-mark {
  padding: clamp(10px, 2vw, 24px);
  background: transparent;
  box-shadow: none;
}
.sub-hero img.blend-image {
  background: transparent;
  box-shadow: none;
  mix-blend-mode: multiply;
}
.sub-hero img.about-hero-image {
  max-height: min(720px, 76vh);
  object-fit: cover;
  object-position: center;
}

.content-shell figure.logo-figure {
  background: transparent;
  box-shadow: none;
}
.content-shell figure.blend-figure {
  background: transparent;
  box-shadow: none;
  mix-blend-mode: multiply;
}

.content-shell {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto clamp(72px, 9vw, 118px);
}
.content-shell h2,
.content-shell h3 {
  margin-top: 42px;
  font-size: clamp(1.9rem, 3vw, 3.1rem);
}
.content-shell p,
.content-shell li {
  color: #4f4442;
  font-size: 1.07rem;
}
.content-shell p,
.content-shell ul,
.content-media { margin-top: 20px; }
.content-shell a { color: var(--wine); font-weight: 850; }
.faq-list p strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
}
.content-shell figure {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 24px 0;
  padding: 0;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
}
.content-shell figure img {
  width: auto;
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 6px;
}
.content-shell figure.about-feature-figure img {
  width: 100%;
  max-height: none;
}
.team-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(72px, 9vw, 118px);
}
.team-heading {
  max-width: 820px;
  margin-bottom: 28px;
}
.team-heading h2 {
  margin-top: 12px;
  font-size: clamp(2.15rem, 4vw, 4.2rem);
}
.team-heading p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 1.08rem;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.team-card {
  display: grid;
  align-content: start;
  grid-template-rows: auto auto auto 1fr auto;
  min-height: 100%;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.66);
  box-shadow: 0 16px 48px rgba(58, 7, 22, .06);
  text-align: center;
}
.team-card img {
  width: clamp(124px, 13vw, 160px);
  aspect-ratio: 1;
  margin: 0 auto 22px;
  object-fit: cover;
  filter: drop-shadow(0 14px 26px rgba(34, 23, 25, .14));
}
.team-card h3 {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  font-weight: 900;
  line-height: 1.12;
}
.team-role {
  margin: 12px auto 18px;
  padding-bottom: 13px;
  border-bottom: 2px solid rgba(148, 31, 61, .72);
  color: var(--wine);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.team-card p:not(.team-role) {
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.55;
}
.team-linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  min-height: 38px;
  margin: 22px auto 0;
  padding: 8px 13px;
  border: 1px solid rgba(148, 31, 61, .26);
  border-radius: 999px;
  color: var(--wine);
  font-size: .85rem;
  font-weight: 850;
  text-decoration: none;
}
.team-linkedin span {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: var(--wine);
  color: #fff;
  font-size: .72rem;
  font-weight: 950;
  line-height: 1;
}
.team-linkedin:hover {
  background: #fff;
  box-shadow: 0 12px 24px rgba(58, 7, 22, .08);
}
.ai-features {
  max-width: 880px;
}
.ai-features__intro {
  margin-bottom: 28px;
}
.ai-feature-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.1;
}
.ai-feature-title span {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: clamp(2.3rem, 4vw, 3.1rem);
  height: clamp(2.3rem, 4vw, 3.1rem);
  border: 1px solid rgba(163, 35, 68, .22);
  border-radius: 999px;
  color: var(--wine);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  font-weight: 950;
  line-height: 1;
}
.ai-features p {
  margin-top: 14px;
  max-width: 760px;
}
.ai-feature-title.is-soon {
  opacity: .68;
}
.is-soon-copy {
  color: rgba(79, 68, 66, .76);
}
.mode-list,
.partner-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}
.partner-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.mode-list article,
.partner-card-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.64);
}
.mode-list h3,
.partner-card-grid h3 {
  margin-top: 0;
  font-size: 1.45rem;
}
.mode-list p,
.partner-card-grid p {
  margin-top: 10px;
}
.journal-intro {
  width: min(1180px, calc(100% - 36px));
  margin: -48px auto 28px;
}
.journal-intro p {
  color: var(--wine);
  font-size: 1.08rem;
  font-weight: 850;
}
.story-card .text-link {
  display: inline-block;
  margin-top: 16px;
}
.content-media img {
  width: auto;
  max-width: 100%;
  max-height: 75vh;
  margin: 0 auto;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(34, 23, 25, .11);
}

.blog-index {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto clamp(72px, 9vw, 118px);
}
.article-header {
  width: min(960px, calc(100% - 36px));
  margin: 0 auto 42px;
  padding-top: clamp(42px, 7vw, 88px);
}
.article-header h1 { margin-top: 12px; font-size: clamp(2.8rem, 6vw, 5.8rem); }
.article-header p:not(.eyebrow) { margin-top: 20px; color: var(--muted); font-size: 1.16rem; }
.article-header img {
  width: auto;
  max-width: 100%;
  max-height: 560px;
  margin: 28px auto 0;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(24px, 4vw, 42px);
}
.waitlist-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .7fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  scroll-margin-top: 112px;
  padding: clamp(24px, 4vw, 42px);
}
.waitlist-form {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}
.waitlist-form .form-status {
  grid-column: 1 / -1;
}
form { display: grid; gap: 14px; }
label { display: grid; gap: 7px; color: var(--muted); font-size: .9rem; font-weight: 850; }
.form-status {
  min-height: 1.6em;
  color: var(--leaf);
  font-size: .98rem;
  font-weight: 800;
}
.form-status.is-error { color: var(--wine); }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}
textarea { min-height: 130px; resize: vertical; }

.cta-band {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto clamp(72px, 9vw, 118px);
  padding: clamp(28px, 5vw, 54px);
  text-align: center;
}
.cta-band .button { margin-top: 26px; }

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, .8fr) 1.2fr;
  gap: 28px;
  padding: 40px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #f4e8d9;
}
.site-footer img { width: clamp(180px, 17vw, 260px); height: auto; max-height: 78px; object-fit: contain; object-position: center; }
.site-footer p { margin-top: 10px; color: var(--muted); }
.site-footer nav { display: flex; flex-wrap: wrap; gap: 10px; align-content: start; justify-content: end; }
.site-footer a { color: var(--muted); font-weight: 750; text-decoration: none; }
.footer-copyright {
  grid-column: 1 / -1;
  margin-top: 0;
  color: rgba(79, 68, 66, .72);
  font-size: .78rem;
}
.footer-responsibility {
  grid-column: 1 / -1;
  margin-top: 0;
  color: rgba(79, 68, 66, .82);
  font-size: .86rem;
  font-weight: 750;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.7);
  color: var(--ink);
  font-size: .9rem;
  font-weight: 850;
}

.age-gate-open { overflow: hidden; }
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(34, 23, 25, .58);
  backdrop-filter: blur(14px);
}
.age-gate__panel {
  width: min(520px, 100%);
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: clamp(26px, 5vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  text-align: center;
  outline: none;
}
.age-gate__panel img {
  width: min(220px, 64vw);
  max-height: 78px;
  margin: 0 auto 24px;
  object-fit: contain;
}
.age-gate__panel h2 {
  margin-top: 12px;
  font-size: clamp(2.1rem, 7vw, 3.4rem);
}
.age-gate__panel p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.02rem;
}
.age-gate__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 940px) {
  .nav-toggle {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    padding: 8px 12px;
    color: var(--ink);
    font-weight: 850;
  }
  .site-nav {
    position: absolute;
    top: 88px;
    right: 18px;
    display: none;
    width: min(260px, calc(100vw - 36px));
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: grid; }
  .home-hero,
  .split-section,
  .showcase,
  .sub-hero,
  .waitlist-panel,
  .contact-panel,
  .site-footer { grid-template-columns: 1fr; }
  .home-hero { min-height: auto; }
  .hero-gallery { min-height: 500px; }
  .hero-main { height: 450px; }
  .hero-app-link {
    width: min(390px, 100%);
    margin: 0 auto;
  }
  .hero-main.hero-app-screen {
    height: 620px;
  }
  .card-grid,
  .blog-index { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partner-card-grid { grid-template-columns: 1fr; }
  .site-footer nav { justify-content: start; }
}

@media (max-width: 640px) {
  .brand img { width: 156px; max-height: 58px; }
  .hero-copy h1,
  .sub-hero h1 { font-size: 3rem; }
  .hero-gallery { min-height: 390px; }
  .hero-main { width: 100%; height: 340px; }
  .hero-app-link {
    width: min(330px, 100%);
  }
  .hero-main.hero-app-screen {
    height: 540px;
  }
  .card-grid,
  .blog-index { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .mode-list { grid-template-columns: 1fr; }
  .showcase img,
  .sub-hero img { max-height: 330px; }
  .waitlist-form { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .age-gate__actions { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
