:root {
  --ink: #29231f;
  --muted: #74675e;
  --paper: #fbf7f0;
  --cream: #f3e9da;
  --rose: #c9867a;
  --clay: #9d665a;
  --sage: #6e8068;
  --fern: #344537;
  --gold: #c59c5c;
  --white: #fffdf9;
  --line: rgba(41, 35, 31, 0.14);
  --shadow: 0 24px 70px rgba(71, 50, 38, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 16px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--sage);
  border-radius: 50%;
  background: rgba(110, 128, 104, 0.12);
  color: var(--fern);
  font-family: Georgia, "Times New Roman", serif;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.92rem;
}

.nav a,
.footer a,
.section-heading a,
.category-card a,
.product-card a,
.post-card a {
  text-decoration: none;
}

.nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 900;
}

.nav a[aria-current="page"]::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 3px;
  border-radius: 999px;
  background: var(--sage);
}

.nav a:hover,
.footer a:hover,
.section-heading a:hover,
.category-card a:hover,
.product-card a:hover,
.post-card a:hover {
  color: var(--sage);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.header-cta {
  background: var(--fern);
  color: var(--white);
  font-size: 0.9rem;
  border-color: var(--fern);
}

.button:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(41, 35, 31, 0.16);
}

.button.primary {
  background: var(--fern);
  color: var(--white);
  border-color: var(--fern);
}

.button.secondary {
  background: rgba(110, 128, 104, 0.12);
  border-color: var(--sage);
  color: var(--fern);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 17px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(380px, 1fr);
  gap: clamp(22px, 4vw, 58px);
  min-height: calc(92vh - 74px);
  align-items: center;
  padding: clamp(28px, 5vw, 70px);
  border-bottom: 1px solid var(--line);
}

.hero-media {
  aspect-ratio: 1 / 1;
  min-height: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  background:
    linear-gradient(90deg, rgba(41, 35, 31, 0.04), rgba(41, 35, 31, 0)),
    url("assets/amazon-finds-illustration.png") center/contain no-repeat;
  background-color: #f7dfcc;
}

.hero-copy {
  align-self: center;
  padding: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.05;
}

h1 {
  max-width: 760px;
  font-size: clamp(3rem, 6.4vw, 5.95rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4.1rem);
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.hero-copy > p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 18px;
}

.affiliate-note,
.form-note,
.disclosure {
  color: var(--muted);
  font-size: 0.86rem;
}

.disclosure-banner {
  max-width: 1180px;
  margin: 18px auto 0;
  padding: 12px 18px;
  border: 1px solid rgba(110, 128, 104, 0.22);
  border-radius: 8px;
  background: rgba(110, 128, 104, 0.1);
  color: var(--muted);
  font-size: 0.9rem;
}

.ticker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  padding: 18px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.ticker span {
  border: 1px solid rgba(110, 128, 104, 0.28);
  border-radius: 999px;
  padding: 7px 14px;
  color: var(--fern);
  font-size: 0.9rem;
  background: rgba(110, 128, 104, 0.08);
}

section,
.footer {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 5vw, 74px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.about-copy {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.08rem;
}

.about-note {
  border-left: 3px solid var(--sage);
  padding: 12px 0 12px 18px;
  background: rgba(110, 128, 104, 0.08);
}

.about-rotator {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  min-height: 280px;
  margin-top: 28px;
  border: 1px solid rgba(110, 128, 104, 0.26);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(71, 50, 38, 0.1);
}

.about-slide {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0;
  animation: aboutFade 18s infinite;
}

.about-slide.slide-boys {
  background-image: url("assets/courtney-boys-couch.png");
  animation-delay: 0s;
}

.about-slide.slide-family {
  background-image: url("assets/courtney-family-outdoors.jpg");
  animation-delay: 6s;
}

.about-slide.slide-plants {
  background-image: url("assets/courtney-portrait-plants.jpg");
  animation-delay: 12s;
}

@keyframes aboutFade {
  0%,
  28% {
    opacity: 1;
  }

  36%,
  100% {
    opacity: 0;
  }
}

.start-here {
  background:
    linear-gradient(135deg, rgba(110, 128, 104, 0.12), rgba(255, 253, 249, 0.9)),
    var(--paper);
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.start-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(110, 128, 104, 0.24);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 253, 249, 0.92);
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 16px 42px rgba(71, 50, 38, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.start-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 46px rgba(71, 50, 38, 0.14);
}

.start-card span {
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.start-card h3 {
  margin-top: auto;
  font-size: clamp(1.2rem, 1.9vw, 1.55rem);
}

.start-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.start-card.accent {
  background: var(--fern);
  color: var(--white);
}

.start-card.accent span,
.start-card.accent p {
  color: rgba(255, 253, 249, 0.78);
}

.categories,
.blog {
  background: var(--white);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading h2 {
  max-width: 900px;
}

.section-heading.compact a {
  flex: 0 0 auto;
  color: var(--fern);
  font-weight: 800;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.carousel {
  position: relative;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 31%);
  gap: 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 4px 4px 24px;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--sage) rgba(110, 128, 104, 0.18);
}

.carousel-track::-webkit-scrollbar {
  height: 10px;
}

.carousel-track::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(110, 128, 104, 0.18);
}

.carousel-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--sage);
}

.carousel-card,
.product-carousel .product-card {
  scroll-snap-align: start;
}

.carousel-button {
  position: absolute;
  top: 42%;
  z-index: 2;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(110, 128, 104, 0.3);
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.94);
  color: var(--fern);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(41, 35, 31, 0.14);
}

.carousel-button.prev {
  left: -12px;
}

.carousel-button.next {
  right: -12px;
}

.category-card {
  overflow: hidden;
  border: 1px solid rgba(110, 128, 104, 0.2);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 42px rgba(71, 50, 38, 0.08);
}

.category-card img {
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
}

.category-image {
  aspect-ratio: 4 / 3;
  background-image: url("assets/category-carousel-sheet.png");
  background-size: 300% 300%;
  background-repeat: no-repeat;
}

.category-photo {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: saturate(0.92) contrast(0.96) brightness(1.04);
}

.category-photo.beach {
  background-image: url("assets/category-beach-warm.png");
}

.category-photo.bridal {
  background-image: url("assets/category-bridal-warm.png");
}

.category-photo.wedding {
  background-image: url("assets/category-wedding-warm.png");
}

.tile-1 {
  background-position: 0% 0%;
}

.tile-2 {
  background-position: 50% 0%;
}

.tile-3 {
  background-position: 100% 0%;
}

.tile-4 {
  background-position: 0% 50%;
}

.tile-5 {
  background-position: 50% 50%;
}

.tile-6 {
  background-position: 100% 50%;
}

.tile-7 {
  background-position: 0% 100%;
}

.tile-8 {
  background-position: 50% 100%;
}

.tile-9 {
  background-position: 100% 100%;
}

.category-card div {
  padding: 22px;
}

.category-card p,
.product-card p,
.post-card p,
.collab-panel p,
.collab-panel li {
  color: var(--muted);
}

.category-card a,
.product-card a,
.post-card a {
  color: var(--fern);
  font-weight: 800;
}

.list-library {
  margin-top: clamp(34px, 6vw, 70px);
}

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

.list-card {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(110, 128, 104, 0.24);
  border-radius: 8px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(110, 128, 104, 0.12), rgba(255, 253, 249, 0.92)),
    var(--white);
  color: var(--fern);
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.list-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(71, 50, 38, 0.12);
}

.list-card span {
  color: var(--sage);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.list-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.42rem;
  line-height: 1.1;
}

.featured {
  background:
    linear-gradient(90deg, rgba(110, 128, 104, 0.13), rgba(243, 233, 218, 0.94)),
    var(--cream);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.product-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px, 1fr));
  gap: 14px;
}

.product-carousel {
  grid-auto-columns: minmax(230px, 22%);
}

.product-card {
  min-height: 292px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 11px;
  border: 1px solid rgba(110, 128, 104, 0.26);
  border-radius: 8px;
  padding: 16px;
  background: var(--white);
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(110, 128, 104, 0.18);
  border-radius: 8px;
  background-position: center;
  background-size: cover;
}

.product-photo {
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: contain;
}

.product-placeholder {
  background-image:
    linear-gradient(rgba(251, 247, 240, 0.05), rgba(251, 247, 240, 0.32)),
    url("assets/amazon-finds-illustration.png");
}

.product-placeholder.book-preorder {
  background-color: #f1e6d8;
  background-image:
    radial-gradient(circle at 12% 18%, rgba(255, 253, 249, 0.95) 0 14%, transparent 15%),
    linear-gradient(135deg, rgba(110, 128, 104, 0.18), rgba(255, 253, 249, 0.96)),
    url("assets/threshing-day-cover.jpg");
  background-position: center, center, center;
  background-size: auto, auto, contain;
  background-repeat: no-repeat;
}

.product-placeholder.book-preorder::after {
  content: "For the book girlies";
  position: absolute;
  right: 12px;
  bottom: 12px;
  border: 1px solid rgba(41, 35, 31, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 253, 249, 0.94);
  color: var(--fern);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(41, 35, 31, 0.14);
}

.product-placeholder.alt {
  background-image: url("assets/category-carousel-sheet.png");
  background-position: 50% 0%;
  background-size: 300% 300%;
}

.product-placeholder.plant {
  background-image: url("assets/category-carousel-sheet.png");
  background-position: 0% 100%;
  background-size: 300% 300%;
}

.product-placeholder.party {
  background-image: url("assets/category-carousel-sheet.png");
  background-position: 0% 0%;
  background-size: 300% 300%;
}

.product-placeholder.beauty {
  background-image: url("assets/category-carousel-sheet.png");
  background-position: 50% 50%;
  background-size: 300% 300%;
}

.product-placeholder.home {
  background-image: url("assets/category-carousel-sheet.png");
  background-position: 50% 100%;
  background-size: 300% 300%;
}

.product-placeholder.baby {
  background-image: url("assets/category-carousel-sheet.png");
  background-position: 50% 0%;
  background-size: 300% 300%;
}

.product-placeholder.smart {
  background-image: url("assets/category-carousel-sheet.png");
  background-position: 100% 0%;
  background-size: 300% 300%;
}

.product-tag {
  appearance: none;
  width: fit-content;
  border: 0;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(110, 128, 104, 0.14);
  color: var(--fern);
  cursor: pointer;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-tag:hover {
  background: var(--fern);
  color: var(--white);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -8px 0 24px;
}

.filter-chip {
  border: 1px solid rgba(110, 128, 104, 0.34);
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 253, 249, 0.82);
  color: var(--fern);
  cursor: pointer;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
}

.filter-chip:hover,
.filter-chip.is-active {
  border-color: var(--fern);
  background: var(--fern);
  color: var(--white);
}

.product-card.is-hidden {
  display: none;
}

.product-card h3 {
  font-size: clamp(1rem, 1.45vw, 1.22rem);
}

.product-buy-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: auto;
}

.price {
  color: var(--fern);
  font-size: 1.05rem;
}

.product-buy-row a {
  border: 1px solid var(--fern);
  border-radius: 999px;
  padding: 9px 13px;
  background: var(--fern);
  color: var(--white);
  white-space: nowrap;
}

.add-product-card {
  justify-content: center;
  border-style: dashed;
  background:
    linear-gradient(135deg, rgba(110, 128, 104, 0.1), rgba(255, 253, 249, 0.96)),
    var(--white);
}

.special-product {
  border-color: rgba(197, 156, 92, 0.72);
  box-shadow: 0 18px 44px rgba(197, 156, 92, 0.18);
}

.ugc-strip {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(300px, 0.9fr);
  gap: 32px;
  align-items: center;
  background: var(--fern);
  color: var(--white);
}

.ugc-strip .eyebrow,
.ugc-strip h2 {
  color: var(--white);
}

.ugc-stats {
  display: grid;
  gap: 12px;
}

.ugc-stats span {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 253, 249, 0.24);
  padding: 14px 0;
  color: rgba(255, 253, 249, 0.78);
}

.ugc-stats strong {
  color: var(--white);
}

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

.blog-library-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.blog-capture {
  min-height: 270px;
  margin: 0 0 22px;
  border: 1px solid rgba(110, 128, 104, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(52, 69, 55, 0.3), rgba(251, 247, 240, 0.12)),
    url("https://images.unsplash.com/photo-1484480974693-6ca0a78fb36b?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.blog-capture-wide {
  min-height: 340px;
}

.post-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(110, 128, 104, 0.24);
  border-radius: 8px;
  padding: 26px;
  background: var(--paper);
}

.post-card img {
  aspect-ratio: 16 / 10;
  height: auto;
  margin: -26px -26px 18px;
  width: calc(100% + 52px);
  object-fit: cover;
}

.post-card p {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.post-card.featured-post {
  border-color: rgba(110, 128, 104, 0.42);
  background: var(--white);
}

.blog-library-grid .post-card {
  min-height: 300px;
  padding: 16px;
}

.blog-library-grid .post-card img {
  margin: -16px -16px 14px;
  width: calc(100% + 32px);
}

.post-card.is-hidden {
  display: none;
}

.post-card h3 {
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.blog-link-row {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.blog-article {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid rgba(110, 128, 104, 0.2);
  border-radius: 8px;
  padding: clamp(24px, 5vw, 54px);
  background: var(--white);
  box-shadow: 0 18px 48px rgba(71, 50, 38, 0.08);
}

.blog-article header {
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}

.blog-article h1 {
  font-size: clamp(2rem, 4.2vw, 3.4rem);
}

.blog-article h2 {
  margin-top: 36px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.blog-article h3 {
  margin: 24px 0 8px;
}

.blog-article p,
.blog-article li {
  color: var(--muted);
}

.blog-article ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.article-jump-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 8px;
}

.article-jump-list a {
  border: 1px solid rgba(110, 128, 104, 0.3);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(110, 128, 104, 0.1);
  color: var(--fern);
  font-size: 0.84rem;
  font-weight: 800;
  text-decoration: none;
}

.review-catalog {
  display: grid;
  gap: 14px;
  margin: 18px 0 36px;
}

.review-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid rgba(110, 128, 104, 0.22);
  border-radius: 8px;
  padding: clamp(16px, 3vw, 24px);
  background:
    linear-gradient(135deg, rgba(110, 128, 104, 0.08), rgba(255, 253, 249, 0.95)),
    var(--paper);
}

.review-thumb {
  width: 112px;
  height: 112px;
  border: 1px solid rgba(110, 128, 104, 0.2);
  border-radius: 8px;
  background: var(--white);
  object-fit: contain;
  padding: 8px;
}

.review-card h3 {
  margin-top: 6px;
}

.review-card p {
  margin-bottom: 0;
}

.review-kicker {
  color: var(--sage);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-callout {
  border-left: 4px solid var(--sage);
  margin: 24px 0;
  padding: 16px 18px;
  background: rgba(110, 128, 104, 0.1);
}

.article-footer-image {
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid rgba(110, 128, 104, 0.2);
  border-radius: 8px;
  background: var(--paper);
}

.article-footer-image img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-footer-image div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
}

.article-footer-image p {
  max-width: 520px;
  margin: 0;
}

.socials {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 30px;
  align-items: center;
}

.social-links a {
  border: 1px solid rgba(110, 128, 104, 0.28);
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(255, 253, 249, 0.86);
  color: var(--fern);
  font-weight: 800;
  text-decoration: none;
}

.collaborate {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(360px, 0.88fr);
  gap: clamp(26px, 6vw, 72px);
  background: linear-gradient(135deg, rgba(110, 128, 104, 0.14), rgba(255, 253, 249, 0.92) 52%, rgba(201, 134, 122, 0.12));
}

.collab-panel {
  max-width: 780px;
}

.collab-panel ul {
  padding-left: 20px;
}

.contact-form {
  display: grid;
  gap: 14px;
  align-self: start;
  border: 1px solid rgba(110, 128, 104, 0.3);
  border-radius: 8px;
  padding: clamp(20px, 3vw, 28px);
  background: rgba(255, 253, 249, 0.92);
  box-shadow: 0 16px 42px rgba(71, 50, 38, 0.1);
}

.compact-form {
  width: min(100%, 560px);
  justify-self: start;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 11px 12px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.contact-form button {
  cursor: pointer;
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto minmax(240px, 0.8fr);
  gap: 28px;
  align-items: start;
  border-top: 1px solid var(--line);
  background: var(--fern);
  color: var(--white);
}

.footer p,
.footer a {
  color: rgba(255, 253, 249, 0.74);
}

.footer-brand,
.footer-brand .brand-mark {
  color: var(--white);
}

.footer-brand .brand-mark {
  border-color: rgba(255, 253, 249, 0.64);
  background: transparent;
}

.page-hero {
  min-height: 52vh;
  display: grid;
  align-content: end;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(251, 247, 240, 0.94), rgba(251, 247, 240, 0.58)),
    url("https://images.unsplash.com/photo-1600607688969-a5bfcd646154?auto=format&fit=crop&w=1600&q=80") center/cover;
}

.page-hero h1 {
  max-width: 950px;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.blog-page-hero {
  background:
    linear-gradient(90deg, rgba(251, 247, 240, 0.95), rgba(251, 247, 240, 0.54)),
    url("assets/courtney-fern-maternity.jpg") center/cover;
}

.featured-page-hero {
  background:
    linear-gradient(90deg, rgba(251, 247, 240, 0.95), rgba(251, 247, 240, 0.48)),
    url("assets/amazon-finds-illustration.png") center/cover;
}

.categories-page-hero {
  background:
    linear-gradient(90deg, rgba(251, 247, 240, 0.95), rgba(251, 247, 240, 0.48)),
    url("assets/courtney-portrait-plants.jpg") center/cover;
}

.collaborate-page-hero {
  background: linear-gradient(115deg, rgba(251, 247, 240, 0.98), rgba(251, 247, 240, 0.72) 52%, rgba(110, 128, 104, 0.26));
}

.page-section {
  padding-top: clamp(44px, 7vw, 86px);
}

.page-note {
  margin-top: 24px;
}

.collab-socials {
  margin-top: 24px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .nav {
    position: fixed;
    inset: 68px 16px auto 16px;
    display: none;
    grid-column: 1 / -1;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  body.nav-open .nav {
    display: grid;
  }

  .nav-toggle {
    justify-self: end;
    display: block;
  }

  .header-cta {
    justify-self: end;
  }

  .hero,
  .section-grid,
  .ugc-strip,
  .socials,
  .collaborate,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 18px;
  }

  .hero-media {
    min-height: 0;
  }

  .category-grid,
  .product-grid,
  .product-list-grid,
  .list-grid,
  .start-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .carousel-track {
    grid-auto-columns: minmax(280px, 46%);
  }
}

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }

  .header-cta {
    display: none;
  }

  .brand {
    white-space: normal;
  }

  .hero-copy {
    padding: 12px 0 34px;
  }

  h1 {
    font-size: clamp(2.85rem, 13vw, 4.25rem);
  }

  .section-heading {
    display: block;
  }

  .category-grid,
  .product-grid,
  .product-list-grid,
  .post-grid,
  .list-grid,
  .start-grid {
    grid-template-columns: 1fr;
  }

  .category-card img {
    aspect-ratio: 16 / 10;
  }

  .review-card {
    grid-template-columns: 1fr;
  }

  .review-thumb {
    width: 100%;
    height: 180px;
  }

  .social-links,
  .hero-actions {
    display: grid;
  }

  .button,
  .social-links a {
    width: 100%;
  }

  .carousel-track {
    grid-auto-columns: minmax(260px, 88%);
  }

  .carousel-button {
    display: none;
  }
}
