/* ── FONTS ── */
@font-face {
  font-family: 'Hot Mess';
  src: url('https://static.showit.co/file/660SVIjN5q-xrNnIyyJrEw/276362/hot_mess.woff') format('woff');
}

/* ── RESET & TOKENS ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange-red: #DB4E39;
  --yellow: #F6DE41;
  --blue: #8BE0F4;
  --pink: #C81E73;
  --black: #000;
  --white: #fff;
}

body {
  font-family: 'Afacad', sans-serif;
  background: #fff;
  overflow-x: hidden;
}

/* ── HERO ── */
#hero {
  background-color: var(--orange-red);
  background-image: url('src/orange_red.jpg');
  background-size: cover;
  background-position: center;
  min-height: 730px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(219, 78, 57, 0.72);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  text-align: center;
  padding: 60px 24px 100px;
  margin-left: auto;
  margin-right: 8%;
  /* Push text block to the right */
}

.hero-tilt {
  position: absolute;
  bottom: -80px;
  left: -5%;
  width: 150%;
  height: 140px;
  background-color: var(--yellow);
  background-image: url('src/F6DE41.png');
  background-size: cover;
  background-position: center;
  transform: rotate(3deg);
  z-index: 2;
}

/* Hero person photo */
.hero-person {
  position: absolute;
  left: 5%;
  bottom: 0;
  height: 100%;
  max-height: 954px;
  max-width: 637px;
  width: 100%;
  object-fit: contain;
  object-position: bottom;
  z-index: 2;
  pointer-events: none;
}

.hero-eyebrow {
  font-family: 'Afacad', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.hero-heading {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-sub {
  font-family: 'Afacad', sans-serif;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 36px;
}

/* ── SHARED BUTTON ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Afacad', sans-serif;
  font-size: 18px;
  padding: 12px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 400;
  transition: opacity .2s;
}

.btn-primary:hover {
  opacity: .85;
}

.btn-arrow {
  font-size: 16px;
}

/* ── IS FOR YOU ── */
#for-you {
  background-color: var(--yellow);
  background-image: url('src/F6DE41.png');
  background-size: cover;
  background-position: center;
  padding: 0 0 80px;
  position: relative;
}

.for-you-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-display {
  font-family: 'Hot Mess', cursive;
  font-size: 100px;
  text-align: center;
  line-height: 0.7;
  margin-bottom: 40px;
  color: var(--black);
}

.cards-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-row {
  display: grid;
  grid-template-columns: 63.6% 36.4%;
  gap: 0;
  background: var(--black);
  color: var(--white);
  min-height: 280px;
}

.card-row.reverse {
  direction: rtl;
  grid-template-columns: 36.4% 63.6%;
}

.card-row.reverse>* {
  direction: ltr;
}

.card-text {
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.card-img-placeholder {
  min-height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
}

.card-img-placeholder img {
  max-height: 65%;
  max-width: 70%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.card-subheading {
  font-family: 'Afacad', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.card-body {
  font-family: 'Afacad', sans-serif;
  font-size: 22px;
  line-height: 1.4;
  color: var(--white);
}

/* ── SPARKIE LOVE (TESTIMONIALS) ── */
#testimonials {
  background-color: var(--white);
  background-image: url('src/green.png');
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 70px);
  color: var(--pink);
  margin-bottom: 60px;
  line-height: 1;
}

.testimonials-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 32px);
  line-height: 1.3;
  margin-bottom: 20px;
  color: var(--black);
}

.testimonial-body {
  font-family: 'Afacad', sans-serif;
  font-size: 18px;
  line-height: 1.45;
  color: var(--black);
  margin-bottom: 24px;
}

.testimonial-name {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--black);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.review-card {
  background-color: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: 20px;
}

.review-stars {
  color: #f5a623;
  font-size: 18px;
  margin-bottom: 8px;
}

.review-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

.review-text {
  font-size: 14px;
  line-height: 1.45;
  color: #333;
}

/* ── FAST TRACK ── */
#fast-track {
  background-color: var(--blue);
  background-image: url('src/8BE0F4.png');
  background-size: cover;
  background-position: center;
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}

.fast-track-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.ft-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 56px);
  text-align: center;
  margin-bottom: 60px;
  color: var(--black);
  line-height: 1.2;
}

.ft-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.ft-col {
  text-align: center;
}

.ft-icon-placeholder {
  width: 90px;
  height: 80px;
  background: rgba(0, 0, 0, .12);
  border-radius: 8px;
  margin: 0 auto 24px;
}

.ft-col-heading {
  font-family: 'Afacad', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.ft-col-body {
  font-family: 'Afacad', sans-serif;
  font-size: 18px;
  line-height: 1.45;
  text-align: center;
}

.ft-cta {
  text-align: center;
}

/* Tilted pink banner at bottom of fast-track */
.ft-tilt {
  position: absolute;
  bottom: -50px;
  left: -5%;
  width: 110%;
  height: 160px;
  background: var(--pink);
  transform: rotate(3deg);
  z-index: 1;
}

/* ── ABOUT ── */
#about {
  background-color: var(--pink);
  background-image: url('src/raspberry.jpg');
  background-size: cover;
  background-position: center;
  padding: 0;
  position: relative;
  overflow: visible;
}

#about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(200, 30, 115, 0.62);
  z-index: 0;
}

.about-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: end;
}

.about-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 100px);
  text-transform: uppercase;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 30px;
  margin-top: -20px;
  /* Pull up to overlap slightly as in original */
  grid-column: 1 / -1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.about-body {
  font-family: 'Afacad', sans-serif;
  font-size: 20px;
  color: var(--white);
  line-height: 1.5;
  align-self: start;
}

.about-body p {
  margin-bottom: 20px;
}

.about-img-placeholder {
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  height: 700px;
  margin-bottom: -1px;
}

.about-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  border-radius: 10px;
}

/* ── LOGOS TICKER ── */
#logos {
  background: var(--black);
  height: 100px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ticker-item {
  font-family: 'Afacad', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #555;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex-shrink: 0;
}

#logos::before,
#logos::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
}

#logos::before {
  left: 0;
  background: linear-gradient(90deg, #000 0%, transparent 100%);
}

#logos::after {
  right: 0;
  background: linear-gradient(270deg, #000 0%, transparent 100%);
}

/* ── FINAL CTA ── */
#final-cta {
  background-color: var(--black);
  background-image: url('src/black.png');
  background-size: cover;
  background-position: center;
  padding: 80px 24px;
}

.final-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 60px;
  align-items: center;
}

.final-img-col {
  overflow: hidden;
  border-radius: 12px;
  height: 520px;
}

.final-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.final-text-col {
  text-align: left;
}

.final-heading {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 56px);
  color: var(--white);
  margin-bottom: 36px;
  line-height: 1.2;
}

.final-body {
  font-family: 'Afacad', sans-serif;
  font-size: 20px;
  color: var(--white);
  max-width: 600px;
  margin: 0 0 40px;
  line-height: 1.5;
}

/* ── FOOTER ── */
footer {
  background: var(--pink);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

footer a,
footer span {
  font-family: 'Afacad', sans-serif;
  font-size: 15px;
  color: var(--white);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ── MODAL ── */
#modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 999;
  align-items: center;
  justify-content: center;
}

#modal-overlay.open {
  display: flex;
}

.modal-box {
  background: var(--orange-red);
  border-radius: 8px;
  padding: 48px 40px 36px;
  max-width: 540px;
  width: 90%;
  position: relative;
  color: var(--white);
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--white);
  cursor: pointer;
  line-height: 1;
}

.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  margin-bottom: 8px;
}

.modal-sub {
  font-size: 17px;
  margin-bottom: 28px;
  opacity: .9;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-form input {
  padding: 14px 18px;
  border-radius: 6px;
  border: none;
  font-size: 16px;
  font-family: 'Afacad', sans-serif;
  outline: none;
}

.modal-form button {
  background: var(--yellow);
  color: var(--black);
  border: none;
  border-radius: 6px;
  padding: 14px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s;
}

.modal-form button:hover {
  opacity: .85;
}

.modal-note {
  font-size: 12px;
  margin-top: 14px;
  opacity: .75;
  line-height: 1.4;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */

/* ── TABLET (≤ 1024px) ── */
@media (max-width: 1024px) {

  /* Hero */
  #hero {
    min-height: 580px;
  }

  .hero-content {
    padding: 60px 24px 200px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-heading {
    font-size: 40px;
  }

  .hero-person {
    height: 75%;
    max-height: 480px;
  }

  /* For-you cards */
  .card-text {
    padding: 32px 36px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Fast-track */
  .ft-cols {
    gap: 28px;
  }

  /* About */
  .about-inner {
    grid-template-columns: 1fr 340px;
    gap: 40px;
  }

  .about-img-placeholder {
    height: 600px;
  }

  /* Final CTA */
  .final-inner {
    grid-template-columns: 340px 1fr;
    gap: 40px;
  }

  .final-img-col {
    height: 440px;
  }
}

/* ── MOBILE (≤ 768px) ── */
@media (max-width: 768px) {

  /* Hero */
  #hero {
    min-height: auto;
    padding-bottom: 80px;
  }

  .hero-content {
    padding: 40px 20px 100px;
  }

  .hero-person {
    height: 55%;
    max-height: 340px;
    left: -20px;
    opacity: 0.35;
  }

  .hero-tilt {
    height: 120px;
    bottom: -50px;
  }

  .hero-heading {
    font-size: 36px;
  }

  /* For-you section */
  #for-you {
    padding: 60px 0 50px;
  }

  .section-display {
    margin-bottom: 30px;
    font-size: 60px;
  }

  .cards-grid {
    gap: 16px;
  }

  .card-row, .card-row.reverse {
    grid-template-columns: 1fr;
  }

  .card-row.reverse {
    direction: ltr;
  }

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

  .card-img-placeholder {
    min-height: 220px;
  }

  .card-person-img {
    min-height: 260px;
  }

  .card-text {
    padding: 28px 24px;
  }

  /* Testimonials */
  #testimonials {
    padding: 50px 0;
  }

  .testimonials-top {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Fast-track */
  #fast-track {
    padding: 60px 0 100px;
  }

  .ft-cols {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }

  .ft-tilt {
    height: 120px;
    bottom: -40px;
  }

  /* About */
  #about {
    padding: 36px 0 0;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-title {
    font-size: clamp(24px, 7vw, 40px);
    margin-bottom: 16px;
  }

  .about-img-placeholder {
    height: 360px;
    border-radius: 10px;
    margin-bottom: 0;
  }

  .about-img-placeholder img {
    object-position: center top;
  }

  .about-body {
    font-size: 17px;
  }

  /* Final CTA */
  #final-cta {
    padding: 50px 20px;
  }

  .final-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .final-img-col {
    height: 300px;
    border-radius: 10px;
  }

  .final-text-col {
    text-align: center;
  }

  .final-body {
    margin: 0 auto 32px;
  }

  /* Footer */
  footer {
    gap: 20px;
  }
}

/* ── SMALL MOBILE (≤ 480px) ── */
@media (max-width: 480px) {

  /* Hero */
  .hero-person {
    display: none;
  }

  .hero-content {
    padding: 40px 16px 80px;
  }

  /* Cards */
  .card-text {
    padding: 24px 20px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* About */
  .about-img-placeholder {
    height: 280px;
  }

  /* Final CTA */
  .final-img-col {
    height: 240px;
  }
}