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

@font-face {
  font-family: 'Mixtiles Sans';
  src: url('fonts/MixtilesSans-400Regular.woff') format('woff');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Mixtiles Sans';
  src: url('fonts/MixtilesSans-500Medium.woff') format('woff');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Mixtiles Sans';
  src: url('fonts/MixtilesSans-600SemiBold.woff') format('woff');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'Mixtiles Sans';
  src: url('fonts/MixtilesSans-700Bold.woff') format('woff');
  font-weight: 700;
  font-display: swap;
}

:root {
  /* Real easyplant color tokens (from theme.ts colors2) */
  --green-50: #EDF0ED;
  --green-100: #90A195;
  --green-200: #47634E;
  --green-300: #375437;
  --green-400: #266B37;
  --black-20: #FFFCF9;
  --black-50: #FAF7F0;
  --black-100: #F5F0E6;
  --black-200: #E8E3DA;
  --black-300: #D7D2C8;
  --black-400: #A69F97;
  --black-500: #756F69;
  --black-600: #57534E;
  --black-700: #45413E;
  --black-800: #292725;
  --black-900: #171615;
  --white: #FFFFFF;
  --cream: #F5F1EA;
  --cream2: #FDF9F0;
  --pink: #E6645C;
  --primary-black: #41342d;
  --font-display: 'Fraunces', serif;
  --font-body: 'Mixtiles Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-height: 54px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black-20);
  color: var(--black-900);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* ===== Hello Bar ===== */
.hello-bar {
  background: var(--green-300);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
}

.hello-bar__line1 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.hello-bar__line2 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

/* ===== Header ===== */
.header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  height: var(--nav-height);
  background: var(--black-20);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__menu,
.header__cart {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-300);
  width: 32px;
  height: 32px;
}

.header__logo {
  display: flex;
  align-items: center;
  color: #3F6449;
}

/* ===== Trustpilot Bar ===== */
.trustpilot-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--black-20);
}

.trustpilot-bar__stars {
  height: 24px;
  width: auto;
  display: block;
}

.trustpilot-bar__rating {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--black-900);
  line-height: 150%;
}

.trustpilot-bar__logo {
  height: 24px;
  width: auto;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 393/546;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 48px 24px 0;
}

.hero__heading {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 600;
  color: var(--white);
  line-height: 135%;
  margin-bottom: 24px;
}

/* Hero inline CTA — hidden on mobile, shown on desktop only */
.hero__cta {
  display: none;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  background: var(--green-400);
  padding: 14px 40px;
  border-radius: 4px;
  transition: box-shadow 0.2s, background-image 0.2s;
}

.hero__cta:hover {
  background-image: linear-gradient(180deg, hsla(0,0%,100%,0.1), hsla(0,0%,100%,0.1));
  box-shadow: 0 3px 15px 1px rgba(0,0,0,0.09);
}

/* ===== Sticky CTA (mobile) ===== */
.sticky-cta {
  position: fixed;
  z-index: 15;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--black-20);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px 16px;
  border-top: 1px solid var(--cream);
  box-shadow: 0px -4px 4px 0px rgba(0, 0, 0, 0.05);
}

.sticky-cta__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: var(--green-400);
  color: var(--white);
  font-family: var(--font-body);
  text-align: center;
  text-decoration: none;
  border: 0;
  outline: 0;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 600;
  height: 52px;
  cursor: pointer;
  transition: box-shadow 0.2s, background-image 0.2s;
}

.sticky-cta__button:hover {
  background-image: linear-gradient(180deg, hsla(0,0%,100%,0.1), hsla(0,0%,100%,0.1));
  box-shadow: 0 3px 15px 1px rgba(0,0,0,0.09);
}

/* ===== What's Included ===== */
.whats-included {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding: 32px 16px;
}

.whats-included__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  flex: 1;
  max-width: 140px;
}

.whats-included__icon {
  width: 56px;
  height: 56px;
  border-radius: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.whats-included__icon img {
  width: 56px;
  height: 56px;
}

.whats-included__label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--black-900);
  line-height: 1.4;
}

/* ===== Section Divider ===== */
.section-divider {
  border: none;
  border-top: 1px solid var(--black-200);
  margin: 0;
}

/* ===== Value: Effortless Setup spacing ===== */
.value-section--setup .value-section__content--above {
  padding: 40px 24px 16px;
}

/* ===== Value Sections (Setup + Guarantee) ===== */
.value-section {
  padding: 0;
}

.value-section__media {
  width: 100%;
  overflow: hidden;
}

.value-section__image,
.value-section__video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.value-section__content {
  padding: 32px 24px;
  text-align: center;
}

.value-section__heading {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--black-900);
  line-height: 1.2;
  margin-bottom: 12px;
}

.value-section__body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--black-900);
  line-height: 1.5;
}

/* ===== Section Heading (shared) ===== */
.section-heading {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 600;
  color: var(--black-900);
  line-height: 1.2;
  text-align: center;
}

/* ===== How It Works ===== */
.how-it-works {
  padding: 40px 0 24px;
}

.how-it-works .section-heading {
  margin-bottom: 32px;
  padding: 0 16px;
}

.how-it-works__scroll-wrap {
  padding-left: 24px;
}

.how-it-works__steps {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-right: 16px;
}

.how-it-works__steps::-webkit-scrollbar {
  display: none;
}

.how-it-works__step {
  flex: 0 0 250px;
  scroll-snap-align: start;
  border: 1px solid var(--black-300);
  border-radius: 16px;
  overflow: hidden;
  background: var(--black-20);
  display: flex;
  flex-direction: column;
  position: relative;
}

/* Mobile: image first, number overlaid on image */
.how-it-works__image-wrap {
  order: -1;
  width: 100%;
  height: 215px;
  overflow: hidden;
  position: relative;
  border-radius: 16px 16px 0 0;
}

.how-it-works__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-it-works__number {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--black-900);
  z-index: 1;
}

.how-it-works__text {
  padding: 16px;
}

.how-it-works__desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--black-900);
  line-height: 1.5;
  text-align: center;
}

/* ===== Trees Selection ===== */
.trees-selection {
  padding: 40px 24px;
}

.trees-selection .section-heading {
  margin-bottom: 16px;
}

.trees-selection__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 12px;
  row-gap: 16px;
}

.product-card {
  display: block;
}

.product-card.hidden {
  display: none !important;
}

.product-card__image-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--black-200);
  aspect-ratio: 333/388;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__badge-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__badge {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  line-height: 1.22;
}

.product-card__name {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-black);
  margin-top: 8px;
  line-height: 1.4;
}

.product-card__price {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--primary-black);
  line-height: 1.4;
}

/* ===== Plant Experts ===== */
.plant-experts {
  padding: 40px 0 0;
}

.plant-experts__content {
  padding: 0 24px;
  text-align: center;
}

.plant-experts__body {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--black-800);
  line-height: 1.5;
  margin: 16px 0 24px;
}

.plant-experts__media {
  width: 100%;
  margin-top: 32px;
}

.plant-experts__image {
  width: 100%;
  height: auto;
  display: block;
}

.btn-chat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  color: var(--black-900);
  background: var(--white);
  border: 1px solid var(--black-300);
  padding: 12px 24px;
  border-radius: 4px;
  transition: background 0.2s;
}

.btn-chat:hover {
  background: var(--cream);
}

/* ===== FAQ ===== */
.faq {
  padding: 40px 24px 0;
}

.faq .section-heading {
  margin-bottom: 24px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  padding-bottom: 24px;
}

.faq__item {
  background: transparent;
  overflow: hidden;
}

.faq__item + .faq__item {
  border-top: 1px solid var(--black-200);
}

.faq__question {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  color: var(--black-900);
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  line-height: 1.5;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '';
  width: 12px;
  height: 6px;
  min-width: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='6' fill='none'%3E%3Cpath d='M1 1l5 4 5-4' stroke='%23171615' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

.faq__item[open] .faq__question::after {
  transform: rotate(180deg);
}

.faq__answer {
  padding: 0 0 24px;
}

.faq__answer p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--black-900);
  line-height: 1.5;
}

/* ===== Other Sizes ===== */
.other-sizes {
  padding: 40px 0 0;
}

.other-sizes .section-heading {
  margin-bottom: 16px;
}

.other-sizes__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0 24px 32px;
}

.size-tile {
  width: calc(50% - 8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.size-tile--wide {
  width: 100%;
}

.size-tile__image-wrap {
  width: 100%;
  height: 220px;
  border-radius: 8px;
  overflow: hidden;
}

.size-tile--wide .size-tile__image-wrap {
  height: 220px;
}

.size-tile__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.size-tile__label {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  color: var(--black-900);
  letter-spacing: -0.02em;
  text-align: center;
}

/* ===== Footer ===== */
.footer {
  background: var(--black-100);
  padding: 0 16px;
  margin-bottom: 82px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__spacer-16 {
  height: 16px;
}

.footer__newsletter {
  text-align: center;
  padding-top: 40px;
}

.footer__section-heading {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--black-900);
  letter-spacing: -0.02em;
  text-align: left;
}

.footer__newsletter .footer__section-heading {
  text-align: center;
}

.footer__newsletter-body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--black-900);
  line-height: 1.5;
  margin-top: 16px;
  text-align: center;
}

.footer__email-wrap {
  width: 240px;
  margin: 16px auto 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.footer__email-field {
  width: 100%;
  padding: 16px;
  border: 1px solid var(--black-200);
  border-radius: 8px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--black-500);
  line-height: 1.5;
  text-align: left;
}

.footer__subscribe-btn {
  width: 100%;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--white);
  background: var(--green-400);
  border: none;
  padding: 14px 32px 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: box-shadow 0.2s;
}

.footer__subscribe-btn:hover {
  box-shadow: 0 3px 15px 1px rgba(0,0,0,0.09);
}

.footer__divider {
  width: 329px;
  height: 1px;
  background: var(--black-300);
  margin: 32px 0;
}

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

.footer__link {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  color: var(--black-500);
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
}

.footer__link:hover {
  color: var(--black-900);
}

.footer__link--bold {
  font-weight: 700;
}

.footer__follow-us {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__social-icon {
  width: 45px;
  height: 42px;
}

.footer__social-label {
  display: none;
}

.footer__region-row {
  display: flex;
  align-items: center;
}

.footer__legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer__legal-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--black-500);
  line-height: 1.5;
  text-align: center;
}

.footer__subscribed {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--black-600);
  text-align: center;
  padding: 24px 0;
}

.footer__legal-link {
  color: var(--black-500);
  text-decoration: none;
}

.footer__legal-link:hover {
  color: var(--black-900);
}

.footer__legal:last-child {
  margin-bottom: 40px;
}

/* ===== Divider between value sections ===== */
.value-section + .value-section,
.trees-selection + .value-section {
  border-top: 1px solid var(--black-200);
}

/* Mobile: hide desktop-only elements */
.value-section--desktop-only {
  display: none;
}

.value-section__content--below {
  display: none;
}

/* ===================================================
   DESKTOP (min-width: 1025px) — matches easyplant breakpoint
   Desktop design base: 1440px, content max-width: 1140px
   =================================================== */
@media (min-width: 1025px) {

  /* Hide mobile-only elements */
  .sticky-cta { display: none; }
  .section-divider { display: none; }
  .value-section--setup:not(.value-section--desktop-only) { display: none; }
  .value-section--desktop-only { display: block; }

  /* ===== Hello Bar (53px, centered) ===== */
  .hello-bar {
    height: 53px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  /* ===== Header (53px, centered logo) ===== */
  .header { height: 53px; }

  /* ===== Trustpilot (shadow + bottom border) ===== */
  .trustpilot-bar {
    padding: 10px 32px;
    border-bottom: 1px solid var(--black-200);
    box-shadow: 0px 4px 4px 0px rgba(0,0,0,0.05);
  }
  .trustpilot-bar__rating { font-size: 16px; }

  /* ===== Hero (1440×720, centered text + glass CTA) ===== */
  .hero { aspect-ratio: auto; height: 720px; }
  .hero__content { justify-content: center; padding: 0; }
  .hero__heading {
    font-size: 64px;
    line-height: 135%;
    letter-spacing: -0.02em;
    text-shadow: 0px 4px 24px rgba(0,0,0,0.25);
    max-width: 592px;
  }
  .hero__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(223,233,216,0.24);
    border: 1px solid var(--white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0px 9px 4px rgba(0,0,0,0.02);
    padding: 13px 32px 15px;
    border-radius: 6px;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.02em;
  }
  .hero__cta:hover {
    background: rgba(223,233,216,0.35);
    background-image: none;
  }

  /* ===== Section headings ===== */
  .section-heading { font-size: 40px; letter-spacing: -0.02em; }
  .value-section__heading { font-size: 32px; letter-spacing: -0.02em; }

  /* ===== What's Included (56px SVGs already include circle + icon) ===== */
  .whats-included { gap: 4px; padding: 24px 24px 32px; justify-content: center; }
  .whats-included__item { max-width: 120px; gap: 16px; }
  .whats-included__icon {
    width: 56px;
    height: 56px;
    padding: 0;
    background: none;
    border-radius: 0;
  }
  .whats-included__icon img {
    width: 56px;
    height: 56px;
  }
  .whats-included__label {
    font-size: 14px;
    line-height: 1.5;
  }

  /* ===== How It Works =====
     Shades/100 bg, 1140px content
     Each step: number (58px white circle) → text → image (426px)
  */
  .how-it-works {
    padding: 80px 0;
    background: var(--black-100);
  }
  .how-it-works .section-heading { margin-bottom: 64px; padding: 0; }
  .how-it-works .section-heading br { display: none; }
  .how-it-works__scroll-wrap { padding-left: 0; }
  .how-it-works__steps {
    display: flex;
    gap: 24px;
    overflow: visible;
    padding: 0;
    max-width: 1140px;
    margin: 0 auto;
    justify-content: center;
  }
  .how-it-works__step {
    flex: 1;
    max-width: 364px;
    border: none;
    border-radius: 0;
    background: transparent;
    display: flex;
    flex-direction: column;
    position: static;
    overflow: visible;
  }
  .how-it-works__number {
    position: static;
    order: 0;
    width: 58px;
    height: 58px;
    min-width: 58px;
    font-size: 32px;
    font-weight: 400;
    background: var(--white);
    border: none;
    border-radius: 50px;
    margin: 0 auto;
  }
  .how-it-works__text {
    order: 1;
    padding: 24px 40px;
    text-align: center;
  }
  .how-it-works__image-wrap {
    order: 2;
    height: 426px;
    aspect-ratio: auto;
    border-radius: 12px;
  }
  .how-it-works__desc {
    font-size: 20px;
    text-align: center;
    line-height: 1.5;
  }
  /* br tags in desc are kept on desktop for exact line breaks */

  /* ===== Trees Selection =====
     80px top padding, 150px side padding, 4-col grid, 12px gaps
  */
  .trees-selection { padding: 80px 150px 40px; }
  .trees-selection .section-heading { margin-bottom: 24px; }
  .trees-selection__grid {
    grid-template-columns: repeat(4, 1fr);
    column-gap: 12px;
    row-gap: 16px;
    max-width: 1140px;
    margin: 0 auto;
  }
  .product-card__image-wrap { aspect-ratio: 333/388; }
  .product-card__badge { font-size: 16px; }

  /* ===== Value Props =====
     Side by side: Setup (video) left + Guarantee (image) right
     Image on top, heading + subtext centered below
     12px gap between the two
  */
  .value-props-row {
    display: flex;
    gap: 24px;
    width: 1140px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 0;
  }
  .value-props-row .value-section {
    flex: 1;
    padding: 0;
  }
  .value-props-row .value-section__media {
    border-radius: 12px;
    overflow: hidden;
  }
  .value-props-row .value-section__media .value-section__video,
  .value-props-row .value-section__media .value-section__image {
    border-radius: 12px;
    width: 100%;
    height: auto;
    aspect-ratio: 558/558;
    object-fit: cover;
  }
  .value-props-row .value-section__content {
    padding: 24px 0 0;
    text-align: center;
  }
  .value-props-row .value-section__content--above {
    display: none;
  }
  .value-props-row .value-section__content--below {
    display: block;
  }
  .value-props-row .value-section__heading {
    font-size: 32px;
    margin-bottom: 8px;
    white-space: nowrap;
  }
  .value-props-row .value-section__heading br { display: none; }
  .value-props-row .value-section__body {
    font-size: 18px;
  }
  .value-section--guarantee .value-section__content--above {
    display: none;
  }

  /* ===== Plant Experts =====
     Shades/100 bg, image LEFT, text RIGHT
     40px vertical padding, 150px side padding
  */
  .plant-experts {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    padding: 40px 0;
    gap: 0;
    background: var(--black-100);
  }
  .plant-experts__content {
    order: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 40px;
    margin-right: calc((100vw - 1140px) / 2);
  }
  .plant-experts__media {
    order: 1;
    flex: 0 0 558px;
    width: 558px;
    height: 558px;
    margin-left: calc((100vw - 1140px) / 2);
    margin-top: 0;
    border-radius: 12px;
    overflow: hidden;
  }
  .plant-experts__image {
    border-radius: 12px;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .plant-experts__content .section-heading {
    text-align: center;
    font-size: 40px;
  }
  .plant-experts__body {
    font-size: 20px;
    text-align: center;
  }

  /* ===== FAQ =====
     "FAQ" left-aligned to 1140px content edge
     Cards right, aligned with Plant Guarantee width above
  */
  .faq {
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 0;
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }
  .faq .section-heading {
    flex: 0 0 558px;
    text-align: left;
    margin-bottom: 0;
    font-size: 40px;
    padding-top: 20px;
  }
  .faq__list { flex: 1; padding-bottom: 0; }
  .faq__item {
    background: var(--white);
    border: 1px solid var(--black-200);
    border-radius: 8px;
    margin-bottom: 8px;
  }
  .faq__item + .faq__item { border-top: 1px solid var(--black-200); }
  .faq__question {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    padding: 20px 24px;
    letter-spacing: -0.02em;
  }
  .faq__answer { padding: 0 24px 20px; }
  .faq__answer p { font-size: 16px; color: var(--black-900); line-height: 1.5; }

  /* ===== Other Sizes =====
     3-column grid: Small/Large left, Medium/Huge middle, Collections right (full height)
  */
  .other-sizes {
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 0;
  }
  .other-sizes .section-heading {
    margin-bottom: 32px;
    text-align: center;
  }
  .other-sizes .section-heading br { display: none; }
  .other-sizes__grid {
    display: grid;
    grid-template-columns: 267px 267px 558px;
    grid-template-rows: auto auto;
    gap: 16px;
    max-width: 1140px;
    margin: 0 auto;
    justify-content: center;
  }
  .size-tile { width: auto; gap: 8px; }
  .size-tile:nth-child(1) { grid-column: 1; grid-row: 1; }
  .size-tile:nth-child(2) { grid-column: 2; grid-row: 1; }
  .size-tile:nth-child(3) { grid-column: 1; grid-row: 2; }
  .size-tile:nth-child(4) { grid-column: 2; grid-row: 2; }
  .size-tile--wide { grid-column: 3; grid-row: 1 / 3; align-self: stretch; }
  .size-tile__image-wrap { height: 307px; aspect-ratio: auto; }
  .size-tile--wide .size-tile__image-wrap { height: 100%; }
  .size-tile__label { font-size: 20px; }

  /* ===== Footer =====
     Horizontal: Company | Follow us columns left, Newsletter right
     Shades/100 bg, bottom has legal divider
     1140px content area (150px side padding)
  */
  .footer {
    background: var(--black-100);
    padding: 0;
    margin-bottom: 0;
    position: relative;
    height: 365px;
    max-width: 1440px;
    margin: 0 auto;
  }
  .footer__divider { display: none; }
  .footer__spacer-16 { display: none; }

  /* Company column: X=150, Y=41 */
  .footer__section {
    position: absolute;
    top: 41px;
    left: 150px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__section .footer__spacer-16 { display: none; }
  .footer__section-heading {
    font-size: 22px;
    text-align: left;
    margin-bottom: 16px;
  }
  .footer__link {
    font-size: 16px;
    text-align: left;
    display: block;
    line-height: 24px;
    margin-bottom: 8px;
  }

  /* Follow us: X=343, Y=41 */
  .footer__follow-us {
    position: absolute;
    top: 41px;
    left: 343px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer__follow-us .footer__section-heading {
    font-size: 22px;
    text-align: left;
    margin-bottom: 16px;
  }
  .footer__follow-us .footer__spacer-16 { display: none; }
  .footer__social {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
  }
  .footer__social-icon { display: none; }
  .footer__social-label { display: inline; }
  .footer__social a {
    display: block;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--black-500);
    text-decoration: none;
    line-height: 24px;
    margin-bottom: 8px;
  }

  /* Newsletter: X=926, Y=41, W=363, H=162 */
  .footer__newsletter {
    position: absolute;
    top: 41px;
    left: 926px;
    width: 363px;
    height: 162px;
    padding-top: 0;
    text-align: left;
  }
  .footer__newsletter .footer__section-heading { text-align: left; }
  .footer__newsletter-body { text-align: left; margin-top: 16px; }
  .footer__email-wrap {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 16px;
  }
  .footer__email-field { flex: 1; border-radius: 8px; }
  .footer__subscribe-btn { width: auto; white-space: nowrap; border-radius: 8px; }

  /* Legal: bottom */
  .footer__legal {
    position: absolute;
    bottom: 24px;
    left: 150px;
    right: 150px;
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    border-top: 1px solid var(--black-200);
    padding-top: 16px;
    margin-bottom: 0;
  }
}
