/* ============================================================
   RLM - The Real Life Method
   Base Stylesheet - "Confident Warmth"
   Mobile-first | 375px base | 640px + 1024px breakpoints
   ============================================================ */

/* ----- Custom Properties ----- */

:root {
  --color-red: #d70017;
  --color-red-hover: #b80013;
  --color-dark: #2b2623;
  --color-brown: #4f443c;
  --color-grey: #79726d;
  --color-white: #faf9f7;
  --font-body: 'Inter', sans-serif;
  --container-width: 720px;
  --container-wide: 1200px;
  --radius-pill: 50px;
  --radius-card: 16px;
  --radius-image: 12px;
}

/* ----- Reset ----- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1, h2, h3, h4, h5, h6,
p,
ul, ol, figure, blockquote {
  margin: 0;
  padding: 0;
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  font: inherit;
  border: none;
  background: none;
}

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

input, button, textarea, select {
  font: inherit;
}

/* ----- Base Typography ----- */

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  font-kerning: normal;
  color: var(--color-white);
  background: var(--color-dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

.section-headline {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(28px, 3vw + 12px, 44px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-align: center;
  text-wrap: balance;
  margin-bottom: 16px;
  color: var(--color-white);
}

/* ----- Layout ----- */

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide {
  max-width: var(--container-wide);
}

/* ----- Section Base ----- */

.section--dark {
  background: var(--color-dark);
  color: var(--color-white);
}

/* ----- CTA Button ----- */

.cta-button {
  display: block;
  width: 100%;
  background: var(--color-red);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 20px 40px;
  border: none;
  border-radius: 90px;
  text-align: center;
  transition: background 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.cta-button:hover {
  background: var(--color-red-hover);
}

.cta-button:active {
  transform: scale(0.98);
}

.cta-button:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 3px;
}

.cta-wrapper {
  text-align: center;
  margin-top: 24px;
}

.hero .cta-wrapper {
  margin-top: 16px;
}

/* Header removed per client request */

/* ============================================================
   Section 2: Social Proof Bar
   ============================================================ */

.social-proof {
  background: var(--color-dark);
  padding: 20px 0;
  text-align: center;
}

.social-proof__thumbnails {
  max-width: 360px;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.social-proof__text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 12px;
  letter-spacing: 0.01em;
}

/* ============================================================
   Section 3: Hero
   ============================================================ */

.hero {
  background: var(--color-dark);
  padding: 24px 0 48px;
}

.hero__headline {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: clamp(32px, 5vw + 14px, 56px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  text-align: center;
  text-wrap: balance;
  color: var(--color-white);
  margin-bottom: 12px;
}

.hero__subheadline {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  text-wrap: balance;
  max-width: 500px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

/* Video */

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-dark);
  box-shadow: 0 0 40px rgba(215, 0, 23, 0.2), 0 0 80px rgba(215, 0, 23, 0.08);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Price */

.hero__price {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 36px;
  font-variant-numeric: tabular-nums;
  text-align: center;
  color: var(--color-white);
  margin: 16px 0 8px;
  letter-spacing: -0.025em;
}

.hero__price-gbp,
.hero__price-usd {
  font-size: inherit;
  font-weight: inherit;
  color: var(--color-white);
}

.hero__supporting {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  text-align: center;
  margin-top: 16px;
}

/* ============================================================
   Section 4: Results
   ============================================================ */

.results {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 80px 0;
}

.results__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

.results__photo {
  width: 100%;
  border-radius: var(--radius-image);
  box-shadow: 0 0 24px rgba(215, 0, 23, 0.18);
}

/* ============================================================
   Section 5: This Is For You If
   ============================================================ */

.for-you {
  background: var(--color-dark);
  padding: 80px 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 720px;
  margin: 32px auto 0;
}

.card-graphic {
  width: 100%;
  border-radius: 12px;
}

.for-you__caption {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  text-wrap: balance;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  margin-top: 32px;
}

/* ============================================================
   Section 6: What's Included - Visual Journey
   ============================================================ */

.whats-included {
  background: var(--color-dark);
  padding: 80px 0;
}

.journey {
  max-width: 560px;
  margin: 48px auto 0;
  position: relative;
}

/* Vertical connecting line */
.journey::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 40px;
  bottom: 40px;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0.06) 100%
  );
}

.journey__step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px 0;
  position: relative;
}

.journey__step:first-child {
  padding-top: 0;
}

.journey__step:last-child {
  padding-bottom: 0;
}

/* Large step number */
.journey__number {
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 48px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.08);
  min-width: 48px;
  text-align: center;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  letter-spacing: -0.02em;
}

/* Red dot on the timeline at each step */
.journey__number::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--color-red);
  border-radius: 50%;
}

.journey__content {
  flex: 1;
  padding-top: 4px;
}

.journey__title {
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.journey__detail {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 12px;
}

.journey__description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   Section 8: FAQ
   ============================================================ */

.faq {
  background: var(--color-dark);
  padding: 72px 0;
}

.faq .section-headline {
  margin-bottom: 48px;
}

.faq__list {
  max-width: 600px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.faq__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 48px;
  padding: 24px 0;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq__question:hover {
  color: var(--color-white);
}

.faq__question:active {
  opacity: 0.8;
}

.faq__item.active .faq__question {
  color: var(--color-white);
}

.faq__question:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 2px;
}

.faq__icon {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.35);
  transition: transform 0.2s ease, color 0.2s ease;
  flex-shrink: 0;
  margin-left: 20px;
  line-height: 1;
}

.faq__item.active .faq__icon {
  transform: rotate(45deg);
  color: var(--color-red);
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq__item.active .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer p {
  overflow: hidden;
  min-height: 0;
  padding: 0 0 24px 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ============================================================
   Section 9: Final CTA
   ============================================================ */

.final-cta {
  background: var(--color-dark);
  padding: 96px 0;
  text-align: center;
}

.final-cta .section-headline {
  font-size: clamp(28px, 4vw + 12px, 48px);
  font-weight: 900;
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   Section 10: Footer
   ============================================================ */

.site-footer {
  background: var(--color-dark);
  padding: 48px 0;
  text-align: center;
}

.footer__logo {
  height: 32px;
  width: auto;
  margin: 0 auto 24px;
  opacity: 0.4;
}

.footer__links {
  margin-bottom: 16px;
}

.footer__social {
  color: var(--color-grey);
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer__social:hover {
  color: var(--color-white);
}

.footer__social:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 2px;
}

.footer__copyright {
  font-size: 12px;
  color: var(--color-grey);
}

/* ============================================================
   Sticky Mobile CTA
   ============================================================ */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  padding: 12px 20px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  background: rgba(43, 38, 35, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transform: translateY(100%);
  transition: transform 0.2s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta .cta-button {
  display: block;
  width: 100%;
  padding: 14px 24px;
  font-size: 13px;
}

/* ============================================================
   Responsive: 640px (Tablet)
   ============================================================ */

@media (min-width: 640px) {

  /* CTA */

  .cta-button {
    display: inline-block;
    width: auto;
    padding: 20px 60px;
  }

  /* Section spacing */

  .hero { padding: 32px 0 56px; }
  .results { padding: 96px 0; }
  .final-cta { padding: 80px 0; }
  .for-you { padding: 80px 0; }
  .whats-included { padding: 80px 0; }
  .faq { padding: 72px 0; }

  /* Hero */

  .hero__price {
    font-size: 40px;
  }

  /* Results - 3+2 centred layout */

  .results__grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .results__photo {
    grid-column: span 2;
  }

  /* Centre the last 2 photos: offset by 1 column each side */
  .results__photo:nth-child(4) {
    grid-column: 2 / 4;
  }

  .results__photo:nth-child(5) {
    grid-column: 4 / 6;
  }

  /* Cards */

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Journey - tablet */

  .journey__number {
    font-size: 56px;
    min-width: 56px;
  }

  .journey__title {
    font-size: 22px;
  }

  .journey__step {
    gap: 32px;
    padding: 40px 0;
  }

  .journey::before {
    left: 28px;
  }

  /* Sticky CTA hidden on tablet+ */

  .sticky-cta {
    display: none;
  }
}

/* ============================================================
   Responsive: 1024px (Desktop)
   ============================================================ */

@media (min-width: 1024px) {

  /* Section spacing */

  .hero { padding: 40px 0 64px; }
  .results { padding: 112px 0; }
  .final-cta { padding: 96px 0; }
  .for-you { padding: 96px 0; }
  .whats-included { padding: 96px 0; }
  .faq { padding: 80px 0; }

  /* Hero */

  .hero__price {
    font-size: 44px;
  }

  /* Results */

  .results .container {
    max-width: 1100px;
  }

  /* Cards */

  .cards-grid {
    gap: 24px;
  }

  /* Journey - desktop */

  .journey {
    max-width: 640px;
  }

  .journey__number {
    font-size: 64px;
    min-width: 64px;
  }

  .journey__title {
    font-size: 24px;
  }

  .journey__step {
    gap: 40px;
    padding: 48px 0;
  }

  .journey::before {
    left: 32px;
  }


}

/* ============================================================
   Accessibility: Focus Visible
   ============================================================ */

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 3px;
}

/* ============================================================
   Accessibility: Reduced Motion
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   Accessibility: Screen Reader Only
   ============================================================ */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only--focusable:focus {
  position: fixed;
  top: 8px;
  left: 8px;
  width: auto;
  height: auto;
  padding: 12px 24px;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
  background: var(--color-red);
  color: var(--color-white);
  border-radius: 8px;
  z-index: 10000;
  font-weight: 700;
  font-size: 14px;
}
