/* =============================================
   PawHaus — Landing Page Styles
   A/B Test Challenger vs. staypawhaus.com
   ============================================= */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: #faf8f5;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ---------- Typography ---------- */
.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b89a5c;
  margin-bottom: 1rem;
}

.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 1.5rem;
}

/* ---------- Layout ---------- */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

.container--narrow {
  max-width: 720px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.btn--primary {
  background: #b89a5c;
  color: #fff;
  box-shadow: 0 4px 20px rgba(184,154,92,0.35);
}

.btn--primary:hover {
  background: #9e8248;
  box-shadow: 0 6px 28px rgba(184,154,92,0.45);
  transform: translateY(-1px);
}

.btn--primary:active {
  transform: translateY(0);
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100dvh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.18) 0%,
    rgba(0,0,0,0.52) 55%,
    rgba(0,0,0,0.72) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 1.5rem;
  max-width: 760px;
}

.hero__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d4b87a;
  margin-bottom: 1.2rem;
  opacity: 0.92;
}

.hero__headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 1.4rem;
}

.hero__sub {
  font-family: 'Inter', sans-serif;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.2rem;
}

.hero__cta {
  display: inline-block;
  margin-bottom: 1.1rem;
  font-size: 0.85rem;
  padding: 1.1rem 2.5rem;
}

.hero__trust {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.62);
  text-transform: uppercase;
}

/* Scroll hint arrow */
.hero__scroll-hint {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: bounce 2.2s ease infinite;
}

.hero__scroll-hint span {
  width: 22px;
  height: 22px;
  border-right: 2px solid rgba(255,255,255,0.5);
  border-bottom: 2px solid rgba(255,255,255,0.5);
  transform: rotate(45deg);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: 6rem 1.5rem;
  background: #faf8f5;
  text-align: center;
}

.about .section-label,
.about .section-heading {
  text-align: center;
}

.about__body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #3d3d3d;
  margin-bottom: 1.3rem;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

.about__body strong {
  font-weight: 600;
  color: #1a1a1a;
}

.about__charity {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: 0.92rem;
  line-height: 1.7;
  color: #4a4a4a;
  background: #f0ebe0;
  border-left: 3px solid #b89a5c;
  padding: 1rem 1.4rem;
  border-radius: 2px;
  text-align: left;
}

.about__charity strong {
  font-weight: 600;
  color: #1a1a1a;
}

/* =============================================
   FOUNDERS FORM SECTION
   ============================================= */
.founders-section {
  background: #1a1a1a;
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}

.founders-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b89a5c;
  border: 1px solid #b89a5c;
  padding: 0.4rem 1.1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.founders-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1.2rem;
}

.founders-sub {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.2rem;
  font-weight: 300;
}

.founders-sub strong {
  color: #d4b87a;
  font-weight: 600;
}

/* Benefits bar */
.founders-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.founders-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  padding: 0.55rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  font-weight: 400;
}

.founders-benefit__icon {
  font-size: 1rem;
}

/* GHL form container */
.ghl-form-wrap {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  margin-bottom: 1.8rem;
}

.ghl-form-wrap--waitlist {
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.founders-disclaimer {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.38);
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* =============================================
   INFO STRIP — 3 CARDS
   ============================================= */
.info-strip {
  padding: 6rem 1.5rem;
  background: #faf8f5;
  text-align: center;
}

.info-strip .section-label,
.info-strip .section-heading {
  text-align: center;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  margin-bottom: 4rem;
  text-align: left;
}

.info-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.info-card__img-wrap {
  overflow: hidden;
  height: 260px;
}

.info-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.info-card:hover .info-card__img {
  transform: scale(1.04);
}

.info-card__body {
  padding: 1.5rem 1.6rem 1.8rem;
}

.info-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 0.7rem;
}

.info-card__text {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.75;
  color: #5a5a5a;
  font-weight: 300;
}

/* Founders note */
.founders-note {
  border-top: 1px solid #e8e0d0;
  padding-top: 3rem;
  margin-top: 1rem;
}

.founders-note__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.founders-note__eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b89a5c;
  margin-bottom: 1rem;
}

.founders-note__text {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: #3d3d3d;
  font-weight: 300;
  margin-bottom: 1rem;
}

.founders-note__text strong {
  font-weight: 600;
  color: #1a1a1a;
}

.founders-note__charity {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #5a5a5a;
  font-weight: 300;
}

.founders-note__charity strong {
  font-weight: 600;
  color: #1a1a1a;
}

/* =============================================
   WAITLIST SECTION
   ============================================= */
.waitlist-section {
  padding: 5rem 1.5rem 4rem;
  background: #f3efe6;
  text-align: center;
}

.waitlist-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 1.2rem;
}

.waitlist-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.waitlist-sub em {
  color: #6a6a6a;
  font-style: italic;
}

/* =============================================
   FINAL CTA
   ============================================= */
.final-cta {
  background: #b89a5c;
  padding: 5rem 1.5rem;
  text-align: center;
}

.final-cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-cta__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1rem;
}

.final-cta__sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 480px;
}

.final-cta .btn--primary {
  background: #fff;
  color: #b89a5c;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
}

.final-cta .btn--primary:hover {
  background: #faf8f5;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.final-cta__trust {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  margin-top: 1.1rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #111;
  padding: 3rem 1.5rem;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: #d4b87a;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.footer__tagline {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.footer__legal {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__legal p {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

.footer__legal a {
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__legal a:hover {
  color: #d4b87a;
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-card__img-wrap {
    height: 220px;
  }

  .founders-benefits {
    flex-direction: column;
    align-items: center;
  }

  .founders-benefit {
    width: 100%;
    justify-content: center;
    max-width: 340px;
  }

  .about {
    padding: 4rem 1.5rem;
  }

  .founders-section,
  .waitlist-section {
    padding: 4rem 1.5rem 3rem;
  }

  .info-strip {
    padding: 4rem 1.5rem;
  }

  .final-cta {
    padding: 4rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero__headline {
    font-size: clamp(2.6rem, 11vw, 4rem);
  }

  .hero__sub {
    font-size: 0.88rem;
  }

  .hero__cta {
    padding: 1rem 1.6rem;
    font-size: 0.8rem;
  }
}
