/*
 * home.css — generated by wordpress/tools/extract-css.mjs
 *
 * Lifted verbatim from the Astro components listed below, with :global()
 * wrappers unwrapped and dead rules dropped. DO NOT hand-edit: rerun the
 * extractor instead, or the theme and the Astro source drift apart.
 */

/* ==========================================================
   index.astro
   ========================================================== */

  /* ---------------- hero ---------------- */

  .hero {
    background: var(--c-taupe);
    padding-block: var(--s-8) var(--s-9);
  }

  .hero__grid {
    display: grid;
    gap: var(--s-5);
  }

  .hero__panel {
    background: var(--c-cream);
    padding: var(--s-7) var(--s-5);
  }
@media (min-width: 480px) {
    .hero__panel {
      padding-inline: var(--s-6);
    }
  }

  .hero__title {
    margin-bottom: var(--s-5);
  }

  .hero__promise {
    margin: 0 0 var(--s-4);
    font-family: var(--font-display);
    font-size: var(--t-h3);
    font-weight: var(--fw-light);
    letter-spacing: var(--ls-display);
    text-transform: uppercase;
    color: var(--c-ink);
  }

  .hero__body {
    max-width: 40ch;
    margin: 0 0 var(--s-4);
    font-size: var(--t-lead);
    color: var(--c-ink-soft);
    text-wrap: pretty;
  }

  .hero__sub {
    max-width: 44ch;
    margin: 0;
    color: var(--c-ink-muted);
    text-wrap: pretty;
  }

  .hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--s-4);
    margin-top: var(--s-6);
  }

  .hero__media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
  }
@media (min-width: 900px) {
    .hero__grid {
      grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
      align-items: center;
      gap: 0;
    }

    .hero__panel {
      position: relative;
      z-index: var(--z-raised);
      margin-right: calc(var(--s-8) * -1);
      padding: var(--s-9) var(--s-8);
    }

    .hero__media img {
      aspect-ratio: 3 / 4;
      max-height: 40rem;
    }
  }

  /* ---------------- trust strip ---------------- */

  .trust {
    background: var(--c-black);
    color: var(--c-on-dark-muted);
    padding-block: var(--s-6);
  }

  .trust__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--s-5);
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
  }
@media (min-width: 760px) {
    .trust__list {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }
  }

  .trust__list li {
    display: grid;
    gap: var(--s-1);
  }

  .trust__list strong {
    font-family: var(--font-display);
    font-size: var(--t-h4);
    font-weight: var(--fw-light);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--c-on-dark);
  }

  .trust__list span {
    font-size: var(--t-micro);
  }

  /* ---------------- owner ---------------- */

  .owner__grid {
    display: grid;
    gap: var(--s-7);
  }
@media (min-width: 900px) {
    .owner__grid {
      grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
      gap: var(--s-9);
      align-items: center;
    }
  }

  .owner__media img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
  }

  .owner__copy > * + * {
    margin-top: var(--s-4);
  }

  .owner__lede {
    font-size: var(--t-lead);
    color: var(--c-ink-soft);
    text-wrap: pretty;
  }

  .owner__copy p {
    color: var(--c-ink-soft);
    text-wrap: pretty;
  }

  /* ---------------- spaces ---------------- */

  .spaces {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--s-5);
    list-style: none;
    margin: 0 0 var(--s-7);
    padding: 0;
  }
@media (min-width: 900px) {
    /* Two wide tiles, then four small. Closets and pantries are most of the
       actual work, so they get the room; the 3x2 even grid gave all six equal
       billing and read as a catalogue. */
    .spaces {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: var(--s-5);
    }

    .spaces__item:nth-child(1),
    .spaces__item:nth-child(2) {
      grid-column: span 2;
    }

    .spaces__item:nth-child(1) img,
    .spaces__item:nth-child(2) img {
      aspect-ratio: 16 / 10;
    }
  }

  .spaces__item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: var(--s-3);
  }

  .spaces__title {
    margin: 0 0 var(--s-2);
    font-family: var(--font-display);
    font-size: var(--t-small);
    font-weight: var(--fw-medium);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--c-ink);
  }

  .spaces__blurb {
    margin: 0;
    font-size: var(--t-micro);
    color: var(--c-ink-muted);
    text-wrap: pretty;
  }

  /* ---------------- pricing ---------------- */

  .pricing__grid {
    display: grid;
    gap: var(--s-7);
  }
@media (min-width: 900px) {
    .pricing__grid {
      grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
      gap: var(--s-9);
      align-items: start;
    }
  }

  .pricing__facts {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
  }

  .pricing__facts > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--s-5);
    padding: var(--s-4) 0;
    border-bottom: 1px solid rgba(237, 232, 228, 0.2);
  }

  .pricing__facts > div:first-child {
    border-top: 1px solid rgba(237, 232, 228, 0.2);
  }

  .pricing__facts dt {
    font-size: var(--t-micro);
    letter-spacing: var(--ls-label);
    text-transform: uppercase;
    color: var(--c-on-dark-muted);
  }

  .pricing__facts dd {
    margin: 0;
    font-family: var(--font-display);
    font-size: var(--t-h3);
    font-weight: var(--fw-light);
    color: var(--c-on-dark);
  }

  .pricing__note {
    max-width: 62ch;
    margin: 0 0 var(--s-5);
    text-wrap: pretty;
  }

  .pricing__link {
    color: var(--c-taupe);
  }

  .faq__more {
    margin-top: var(--s-7);
  }
