/* ============================================================
   WATSON STYLE GROUP — Origin Capsule page
   Inherits the brand system from style.css (tokens, fonts,
   nav, .reveal, .btn, .eyebrow, .section-title, footer).
   This file only adds the page-specific sections.
   ============================================================ */

/* ---------- generic page section frame ---------- */
.og-section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4.5rem, 11vw, 10rem) var(--pad);
}
.og-eyebrow {
  display: block;
  margin-bottom: 1.6rem;
}
.og-lead {
  font-size: 1.05rem;
  color: #1a1a1a;
  max-width: 54ch;
}
.og-lead + .og-lead { margin-top: 1.2rem; }
.og-lead em { font-style: italic; }
.og-lead strong { font-weight: 500; }

/* ============================================================
   HERO — dark "chapter opener" band
   id="top" so main.js drives the nav dark/scrolled state.
   ============================================================ */
.og-hero {
  position: relative;
  background: var(--wsg-bg);
  color: var(--wsg-ink);
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(4rem, 10vw, 9rem) var(--pad) clamp(5rem, 11vw, 10rem);
  overflow: hidden;
}
.og-hero__inner {
  max-width: 60rem;
  position: relative;
  z-index: 2;
}
.og-hero__eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  opacity: 0;
  animation: wsg-fade 1.2s ease 0.15s forwards;
}
.og-hero__rule {
  width: 46px;
  height: 1px;
  background: rgba(255, 255, 255, 0.45);
  margin: 1.8rem auto 2.4rem;
  opacity: 0;
  animation: wsg-fade 1.2s ease 0.3s forwards;
}
.og-hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-optical-sizing: auto;
  font-variation-settings: "SOFT" 28, "WONK" 0;
  font-size: clamp(2.5rem, 6.4vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
  opacity: 0;
  transform: translateY(1.2rem);
  animation: og-rise 1.2s cubic-bezier(.2,.7,.2,1) 0.35s forwards;
}
.og-hero__title em {
  font-style: italic;
}
.og-hero__sub {
  margin: 2rem auto 0;
  max-width: 40ch;
  font-size: 1.06rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  opacity: 0;
  transform: translateY(1.2rem);
  animation: og-rise 1.2s cubic-bezier(.2,.7,.2,1) 0.55s forwards;
}
.og-hero__cue {
  position: absolute;
  left: 50%;
  bottom: clamp(1.6rem, 4vw, 2.8rem);
  transform: translateX(-50%);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  animation: wsg-fade 1.2s ease 1s forwards;
}

@keyframes og-rise {
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .og-hero__eyebrow, .og-hero__rule, .og-hero__title,
  .og-hero__sub, .og-hero__cue {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   WHY ORIGIN — two-column text + editorial image
   ============================================================ */
.og-why .og-why__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}
.og-why__title { margin-bottom: 2rem; }
.og-why__image {
  position: sticky;
  top: 7rem;
  overflow: visible;
}
.og-why__image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}
.og-why__image .atelier-section {
  padding: clamp(24px, 4vw, 48px) 0;
  background: var(--watson-pink, #F8E5E7) !important;
}
.og-why__image .atelier-section .stage {
  flex-direction: column;
}
.og-why__image .atelier-section .dots {
  display: none;
}
.og-why__image .ipad-wrap::after {
  display: none !important;
}

/* ============================================================
   CALENDAR MAPPING — twelve-card grid
   ============================================================ */
.og-calendar__head {
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}
.og-calendar__title {
  max-width: 22ch;
  margin-bottom: 1.6rem;
}
.og-calendar__lead {
  max-width: 58ch;
}
.og-filmstrip-wrap {
  position: relative;
  margin-left: calc(-1 * var(--pad));
  margin-right: calc(-1 * var(--pad));
}
.og-filmstrip-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.25s ease, background 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.og-filmstrip-arrow:hover { opacity: 1; background: var(--paper-pure); }
.og-filmstrip-arrow--left { left: calc(var(--pad) + 0.75rem); }
.og-filmstrip-arrow--right { right: calc(var(--pad) + 0.75rem); }
.og-filmstrip {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.og-filmstrip::-webkit-scrollbar { display: none; }
.og-card {
  flex: 0 0 min(82vw, 560px);
  scroll-snap-align: center;
  min-height: 52vh;
  background: var(--paper-pure);
  border-right: 1px solid var(--line);
  padding: clamp(2.8rem, 5vw, 4.5rem) clamp(2.4rem, 4vw, 4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.og-card:first-child {
  margin-left: var(--pad);
}
.og-card:last-child {
  margin-right: var(--pad);
  border-right: none;
}
.og-card__num {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(0,0,0,0.08);
  line-height: 1;
  display: block;
  margin-bottom: 1.6rem;
}
.og-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 0;
}
.og-card__rule {
  width: 32px;
  height: 1px;
  background: var(--ink);
  margin: 1.4rem 0;
  opacity: 0.25;
}
.og-card p {
  font-size: clamp(0.92rem, 1.1vw, 1.02rem);
  color: #2a2a2a;
  line-height: 1.72;
  max-width: 32ch;
}
.og-calendar__closing {
  margin-top: clamp(2.2rem, 5vw, 3.5rem);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--muted);
}

/* ============================================================
   THE SCOPE — centered editorial statement on a lighter panel
   ============================================================ */
.og-scope {
  background: var(--paper-pure);
}
.og-scope__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4.5rem, 11vw, 10rem) var(--pad);
}
.og-scope__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
  text-align: left;
}
.og-scope__image { overflow: hidden; }
.og-scope__image img {
  width: 100%;
  object-fit: contain;
}
.og-scope__title {
  margin: 0 0 2.2rem;
  max-width: 20ch;
}
.og-scope__body {
  max-width: 60ch;
}
.og-scope__body p { margin-bottom: 1.2rem; }
.og-scope__body p:last-child { margin-bottom: 0; }

/* ============================================================
   HOW IT WORKS — four moments
   ============================================================ */
.og-steps__head {
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}
.og-steps__title { max-width: 18ch; }
.og-steps__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.og-step {
  padding: 2.6rem 1.6rem 2.8rem 0;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.og-step:last-child { border-right: none; padding-right: 0; }
.og-step:first-child { padding-left: 0; }
.og-step:not(:first-child) { padding-left: 1.6rem; }
.og-step__num {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted);
  display: block;
  margin-bottom: 1.1rem;
}
.og-step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  margin-bottom: 0.8rem;
  letter-spacing: -0.005em;
}
.og-step p {
  font-size: 0.92rem;
  color: #2a2a2a;
}

/* ============================================================
   THE WATSON DIFFERENCE — black band w/ image (echoes .advisory)
   ============================================================ */
.og-difference {
  background: var(--black);
  color: var(--paper);
}
.og-difference__grid {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 6.5rem);
  padding: clamp(4rem, 9vw, 8rem) var(--pad);
}
.og-difference__image { overflow: hidden; }
.og-difference__image img {
  width: 100%;
  object-fit: contain;
  background: #fff;
}
.og-difference__text { display: flex; flex-direction: column; gap: 1.4rem; }
.og-difference__text .section-title { margin-bottom: 0.4rem; }
.og-difference__text p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 48ch;
}
.og-difference__text .og-eyebrow {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0.4rem;
}

/* ============================================================
   WHAT YOU RECEIVE — three-part grid
   ============================================================ */
.og-receive__head { margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.og-receive__title { max-width: 22ch; }
.og-receive__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.og-receive__item {
  padding: 2.8rem 2rem 2.8rem 0;
  border-right: 1px solid var(--line);
  border-bottom: none;
}
.og-receive__item:last-child { border-right: none; padding-right: 0; }
.og-receive__item:first-child { padding-left: 0; }
.og-receive__item:nth-child(2) { padding-left: 2rem; padding-right: 2rem; }
.og-receive__num {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted);
  display: block;
  margin-bottom: 1rem;
}
.og-receive__item h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  margin-bottom: 0.85rem;
  letter-spacing: -0.005em;
}
.og-receive__item p {
  font-size: 0.94rem;
  color: #2a2a2a;
  max-width: 36ch;
}

/* ============================================================
   TESTIMONIAL — centered pull quote
   ============================================================ */
.og-testimonial {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.og-testimonial__inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: clamp(4rem, 10vw, 8rem) var(--pad);
  text-align: center;
}
.og-quote {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.55;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.og-quote--placeholder {
  color: var(--muted);
}
.og-cite {
  display: block;
  margin-top: 2rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ============================================================
   THE INVESTMENT — highlighted price panel
   ============================================================ */
.og-investment { background: var(--black); color: var(--paper); }
.og-investment__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(4.5rem, 11vw, 10rem) var(--pad);
}
.og-investment__head {
  text-align: center;
  margin-bottom: clamp(2.8rem, 7vw, 5rem);
}
.og-investment__head .og-eyebrow {
  color: rgba(255, 255, 255, 0.6);
}
.og-price {
  font-family: var(--serif);
  font-weight: 400;
  font-optical-sizing: auto;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-top: 0.6rem;
}
.og-price span {
  font-style: italic;
  font-size: 0.42em;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0;
}
.og-investment__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.og-invest-item {
  padding-top: 2.6rem;
}
.og-invest-item h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}
.og-invest-item .og-invest-figure {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--blue);
  display: block;
  margin-bottom: 1rem;
}
.og-invest-item p {
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 44ch;
}
.og-invest-note {
  max-width: var(--maxw);
  margin: clamp(2.4rem, 6vw, 4rem) auto 0;
  text-align: center;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
}
.og-invest-note strong { font-weight: 500; color: var(--paper); }

/* ============================================================
   CLOSING CTA — echoes the homepage .elevate band
   ============================================================ */
.og-closing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 78vh;
}
.og-closing__image { overflow: hidden; display: flex; align-items: center; }
.og-closing__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.og-closing__text {
  background: var(--paper-pure);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  padding: clamp(3rem, 8vw, 7rem) var(--pad);
}
.og-closing__text p {
  font-size: 1.05rem;
  color: #1a1a1a;
  max-width: 42ch;
}
.og-closing__actions {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  margin-top: 1.4rem;
}
.og-closing__step {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.og-closing__step-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.5;
}
.btn--outline {
  background: transparent;
  border: none;
  color: var(--ink);
}
.btn--outline::after {
  background: var(--ink);
}
.og-link-quiet {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 3px;
}
.og-link-quiet::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.og-link-quiet:hover::after { width: 100%; }

/* ============================================================
   FAQ — accordion
   ============================================================ */
.og-faq__head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}
.og-faq__title { margin: 0 auto; }
.og-faq__intro {
  margin: 1rem auto 0;
  color: var(--muted);
  font-size: 0.98rem;
}
.og-faq__group {
  max-width: 60rem;
  margin: 0 auto;
}
.og-faq__group + .og-faq__group { margin-top: clamp(2.5rem, 6vw, 4rem); }
.og-faq__group-title {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 0.4rem;
}
.og-faq__item {
  border-bottom: 1px solid var(--line);
}
.og-faq__q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.55rem 0;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.05rem, 1.7vw, 1.3rem);
  letter-spacing: -0.005em;
  color: var(--ink);
  transition: color 0.3s ease;
}
.og-faq__q:hover { color: var(--blush); }
.og-faq__icon {
  flex-shrink: 0;
  position: relative;
  width: 14px;
  height: 14px;
  margin-top: 0.35em;
}
.og-faq__icon::before,
.og-faq__icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
}
.og-faq__icon::before {
  left: 0; top: 50%;
  width: 14px; height: 1.5px;
  transform: translateY(-50%);
}
.og-faq__icon::after {
  left: 50%; top: 0;
  width: 1.5px; height: 14px;
  transform: translateX(-50%);
}
.og-faq__q[aria-expanded="true"] .og-faq__icon::after {
  transform: translateX(-50%) scaleY(0);
  opacity: 0;
}
.og-faq__a {
  overflow: hidden;
  height: 0;
  transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.og-faq__a-inner {
  padding: 0 0 1.7rem;
  max-width: 52ch;
}
.og-faq__a-inner p {
  font-size: 0.98rem;
  color: #2a2a2a;
}
.og-faq__a-inner p + p { margin-top: 0.9rem; }
.og-faq__a-inner em { font-style: italic; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .og-why .og-why__grid { grid-template-columns: 1fr; }
  .og-why__image { position: relative; top: 0; max-width: 520px; }
  .og-steps__list { grid-template-columns: repeat(2, 1fr); }
  .og-step:nth-child(2) { border-right: none; padding-right: 0; }
  .og-step:nth-child(3) { padding-left: 0; }
  .og-step:nth-child(2n) { border-right: none; padding-right: 0; }
  .og-step:nth-child(2n+1) { padding-left: 0; }
  .og-scope__grid { grid-template-columns: 1fr; }
  .og-scope__image { max-width: 520px; }
  .og-difference__grid { grid-template-columns: 1fr; }
  .og-difference__image { order: 2; max-width: 560px; }
  .og-receive__list { grid-template-columns: 1fr; border-top: none; }
  .og-receive__item,
  .og-receive__item:nth-child(n) {
    border-right: none;
    border-bottom: none;
    border-top: 1px solid var(--line);
    padding: 2.4rem 0 0;
  }
  .og-investment__grid { grid-template-columns: 1fr; }
  .og-invest-item:not(:first-child) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }
  .og-closing { grid-template-columns: 1fr; }
  .og-closing__image { min-height: 56vh; }
}

@media (max-width: 620px) {
  .og-steps__list { grid-template-columns: 1fr; }
  .og-step,
  .og-step:nth-child(n) {
    padding: 2.2rem 0;
    border-right: none;
  }
  .og-hero { text-align: left; }
  .og-hero__rule { margin-left: 0; }
  .og-hero__sub { margin-left: 0; }
  .og-hero__cue { display: none; }
}
