/* Sea of Sweets — static boutique styles */
:root {
  --pistachio: #93c572;
  --honey: #ffd700;
  --cream: #f5f5dc;
  --ink: #1f1b16;
  --ink-soft: #3d352b;
  --paper: #fffdf6;
  --line: rgba(31, 27, 22, 0.12);
  --shadow: 0 18px 50px rgba(31, 27, 22, 0.12);
  --radius: 18px;
  --nav-h: 92px;
  --petal: #e8b4bc;
  --sea: #7eb8da;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink-soft);
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 45%, #fff 100%);
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 2px;
}

.skip {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: var(--paper);
  border-radius: 10px;
  z-index: 9999;
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 60px;
  width: auto;
  padding: 4px 0;
  display: block;
  object-fit: contain;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.88);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink);
}

.nav-toggle__icon {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, top 0.2s ease;
}

.nav-toggle__icon::before {
  top: -7px;
}

.nav-toggle__icon::after {
  top: 7px;
}

body.nav-open .nav-toggle__icon {
  background: transparent;
}

body.nav-open .nav-toggle__icon::before,
body.nav-open .nav-toggle__icon::after {
  top: 0;
}

body.nav-open .nav-toggle__icon::before {
  transform: rotate(45deg);
}

body.nav-open .nav-toggle__icon::after {
  transform: rotate(-45deg);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  font-size: 0.92rem;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav a:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.nav a.is-active {
  border-color: color-mix(in srgb, var(--pistachio) 55%, var(--line));
  background: rgba(147, 197, 114, 0.16);
}

.nav a.nav-pill {
  border-color: color-mix(in srgb, var(--honey) 55%, var(--line));
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.22), rgba(147, 197, 114, 0.12));
}

.nav a.nav-pill:hover {
  filter: brightness(1.02);
}

.header-trail {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex: 1;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.breadcrumb {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 20px 0;
}

.breadcrumb__path {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(245, 245, 220, 0.45));
  font-size: 0.9rem;
}

.breadcrumb a {
  text-decoration: none;
  font-weight: 600;
  color: var(--ink);
}

.breadcrumb a:hover {
  text-decoration: underline;
  color: color-mix(in srgb, var(--pistachio) 45%, var(--ink));
}

.breadcrumb__sep {
  opacity: 0.45;
  font-weight: 700;
}

.breadcrumb__here {
  font-weight: 600;
  color: var(--ink-soft);
}

.ad-leader {
  max-width: fit-content;
  margin: 0 auto;
  padding: 12px 20px 0;
}

.ad-leader ins {
  display: block;
  margin: 0 auto;
  min-height: 0;
}

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 20px 72px;
}

section[id] {
  scroll-margin-top: 96px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: stretch;
  margin: 18px 0 34px;
}

.hero.hero--mesh {
  position: relative;
  padding: 14px;
  margin: 18px -10px 34px;
  border-radius: calc(var(--radius) + 16px);
  isolation: isolate;
}

.hero.hero--mesh::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: -1;
  background: radial-gradient(circle at 18% 32%, rgba(147, 197, 114, 0.38), transparent 42%),
    radial-gradient(circle at 82% 18%, rgba(255, 215, 0, 0.32), transparent 38%),
    conic-gradient(from 210deg at 50% 120%, rgba(232, 180, 188, 0.22), transparent 55%);
  animation: heroMesh 22s ease-in-out infinite alternate;
}

@keyframes heroMesh {
  from {
    filter: hue-rotate(0deg);
    transform: scale(1);
  }
  to {
    filter: hue-rotate(14deg);
    transform: scale(1.015);
  }
}

.hero-copy {
  padding: 26px 26px 26px 22px;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(245, 245, 220, 0.55));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.hero-copy::before {
  content: "";
  position: absolute;
  inset: -40% -30% auto auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 215, 0, 0.35), transparent 62%);
  transform: rotate(12deg);
  pointer-events: none;
}

.hero-copy > * {
  position: relative;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(31, 27, 22, 0.62);
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--pistachio);
  box-shadow: 0 0 0 0 rgba(147, 197, 114, 0.55);
  animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(147, 197, 114, 0.45);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 12px rgba(147, 197, 114, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(147, 197, 114, 0);
  }
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  color: var(--ink);
  line-height: 1.12;
}

h1 {
  font-size: clamp(2.1rem, 4vw, 3.15rem);
  margin: 10px 0 12px;
}

h2 {
  font-size: clamp(1.55rem, 2.6vw, 2.1rem);
  margin: 26px 0 12px;
}

h3 {
  font-size: 1.35rem;
  margin: 18px 0 10px;
}

.lede {
  font-size: 1.05rem;
  margin: 0 0 14px;
}

.hero-media {
  border-radius: calc(var(--radius) + 10px);
  border: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  display: grid;
  align-content: stretch;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid rgba(31, 27, 22, 0.14);
  background: rgba(255, 255, 255, 0.75);
}

.btn-primary {
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.95), rgba(255, 248, 190, 0.95));
  border-color: color-mix(in srgb, var(--honey) 55%, var(--line));
}

.btn-primary:hover {
  filter: brightness(1.03);
}

.btn-ghost:hover {
  background: rgba(147, 197, 114, 0.14);
  border-color: color-mix(in srgb, var(--pistachio) 45%, var(--line));
}

.section {
  margin: 44px 0;
  padding: 26px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 30px rgba(31, 27, 22, 0.06);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.section > * {
  position: relative;
  z-index: 1;
}

.section.section--dots {
  background-color: rgba(255, 255, 255, 0.78);
  background-image: radial-gradient(rgba(147, 197, 114, 0.22) 1.2px, transparent 1.2px);
  background-size: 16px 16px;
  animation: patDots 28s linear infinite;
}

.section.section--rips {
  background-color: rgba(255, 255, 255, 0.76);
  background-image: repeating-linear-gradient(
    108deg,
    rgba(255, 215, 0, 0.07),
    rgba(255, 215, 0, 0.07) 9px,
    transparent 9px,
    transparent 24px
  );
  animation: patRip 32s linear infinite;
}

.section.section--bloom {
  background-color: rgba(255, 255, 255, 0.74);
  background-image: radial-gradient(circle at 14% 42%, rgba(232, 180, 188, 0.38), transparent 44%),
    radial-gradient(circle at 88% 58%, rgba(126, 184, 218, 0.26), transparent 42%);
  animation: patBloom 20s ease-in-out infinite alternate;
}

.section.section--rings {
  background-color: rgba(255, 255, 255, 0.77);
  background-image: repeating-radial-gradient(
    circle at 50% 22%,
    transparent 0,
    transparent 14px,
    rgba(147, 197, 114, 0.16) 14px,
    rgba(147, 197, 114, 0.16) 15px
  );
  animation: patRings 24s linear infinite;
}

.section.section--ledger {
  background-color: rgba(255, 255, 255, 0.75);
  background-image: linear-gradient(90deg, rgba(31, 27, 22, 0.04) 1px, transparent 1px);
  background-size: 28px 100%;
  animation: patLedger 18s linear infinite;
}

@keyframes patDots {
  to {
    background-position: 48px 40px;
  }
}

@keyframes patRip {
  to {
    background-position: 220px 0;
  }
}

@keyframes patBloom {
  from {
    opacity: 1;
  }
  to {
    opacity: 0.92;
  }
}

@keyframes patRings {
  to {
    background-position: 0 36px;
  }
}

@keyframes patLedger {
  to {
    background-position: 56px 0;
  }
}

.blog-hero.blog-hero--swirl {
  padding: 18px 18px 8px;
  margin: 0 -6px 8px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 245, 220, 0.55));
  background-image: radial-gradient(circle at 12% 20%, rgba(255, 215, 0, 0.28), transparent 35%),
    radial-gradient(circle at 92% 10%, rgba(147, 197, 114, 0.22), transparent 38%);
  animation: patBloom 26s ease-in-out infinite alternate;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  background: rgba(245, 245, 220, 0.55);
}

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  margin: 22px 0;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 14px 14px 12px;
  background: rgba(255, 255, 255, 0.86);
}

.card h3 {
  margin-top: 0;
}

.muted {
  color: rgba(31, 27, 22, 0.62);
  font-size: 0.95rem;
}

.rss-panel {
  margin-top: 16px;
  border-radius: 16px;
  border: 1px dashed color-mix(in srgb, var(--pistachio) 35%, var(--line));
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(245, 245, 220, 0.22));
  padding: 14px;
}

.rss-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.rss-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--ink);
}

.rss-note {
  font-size: 0.85rem;
  opacity: 0.72;
}

.rss-list {
  display: grid;
  gap: 10px;
}

.rss-card {
  display: block;
  text-decoration: none;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
}

.rss-card:hover {
  border-color: color-mix(in srgb, var(--honey) 55%, var(--line));
  transform: translateY(-1px);
  transition: 160ms ease;
}

.rss-card strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.12rem;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 6px;
}

.rss-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 0.85rem;
  opacity: 0.78;
}

.ticker {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: ticker 38s linear infinite;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.ticker .rss-card {
  width: 320px;
  flex: 0 0 auto;
}

.faq-header {
  margin-bottom: 22px;
  max-width: 36rem;
}

.faq-header .pill {
  margin-bottom: 10px;
}

.faq-header h2 {
  margin-top: 0;
}

.faq-lede {
  margin: 10px 0 0;
  font-size: 1rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 253, 246, 0.88));
  box-shadow: 0 4px 18px rgba(31, 27, 22, 0.05);
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.faq-item:hover {
  border-color: color-mix(in srgb, var(--pistachio) 35%, var(--line));
  box-shadow: 0 10px 32px rgba(31, 27, 22, 0.08);
}

.faq-item[open] {
  border-color: color-mix(in srgb, var(--pistachio) 55%, var(--line));
  box-shadow: 0 14px 40px rgba(147, 197, 114, 0.12);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-q {
  flex: 1;
  padding-right: 8px;
}

.faq-item summary::after {
  content: "";
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 2px;
  border-right: 2px solid var(--ink-soft);
  border-bottom: 2px solid var(--ink-soft);
  transform: rotate(45deg);
  opacity: 0.65;
  transition: transform 0.25s ease, opacity 0.2s ease, border-color 0.2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 8px;
  opacity: 0.95;
  border-color: color-mix(in srgb, var(--pistachio) 70%, var(--ink-soft));
}

.faq-item summary:hover::after {
  opacity: 1;
  border-color: var(--pistachio);
}

.faq-a {
  padding: 0 20px 20px;
  border-top: 1px solid color-mix(in srgb, var(--line) 70%, transparent);
  margin: 0 4px;
  background: linear-gradient(180deg, rgba(245, 245, 220, 0.2), transparent 48px);
}

.faq-a p {
  margin: 0;
  padding-top: 14px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 52rem;
}

.faq-item[open] summary {
  padding-bottom: 14px;
}

@media (max-width: 520px) {
  .faq-item summary {
    padding: 16px 16px;
    font-size: 1.12rem;
  }

  .faq-a {
    padding: 0 16px 16px;
    margin: 0 2px;
  }
}

.site-footer {
  position: relative;
  margin-top: 56px;
  background: linear-gradient(168deg, #fdfcfa 0%, var(--cream) 38%, color-mix(in srgb, var(--paper) 88%, #fff) 100%);
  border-top: 1px solid var(--line);
  box-shadow: 0 -24px 48px rgba(31, 27, 22, 0.04);
}

.site-footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--pistachio) 85%, transparent),
    color-mix(in srgb, var(--honey) 90%, transparent),
    color-mix(in srgb, var(--petal) 75%, transparent),
    color-mix(in srgb, var(--sea) 55%, transparent),
    color-mix(in srgb, var(--pistachio) 85%, transparent)
  );
  background-size: 200% 100%;
  animation: footerGlow 14s ease-in-out infinite alternate;
}

@keyframes footerGlow {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 22px 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 32px 48px;
  align-items: start;
}

.footer-brand .brand {
  display: inline-flex;
}

.footer-tagline {
  margin: 14px 0 0;
  max-width: 22rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
  line-height: 1.4;
  color: rgba(31, 27, 22, 0.72);
  font-style: italic;
}

.footer-kicker {
  margin: 0 0 14px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(31, 27, 22, 0.48);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 9px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  border: 1px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.footer-links a:hover {
  background: rgba(147, 197, 114, 0.14);
  border-color: color-mix(in srgb, var(--pistachio) 45%, var(--line));
}

.footer-links a:active {
  transform: scale(0.98);
}

.footer-links a[aria-current="page"] {
  background: rgba(147, 197, 114, 0.2);
  border-color: color-mix(in srgb, var(--pistachio) 50%, var(--line));
  pointer-events: none;
}

.footer-col--contact .footer-mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 248, 210, 0.65));
  border: 1px solid color-mix(in srgb, var(--honey) 50%, var(--line));
  box-shadow: 0 6px 20px rgba(31, 27, 22, 0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.footer-col--contact .footer-mail:hover {
  box-shadow: 0 10px 28px rgba(31, 27, 22, 0.1);
  transform: translateY(-1px);
}

.footer-note {
  margin: 14px 0 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(31, 27, 22, 0.58);
  max-width: 16rem;
}

.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid color-mix(in srgb, var(--line) 80%, transparent);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 20px;
}

.copyright {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(31, 27, 22, 0.52);
}

.footer-legal {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(31, 27, 22, 0.55);
  max-width: 26rem;
  text-align: right;
}

@media (max-width: 820px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-legal {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer::before {
    animation: none;
    background-position: 50% 50%;
  }
}

/* Blog layout */
.blog-hero {
  margin: 10px 0 18px;
}

.layout-2 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 22px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 14px);
}

.sidebar ins {
  display: block;
  margin: 0 auto 14px;
}

.sky {
  display: block;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.filter-btn {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.75);
  padding: 9px 12px;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
}

.filter-btn[aria-pressed="true"] {
  border-color: color-mix(in srgb, var(--pistachio) 55%, var(--line));
  background: rgba(147, 197, 114, 0.16);
}

.post-grid {
  display: grid;
  gap: 12px;
}

.rack-title {
  margin: 0;
  font-size: 1.55rem;
}

.post-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.post-card:hover {
  border-color: color-mix(in srgb, var(--honey) 55%, var(--line));
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  width: fit-content;
  background: rgba(245, 245, 220, 0.55);
}

.post-card h2 {
  margin: 0;
  font-size: 1.35rem;
}

.excerpt {
  margin: 0;
  opacity: 0.78;
}

/* Article */
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 22px;
  align-items: start;
}

.article-header {
  padding: 10px 0 6px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  opacity: 0.78;
  margin-top: 10px;
}

.topic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.topic-tags span {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  font-size: 0.85rem;
}

.article-body {
  font-size: 1.05rem;
}

.article-body::after {
  content: "";
  display: table;
  clear: both;
}

.article-body p {
  margin: 0 0 14px;
}

.pullquote {
  margin: 18px 0;
  padding: 14px 16px 14px 18px;
  border-left: 5px solid color-mix(in srgb, var(--pistachio) 75%, var(--line));
  background: rgba(245, 245, 220, 0.35);
  border-radius: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  color: var(--ink);
}

.float-ad {
  float: right;
  width: 300px;
  max-width: 46%;
  margin: 6px 0 12px 16px;
}

.float-ad ins {
  display: block;
}

.readmore {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.readmore h2 {
  margin-top: 0;
}

.read-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.read-card {
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 14px;
  background: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  display: grid;
  gap: 8px;
  align-content: start;
}

.read-card:hover {
  border-color: color-mix(in srgb, var(--honey) 55%, var(--line));
}

.read-card .read-go {
  font-weight: 700;
  color: var(--ink);
}

.is-hidden {
  display: none !important;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    top: var(--nav-h);
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    max-height: calc(100vh - var(--nav-h) - 12px);
    overflow-y: auto;
    padding: 12px 16px 22px;
    gap: 6px;
    margin: 0;
    justify-content: flex-start;
    background: color-mix(in srgb, var(--paper) 94%, #fff);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    z-index: 45;
  }

  .nav.is-open {
    display: flex;
  }

  .header-trail {
    flex: 0 0 auto;
  }

  .header-inner {
    flex-wrap: nowrap;
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .layout-2 {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .sidebar--sky {
    display: none;
  }

  .sky {
    display: none;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .read-grid {
    grid-template-columns: 1fr;
  }

  .float-ad {
    float: none;
    width: 300px;
    max-width: 100%;
    margin: 14px auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ticker-track {
    animation: none;
  }

  .pulse {
    animation: none;
  }

  .hero.hero--mesh::before,
  .section.section--dots,
  .section.section--rips,
  .section.section--bloom,
  .section.section--rings,
  .section.section--ledger,
  .blog-hero.blog-hero--swirl {
    animation: none !important;
  }

  .faq-item,
  .faq-item summary::after {
    transition: none !important;
  }
}
