/*  HOME PAGE = index.html  */

html, body {
  height: 100%;
  overscroll-behavior: none;
}

body {
  margin: 0;
  background-color: #f7f5f1;
  font-family: "Times New Roman", serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3 {
  font-family: Arial, Helvetica, sans-serif;
}

h2 {
  font-weight: 400;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #f7f5f1;
}

/* ====== Hero ====== */
.hero {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: center;
  justify-items: center;
  padding: clamp(40px, 6vw, 70px) clamp(20px, 4vw, 60px);
  max-width: 1400px;
  margin: 0 auto;
  background-color: #f7f5f1;
  border-radius: 32px;
}

.hero-copy {
  width: min(600px, 100%);
  animation: slideInLeft 1.5s ease-out both;
}

.hero-frame {
  width: fit-content;
  height: auto;
  overflow: hidden;
  animation: slideInRight 1.5s ease-out both;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-eyebrow,
.intro-eyebrow,
.approach-eyebrow,
.story-eyebrow,
.cta-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #0a0600;
  margin: 0 0 18px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 4vw, 4.8rem);
  font-weight: lighter;
  line-height: 0.95;
  letter-spacing: -0.04em;
  max-width: 680px;
  font-family: "Times New Roman", serif;
}

.hero-copy-text {
  margin: 24px 0 0;
  max-width: 520px;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  line-height: 1.7;
  font-family: Arial, Helvetica, sans-serif;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 14px 24px;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 0.9rem;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
}

.hero-btn-solid {
  background-color: #0a0600;
  color: white;
  border: 1px solid #0a0600;
}

.hero-btn-outline {
  background-color: transparent;
  color: #0a0600;
  border: 1px solid #0a0600;
}

.hero-img-wrapper {
  display: block;
  width: fit-content;
  height: auto;
  border: 1px solid #0a0600;
  box-sizing: border-box;
}

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

/* Header styles */
.site-name {
  font-family: Arial, Helvetica, sans-serif;
}

.nav-menu {
  font-family: Arial, Helvetica, sans-serif;
}

.intro-banner,
.approach {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.story-block {
  width: 100%;
  margin: 0;
  background-color: white;
}

.cta-block {
  width: 100%;
  margin: 0;
  background-color: #0a0600;
  color: white;
  padding: clamp(40px, 5vw, 60px) 20px;
}


.intro-banner {
  width: 100%;
  margin: 0;
  text-align: center;
  padding: clamp(40px, 4vw, 55px) 20px 0;
  background-color: white;
  border-radius: 0;
}

.intro-banner h2 {
  margin: 12px auto 0;
  max-width: 760px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  font-family: "Times New Roman", serif;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  padding: 0 20px 42px;
  background-color: white;
  border-radius: 0;
  justify-items: center;
}

.benefit-card {
  background-color: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  text-align: center;
  min-height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  max-width: 240px;
  width: 100%;
}

.benefit-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  background-color: transparent;
  border: none;
  font-size: 1.2rem;
  margin: 0 auto;
}

.benefit-icon img {
  max-width: 60%;
  max-height: 60%;
  width: auto;
  height: auto;
  display: block;
}

.benefit-card p {
  margin: 0 auto;
  max-width: 220px;
  font-size: 0.95rem;
  line-height: 1.7;
  font-family: Arial, Helvetica, sans-serif;
}

.approach {
  padding: 60px 20px 60px;
}

.approach-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.approach-head h2 {
  margin: 16px auto 0;
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  line-height: 1.05;
  font-family: "Times New Roman", serif;
}

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

.approach-card {
  background-color: #f8f6f1;
  border-radius: 26px;
  padding: 30px 28px;
  min-height: 240px;
}

.approach-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #0a0600;
  color: white;
  font-weight: 700;
  margin-bottom: 18px;
  font-family: Arial, Helvetica, sans-serif;
}

.approach-card h3 {
  margin: 0 0 14px;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.approach-card p {
  margin: 0;
  line-height: 1.7;
  font-size: 0.95rem;
  font-family: Arial, Helvetica, sans-serif;
}

.story-block {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 60px 20px 60px;
  background-color: white;
}

.story-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  min-height: 260px;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-copy {
  padding: 12px 0;
}

.story-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
  font-family: "Times New Roman", serif;
}

.story-copy p {
  margin: 0;
  line-height: 1.8;
  font-size: 1rem;
}

.story-copy p + p {
  margin-top: 18px;
}

.story-button {
  display: inline-flex;
  margin-top: 28px;
  padding: 14px 28px;
  background-color: #0a0600;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  border: 1px solid #0a0600;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
}

.cta-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner h2 {
  margin: 0 auto 40px;
  font-size: clamp(2.6rem, 4vw, 3.8rem);
  line-height: 1.05;
  font-family: "Times New Roman", serif;
}

.cta-columns {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  text-align: left;
  align-items: start;
}

.cta-divider {
  width: 1px;
  background-color: rgba(255, 255, 255, 0.25);
  align-self: stretch;
}

.cta-col-title {
  font-family: "Times New Roman", serif;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: normal;
  margin: 0 0 16px;
}

.cta-left p,
.cta-right p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.85);
}

.cta-button {
  display: inline-flex;
  padding: 14px 28px;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.cta-button:hover {
  background-color: white;
  color: #0a0600;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.waitlist-form input {
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  border-radius: 4px;
  outline: none;
}

.waitlist-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.waitlist-form input:focus {
  border-color: rgba(255, 255, 255, 0.7);
}

.waitlist-btn {
  padding: 14px 28px;
  background-color: #f7f5f1;
  color: rgb(0, 0, 0);
  border: none;
  font-size: 0.85rem;
  letter-spacing: 2px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.waitlist-btn:hover {
  background-color: #fce1d4;
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-frame {
    width: min(760px, 90vw);
    height: clamp(320px, 50vh, 620px);
    margin: 0 auto;
  }
}

@media (max-width: 980px) {
  .benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .approach-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .story-block {
    grid-template-columns: 1fr;
  }

  .story-media {
    grid-template-columns: 1fr 1fr;
    min-height: 260px;
  }

  .story-copy {
    text-align: center;
  }

  .story-copy h2,
  .story-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .story-button {
    display: block;
    width: fit-content;
    margin: 28px auto 0;
  }
}

@media (max-width: 680px) {
  .hero {
    padding: clamp(24px, 6vw, 40px) 16px;
  }

  .hero-frame {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
  }

  .hero-img {
    width: 100%;
    max-height: 420px;
    object-fit: cover;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-btn {
    min-width: unset;
    width: 100%;
  }

  .benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 24px 16px 40px;
    gap: 20px;
  }

  .approach {
    padding: 40px 16px 50px;
  }

  .story-block {
    padding: 40px 16px 50px;
  }

  .story-media {
    grid-template-columns: 1fr 1fr;
  }

  .cta-block {
    padding: 40px 16px;
  }

  .cta-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-divider {
    width: 100%;
    height: 1px;
    align-self: auto;
  }

  .cta-col-title {
    font-size: 1.3rem;
  }

  .waitlist-form input,
  .waitlist-btn {
    font-size: 0.9rem;
  }

  .scroll-arrow-wrap {
    padding: 8px 0;
  }
}

@media (max-width: 480px) {
  .benefits {
    grid-template-columns: 1fr;
    justify-items: center;
  }

.intro-banner h2 {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .approach-card {
    min-height: auto;
    padding: 24px 20px;
  }
}
