@font-face {
  font-family: Lexend;
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/Lexend-VariableFont_wght.woff2") format("woff2");
}

:root {
  --top-nav-offset: 80px;
  --bg: #fffdf8;
  --surface: #ffffff;
  --text: #1f1b16;
  --muted: #6d665f;
  --line: #e8e1d8;
  --brand: #c3bbea;
  --brand-dark: #45366b;
  --text-link: #534580;
  --text-link-hover: #6b5a9e;
  --nav-bg: rgba(255, 255, 255, 0.75);
  --filter-hover-border: color-mix(in srgb, var(--brand) 16%, #d2c6ba);
  --filter-active-bg: color-mix(in srgb, var(--brand) 22%, var(--surface));
  --media-tint: #fbf7f2;
}

html.theme-dark {
  color-scheme: dark;
  --bg: #12151c;
  --surface: #1c2129;
  --text: #eeeeee;
  --muted: color-mix(in srgb, var(--text) 58%, var(--bg));
  --line: color-mix(in srgb, var(--text) 22%, var(--bg));
  --brand: #c3bbea;
  --brand-dark: color-mix(in srgb, var(--brand) 40%, var(--bg));
  --text-link: #d2c8f5;
  --text-link-hover: #ebe6ff;
  --nav-bg: rgba(14, 17, 23, 0.94);
  --filter-hover-border: color-mix(in srgb, var(--text) 32%, var(--surface));
  --filter-active-bg: color-mix(in srgb, var(--brand) 26%, var(--surface));
  --media-tint: color-mix(in srgb, var(--surface) 72%, var(--bg));
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: var(--top-nav-offset);
}

body {
  margin: 0;
  padding-top: var(--top-nav-offset);
  font-family: Lexend, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

.container {
  width: min(1000px, 92vw);
  margin: 0 auto;
}

.top-nav-dock {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  will-change: transform;
  transition: transform 0.22s ease;
}

.top-nav-dock.top-nav-dock--unpinned {
  transform: translateY(-100%);
}

.top-nav-dock.top-nav-dock--pinned {
  transform: translateY(0);
}

.top-nav {
  background: var(--nav-bg);
  backdrop-filter: blur(4px);
}

body:not([data-page="home"]) .top-nav {
  border-bottom: 1px solid var(--line);
}

@media (prefers-reduced-motion: reduce) {
  .top-nav-dock {
    transition: none;
  }

  .top-nav-dock.top-nav-dock--unpinned {
    transform: translateY(0);
  }
}

.top-nav-inner {
  min-height: 85px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 16px;
}

.nav-cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px 20px;
  min-width: 0;
  flex-shrink: 0;
}

@media (max-width: 560px) {
  .nav-brand-with-tagline {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    flex: 1 1 100%;
  }

  .nav-tagline-bar__text {
    max-width: 100%;
    white-space: normal;
  }
}

.nav-menu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
}

.nav-brand-with-tagline {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.2vw, 18px);
  min-width: 0;
  flex: 1 1 auto;
}

.nav-tagline-bar__text {
  margin: 0;
  font-size: clamp(0.68rem, 0.58rem + 0.85vw, 0.84rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: var(--muted);
  font-style: italic;
  text-align: left;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-tagline-bar__name {
  font-weight: 700;
  font-style: italic;
  color: color-mix(in srgb, var(--text) 72%, var(--muted));
  text-decoration: none;
}

a.nav-tagline-bar__name:hover {
  color: var(--text-link-hover);
  text-decoration: underline;
  text-underline-offset: 2px;
}

a.nav-tagline-bar__name:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}

.nav-tagline-bar__dash {
  font-style: normal;
  font-weight: 400;
  color: color-mix(in srgb, var(--muted) 85%, var(--line));
}

.nav-tagline-bar__phrase {
  font-weight: 500;
  font-style: italic;
}

.nav-brand-logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}

.nav-brand-logo:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 999px;
}

.nav-brand-logo img {
  display: block;
  height: clamp(38px, 10vw, 48px);
  width: auto;
}

html.theme-dark .nav-brand-logo {
  padding: 3px;
  border-radius: 999px;
  background: #fff;
}

html.theme-dark .nav-brand-logo img {
  filter: contrast(1.18) brightness(1.04);
}

.nav-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--brand-dark);
  background: var(--brand-dark);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition: background 0.15s ease, border-color 0.15s ease, filter 0.15s ease;
}

.nav-cta:hover {
  background: color-mix(in srgb, var(--brand-dark) 78%, #000);
  border-color: color-mix(in srgb, var(--brand-dark) 78%, #000);
  color: #fff;
  filter: brightness(1.05);
}

.nav-cta.is-active {
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--brand) 45%, transparent);
}

.nav-cta:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  line-height: 1.2;
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--text);
}

.nav-pinterest {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  border-radius: 999px;
}

.nav-pinterest:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.nav-pinterest img {
  display: block;
  width: 34px;
  height: 34px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  cursor: pointer;
}

.theme-toggle:hover {
  color: var(--text-link-hover);
  border-color: var(--filter-hover-border);
}

.theme-toggle .theme-icon {
  display: block;
}

.theme-toggle .theme-icon-sun {
  display: none;
}

html.theme-dark .theme-toggle .theme-icon-sun {
  display: block;
}

html.theme-dark .theme-toggle .theme-icon-moon {
  display: none;
}

.site-header.hero-slider {
  position: relative;
  min-height: calc(100svh - var(--top-nav-offset));
  min-height: calc(100dvh - var(--top-nav-offset));
  padding: 0;
  background: var(--bg);
}

.hero-slider__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  pointer-events: none;
}

.hero-slider__slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.hero-slider__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-header.hero-slider figure.hero-slider__slide a[href*="pinterest"],
.site-header.hero-slider figure.hero-slider__slide button,
.site-header.hero-slider figure.hero-slider__slide iframe {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  opacity: 0 !important;
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
}

.hero-slider__scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    165deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.25) 38%,
    rgba(0, 0, 0, 0.55) 72%,
    rgba(0, 0, 0, 0.82) 100%
  );
}

.hero-slider__inner {
  position: relative;
  z-index: 3;
  min-height: calc(100svh - var(--top-nav-offset));
  min-height: calc(100dvh - var(--top-nav-offset));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 8vh, 4rem) 0 clamp(3.5rem, 10vh, 5rem);
  pointer-events: none;
}

.hero-slider__inner > * {
  pointer-events: auto;
}

.hero-slider__text-panel {
  max-width: min(36rem, 100%);
  padding: clamp(1.1rem, 3vw, 1.65rem) clamp(1.15rem, 3.5vw, 1.85rem);
  border-radius: 14px;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

html.theme-dark .hero-slider__text-panel {
  background: rgba(28, 33, 41, 0.78);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

.hero-slider__title {
  margin: 0 0 0.65rem;
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #faf9f7;
  text-shadow: 0 0.15em 1.2em rgba(0, 0, 0, 0.55);
}

.hero-slider__text-panel .hero-slider__title {
  color: var(--text);
  text-shadow: none;
}

html.theme-dark .hero-slider__text-panel .hero-slider__title {
  color: #f4f2ee;
}

.hero-slider__intro {
  margin: 0 0 1.35rem;
  max-width: 36ch;
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  line-height: 1.55;
  color: rgba(250, 249, 247, 0.88);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.4);
}

.hero-slider__text-panel .hero-slider__intro {
  color: var(--muted);
  text-shadow: none;
}

html.theme-dark .hero-slider__text-panel .hero-slider__intro {
  color: color-mix(in srgb, #eeeeee 72%, var(--muted));
}

.hero-slider__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero-slider__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: #faf9f7;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.hero-slider__text-panel .hero-slider__cta {
  color: #fff;
  border-color: color-mix(in srgb, var(--brand-dark) 55%, transparent);
  background: var(--brand-dark);
}

.hero-slider__text-panel .hero-slider__cta:hover {
  border-color: color-mix(in srgb, var(--brand-dark) 78%, #000);
  background: color-mix(in srgb, var(--brand-dark) 78%, #000);
  color: #fff;
  transform: translateY(-1px);
}

.hero-slider__cta:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.94);
  color: #222831;
  transform: translateY(-1px);
}

.hero-slider__dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: clamp(1.25rem, 4vh, 2rem);
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.hero-slider__dots,
.hero-slider__arrow {
  display: none !important;
}

.hero-slider__dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-slider__dot:hover {
  background: rgba(255, 255, 255, 0.65);
  transform: scale(1.15);
}

.hero-slider__dot.is-active {
  background: #fff;
  transform: scale(1.2);
}

.hero-slider__arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hero-slider__arrow:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.hero-slider__arrow--prev {
  left: max(12px, env(safe-area-inset-left, 0px));
}

.hero-slider__arrow--next {
  right: max(12px, env(safe-area-inset-right, 0px));
}

#picks {
  scroll-margin-top: 20px;
}

@media (max-width: 520px) {
  .hero-slider__arrow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slider__slide {
    transition-duration: 0.01ms;
  }

  .hero-slider__cta,
  .hero-slider__dot {
    transition: none;
  }
}

h1 {
  margin: 0 0 8px;
  line-height: 1.2;
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
}

.intro {
  max-width: 60ch;
  margin: 0 0 10px;
  color: var(--muted);
}

.pinterest-link {
  color: var(--text-link);
  font-weight: 600;
  text-decoration: none;
}

.pinterest-link:hover {
  color: var(--text-link-hover);
  text-decoration: underline;
}

main {
  padding: 24px 0 40px;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filter-btn {
  display: inline-block;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.92rem;
  cursor: pointer;
  text-decoration: none;
}

.filter-btn:hover {
  border-color: var(--filter-hover-border);
}

.filter-btn.is-active {
  border-color: var(--brand);
  background: var(--filter-active-bg);
  color: var(--text);
}

h2 {
  margin: 0 0 14px;
  font-size: 1.18rem;
}

.category-page__header {
  margin-bottom: clamp(0.85rem, 2.5vw, 1.25rem);
}

.category-page__title {
  margin: 0;
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  line-height: 1.2;
  font-weight: 800;
  color: var(--text);
}

.explore-page {
  padding: clamp(20px, 4vw, 36px) 0 48px;
}

.explore-page__header {
  margin-bottom: clamp(1rem, 3vw, 1.5rem);
}

.explore-page__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  line-height: 1.2;
  font-weight: 800;
  color: var(--text);
}

.explore-page__intro {
  margin: 0;
  max-width: 52ch;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--muted);
}

.explore-page__controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  margin-bottom: 1.25rem;
}

.explore-page__filters {
  margin-bottom: 0;
  flex: 1 1 auto;
  min-width: 0;
}

.explore-page__sort-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  flex: 0 0 auto;
}

.explore-page__sort-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
}

.explore-page__sort {
  min-width: 11rem;
  padding: 0.45rem 0.65rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}

.explore-page__sort:focus {
  outline: 2px solid color-mix(in srgb, var(--brand) 45%, transparent);
  outline-offset: 1px;
}

.explore-page__results {
  min-height: 8rem;
}

.explore-page__status {
  margin: clamp(1rem, 3vw, 1.5rem) 0 clamp(0.85rem, 2vw, 1.15rem);
  padding: 0.45rem 0;
  font-size: 0.86rem;
  color: var(--muted);
}

.explore-page__empty {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.explore-page__more-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.25rem, 3vw, 2rem);
}

.explore-page__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  font-family: inherit;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.explore-page__more[hidden] {
  display: none !important;
}

.explore-page__more:hover {
  border-color: var(--filter-hover-border);
  background: var(--filter-active-bg);
}

.explore-page__more:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

@media (max-width: 720px) {
  .explore-page__controls {
    flex-direction: column;
    align-items: stretch;
  }

  .explore-page__sort-group {
    justify-content: space-between;
  }
}

.product-grid {
  display: grid;
  gap: clamp(16px, 2.5vw, 22px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--surface);
  border: 1px dashed var(--line);
  border-radius: 12px;
  display: grid;
  align-items: start;
  overflow: visible;
}

.card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--media-tint);
  border-radius: 11px 11px 0 0;
  overflow: hidden;
}

.card-media--soon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--muted) 10%, var(--surface)),
    var(--media-tint)
  );
  border-bottom: 1px dashed var(--line);
}

.card-soon-label {
  font-size: clamp(0.82rem, 2.2vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.card.card--soon .title {
  color: var(--muted);
}

.product-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 14px;
}

.category {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.title {
  margin: 0 0 8px;
  line-height: 1.3;
  font-size: 1rem;
}

.note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.card-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 12px 14px 14px;
  align-self: end;
  border-radius: 0 0 11px 11px;
}

.cta {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background: var(--brand-dark);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

.cta:hover {
  background: color-mix(in srgb, var(--brand-dark) 78%, #000);
}

.cta--disabled {
  pointer-events: none;
  cursor: default;
  opacity: 0.72;
  background: color-mix(in srgb, var(--muted) 35%, var(--surface));
  color: var(--muted);
  border: 1px solid var(--line);
}

.cta--disabled:hover {
  background: color-mix(in srgb, var(--muted) 35%, var(--surface));
  color: var(--muted);
  filter: none;
}

html.theme-dark .cta--disabled {
  background: color-mix(in srgb, var(--surface) 88%, var(--bg));
  color: var(--muted);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 20px 0 30px;
}

.footer-disclosure p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.footer-disclosure a {
  color: var(--text-link);
  font-weight: 600;
  text-decoration: none;
}

.footer-disclosure a:hover {
  color: var(--text-link-hover);
  text-decoration: underline;
}

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.footer-copy {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px 18px;
}

.footer-links a {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-link);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--text-link-hover);
  text-decoration: underline;
}

@media (max-width: 520px) {
  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
  gap: clamp(28px, 4vw, 48px);
  padding: clamp(28px, 5vw, 48px) 0 56px;
  align-items: start;
}

.page-main {
  min-width: 0;
}

.page-title {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 4vw, 2.35rem);
  line-height: 1.2;
  font-weight: 800;
  color: var(--text);
}

.page-featured {
  position: relative;
  margin: 0 0 1.5rem;
  border-radius: 12px;
  overflow: visible;
  border: 1px solid var(--line);
  background: var(--media-tint);
}

.page-featured__img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 11px;
}

.page-body p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.page-body p:last-child {
  margin-bottom: 0;
}

.share-bar {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}

.share-bar__label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.share-bar__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}

.share-bar__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.share-bar__action--icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  padding: 0;
  border-radius: 999px;
}

.share-bar__svg {
  display: block;
  flex-shrink: 0;
}

.share-bar__svg--stroke {
  stroke: currentColor;
}

.share-bar__action:hover {
  border-color: var(--filter-hover-border);
  color: var(--text-link-hover);
}

.page-sidebar {
  position: sticky;
  top: calc(var(--top-nav-offset) + 16px);
  padding: 0;
}

.page-sidebar__title {
  margin: 0 0 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--muted);
  line-height: 1.3;
}

.page-sidebar__empty {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.page-sidebar__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.sidebar-pick__link {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 0;
  text-decoration: none;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  transition: color 0.15s ease;
}

.sidebar-pick__link:hover {
  color: var(--text-link-hover);
}

.sidebar-pick__media {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 6px;
  overflow: hidden;
}

.sidebar-pick__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.disclosure-page {
  max-width: min(44rem, 100%);
}

.disclosure-page .page-body h2 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

.disclosure-page .page-body p {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
  color: var(--muted);
}

.disclosure-page .page-body ul {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
  color: var(--muted);
  line-height: 1.6;
}

.disclosure-page .page-body li {
  margin: 0 0 0.35rem;
}

.disclosure-page .page-body a {
  color: var(--text-link);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.disclosure-page .page-body a:hover {
  color: var(--text-link-hover);
}

.disclosure-rule {
  border: none;
  border-top: 1px solid var(--line);
  margin: 1.35rem 0;
}

.disclosure-updated {
  margin-top: 1.25rem;
  font-size: 0.92rem;
}

.disclosure-back {
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  .page-layout {
    grid-template-columns: 1fr;
  }

  .page-sidebar {
    position: static;
  }
}

.blog-hub {
  padding: 1.25rem 0 2.5rem;
  max-width: min(40rem, 100%);
}

.blog-hub__header {
  margin-bottom: 1.5rem;
}

.blog-hub__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.55rem, 4vw, 1.95rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.blog-hub__intro {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.55;
}

.blog-hub__search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-top: 1rem;
  max-width: min(32rem, 100%);
}

.blog-hub__search-input {
  flex: 1 1 12rem;
  min-width: 0;
  box-sizing: border-box;
  padding: 0.55rem 0.65rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.blog-hub__search-input::placeholder {
  color: color-mix(in srgb, var(--muted) 75%, transparent);
}

.blog-hub__search-input:focus {
  outline: 2px solid color-mix(in srgb, var(--brand) 45%, transparent);
  outline-offset: 1px;
}

.blog-hub__search-submit {
  padding: 0.5rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: inherit;
  color: #fff;
  background: var(--brand-dark);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease;
}

.blog-hub__search-submit:hover {
  background: color-mix(in srgb, var(--brand-dark) 78%, #000);
}

.blog-hub__empty-archive {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.blog-section {
  margin: 0 0 1.75rem;
}

.blog-section__rule {
  border: none;
  border-top: 1px solid var(--line);
  margin: 1.5rem 0 1rem;
}

.blog-section__heading {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.blog-section__empty {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.blog-post-list {
  margin: 0 0 0.75rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.blog-post-list__item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  align-items: flex-start;
}

.blog-post-list__link {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  line-height: 1.35;
  transition: color 0.15s ease;
}

.blog-post-list__link:hover {
  color: var(--text-link-hover);
}

.blog-post-list__date {
  font-size: 0.82rem;
  color: var(--muted);
}

.blog-section__more {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
}

.blog-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 22px);
  margin: 0 0 0.25rem;
  padding: 0;
  list-style: none;
}

@media (max-width: 900px) {
  .blog-hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 540px) {
  .blog-hub-grid {
    grid-template-columns: 1fr;
  }
}

.blog-hub-card {
  min-width: 0;
}

.blog-hub-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.blog-hub-card__link:hover {
  border-color: var(--filter-hover-border);
  box-shadow: 0 6px 24px color-mix(in srgb, var(--text) 8%, transparent);
}

.blog-hub-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  background: var(--media-tint);
  overflow: hidden;
}

/* Pinterest hover Save: default is top-left; pin top-right on blog archive only */
.blog-hub-page .blog-hub-card__media > span:not(.blog-hub-card__pill):not(.blog-hub-card__placeholder),
.blog-hub-page .blog-hub-card__media > a:not(.blog-hub-card__pill) {
  left: auto !important;
  right: 10px !important;
  top: 10px !important;
  bottom: auto !important;
  margin-left: 0 !important;
  transform: none !important;
  z-index: 5;
}

.blog-hub-page .blog-hub-card__media span[class*="PIN_"],
.blog-hub-page .blog-hub-card__media span[class*="pin_"],
.blog-hub-page .blog-hub-card__media span[class*="pin-"],
.blog-hub-page .blog-hub-card__media a[href*="pinterest.com/pin/create"],
.blog-hub-page .blog-hub-card__media a[href*="pinterest.com/pin-builder"] {
  left: auto !important;
  right: 10px !important;
  top: 10px !important;
  bottom: auto !important;
  margin-left: 0 !important;
}

.blog-hub-card__pill {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  max-width: calc(100% - 20px);
  padding: 0.3rem 0.65rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--text);
  background: color-mix(in srgb, var(--surface) 88%, transparent);
  border: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.blog-hub-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.blog-hub-card__link:hover .blog-hub-card__img {
  transform: scale(1.03);
}

.blog-hub-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 8rem;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--muted) 12%, var(--surface)),
    var(--media-tint)
  );
}

.blog-hub-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.9rem 1rem 1.05rem;
  flex: 1;
  min-height: 0;
}

.blog-hub-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-hub-card__date {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.blog-hub-card__excerpt {
  margin: 0.15rem 0 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  .blog-hub-card__img {
    transition: none;
  }

  .blog-hub-card__link:hover .blog-hub-card__img {
    transform: none;
  }
}

.blog-post__excerpt {
  margin: 0 0 0.5rem;
  font-size: 1.02rem;
  color: var(--muted);
  line-height: 1.55;
}

.blog-post__meta {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.blog-post__content {
  margin: 0;
}

.blog-post__content > :first-child {
  margin-top: 0;
}

.blog-post__content > :last-child {
  margin-bottom: 0;
}

.blog-post__content h2 {
  margin: 1.35rem 0 0.5rem;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text);
}

.blog-post__content p {
  margin: 0 0 0.85rem;
  color: var(--muted);
  max-width: none;
}

.blog-post__content ul,
.blog-post__content ol {
  margin: 0 0 0.85rem;
  padding-left: 1.25rem;
  color: var(--muted);
}

.blog-post__content hr {
  margin: 1.35rem 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.blog-post__back {
  margin: 1.5rem 0 0;
  font-size: 0.92rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.blog-post-page__article {
  padding: 0 0 3rem;
}

.blog-hub-page .blog-hub {
  max-width: none;
  padding-right: 0;
}

.blog-sidebar__block {
  margin-bottom: 1.75rem;
}

.blog-sidebar__block:last-child {
  margin-bottom: 0;
}

.blog-sidebar__search {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.blog-sidebar__input {
  width: 100%;
  box-sizing: border-box;
  padding: 0.55rem 0.65rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.blog-sidebar__input::placeholder {
  color: color-mix(in srgb, var(--muted) 75%, transparent);
}

.blog-sidebar__input:focus {
  outline: 2px solid color-mix(in srgb, var(--brand) 45%, transparent);
  outline-offset: 1px;
}

.blog-sidebar__submit {
  align-self: flex-start;
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: inherit;
  color: #fff;
  background: var(--brand-dark);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s ease, filter 0.15s ease;
}

.blog-sidebar__submit:hover {
  background: color-mix(in srgb, var(--brand-dark) 78%, #000);
}

.blog-sidebar__posts {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.blog-sidebar__post {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.blog-sidebar__post-link {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s ease;
}

.blog-sidebar__post-link:hover {
  color: var(--text-link-hover);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-sidebar__post-date {
  font-size: 0.78rem;
  color: var(--muted);
}

.blog-hub__search-results {
  margin-bottom: 2rem;
}

.blog-hub__search-heading {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.blog-hub__search-empty {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.55;
}

.blog-hub__search-clear {
  margin: 0;
  font-size: 0.9rem;
}

.blog-breadcrumbs {
  margin: 0 0 1rem;
}

.blog-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.88rem;
}

.blog-breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-breadcrumbs__item:not(:last-child)::after {
  content: "/";
  color: var(--muted);
  font-weight: 400;
  margin-left: 0.15rem;
}

.blog-breadcrumbs__link {
  color: var(--text-link);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-breadcrumbs__link:hover {
  color: var(--text-link-hover);
}

.blog-breadcrumbs__current {
  color: var(--muted);
  font-weight: 500;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-post-page__header {
  margin-bottom: 1rem;
}

.blog-post-page__title {
  margin: 0 0 0.85rem;
  font-family: inherit;
  font-size: clamp(1.65rem, 4.2vw, 2.15rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--text);
}

.blog-post-page__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
}

.blog-post-page__avatar {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--brand) 18%, var(--surface));
  border: 2px solid var(--line);
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: 0.02em;
}

.blog-post-page__meta-text {
  margin: 0;
  flex: 1;
  min-width: min(100%, 12rem);
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
}

.blog-post-page__meta-sep {
  margin: 0 0.35rem;
  color: color-mix(in srgb, var(--muted) 65%, transparent);
}

.blog-post-page__featured {
  margin-top: 0.35rem;
}

.blog-post-page .share-bar.blog-share-bar {
  margin: 1.35rem 0 1.5rem;
}

.blog-post-page__disclaimer {
  margin: 0 0 1.25rem;
  padding: clamp(0.95rem, 2.2vw, 1.2rem) clamp(1rem, 2.5vw, 1.35rem);
  border-radius: 10px;
  background: #ebe3d6;
  border: 1px solid color-mix(in srgb, #c9b8a4 55%, transparent);
}

html.theme-dark .blog-post-page__disclaimer {
  background: color-mix(in srgb, #ebe3d6 14%, var(--surface));
  border-color: var(--line);
}

.blog-post-page__disclaimer-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  font-style: italic;
  color: #2a2620;
}

html.theme-dark .blog-post-page__disclaimer-text {
  color: color-mix(in srgb, #f0ebe4 88%, var(--text));
}

.blog-post-page__disclaimer-lead {
  font-style: italic;
  font-weight: 700;
}

.blog-post-page__disclaimer-more {
  display: inline-block;
  margin-top: 0.5rem;
  font-style: normal;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text-link);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-post-page__disclaimer-more:hover {
  color: var(--text-link-hover);
}

.blog-post-page__body {
  margin-top: 0.25rem;
}

.blog-post-page__also {
  margin: 2.5rem 0 0;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.blog-post-page__also-heading {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text);
}

.blog-post-page__also-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.blog-post-page__also-item {
  margin: 0 0 0.45rem;
}

.blog-post-page__also-link {
  color: var(--text-link);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.blog-post-page__also-link:hover {
  color: var(--text-link-hover);
}

.blog-post-page__recommended {
  margin: 2.5rem 0 0;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.blog-post-page__recommended-heading {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.blog-post-page__rec-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 3vw, 22px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.blog-post-page__rec-card {
  display: flex;
  min-height: 0;
}

.blog-post-page__rec-link {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.55rem;
  width: 100%;
  min-height: 100%;
  text-decoration: none;
  color: var(--text);
  transition: color 0.15s ease;
}

.blog-post-page__rec-link:hover {
  color: var(--text-link-hover);
}

.blog-post-page__rec-placeholder {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.55rem;
  width: 100%;
  min-height: 100%;
}

.blog-post-page__rec-media {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--media-tint);
  aspect-ratio: 1;
}

.blog-post-page__rec-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-post-page__rec-media--soon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--muted) 10%, var(--surface)),
    var(--media-tint)
  );
  border-style: dashed;
}

.blog-post-page__rec-soon-label {
  font-size: clamp(0.82rem, 2.2vw, 0.95rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.blog-post-page__rec-title {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.35;
}

.blog-post-page__rec-title--muted {
  color: var(--muted);
  font-weight: 600;
}

.blog-post-page__rec-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
}

.blog-post-page__author {
  margin: 2.75rem 0 0;
  padding-top: 2.75rem;
  border-top: 1px solid var(--line);
}

.blog-post-page__author-card {
  text-align: center;
  max-width: 26rem;
  margin: 0 auto;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.blog-post-page__author-avatar-wrap {
  margin-top: -3.25rem;
  margin-bottom: 0.65rem;
}

.blog-post-page__author-photo {
  width: 88px;
  height: 88px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  border: 3px solid var(--bg);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-dark);
  box-shadow: 0 0 0 1px var(--line);
}

.blog-post-page__author-name {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.blog-post-page__author-bio {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--muted);
}

.blog-post-page__back {
  margin: 1.75rem 0 0;
  font-size: 0.92rem;
}

@media (max-width: 640px) {
  .blog-post-page__rec-grid {
    grid-template-columns: 1fr;
  }
}

