:root {
  --paper: #f5f3ef;
  --paper-deep: #e9e5de;
  --ink: #111111;
  --muted: #625f5a;
  --red: #df1f2d;
  --red-dark: #b81420;
  --white: #ffffff;
  --line: rgba(17, 17, 17, 0.18);
  --shadow: 0 24px 70px rgba(17, 17, 17, 0.1);
  --max: 1180px;
  --pad: clamp(1.25rem, 4vw, 4rem);
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.035;
  z-index: 10;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  padding: .8rem 1rem;
  background: var(--ink);
  color: var(--white);
}
.skip-link:focus { top: 1rem; }

.site-header {
  min-height: 82px;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
  background: rgba(245, 243, 239, .92);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 20;
}
.brand {
  min-width: 78px;
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -.07em;
  line-height: .8;
  font-size: 1.7rem;
}
.brand strong { color: var(--red); }
.brand small {
  position: absolute;
  left: 1px;
  top: 1.55rem;
  font-family: var(--sans);
  font-size: .47rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.site-header nav { display: flex; gap: clamp(1rem, 3vw, 2.2rem); }
.site-header nav a {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
}
.site-header nav a:hover { color: var(--red); }
.header-cta {
  border-bottom: 2px solid var(--red);
  padding: .45rem 0;
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
}

.hero {
  max-width: var(--max);
  min-height: calc(100vh - 82px);
  margin: 0 auto;
  padding: clamp(3rem, 8vh, 7rem) var(--pad);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7rem);
}
.hero-copy { min-width: 0; position: relative; z-index: 2; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: 0 0 1.1rem;
  font-size: .71rem;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow span { width: 25px; height: 2px; background: var(--red); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -.065em;
  text-transform: uppercase;
}
h1 {
  max-width: 750px;
  margin-bottom: 1.5rem;
  font-size: clamp(3.7rem, 7.6vw, 7.3rem);
  line-height: .86;
}
h1 em, h2 em {
  color: var(--red);
  font-family: var(--serif);
  font-weight: 400;
  text-transform: none;
}
.hero-lead {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.03rem, 1.5vw, 1.22rem);
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.3rem; margin: 2rem 0 3.5rem; }
.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: .95rem 1.25rem;
  border: 0;
  font-size: .83rem;
  font-weight: 800;
  letter-spacing: .055em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .plan-tab:focus-visible, .text-button:focus-visible, summary:focus-visible, a:focus-visible {
  outline: 3px solid #2367d1;
  outline-offset: 4px;
}
.button-primary { background: var(--ink); color: var(--white); }
.button-primary:hover { background: var(--red); }
.text-link, .text-button {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  border: 0;
  border-bottom: 1px solid currentColor;
  padding: .3rem 0;
  background: transparent;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}
blockquote {
  margin: 0;
  padding-left: 1rem;
  border-left: 3px solid var(--red);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.45;
}
blockquote strong { color: var(--red); font-weight: 400; }
.hero-art {
  width: 100%;
  max-width: 390px;
  min-height: 530px;
  justify-self: end;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--ink);
  box-shadow: var(--shadow);
  isolation: isolate;
}
.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(145deg, transparent 25%, rgba(255,255,255,.05) 25%, rgba(255,255,255,.05) 25.3%, transparent 25.3%),
    radial-gradient(circle at 78% 22%, rgba(223,31,45,.9) 0 8%, transparent 8.3%),
    linear-gradient(150deg, #111 0 48%, #1a1a1a 48% 100%);
}
.art-number {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-51%, -53%);
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(10rem, 21vw, 17rem);
  font-weight: 900;
  letter-spacing: -.09em;
  line-height: .8;
}
.art-number span { color: var(--red); font-size: .5em; vertical-align: top; }
.art-ring { position: absolute; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; }
.ring-one { width: 330px; height: 330px; left: -120px; bottom: -110px; }
.ring-two { width: 470px; height: 470px; right: -290px; top: -205px; border-color: rgba(223,31,45,.8); }
.art-note {
  position: absolute;
  color: var(--white);
  font-size: .67rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.art-note b, .art-note span { display: block; }
.art-note span { margin-top: .25rem; color: rgba(255,255,255,.55); font-family: var(--serif); font-style: italic; letter-spacing: .05em; text-transform: none; }
.note-one { top: 2rem; left: 2rem; }
.note-two { right: 2rem; bottom: 2rem; text-align: right; }
.art-signature {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.1;
}
.art-signature span { font-family: var(--sans); font-size: .55rem; font-style: normal; letter-spacing: .16em; text-transform: uppercase; }
.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(to top, rgba(17,17,17,.88) 0, rgba(17,17,17,.1) 42%, transparent 68%);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
  object-fit: cover;
  object-position: center 43%;
}
.photo-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 1;
  padding: .65rem .8rem;
  background: rgba(255,255,255,.9);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: -.06em;
}
.photo-badge span { color: var(--red); }
.photo-caption {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  z-index: 1;
  color: var(--white);
}
.photo-caption strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -.055em;
  line-height: .95;
  text-transform: uppercase;
}
.photo-caption span {
  display: block;
  margin-top: .5rem;
  color: rgba(255,255,255,.72);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.section-pad { padding: clamp(5rem, 10vw, 9rem) var(--pad); }
.section-heading { max-width: var(--max); margin: 0 auto clamp(3rem, 6vw, 5.5rem); }
.section-heading h2 {
  max-width: 920px;
  margin-bottom: 0;
  font-size: clamp(2.8rem, 6vw, 6.1rem);
  line-height: .9;
}
.section-heading.compact { text-align: center; }
.section-heading.compact .eyebrow { justify-content: center; }
.section-heading.compact h2 { margin-inline: auto; }
.section-heading.compact > p:last-child { max-width: 650px; margin: 1.5rem auto 0; color: var(--muted); line-height: 1.6; }
.benefits { background: var(--white); }
.benefit-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.benefit-card { min-height: 270px; padding: 2rem; border-right: 1px solid var(--line); display: flex; flex-direction: column; }
.benefit-card:last-child { border-right: 0; }
.card-index, .choice-number { color: var(--red); font-size: .73rem; font-weight: 800; letter-spacing: .12em; }
.benefit-card h3 { margin: auto 0 .8rem; font-family: var(--display); font-size: 1.65rem; letter-spacing: -.04em; text-transform: uppercase; }
.benefit-card p { margin: 0; color: var(--muted); font-size: .95rem; line-height: 1.6; }
.truth-strip {
  max-width: var(--max);
  margin: 4rem auto 0;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.7rem 0;
  border-bottom: 4px solid var(--red);
  font-size: clamp(1rem, 2vw, 1.25rem);
}
.truth-strip p, .truth-strip strong { margin: 0; }
.truth-strip strong { max-width: 580px; text-align: right; }
.about-carol {
  max-width: var(--max);
  margin: clamp(5rem, 10vw, 8rem) auto 0;
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  border: 1px solid var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.about-photo {
  min-height: 520px;
  margin: 0;
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--ink);
  background: var(--paper-deep);
}
.about-photo::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(to top, rgba(17,17,17,.86), transparent);
  pointer-events: none;
}
.about-photo img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  object-position: center 40%;
}
.about-photo figcaption {
  position: absolute;
  right: 1.7rem;
  bottom: 1.7rem;
  left: 1.7rem;
  z-index: 1;
  color: var(--white);
}
.about-photo figcaption strong,
.about-photo figcaption span { display: block; }
.about-photo figcaption strong {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -.05em;
  line-height: .95;
  text-transform: uppercase;
}
.about-photo figcaption span {
  margin-top: .5rem;
  color: rgba(255,255,255,.7);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.about-copy {
  padding: clamp(2rem, 6vw, 5.5rem);
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
.about-copy h2 {
  max-width: 650px;
  margin-bottom: 1.8rem;
  font-size: clamp(2.8rem, 5vw, 5.1rem);
  line-height: .9;
}
.about-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-bottom: 1.2rem;
  color: var(--muted);
  line-height: 1.65;
}
.about-copy .text-link { margin-top: .8rem; }
.testimonials { max-width: var(--max); margin: clamp(5rem, 10vw, 8rem) auto 0; }
.testimonials-head {
  margin-bottom: 1.8rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.testimonials-head .eyebrow { margin-bottom: .8rem; }
.testimonials-head h2 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: .9;
}
.carousel-controls { display: flex; gap: .5rem; }
.carousel-controls button {
  width: 50px;
  height: 50px;
  border: 1px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  font-size: 1.25rem;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, opacity .2s ease;
}
.carousel-controls button:hover { background: var(--ink); color: var(--white); }
.carousel-controls button:disabled { opacity: .28; cursor: default; }
.testimonial-viewport {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--red) var(--paper-deep);
}
.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 1rem) / 2);
  gap: 1rem;
}
.testimonial-card {
  min-height: 330px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  border: 1px solid var(--ink);
  background: var(--paper);
}
.testimonial-card.featured { background: var(--ink); color: var(--white); }
.quote-mark {
  height: 70px;
  color: var(--red);
  font-family: var(--serif);
  font-size: 6rem;
  line-height: 1;
}
.testimonial-card blockquote {
  margin: auto 0 2rem;
  padding: 0;
  border: 0;
  font-size: clamp(1.05rem, 1.7vw, 1.27rem);
  line-height: 1.5;
}
.testimonial-card footer {
  min-height: 0;
  margin: 0;
  padding: 1rem 0 0;
  display: block;
  border-top: 1px solid currentColor;
  color: inherit;
  font-size: inherit;
  letter-spacing: 0;
  text-transform: none;
}
.testimonial-card footer strong,
.testimonial-card footer span { display: block; }
.testimonial-card footer strong { font-family: var(--display); font-size: 1rem; letter-spacing: .02em; text-transform: uppercase; }
.testimonial-card footer span { margin-top: .25rem; color: var(--muted); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
.testimonial-card.featured footer span { color: rgba(255,255,255,.55); }
.testimonial-story {
  min-height: auto;
  margin: 0;
  padding: .8rem;
  gap: 0;
  background: var(--white);
}
.story-image {
  aspect-ratio: 941 / 1190;
  padding: 0;
  position: relative;
  overflow: hidden;
  border: 0;
  background: var(--paper-deep);
  cursor: zoom-in;
}
.story-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top;
  transition: transform .35s ease;
}
.story-image:hover img { transform: scale(1.015); }
.story-image > span {
  position: absolute;
  right: .8rem;
  bottom: .8rem;
  padding: .7rem .8rem;
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  background: rgba(17,17,17,.93);
  color: var(--white);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.story-image > span b { color: var(--red); font-size: .9rem; }
.testimonial-story figcaption {
  min-height: 105px;
  padding: 1.1rem .7rem .4rem;
  display: grid;
  grid-template-columns: .35fr .65fr;
  align-items: start;
  gap: 1rem;
  border-top: 0;
}
.testimonial-story figcaption strong {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: -.03em;
  text-transform: uppercase;
}
.testimonial-story figcaption span { color: var(--muted); font-size: .78rem; line-height: 1.5; }
.results-note { margin: 1rem 0 0; color: var(--muted); font-size: .68rem; line-height: 1.5; }
.testimonial-modal {
  width: min(900px, calc(100vw - 2rem));
  height: min(92vh, 1200px);
  max-width: none;
  max-height: none;
  padding: 0;
  border: 1px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(0,0,0,.35);
}
.testimonial-modal::backdrop { background: rgba(17,17,17,.78); backdrop-filter: blur(6px); }
.modal-head {
  min-height: 64px;
  padding: .7rem 1rem .7rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 2;
  border-bottom: 1px solid var(--line);
  background: rgba(245,243,239,.96);
}
.modal-head p { margin: 0; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.modal-head form { margin: 0; }
.modal-head button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.modal-body { height: calc(100% - 64px); overflow: auto; }
.modal-body img { width: 100%; height: auto; display: block; }

.plans { background: var(--paper); }
.plan-selector {
  max-width: 780px;
  margin: 0 auto 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ink);
  border: 1px solid var(--ink);
}
.plan-tab {
  min-height: 90px;
  padding: 1rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.plan-tab > span { font-family: var(--display); font-size: 1.25rem; font-weight: 900; letter-spacing: -.04em; text-transform: uppercase; }
.plan-tab i { display: block; margin-top: .25rem; color: var(--red); font-family: var(--sans); font-size: .55rem; font-style: normal; letter-spacing: .1em; }
.plan-tab b { white-space: nowrap; font-size: 1.2rem; }
.plan-tab small { font-size: .65rem; font-weight: 500; }
.plan-tab.is-active { background: var(--ink); color: var(--white); }
.selected-plan {
  max-width: 980px;
  margin: 0 auto clamp(5rem, 9vw, 8rem);
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}
.selected-plan-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; padding: 2rem 2.3rem; border-bottom: 1px solid var(--line); }
.choice-label { margin: 0 0 .4rem; color: var(--red); font-size: .68rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.selected-plan h3 { margin: 0; font-family: var(--display); font-size: clamp(2.2rem, 5vw, 4rem); letter-spacing: -.055em; line-height: .95; text-transform: uppercase; }
.selected-price { margin: 0; text-align: right; }
.selected-price strong { display: block; font-family: var(--display); font-size: clamp(2rem, 4vw, 3.4rem); letter-spacing: -.05em; }
.selected-price span { color: var(--muted); font-size: .72rem; text-transform: uppercase; }
.plan-summary { margin: 0; padding: 1.5rem 2.3rem; border-bottom: 1px solid var(--line); color: var(--muted); font-family: var(--serif); font-size: clamp(1.05rem, 2vw, 1.4rem); font-style: italic; line-height: 1.5; }
.selected-plan-body { display: grid; grid-template-columns: 1.2fr .8fr; }
#plan-features { margin: 0; padding: 2rem 2.3rem 2rem 3.6rem; border-right: 1px solid var(--line); }
#plan-features li { padding: .6rem .2rem; line-height: 1.45; }
#plan-features li::marker { color: var(--red); content: "✓  "; font-weight: 900; }
.plan-decision { padding: 2rem 2.3rem; display: flex; flex-direction: column; justify-content: flex-end; background: var(--paper); }
.plan-decision p { margin: 0 0 1.7rem; line-height: 1.55; }
.plan-decision p span { display: block; margin-bottom: .25rem; color: var(--red); font-size: .67rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.button-full { width: 100%; }
.plan-decision small { margin-top: .7rem; color: var(--muted); font-size: .66rem; text-align: center; }
.comparison { max-width: var(--max); margin: 0 auto; }
.comparison-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; padding-bottom: 1.4rem; border-bottom: 3px solid var(--ink); }
.comparison-head .eyebrow { margin-bottom: .7rem; }
.comparison-head h3 { margin: 0; font-family: var(--display); font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -.045em; text-transform: uppercase; }
.comparison-head > p { max-width: 260px; margin: 0; color: var(--muted); font-size: .8rem; line-height: 1.5; text-align: right; }
.table-scroll { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; background: var(--white); }
th, td { min-width: 190px; padding: 1rem 1.2rem; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); font-size: .86rem; line-height: 1.45; text-align: left; transition: background .2s ease; }
th:last-child, td:last-child { border-right: 0; }
thead th { background: var(--ink); color: var(--white); font-family: var(--display); font-size: 1rem; letter-spacing: .02em; text-transform: uppercase; }
thead th:first-child { color: rgba(255,255,255,.65); }
thead th span { font-family: var(--sans); font-size: .65rem; font-weight: 500; text-transform: none; }
tbody th { width: 27%; font-size: .78rem; letter-spacing: .035em; text-transform: uppercase; }
td.is-highlighted { background: #fff1f2; }
thead th.is-highlighted { background: var(--red); }
.yes { color: var(--red-dark); font-weight: 800; }
.no { color: #999; }
.who-grid { max-width: var(--max); margin: 3rem auto 0; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--ink); background: var(--white); }
.who-grid article { min-height: 245px; padding: 2rem; display: flex; flex-direction: column; border-right: 1px solid var(--ink); }
.who-grid article:last-child { border-right: 0; }
.who-grid article.recommended { box-shadow: inset 0 5px 0 var(--red); }
.who-grid h3 { margin: auto 0 .5rem; font-family: var(--display); font-size: 2.1rem; letter-spacing: -.04em; text-transform: uppercase; }
.who-grid p { color: var(--muted); line-height: 1.55; }
.who-grid .text-button { align-self: flex-start; }

.faq { background: var(--white); }
.faq-layout { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 7rem); }
.faq .section-heading { margin: 0; }
.faq .section-heading h2 { font-size: clamp(2.7rem, 5vw, 5rem); }
.faq .section-heading > p:last-child { margin-top: 1.5rem; color: var(--muted); line-height: 1.6; }
.sticky-heading { align-self: start; position: sticky; top: 125px; }
.faq-list { border-top: 3px solid var(--ink); }
details { border-bottom: 1px solid var(--line); }
summary { min-height: 78px; padding: 1rem 0; display: flex; align-items: center; justify-content: space-between; gap: 1rem; list-style: none; font-family: var(--display); font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 800; letter-spacing: -.025em; cursor: pointer; }
summary::-webkit-details-marker { display: none; }
summary span { color: var(--red); font-family: var(--sans); font-size: 1.5rem; transition: transform .2s ease; }
details[open] summary span { transform: rotate(45deg); }
details p { max-width: 660px; margin: -0.2rem 2.5rem 1.6rem 0; color: var(--muted); line-height: 1.65; }
.final-cta {
  max-width: var(--max);
  margin: clamp(5rem, 10vw, 9rem) auto 0;
  padding: clamp(2.3rem, 7vw, 5.5rem);
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}
.final-cta::after {
  content: "40+";
  position: absolute;
  right: -2rem;
  bottom: -3rem;
  color: rgba(255,255,255,.045);
  font-family: var(--display);
  font-size: clamp(9rem, 25vw, 21rem);
  font-weight: 900;
  letter-spacing: -.1em;
  line-height: .8;
}
.eyebrow.light span { background: var(--red); }
.final-cta h2 { max-width: 800px; margin: 0 0 1.4rem; position: relative; z-index: 1; font-size: clamp(3rem, 7vw, 6.5rem); line-height: .88; }
.final-cta p:not(.eyebrow) { max-width: 580px; margin-bottom: 2rem; position: relative; z-index: 1; color: rgba(255,255,255,.7); line-height: 1.6; }
.button-light { position: relative; z-index: 1; background: var(--white); color: var(--ink); }
.button-light:hover { background: var(--red); color: var(--white); }
.instagram-handle { display: block; margin-top: 1rem; position: relative; z-index: 1; color: rgba(255,255,255,.55); font-size: .75rem; }
body > footer { min-height: 155px; max-width: var(--max); margin: 0 auto; padding: 2rem var(--pad); display: flex; align-items: center; justify-content: space-between; gap: 2rem; color: var(--muted); font-size: .7rem; letter-spacing: .04em; text-transform: uppercase; }
.brand-footer { color: var(--ink); }
.mobile-cta { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

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

@media (max-width: 1020px) {
  .site-header { min-height: 70px; }
  .site-header nav { display: none; }
  .header-cta { font-size: .72rem; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding-top: 4rem; }
  .hero-art { width: min(100%, 380px); min-height: 410px; justify-self: center; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 200px; border-right: 0; border-bottom: 1px solid var(--line); }
  .benefit-card:last-child { border-bottom: 0; }
  .truth-strip { flex-direction: column; }
  .truth-strip strong { text-align: left; }
  .about-carol { grid-template-columns: 1fr; padding-top: 2rem; }
  .about-photo { width: min(calc(100% - 2rem), 360px); min-height: 470px; margin: 0 auto; border: 1px solid var(--ink); }
  .selected-plan-body { grid-template-columns: 1fr; }
  #plan-features { border-right: 0; border-bottom: 1px solid var(--line); }
  .faq-layout { grid-template-columns: 1fr; }
  .sticky-heading { position: static; }
}

@media (max-width: 600px) {
  body { padding-bottom: calc(76px + env(safe-area-inset-bottom)); }
  .site-header { padding-inline: 1rem; }
  .brand { font-size: 1.45rem; }
  .brand small { top: 1.3rem; }
  .header-cta { border: 1px solid var(--ink); padding: .55rem .7rem; }
  .hero { padding: 3.3rem 1.2rem 4.5rem; gap: 3rem; }
  h1 { font-size: clamp(3.35rem, 17vw, 5.4rem); }
  .hero-actions { align-items: stretch; flex-direction: column; margin-bottom: 2.5rem; }
  .hero-actions .button { width: 100%; }
  .hero-actions .text-link { align-self: flex-start; }
  .hero-art { min-height: 350px; }
  .art-number { font-size: 10.2rem; }
  .art-ring { transform: scale(.78); }
  .note-one, .art-signature { left: 1.3rem; }
  .note-two { right: 1.3rem; }
  .section-pad { padding: 4.5rem 1.2rem; }
  .section-heading { margin-bottom: 2.7rem; }
  .section-heading h2, .faq .section-heading h2 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .benefit-card { padding: 1.5rem; }
  .about-photo { width: min(calc(100% - 1.5rem), 320px); min-height: 420px; }
  .about-photo img { object-position: center 34%; }
  .about-photo figcaption { right: 1.3rem; bottom: 1.3rem; left: 1.3rem; }
  .about-copy { padding: 2.2rem 1.4rem 2.5rem; }
  .about-copy h2 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .testimonials-head { align-items: flex-start; }
  .testimonials-head h2 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .carousel-controls { padding-top: 2.2rem; }
  .carousel-controls button { width: 43px; height: 43px; }
  .testimonial-track { grid-auto-columns: 92%; gap: .75rem; }
  .testimonial-card { min-height: 0; }
  .testimonial-story { padding: .55rem; }
  .story-image { aspect-ratio: 941 / 1260; }
  .testimonial-story figcaption { min-height: 112px; grid-template-columns: 1fr; gap: .35rem; padding: 1rem .65rem .5rem; }
  .testimonial-modal { width: calc(100vw - 1rem); height: 94vh; }
  .plan-selector { margin-bottom: .7rem; }
  .plan-tab { min-height: 95px; padding: .8rem; align-items: flex-start; flex-direction: column; }
  .plan-tab > span { font-size: 1.05rem; }
  .plan-tab b { font-size: 1rem; }
  .selected-plan-head { padding: 1.4rem; align-items: flex-start; }
  .selected-plan h3 { font-size: 2.15rem; }
  .selected-price strong { font-size: 1.55rem; }
  .plan-summary { padding: 1.2rem 1.4rem; }
  #plan-features { padding: 1.3rem 1.3rem 1.3rem 2.8rem; }
  #plan-features li { font-size: .9rem; }
  .plan-decision { padding: 1.4rem; }
  .comparison-head { align-items: flex-start; flex-direction: column; gap: .6rem; }
  .comparison-head > p { text-align: left; }
  .table-scroll { margin-right: -1.2rem; }
  table { min-width: 660px; }
  th, td { min-width: 170px; padding: .85rem; font-size: .78rem; }
  th:first-child { min-width: 150px; position: sticky; left: 0; z-index: 2; background: var(--white); box-shadow: 8px 0 14px rgba(17,17,17,.05); }
  thead th:first-child { z-index: 3; background: var(--ink); }
  .who-grid { grid-template-columns: 1fr; }
  .who-grid article { min-height: 230px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .who-grid article:last-child { border-bottom: 0; }
  .faq-layout { gap: 2rem; }
  summary { min-height: 72px; font-size: 1.1rem; }
  .final-cta { padding: 2.2rem 1.4rem; }
  .final-cta h2 { font-size: clamp(3rem, 15vw, 4.5rem); }
  body > footer { min-height: 210px; padding: 2.2rem 1.2rem; align-items: flex-start; flex-direction: column; justify-content: center; }
  body > footer p { margin: 0; }
  .mobile-cta {
    min-height: 68px;
    padding: .55rem .75rem calc(.55rem + env(safe-area-inset-bottom));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    border-top: 1px solid rgba(255,255,255,.2);
    background: rgba(17,17,17,.97);
    color: var(--white);
    backdrop-filter: blur(14px);
  }
  .mobile-cta div span, .mobile-cta div strong { display: block; }
  .mobile-cta div span { color: rgba(255,255,255,.6); font-size: .58rem; letter-spacing: .11em; text-transform: uppercase; }
  .mobile-cta div strong { margin-top: .12rem; font-size: .88rem; }
  .mobile-cta a { min-height: 43px; padding: .65rem .9rem; display: inline-flex; align-items: center; justify-content: center; background: var(--red); font-size: .72rem; font-weight: 900; text-decoration: none; text-transform: uppercase; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
