:root {
  --ink: #11100f;
  --ivory: #f4efe7;
  --paper: #fbf8f2;
  --text: #181512;
  --soft: #6f675f;
  --wine: #681d2a;
  --champagne: #c4a98e;
  --line: #d8cec3;
  --max: 1272px;
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.55;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-shell {
  overflow: clip;
}

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.eyebrow {
  margin: 0;
  color: var(--wine);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--champagne);
}

.display {
  font-family: var(--display);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.section {
  padding: clamp(72px, 9vw, 112px) 0;
}

.section-title {
  max-width: 800px;
  margin: 12px 0 24px;
  font-size: clamp(2.6rem, 5vw, 4.1rem);
}

.lead {
  max-width: 800px;
  margin: 0;
  color: var(--soft);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(420px, 1fr);
  min-height: 760px;
  background: var(--ivory);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 92px max(48px, calc((100vw - var(--max)) / 2)) 72px;
  padding-right: clamp(52px, 6vw, 88px);
}

.hero h1 {
  max-width: 670px;
  margin: 18px 0 26px;
  font-size: clamp(4.1rem, 6.5vw, 6rem);
}

.hero .lead {
  max-width: 590px;
}

.hero-photo {
  position: relative;
  min-height: 760px;
  background: #050505;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.hero-signature {
  position: absolute;
  inset: 24px 28px auto auto;
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--display);
  font-size: 1.35rem;
  font-style: italic;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.46);
}

/* Buttons */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 30px;
  padding: 0 24px;
  border: 0;
  border-radius: 2px;
  background: var(--wine);
  color: #fffaf4;
  font: 700 0.8rem/1 var(--body);
  letter-spacing: 0.045em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.18s, background-color 0.18s;
}

.cta:hover {
  background: #561723;
  transform: translateY(-2px);
}

.cta:focus-visible {
  outline: 3px solid var(--champagne);
  outline-offset: 4px;
}

/* Authority */
.authority {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
  color: #f7f1e9;
}

.authority-item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 132px;
  padding: 30px 36px;
  border-right: 1px solid #2d2926;
}

.authority-item::before {
  display: block;
  width: 28px;
  height: 1px;
  margin-bottom: 15px;
  background: var(--wine);
  content: "";
}

.authority-item strong {
  font: 600 1.8rem/1 var(--display);
  letter-spacing: -0.015em;
}

.authority-item span {
  margin-top: 7px;
  color: var(--champagne);
  font-size: 0.8rem;
  line-height: 1.35;
}

/* Editorial sections */
.manifesto blockquote {
  max-width: 980px;
  margin: 18px 0 28px;
  font: 600 clamp(3rem, 5vw, 4.4rem)/1 var(--display);
  letter-spacing: -0.025em;
}

.authority-editorial,
.mfit {
  background: var(--ivory);
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  align-items: start;
  gap: clamp(56px, 8vw, 112px);
}

.formation-note {
  margin: 18px 0 0;
  padding: 15px 18px;
  border-left: 2px solid var(--wine);
  background: #fff9f2;
  color: #5f534b;
  font-weight: 600;
  line-height: 1.55;
}

.fact-list {
  border-top: 1px solid var(--line);
}

.fact {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.fact b {
  color: var(--wine);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
}

.fact span {
  font-weight: 600;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.process-step {
  min-height: 238px;
  padding: 26px 8px 24px 0;
  border-top: 1px solid var(--line);
}

.process-step .num {
  color: var(--wine);
  font: 600 2.1rem/1 var(--display);
}

.process-step h3 {
  margin: 24px 0 8px;
  font-size: 1.08rem;
}

.process-step p {
  margin: 0;
  color: var(--soft);
  font-size: 0.94rem;
}

/* What you receive */
.receive {
  background: #f4eee7;
  color: var(--ink);
}

.receive .wrap {
  max-width: 1180px;
}

.receive .eyebrow {
  color: var(--wine);
}

.receive .section-title {
  max-width: 920px;
  color: var(--ink);
}

.receive-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  max-width: 1120px;
  margin: 42px auto 0;
}

.receive-item {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 26px;
  min-height: 138px;
  padding: 24px 24px 22px;
  border: 1px solid #d9cdc4;
  background: #fffaf6;
  color: var(--ink);
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(63, 40, 17, 0.04);
}

.receive-item:nth-child(4) {
  grid-column: 2 / span 2;
}

.receive-item:nth-child(5) {
  grid-column: 4 / span 2;
}

.receive-item::before {
  margin: 0;
  color: #8b2033;
  font: 700 1.15rem/1 var(--body);
  content: "•";
}

.audience-line {
  margin-top: 32px;
  color: var(--soft);
  font-size: 1.15rem;
}

/* Methodology */
.methodology {
  background: var(--ink);
  color: #fffaf4;
}

.methodology-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(46px, 8vw, 110px);
}

.methodology .section-title {
  max-width: 650px;
  color: #fffaf4;
}

.methodology .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #efb58e;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.methodology .eyebrow::before {
  display: block;
  flex: 0 0 auto;
  width: 26px;
  height: 2px;
  background: #a73449;
  content: "";
}

.methodology-content {
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid #55443d;
  background: #151311;
  box-shadow: inset 3px 0 0 #7c2638;
}

.methodology-content .lead {
  margin: 0;
  color: #e4d9cf;
}

.methodology-content strong {
  color: #fff;
  font-weight: 700;
}

.methodology-support {
  margin: 18px 0 0;
  color: #bdb1a7;
  line-height: 1.65;
}

.methodology-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.methodology-tags span {
  padding: 8px 12px;
  border: 1px solid #7c3141;
  border-radius: 999px;
  background: #181311;
  color: #f0c8af;
  font-size: 0.76rem;
  letter-spacing: 0.03em;
}

/* MFIT */
.mfit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: end;
  gap: clamp(42px, 7vw, 92px);
}

.delivery-card {
  padding: 26px 28px;
  border: 1px solid var(--line);
}

.delivery-card strong {
  display: block;
  margin-top: 12px;
  color: var(--wine);
  font: 600 2rem/1 var(--display);
}

.delivery-card > p:last-child {
  margin: 14px 0 0;
  color: var(--soft);
  font-size: 0.9rem;
}

/* Pricing — promotion stays visually active, without timer/date logic */
.offer {
  overflow: visible;
  border-block: 1px solid #d9cdc4;
  background: #eee6df;
  color: var(--ink);
}

.offer .wrap,
.offer .offer-layout {
  max-width: 1180px;
  margin-inline: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.offer .eyebrow {
  color: var(--wine);
}

.offer .section-title {
  max-width: 780px;
  color: var(--ink);
}

.offer-intro {
  max-width: 820px;
}

.offer-lead {
  margin: 14px 0 0;
  color: var(--soft);
  font-size: 1rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1180px;
  margin: 42px auto 0;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 420px;
  padding: 34px 36px 32px;
  border: 1px solid #4c3c3e;
  border-radius: 20px;
  background: #201718;
  color: #fff;
  box-shadow: 0 18px 50px rgba(49, 23, 29, 0.09);
}

.pricing-card-featured {
  border: 2px solid #d06a7b;
  box-shadow: 0 22px 55px rgba(124, 36, 48, 0.15);
}

.pricing-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 36px;
}

.pricing-label {
  margin: 0;
  color: #f8eee6;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-save {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: #dcc5ad;
  color: #35231c;
  font-size: 0.7rem;
  font-weight: 800;
  white-space: nowrap;
}

.pricing-save-featured {
  background: #a9d8be;
  color: #183226;
}

.pricing-regular {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 34px 0 0;
  color: #a99b97;
  font-size: 1rem;
}

.pricing-regular del {
  color: #a99b97;
  text-decoration-thickness: 1.5px;
  white-space: nowrap;
}

.pricing-active {
  margin: 12px 0 30px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(3rem, 4.4vw, 4.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.045em;
  white-space: nowrap;
}

.pricing-price small {
  color: #d9cbca;
  font: 500 0.36em/1 Arial, Helvetica, sans-serif;
  letter-spacing: -0.01em;
}

.pricing-billed {
  margin: 12px 0 0;
  color: #c5b7b4;
  font-size: 0.9rem;
  line-height: 1.45;
}

.pricing-billed strong {
  color: #eee4e1;
  font-weight: 600;
}

.pricing-cta {
  width: 100%;
  min-height: 56px;
  margin-top: auto;
  border-color: var(--wine);
  background: var(--wine);
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

.pricing-cta:hover {
  border-color: #8c2437;
  background: #8c2437;
}

/* FAQ */
.faq-list {
  margin-top: 38px;
  border-top: 1px solid var(--line);
}

details {
  border-bottom: 1px solid var(--line);
}

summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  color: var(--wine);
  font: 600 1.55rem/1 var(--display);
  content: "+";
}

details[open] summary::after {
  content: "−";
}

summary:focus-visible {
  outline: 3px solid var(--champagne);
  outline-offset: 4px;
}

details p {
  max-width: 760px;
  margin: -4px 0 24px;
  color: var(--soft);
}

/* Final CTA and footer */
.final-cta {
  padding: clamp(56px, 6vw, 78px) 0 46px;
  background: var(--ink);
  color: #fffaf4;
}

.final-cta .section-title {
  max-width: 780px;
  margin-bottom: 16px;
  color: #fffaf4;
}

.final-cta .cta {
  margin-top: 24px;
}

.final-lead {
  color: #c9c0b7;
}

.footer {
  padding: 24px 0 26px;
  border-top: 1px solid #292421;
  background: var(--ink);
  color: #9f968e;
  font-size: 0.82rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-instagram {
  padding-bottom: 2px;
  border-bottom: 1px solid #5e4f46;
  color: #cbb8a8;
  text-decoration: none;
  transition: color 0.18s, border-color 0.18s;
}

.footer-instagram:hover {
  border-color: #fff;
  color: #fff;
}

.footer-instagram:focus-visible {
  outline: 3px solid var(--champagne);
  outline-offset: 4px;
}

.footer-credit {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.footer-credit > span {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-credit-link {
  display: inline-flex;
  align-items: center;
  border-radius: 3px;
}

.footer-credit-link:focus-visible {
  outline: 3px solid var(--champagne);
  outline-offset: 5px;
}

.footer-credit img {
  width: 150px;
  height: auto;
  opacity: 0.92;
  transition: opacity 0.18s, transform 0.18s;
}

.footer-credit-link:hover img {
  opacity: 1;
  transform: translateY(-1px);
}

/* Progressive reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s, transform 0.55s;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Mobile sticky CTA */
.sticky-cta {
  display: none;
}

body.footer-in-view .sticky-cta {
  display: none !important;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr 44%;
    min-height: 690px;
  }

  .hero-copy {
    padding-left: 48px;
    padding-right: 40px;
  }

  .hero-photo {
    min-height: 690px;
  }

  .authority-item {
    padding-inline: 24px;
  }

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

  .receive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
  }

  .receive-item,
  .receive-item:nth-child(4),
  .receive-item:nth-child(5) {
    grid-column: auto;
  }

  .receive-item:last-child {
    grid-column: 1 / -1;
    width: 100%;
    max-width: calc(50% - 7px);
    justify-self: center;
  }

  .methodology-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pricing-grid {
    gap: 18px;
  }

  .pricing-card {
    min-height: 400px;
    padding: 30px 28px;
  }
}

@media (max-width: 768px) {
  .mfit-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(calc(100% - 48px), 520px);
  }

  .section {
    padding: 58px 0;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .hero-photo {
    order: -1;
    height: clamp(390px, 110vw, 470px);
    min-height: 0;
  }

  .hero-photo img {
    object-position: 50% 36%;
  }

  .hero-copy {
    padding: 38px 24px 46px;
  }

  .hero h1 {
    margin-top: 14px;
    font-size: clamp(3.35rem, 13vw, 4.35rem);
  }

  .hero .lead {
    font-size: 1rem;
  }

  .hero-signature {
    top: 18px;
    right: 20px;
    bottom: auto;
    font-size: 1.05rem;
  }

  .hero-copy > .cta[data-cta-context="hero"] {
    display: none;
  }

  .cta {
    width: 100%;
    min-height: 56px;
    padding-inline: 16px;
  }

  .authority {
    display: block;
  }

  .authority-item {
    display: grid;
    grid-template-columns: 145px 1fr;
    align-items: center;
    min-height: 74px;
    padding: 18px 24px;
    border-right: 0;
    border-bottom: 1px solid #2d2926;
  }

  .authority-item::before {
    display: none;
  }

  .authority-item strong {
    font-size: 1.45rem;
  }

  .authority-item span {
    margin: 0;
  }

  .manifesto blockquote {
    font-size: 2.65rem;
  }

  .section-title {
    font-size: 2.8rem;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .formation-note {
    margin-top: 16px;
    padding: 13px 15px;
    font-size: 0.9rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .process-step {
    min-height: 0;
    padding: 20px 0;
  }

  .receive-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 30px;
  }

  .receive-item,
  .receive-item:nth-child(4),
  .receive-item:nth-child(5),
  .receive-item:last-child {
    grid-column: auto;
    display: grid;
    grid-template-columns: 22px 1fr;
    align-items: center;
    gap: 9px;
    width: auto;
    max-width: none;
    min-height: 0;
    padding: 17px 18px;
    box-shadow: none;
  }

  .receive-item::before {
    margin: 0;
    align-self: center;
    font-size: 1rem;
  }

  .methodology .eyebrow {
    gap: 10px;
    font-size: 0.76rem;
  }

  .methodology .eyebrow::before {
    width: 20px;
  }

  .methodology-content {
    padding: 24px 20px;
  }

  .methodology-tags {
    gap: 7px;
  }

  .methodology-tags span {
    padding: 7px 10px;
    font-size: 0.7rem;
  }

  .offer {
    padding: 58px 0;
  }

  .offer .wrap,
  .offer .offer-layout {
    width: min(calc(100% - 32px), 520px);
  }

  .offer .section-title {
    font-size: 2.65rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 28px;
  }

  .pricing-card {
    min-height: 350px;
    padding: 26px 24px;
    border-radius: 18px;
  }

  .pricing-card-head {
    align-items: flex-start;
  }

  .pricing-save {
    padding: 7px 10px;
    font-size: 0.66rem;
  }

  .pricing-regular {
    margin-top: 28px;
  }

  .pricing-price {
    font-size: clamp(2.8rem, 13vw, 3.65rem);
  }

  .pricing-price small {
    font-size: 0.34em;
  }

  .pricing-billed {
    font-size: 0.86rem;
  }

  .pricing-cta {
    min-height: 54px;
    margin-top: auto;
  }

  .footer-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer-instagram {
    grid-column: 1 / 2;
    width: max-content;
  }

  .footer-credit {
    grid-column: 2 / 3;
    grid-row: 1 / 3;
    margin-left: 0;
  }

  .footer-credit img {
    width: 148px;
  }

  .sticky-cta {
    position: fixed;
    z-index: 20;
    right: 16px;
    bottom: max(14px, env(safe-area-inset-bottom));
    left: 16px;
    width: auto;
    margin-top: 0;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.2);
  }

  .sticky-cta.is-active {
    display: flex;
  }
}

@media (min-width: 386px) and (max-width: 400px) and (max-height: 880px) {
  .hero-photo {
    height: 400px;
  }

  .hero-copy {
    padding-top: 24px;
    padding-bottom: 40px;
  }

  .hero h1 {
    margin-top: 10px;
    margin-bottom: 16px;
    font-size: 3.3rem;
  }
}

@media (max-width: 390px) {
  .offer .wrap,
  .offer .offer-layout {
    width: min(calc(100% - 24px), 520px);
  }

  .offer .section-title {
    font-size: 2.45rem;
  }

  .pricing-card {
    padding: 24px 20px;
  }

  .pricing-save {
    font-size: 0.61rem;
  }

  .pricing-price {
    font-size: 2.95rem;
  }

  .footer-row {
    grid-template-columns: 1fr;
  }

  .footer-instagram,
  .footer-credit {
    grid-column: 1;
    grid-row: auto;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
