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

:root {
  --primary:    #ffd51f;
  --primary-darker:    #e6b618;
  /* --primary-darker:    #c7a300; */
  --text:        #272727;
  --text-muted:  #6a5a50;
  --text-faint:  #a09080;
  --red-accent:  #c0392b;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}


body.home {
  font-family: 'Manrope', sans-serif;
  color: #1C1C1E;
  background: #FAFAFA;
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

body.home img { max-width: 100%; display: block; }
body.home a { color: inherit; text-decoration: none; }

/* ─── Utility ─── */
.home .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.home .container--narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

.home .label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6B7280;
}

.home .label--accent { color: var(--primary-darker); }

.home .section-heading {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.home .section-heading--center { text-align: center; }

/* ─── Fade-in animation ─── */
.home .fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.home .fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Buttons ─── */
.home .btn {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1.5px solid transparent;
}

.home .btn--primary {
  background: var(--primary);
  color: var(--text);
}

.home .btn--primary:hover {
  background: var(--primary-darker);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(45, 106, 79, 0.25);
}

.home .btn--ghost {
  background: transparent;
  border-color: #1C1C1E;
  color: #1C1C1E;
}

.home .btn--ghost:hover {
  background: #1C1C1E;
  color: #FFFFFF;
}

.home .btn--outline-accent {
  background: transparent;
  border-color: var(--primary);
  color: var(--text);
  padding: 10px 24px;
}

.home .btn--outline-accent:hover {
  background: var(--primary);
  color: var(--text);
}

/* ─── Nav ─── */
.home .home-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 250, 250, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(28, 28, 30, 0.06);
  transition: box-shadow 0.3s ease;
}

.home .home-nav.scrolled {
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.04);
}

.home .nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home .nav__logo {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #1C1C1E;
}

.home .nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.home .nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #6B7280;
  transition: color 0.3s ease;
  position: relative;
}

.home .nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: #1C1C1E;
  transition: width 0.3s ease;
}

.home .nav__link:hover { color: #1C1C1E; }
.home .nav__link:hover::after { width: 100%; }

.home .nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.home .nav__mobile-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: #1C1C1E;
  transition: all 0.3s ease;
}

/* ─── Hero ─── */
.home .hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.home .hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  padding: 60px 0;
}

.home .hero__content { max-width: 560px; }

.home .hero__label { margin-bottom: 24px; }

.home .hero__heading {
  font-family: 'Lora', serif;
  font-size: clamp(2.75rem, 5.2vw, 4.25rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #1C1C1E;
  margin-bottom: 28px;
}

.home .hero__sub {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #6B7280;
  margin-bottom: 40px;
  max-width: 480px;
}

.home .hero__ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.home .hero__secondary {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1C1C1E;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #1C1C1E;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.home .hero__secondary:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.home .hero__image-wrapper {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.home .hero__image {
  width: 100%;
  max-width: 480px;
  height: 600px;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
}

/* ─── Pull Quote ─── */
.home .pullquote {
  padding: 120px 24px;
  text-align: center;
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
  background: #FFFFFF;
}

.home .pullquote__text {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.4;
  color: #1C1C1E;
  max-width: 800px;
  margin: 0 auto;
  letter-spacing: -0.01em;
}

.home .pullquote__dash {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--primary);
  margin: 32px auto 0;
}

/* ─── About ─── */
.home .about { padding: 140px 0; }

.home .about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.home .about__image {
  width: 100%;
  max-width: 440px;
  border-radius: 50%;
  aspect-ratio: 1;
  object-fit: cover;
}

.home .about__label { margin-bottom: 20px; }

.home .about__heading {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}

.home .about__text {
  color: #6B7280;
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

.home .about__stat-row {
  display: flex;
  gap: 48px;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #F0F0F0;
}

.home .about__stat-number {
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1C1C1E;
  line-height: 1;
  margin-bottom: 6px;
}

.home .about__stat-label {
  font-size: 0.8125rem;
  color: #6B7280;
  letter-spacing: 0.02em;
}

/* ─── Lifestyle Strip ─── */
.home .lifestyle {
  padding: 100px 0 120px;
  background: #FFFFFF;
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
}

.home .lifestyle__inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}

.home .lifestyle__content { max-width: 540px; }

.home .lifestyle__label { margin-bottom: 20px; }

.home .lifestyle__heading {
  font-family: 'Lora', serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.home .lifestyle__text {
  color: #6B7280;
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 16px;
}

.home .lifestyle__list {
  list-style: none;
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}

.home .lifestyle__list li {
  font-size: 0.9375rem;
  color: #1C1C1E;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.home .lifestyle__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 1px;
  background: var(--primary);
}

.home .lifestyle__image {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 2px;
}

/* ─── Problems ─── */
.home .problems { padding: 140px 0; }

.home .problems__label {
  text-align: center;
  margin-bottom: 16px;
}

.home .problems__heading { margin-bottom: 80px; }

.home .problems__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.home .problem__number {
  font-family: 'Lora', serif;
  font-size: 4rem;
  font-weight: 700;
  color: #F0F0F0;
  line-height: 1;
  margin-bottom: 20px;
}

.home .problem__title {
  font-family: 'Lora', serif;
  font-size: 1.375rem;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.3;
}

.home .problem__text {
  color: #6B7280;
  font-size: 0.9375rem;
  line-height: 1.8;
}

/* ─── Testimonials ─── */
.home .testimonials {
  padding: 140px 0;
  background: #FFFFFF;
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
}

.home .testimonials__label {
  text-align: center;
  margin-bottom: 16px;
}

.home .testimonials__heading { margin-bottom: 72px; }

.home .testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.home .testimonial-card {
  border: 1px solid #F0F0F0;
  border-radius: 2px;
  padding: 36px 28px;
  background: #FAFAFA;
  transition: border-color 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.home .testimonial-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.home .testimonial-card__quote {
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: #1C1C1E;
  margin-bottom: 28px;
  flex-grow: 1;
}

.home .testimonial-card__result {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  padding: 6px 10px;
  background: rgba(45, 106, 79, 0.06);
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.home .testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid #F0F0F0;
}

.home .testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.home .testimonial-card__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: #1C1C1E;
}

.home .testimonial-card__role {
  font-size: 0.8125rem;
  color: #6B7280;
  margin-top: 2px;
}

/* Quiz CTA card */
.home .testimonial-card--cta {
  background: #1C1C1E;
  color: #FAFAFA;
  border-color: #1C1C1E;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 40px 32px;
}

.home .testimonial-card--cta:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--text);
}

.home .testimonial-card--cta .testimonial-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  /* color: rgba(250, 250, 250, 0.6); */
  margin-bottom: 16px;
}

.home .testimonial-card--cta h3 {
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 16px;
  /* color: #FAFAFA; */
}

.home .testimonial-card--cta p {
  font-size: 0.9375rem;
  /* color: rgba(250, 250, 250, 0.75); */
  line-height: 1.65;
  margin-bottom: 28px;
}

.home .testimonial-card--cta .btn {
  background: #FAFAFA;
  color: #1C1C1E;
}

.home .testimonial-card--cta .btn:hover {
  background: #FFFFFF;
  transform: translateY(-1px);
}

/* ─── How I Help ─── */
.home .how { padding: 140px 0; }

.home .how__label {
  text-align: center;
  margin-bottom: 16px;
}

.home .how__heading {
  text-align: center;
  margin-bottom: 72px;
}

.home .how__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 960px;
  margin: 0 auto;
}

.home .how-card {
  border: 1px solid #F0F0F0;
  border-radius: 2px;
  padding: 48px 44px;
  background: #FFFFFF;
  transition: border-color 0.3s ease, transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.home .how-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.home .how-card__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-darker);
  margin-bottom: 20px;
}

.home .how-card__title {
  font-family: 'Lora', serif;
  font-size: 1.625rem;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.25;
}

.home .how-card__desc {
  color: #6B7280;
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 28px;
  flex-grow: 1;
}

.home .how-card__meta {
  font-size: 0.8125rem;
  color: #9CA3AF;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.home .how-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1C1C1E;
  letter-spacing: 0.02em;
  transition: gap 0.3s ease, color 0.3s ease;
  align-self: flex-start;
}

.home .how-card__link::after {
  content: '\2192';
  transition: transform 0.3s ease;
}

.home .how-card__link:hover {
  color: var(--primary);
  gap: 14px;
}

/* ─── Blog ─── */
.home .blog {
  padding: 140px 0;
  background: #FFFFFF;
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
}

.home .blog__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 24px;
}

.home .blog__title-group .label { margin-bottom: 12px; }

.home .blog__heading {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.home .blog__view-all {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1C1C1E;
  letter-spacing: 0.02em;
  border-bottom: 1px solid #1C1C1E;
  padding-bottom: 2px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.home .blog__view-all:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.home .blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.home .blog-card {
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.home .blog-card:hover { transform: translateY(-3px); }

.home .blog-card__image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 2px;
  margin-bottom: 20px;
}

svg.blog-card__placeholder {
  display: block;
}

.home .blog-card__meta {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9CA3AF;
  margin-bottom: 10px;
}

.home .blog-card__title {
  font-family: 'Lora', serif;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.35;
  margin-bottom: 10px;
  color: #1C1C1E;
  transition: color 0.3s ease;
}

.home .blog-card:hover .blog-card__title { color: var(--primary); }

.home .blog-card__excerpt {
  font-size: 0.9375rem;
  color: #6B7280;
  line-height: 1.7;
  margin-bottom: 16px;
}

.home .blog-card__readmore {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #1C1C1E;
  margin-top: auto;
  align-self: flex-start;
}

.home .blog-card__readmore::after { content: ' \2192'; }

.home .blog-card:hover .blog-card__readmore { color: var(--primary); }

/* ─── Final CTA ─── */
.home .final-cta {
  padding: 160px 0;
  text-align: center;
}

.home .final-cta__label { margin-bottom: 16px; }

.home .final-cta__heading {
  font-family: 'Lora', serif;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.home .final-cta__sub {
  color: #6B7280;
  font-size: 1.0625rem;
  margin-bottom: 44px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ─── Footer ─── */
.home .home-footer {
  background: #1C1C1E;
  color: #FAFAFA;
  padding: 80px 0 40px;
}

.home .home-footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250, 250, 250, 0.1);
}

.home .home-footer__newsletter-label {
  color: rgba(250, 250, 250, 0.5);
  margin-bottom: 16px;
}

.home .home-footer__newsletter-heading {
  font-family: 'Lora', serif;
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 16px;
  max-width: 480px;
  letter-spacing: -0.01em;
}

.home .home-footer__newsletter-sub {
  color: rgba(250, 250, 250, 0.6);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 440px;
}

.home .home-footer__newsletter-form {
  display: flex;
  gap: 8px;
  max-width: 480px;
  flex-wrap: wrap;
}

.home .home-footer__input {
  flex-grow: 1;
  min-width: 140px;
  padding: 14px 16px;
  border: 1px solid rgba(250, 250, 250, 0.2);
  background: transparent;
  color: #FAFAFA;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9375rem;
  border-radius: 2px;
  outline: none;
  transition: border-color 0.3s ease;
}

.home .home-footer__input:focus { border-color: var(--primary); }
.home .home-footer__input::placeholder { color: rgba(250, 250, 250, 0.4); }

.home .home-footer__submit {
  background: var(--primary);
  color: var(--text);
  border: none;
  padding: 14px 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.home .home-footer__submit:hover { background: var(--primary-darker); }

.home .home-footer__links-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.home .home-footer__links-title {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 250, 250, 0.5);
  margin-bottom: 16px;
}

.home .home-footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home .home-footer__links a {
  font-size: 0.9375rem;
  color: rgba(250, 250, 250, 0.8);
  transition: color 0.3s ease;
}

.home .home-footer__links a:hover { color: #FFFFFF; }

.home .home-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.home .home-footer__copyright {
  font-size: 0.8125rem;
  color: rgba(250, 250, 250, 0.5);
  letter-spacing: 0.02em;
}

.home .home-footer__socials {
  display: flex;
  gap: 24px;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}

.home .home-footer__socials a {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(250, 250, 250, 0.55);
  transition: color 0.2s ease;
  white-space: nowrap;
}

.home .home-footer__socials a:hover { color: #FFFFFF; }

/* ─── Partnered With ─── */
.home .spoke-at {
  padding: 56px 0;
  background: #FAFAFA;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
}

.home .spoke-at__label {
  text-align: center;
  margin-bottom: 28px;
}

.home .spoke-at__logos {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px 32px;
  align-items: center;
  justify-items: center;
}

.home .spoke-at__logos li {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home .spoke-at__logo {
  height: 44px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.home .spoke-at__logo--square {
  height: 64px;
}

.home .spoke-at__logos li:hover .spoke-at__logo {
  filter: grayscale(0);
  opacity: 1;
}

@media (max-width: 768px) {
  .home .spoke-at { padding: 40px 0; }
  .home .spoke-at__logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 20px;
  }
  .home .spoke-at__logo { height: 34px; }
  .home .spoke-at__logo--square { height: 48px; }
}

@media (max-width: 480px) {
  .home .spoke-at__logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .home .lifestyle__inner { grid-template-columns: 1fr; gap: 48px; }
  .home .lifestyle__image { height: 360px; }
}

@media (max-width: 768px) {
  .home .nav__links { display: none; }
  .home .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 72px);
    height: calc(100dvh - 72px);
    margin: 0;
    padding: 0;
    background: rgba(250, 250, 250, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    align-items: center;
    justify-content: center;
    gap: 32px;
    z-index: 99;
  }
  .home .nav__links.open .nav__link { font-size: 1.125rem; color: #1C1C1E; }
  .home .nav__mobile-toggle { display: flex; }

  .home .hero { min-height: auto; padding-top: 120px; padding-bottom: 80px; }
  .home .hero__inner { grid-template-columns: 1fr; gap: 48px; padding: 0; }
  .home .hero__image-wrapper { justify-content: center; }
  .home .hero__image { max-width: 100%; height: 420px; }

  .home .pullquote { padding: 80px 24px; }

  .home .about { padding: 80px 0; }
  .home .about__inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .home .about__image { margin: 0 auto; max-width: 280px; }
  .home .about__stat-row { justify-content: center; gap: 32px; flex-wrap: wrap; }

  .home .lifestyle { padding: 80px 0; }
  .home .lifestyle__list { grid-template-columns: 1fr; gap: 10px; }

  .home .problems { padding: 80px 0; }
  .home .problems__grid { grid-template-columns: 1fr; gap: 48px; }
  .home .problems__heading { margin-bottom: 48px; }

  .home .testimonials { padding: 80px 0; }
  .home .testimonials__grid { grid-template-columns: 1fr; gap: 20px; }

  .home .how { padding: 80px 0; }
  .home .how__grid { grid-template-columns: 1fr; }

  .home .blog { padding: 80px 0; }
  .home .blog__header { flex-direction: column; align-items: flex-start; }
  .home .blog__grid { grid-template-columns: 1fr; gap: 40px; }

  .home .final-cta { padding: 100px 0; }

  .home .home-footer { padding: 60px 0 32px; }
  .home .home-footer__inner { grid-template-columns: 1fr; gap: 48px; padding-bottom: 48px; margin-bottom: 48px; }
  .home .home-footer__newsletter-form { flex-direction: column; gap: 12px; }
  .home .home-footer__bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 480px) {
  .home .hero__heading { font-size: 2.25rem; }
  .home .hero__ctas { flex-direction: column; align-items: flex-start; gap: 24px; }
  .home .about__stat-row { flex-direction: column; gap: 24px; align-items: center; }
  .home .home-footer__links-group { grid-template-columns: 1fr; }
}
