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

:root{
  --fs-body: 1.3rem;
  --fs-button:1rem;
}

body{
  font-size: var(--fs-body);;
}

.container.home{
  padding: unset;
}

/* ─── SECTION BASE ─────────────────────────── */
.section {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Split background */
.section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Photo half */
.photo-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: left top;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    z-index: 1;
}

/* Gradient overlay blending left text over photo */
.overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* ─── CONTENT ──────────────────────────────── */
.content {
  position: relative;
  z-index: 3;
  padding: 2rem 1.5rem 5rem 2rem;
  max-width: 65%;
  flex: 1;
   background: linear-gradient(
    to right,
    rgba(50, 40, 15, 0.88) 0%,
    rgba(50, 40, 15, 0.72) 38%,
    rgba(40, 32, 12, 0.4) 58%,
    transparent 100%
  );
  background: rgba(155, 133, 86, 0.5);
}

.headline {
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #c9a84c;
  line-height: 1.08;
  text-transform: uppercase;
  letter-spacing: 0.015em;
  margin-bottom: 1rem;
  white-space: nowrap;
}

.text-italics {
  font-style: italic;
  color: #ece6d5;
  margin-bottom: 2.2rem;
  line-height: 1.1;
  white-space: nowrap;
}

.body-text {
  font-size: var(--fs-body);
    color: white;
    line-height: 1.2;
    margin-bottom: 1.6rem;
    font-weight: 100;
}

.highlight {
  font-weight: 600;
  color: #c9a84c;
}

.whisper {
  color: #c9a84c;
  font-weight: 100;
}

ul.benefits {
  list-style: disc;
  padding-left: 1.4rem;
  color: #d8d0be;
  font-size: var(--fs-body);
  line-height: 2.1;
  margin-bottom: 1.6rem;
}


/* ─── CTA BAR ──────────────────────────────── */
.cta-bar {
  position: absolute;
  z-index: 3;
  background: #b8972a;
  padding: 1rem;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s;
  margin: 20px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
    width: calc(50% - 40px);
}

.cta-bar a {
  text-decoration: none;
  font-size: var(--fs-button); 
  font-weight: 500;
  color: white;
  text-transform: uppercase;
}

/* ─── DIVIDER between sections ─────────────── */
.divider {
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #c9a84c, #6b5218, #c9a84c);
  position: relative;
  z-index: 10;
}

/* ─── PHOTO URLs ───────────────────────────── */
.photo-man {
  background-image: url("/assets/images/man-hero.jpeg");
}
.photo-woman {
  background-image: url("/assets/images/woman-hero.jpeg");
  background-position: center 15%;
  transform: scaleX(-1);
}


body.homePage footer {
  margin: 0;
}



.benefits .body-text{
  margin: unset;
}






@media (max-width: 768px) {
  :root{
    --fs-body: 1rem;
    --fs-button: 0.8rem;
  }

  .cta-bar {
    left: unset;
    bottom: 0;
    width: calc(100% - 40px);
    transform: unset;
  
  }
}
