/* ==========================================================================
   Specality Thoughts -- design tokens (from the active DESIGN.md, verbatim)
   ========================================================================== */
:root {
  --bg: #FAF7F2;
  --surface: #FFFFFF;
  --ink: #2D3436;
  --accent: #4A5568;
  --border: #D8D0C1;
  --sand: #E5E1D8;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 32px;
  --space-xl: 64px;

  --radius-sm: 2px;
  --radius-md: 4px;

  --container-max: 1280px;
}

html {
  scroll-behavior: smooth;
  width: 100%;
}

/* Framed layout: equal inset margin on all four sides (top/right/bottom/left
   always match, at every breakpoint). body is the outer gutter (sand); the
   .st-page-frame wrapper is the actual site surface (ivory), holding the
   header, main content, and footer. This is an intentional design choice
   (not the old full-bleed setup) -- keep the two backgrounds distinct so the
   frame reads visually, and keep the padding identical on every side. */
:root {
  --frame-space: 16px;
}

@media (min-width: 640px) {
  :root { --frame-space: 24px; }
}

@media (min-width: 1024px) {
  :root { --frame-space: 32px; }
}

body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--sand);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  padding: var(--frame-space);
}

.st-page-frame {
  background: var(--bg);
  min-height: calc(100vh - (var(--frame-space) * 2));
  display: flex;
  flex-direction: column;
}

.st-page-frame > #main-content {
  flex: 1 0 auto;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

.st-container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 16px;
}

@media (min-width: 640px) {
  .st-container { padding-inline: 24px; }
}

@media (min-width: 1024px) {
  .st-container { padding-inline: 32px; }
}

.st-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;
}

/* ==========================================================================
   Header / nav
   ========================================================================== */
.st-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.st-header__row {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.st-logo {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 1.375rem;
  letter-spacing: -0.01em;
  color: var(--accent);
  transition: opacity 0.15s ease;
}

.st-logo:hover { opacity: 0.85; }

.st-logo__soft {
  color: var(--border);
  font-weight: 400;
  font-style: italic;
}

.st-nav {
  display: none;
  gap: var(--space-lg);
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (min-width: 768px) {
  .st-nav { display: flex; align-items: center; }
}

.st-nav a {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.st-nav a:hover { color: var(--accent); }

.st-nav .current-menu-item > a,
.st-nav a.is-active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.st-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.st-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.st-btn--ghost {
  background: rgba(229, 225, 216, 0.5);
  color: var(--accent);
  padding: 10px 16px;
}

.st-btn--ghost:hover { background: var(--sand); }

.st-btn--solid {
  background: var(--accent);
  color: #fff;
  padding: 10px 20px;
}

.st-btn--solid:hover { background: #334155; }

.st-btn__label--desktop-only {
  display: none;
}

@media (min-width: 640px) {
  .st-btn__label--desktop-only { display: inline; }
}

.st-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  color: #64748b;
  cursor: pointer;
}

@media (min-width: 768px) {
  .st-menu-toggle { display: none; }
}

.st-menu-toggle:hover { color: var(--accent); }

/* Mobile nav panel */
.st-mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.st-mobile-nav.is-open { display: block; }

@media (min-width: 768px) {
  .st-mobile-nav { display: none !important; }
}

.st-mobile-nav__inner {
  padding: 16px 16px 24px;
}

.st-mobile-nav__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #94a3b8;
  padding: 0 12px;
  display: block;
  margin-bottom: 8px;
}

.st-mobile-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.st-mobile-nav a {
  display: block;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #475569;
}

.st-mobile-nav a:hover {
  background: var(--sand);
  color: var(--accent);
}

.st-mobile-nav hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 8px 0;
}

.st-mobile-nav .st-btn {
  width: 100%;
  justify-content: center;
  padding: 10px 0;
  margin-top: 8px;
}

.st-mobile-nav .st-btn--ghost {
  border: 1px solid var(--border);
  background: transparent;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.st-footer {
  background: var(--bg);
  padding: 64px 0 32px;
  color: var(--ink);
}

.st-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .st-footer__grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 48px;
  }
  .st-footer__brand { grid-column: span 4; }
  .st-footer__pages { grid-column: 5 / span 3; }
  .st-footer__newsletter { grid-column: 8 / span 5; }
}

.st-footer__logo {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
}

.st-footer__logo:hover { opacity: 0.8; }

.st-footer__desc {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: #64748b;
  max-width: 32ch;
}

.st-footer h5 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.st-footer__pages ul {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
}

.st-footer__pages a {
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
}

.st-footer__pages a:hover { color: var(--accent); }

.st-newsletter-box {
  background: rgba(229, 225, 216, 0.3);
  padding: 20px;
  border-radius: var(--radius-sm);
}

.st-newsletter-box h5 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.st-newsletter-box p {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.6;
  color: #64748b;
  margin-bottom: 12px;
}

.st-newsletter-form {
  display: flex;
  gap: 8px;
}

.st-newsletter-form input[type="email"] {
  flex: 1;
  font-size: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: #1e293b;
}

.st-newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--accent);
}

.st-newsletter-form input[type="email"]::placeholder { color: #94a3b8; }

.st-newsletter-form button {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}

.st-newsletter-form button:hover { background: #1e293b; }

.st-newsletter-success {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #065f46;
  background: #ecfdf5;
  padding: 10px;
  border-radius: var(--radius-sm);
}

/* The sidebar form carries its own top margin; keep it when the form is
   swapped out for the success message. */
.st-side-box .st-newsletter-success { margin-top: 20px; }

/* ==========================================================================
   Toast notifier (bottom-centre confirmation pill)
   ========================================================================== */
.st-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 20px);
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: calc(100vw - 32px);
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 24px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 25px 50px -12px rgba(2, 6, 23, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.st-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.st-toast__dot { flex-shrink: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--border); animation: st-toast-pulse 2s ease-in-out infinite; }
@keyframes st-toast-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.st-footer__bottom {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

@media (min-width: 640px) {
  .st-footer__bottom { flex-direction: row; }
}

.st-footer__copyright {
  font-size: 11px;
  font-weight: 300;
  color: #94a3b8;
  text-align: center;
}

@media (min-width: 640px) {
  .st-footer__copyright { text-align: left; }
}

.st-social {
  display: flex;
  gap: 8px;
}

.st-social a {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: #94a3b8;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.st-social a:hover {
  background: var(--sand);
  color: var(--accent);
}

.st-social a.st-social--tiktok {
  border-radius: 50%;
  background: #282a2d;
  color: #fff;
}

.st-social a.st-social--tiktok:hover { background: #0f172a; }

/* Fill is intentionally NOT forced here: the Instagram icon is stroke-based
   (fill="none" in its markup) and must stay unfilled, while TikTok/X declare
   fill="currentColor" on their own <svg> tag. Forcing fill globally solid-fills
   the Instagram glyph so it renders as a blank colored square instead of the logo. */
.st-social svg { width: 16px; height: 16px; }

/* ==========================================================================
   Archive / category page  (weights/sizes matched to React CategoryView)
   ========================================================================== */
.st-archive { padding-block: var(--space-xl); }
.st-backlink {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-size: 12px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent);
  margin-bottom: var(--space-xl);
}
.st-backlink:hover { color: #64748b; }
.st-archive__head-wrap { padding-bottom: var(--space-lg); margin-bottom: var(--space-xl); }
.st-archive__flower { display:block; font-size: 1.875rem; line-height:1; color: var(--accent); margin-bottom: 8px; }
.st-archive__title {
  font-family: var(--font-heading); font-style: italic; font-weight: 900;
  font-size: 1.875rem; color: var(--accent); line-height: 1.15;
  margin: 0;
}
@media (min-width: 640px) { .st-archive__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .st-archive__title { font-size: 3rem; } }
.st-archive__desc { font-size: 14px; font-weight: 300; color: #64748b; max-width: 60ch; margin: 12px 0 0; }

/* Card grid */
.st-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
@media (min-width: 768px) { .st-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .st-grid { grid-template-columns: repeat(3, 1fr); } }

.st-card { display: flex; flex-direction: column; height: 100%; background: var(--surface); }
.st-card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand); display: block; }
.st-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.st-card:hover .st-card__media img { transform: scale(1.02); }
.st-card__body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.st-card__cat {
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(74,85,104,0.7);
}
.st-card__title {
  font-family: var(--font-heading); font-style: italic; font-weight: 900;
  font-size: 1rem; line-height: 1.375; color: var(--accent); margin: 8px 0 0;
  transition: color 0.15s ease;
}
@media (min-width: 640px) { .st-card__title { font-size: 1.125rem; } }
.st-card__title a { color: inherit; }
.st-card:hover .st-card__title a { color: #64748b; }
.st-card__excerpt {
  font-size: 12px; font-weight: 300; line-height: 1.625; color: #64748b; margin: 8px 0 0;
  display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden;
}
@media (min-width: 640px) { .st-card__excerpt { font-size: 14px; } }
.st-card__foot { margin-top: auto; padding-top: 16px; display: flex; justify-content: flex-end; }
.st-card__more {
  font-family: var(--font-body); font-size: 10px; font-weight: 700;
  text-transform: none; letter-spacing: 0; color: var(--accent);
}
.st-card:hover .st-card__more { text-decoration: underline; }

/* ==========================================================================
   Single post  (weights/sizes matched to React PostPageView)
   ========================================================================== */
.st-single { padding-block: var(--space-xl); }
.st-single__layout { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
@media (min-width: 1024px) {
  .st-single__layout { grid-template-columns: repeat(12, 1fr); gap: 48px; }
  .st-single__main { grid-column: span 8; }
  .st-single__aside { grid-column: span 4; }
}
.st-breadcrumb {
  display: flex; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.02em;
  color: #94a3b8; margin-bottom: 24px; gap: 8px; flex-wrap: wrap; align-items: center;
}
.st-breadcrumb a { color: #94a3b8; }
.st-breadcrumb a:hover { color: var(--accent); }
.st-breadcrumb .sep { color: #cbd5e1; }
.st-breadcrumb .current { color: var(--accent); font-weight: 700; }

.st-article { background: var(--surface); padding: 24px; }
@media (min-width: 640px) { .st-article { padding: 40px; } }
.st-article__head { padding-bottom: 24px; margin-bottom: 32px; }
.st-article__cat {
  display: inline-flex; align-items: center; font-family: var(--font-body); font-size: 10px;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); background: var(--sand); padding: 4px 12px;
}
.st-article__title {
  font-family: var(--font-heading); font-style: italic; font-weight: 900;
  font-size: 1.875rem; line-height: 1.15; letter-spacing: -0.01em; color: var(--accent); margin: 16px 0 0;
}
@media (min-width: 640px) { .st-article__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .st-article__title { font-size: 3rem; } }
.st-article__byline { margin-top: 24px; display: flex; align-items: center; gap: 12px; }
.st-article__byline img { width: 40px; height: 40px; object-fit: cover; background: var(--sand); }
.st-article__byline span { font-size: 14px; font-weight: 600; color: #1e293b; }
.st-article__hero { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; background: var(--sand); margin-bottom: 32px; display: block; }
.st-article__body { color: #334155; font-weight: 300; font-size: 14px; line-height: 1.625; }
@media (min-width: 640px) { .st-article__body { font-size: 16px; } }
.st-article__body > p + p { margin-top: 24px; }
.st-article__body > p:first-child::first-letter {
  font-family: var(--font-heading); font-style: italic; font-weight: 900;
  font-size: 3rem; line-height: 0.8; float: left; margin-right: 12px; color: var(--accent);
}

/* Sidebar */
.st-sidebar { display: flex; flex-direction: column; gap: var(--space-lg); position: sticky; top: 96px; }
.st-side-author { background: var(--bg); padding: 24px; text-align: center; }
.st-side-author img { width: 80px; height: 80px; object-fit: cover; background: var(--sand); margin: 0 auto; display: block; }
.st-side-author h3 { font-family: var(--font-heading); font-style: italic; font-weight: 900; font-size: 1.125rem; color: var(--accent); margin: 16px 0 0; }
.st-side-author__role { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: #94a3b8; margin: 2px 0 0; }
.st-side-author p.bio { font-size: 12px; font-weight: 300; line-height: 1.625; color: #64748b; margin: 12px 0 0; }
.st-side-box { background: rgba(229, 225, 216, 0.5); padding: 24px; color: var(--accent); }
.st-side-box__flower { font-size: 1.25rem; color: var(--accent); }
.st-side-box h3 { font-family: var(--font-heading); font-style: italic; font-weight: 900; font-size: 1.125rem; line-height: 1.15; margin: 4px 0 0; }
@media (min-width: 640px) { .st-side-box h3 { font-size: 1.25rem; } }
.st-side-box p { font-size: 12px; font-weight: 300; line-height: 1.625; color: #475569; margin: 8px 0 0; }
.st-side-box form { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.st-side-box input { width: 100%; font-size: 12px; padding: 10px 16px; background: #fff; border: 1px solid transparent; color: var(--accent); box-sizing: border-box; }
.st-side-box input::placeholder { color: #94a3b8; }
.st-side-box input:focus { outline: none; box-shadow: 0 0 0 1px var(--accent); }
.st-side-box button { width: 100%; font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; background: var(--accent); color: #fff; border: none; padding: 10px; cursor: pointer; }
.st-side-box button:hover { background: #334155; }
.st-recent { background: var(--surface); padding: 24px; }
.st-recent h3 { font-family: var(--font-heading); font-style: italic; font-weight: 900; font-size: 1rem; color: var(--accent); padding-bottom: 12px; margin: 0 0 16px; }
.st-recent ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.st-recent li { display: flex; gap: 12px; align-items: center; padding: 6px; transition: background 0.15s ease; }
.st-recent li:hover { background: rgba(229,225,216,0.25); }
.st-recent__thumb { width: 56px; height: 56px; flex-shrink: 0; object-fit: cover; background: var(--sand); }
.st-recent__cat { font-family: var(--font-mono); font-size: 8px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #64748b; display: block; }

/* ==========================================================================
   About Us page  (matched to React AboutUsView)
   ========================================================================== */
.st-about { padding-block: var(--space-xl); }
.st-about__head { text-align: center; max-width: 640px; margin: 0 auto var(--space-xl); }
.st-about__eyebrow { font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #94a3b8; }
.st-about__title { font-family: var(--font-heading); font-style: italic; font-weight: 900; font-size: 2.25rem; color: var(--accent); margin: 12px 0 0; }
@media (min-width: 640px) { .st-about__title { font-size: 3rem; } }
.st-about__subtitle { color: #64748b; font-weight: 300; margin-top: 16px; font-size: 13px; line-height: 1.625; }
@media (min-width: 640px) { .st-about__subtitle { font-size: 14px; } }

.st-about__collage { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); margin-bottom: var(--space-xl); align-items: stretch; }
@media (min-width: 640px) { .st-about__collage { grid-template-columns: repeat(12, 1fr); } }
.st-about__img-lg { grid-column: span 5; height: 300px; overflow: hidden; background: var(--sand); }
@media (min-width: 640px) { .st-about__img-lg { height: 450px; } }
.st-about__img-lg img, .st-about__img-col > div img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s ease; }
.st-about__img-lg:hover img, .st-about__img-col > div:hover img { transform: scale(1.02); }
.st-about__img-col { grid-column: span 4; display: flex; flex-direction: column; gap: var(--space-lg); }
.st-about__img-col > div { height: 213px; overflow: hidden; background: var(--sand); }
.st-about__quote { grid-column: span 3; background: var(--accent); color: #fff; padding: 32px; display: flex; flex-direction: column; justify-content: space-between; }
.st-about__quote-mark { font-size: 2.25rem; line-height: 1; font-family: var(--font-heading); color: var(--border); }
.st-about__quote-text { font-family: var(--font-heading); font-style: italic; font-size: 13px; line-height: 1.625; color: rgba(250, 247, 242, 0.9); }
.st-about__quote-flower { margin-top: 24px; font-size: 1.5rem; color: var(--border); }

.st-about__body { max-width: 768px; margin: 0 auto; background: var(--surface); padding: 32px; color: #334155; font-weight: 300; font-size: 13px; line-height: 1.625; }
@media (min-width: 640px) { .st-about__body { padding: 48px; font-size: 14px; } }
.st-about__body > * + * { margin-top: 24px; }
.st-about__body > p:first-child { font-family: var(--font-heading); font-style: italic; font-weight: 400; font-size: 15px; color: var(--accent); border-left: 2px solid var(--accent); padding-left: 16px; }
@media (min-width: 640px) { .st-about__body > p:first-child { font-size: 16px; } }

/* ==========================================================================
   Contact Us page  (matched to React ContactUsView)
   ========================================================================== */
.st-contact { padding-block: var(--space-xl); }
.st-contact__grid { max-width: 1024px; margin: 0 auto; background: var(--surface); display: grid; grid-template-columns: 1fr; overflow: hidden; }
@media (min-width: 768px) { .st-contact__grid { grid-template-columns: repeat(12, 1fr); } }
.st-contact__media { grid-column: span 5; position: relative; min-height: 300px; background: var(--sand); }
@media (min-width: 768px) { .st-contact__media { min-height: 0; } }
.st-contact__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.st-contact__media-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(74, 85, 104, 0.9), rgba(74, 85, 104, 0.4) 60%, transparent); display: flex; flex-direction: column; justify-content: flex-end; padding: 32px; color: #fff; }
.st-contact__media-overlay .flower { font-size: 1.875rem; color: var(--border); margin-bottom: 4px; display: block; }
.st-contact__media-overlay h3 { font-family: var(--font-heading); font-style: italic; font-weight: 900; font-size: 1.5rem; margin: 0; }
.st-contact__media-overlay p { font-size: 12px; font-weight: 300; margin-top: 8px; max-width: 280px; color: #e2e8f0; }

.st-contact__form-side { grid-column: span 7; padding: 24px; display: flex; flex-direction: column; justify-content: center; }
@media (min-width: 640px) { .st-contact__form-side { padding: 40px 48px; } }
.st-contact__eyebrow { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: #94a3b8; }
.st-contact__title { font-family: var(--font-heading); font-style: italic; font-weight: 900; font-size: 1.875rem; color: var(--accent); margin: 4px 0 0; }
.st-contact__intro { color: #94a3b8; font-weight: 300; font-size: 13px; margin-top: 8px; line-height: 1.625; }

.st-contact-form { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.st-contact-form__row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .st-contact-form__row { grid-template-columns: 1fr 1fr; } }
.st-contact-form label { display: block; font-size: 11px; font-weight: 700; color: var(--accent); text-transform: uppercase; letter-spacing: 0.05em; font-family: var(--font-mono); }
.st-contact-form input, .st-contact-form textarea { margin-top: 8px; width: 100%; border: 1px solid var(--border); background: var(--bg); padding: 12px 16px; font-size: 13px; color: var(--accent); box-sizing: border-box; font-family: var(--font-body); }
.st-contact-form input::placeholder, .st-contact-form textarea::placeholder { color: #94a3b8; }
.st-contact-form input:focus, .st-contact-form textarea:focus { outline: none; box-shadow: 0 0 0 1px var(--accent); background: #fff; }
.st-contact-form textarea { resize: none; }
.st-contact-form button { width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--accent); color: #fff; border: none; padding: 14px; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; font-family: var(--font-body); }
.st-contact-form button:hover { background: #334155; }
.st-contact-form button:disabled { opacity: 0.6; cursor: default; }

.st-contact__success { text-align: center; padding: 48px 0; }
.st-contact__success-icon { height: 64px; width: 64px; background: rgba(229, 225, 216, 0.5); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: var(--accent); }
.st-contact__success h2 { font-family: var(--font-heading); font-style: italic; font-weight: 900; font-size: 1.5rem; color: var(--accent); margin: 0; }
.st-contact__success p { color: #64748b; font-size: 14px; font-weight: 300; max-width: 360px; margin: 12px auto 0; line-height: 1.625; }
.st-contact__success button { margin-top: 24px; display: inline-flex; align-items: center; gap: 6px; border: 1px solid var(--accent); background: transparent; color: var(--accent); padding: 10px 20px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer; font-family: var(--font-body); }
.st-contact__success button:hover { background: var(--accent); color: #fff; }
.st-contact-form[hidden], .st-contact__success[hidden] { display: none; }
.st-contact__error { color: #b91c1c; font-size: 12px; margin-top: -8px; }

/* ==========================================================================
   Legal pages  (Terms / Privacy / Cookie — matched to React LegalPageView)
   ========================================================================== */
.st-legal { padding-block: var(--space-xl); max-width: 896px; margin-inline: auto; }
.st-legal__article { background: var(--surface); padding: 24px; }
@media (min-width: 640px) { .st-legal__article { padding: 48px; } }
.st-legal__head { padding-bottom: 24px; margin-bottom: 32px; text-align: center; }
@media (min-width: 640px) { .st-legal__head { text-align: left; } }
.st-legal__title { font-family: var(--font-heading); font-style: italic; font-weight: 900; font-size: 1.875rem; color: var(--accent); margin: 4px 0 0; }
@media (min-width: 640px) { .st-legal__title { font-size: 2.25rem; } }
.st-legal__updated { font-family: var(--font-mono); font-size: 11px; color: #94a3b8; margin-top: 8px; }
.st-legal__body { color: #475569; font-weight: 300; font-size: 13px; line-height: 1.625; }
@media (min-width: 640px) { .st-legal__body { font-size: 14px; } }
.st-legal__body > * + * { margin-top: 24px; }
.st-legal__body > p:first-child { font-weight: 500; color: #334155; font-style: italic; }
.st-legal__body h2 { font-family: var(--font-heading); font-style: italic; font-weight: 900; font-size: 1.0625rem; color: var(--accent); margin: 0 0 12px; }
@media (min-width: 640px) { .st-legal__body h2 { font-size: 1.125rem; } }
.st-legal__body ul { margin: 8px 0 0; padding-left: 20px; }
.st-legal__body li { margin-top: 4px; }
.st-legal__foot { border-top: 1px solid var(--border); margin-top: 40px; padding-top: 24px; text-align: center; }
.st-recent__title { font-family: var(--font-heading); font-style: italic; font-weight: 900; font-size: 12px; line-height: 1.375; color: var(--accent); margin-top: 2px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.st-recent li:hover .st-recent__title { color: #64748b; }

/* ==========================================================================
   Featured Post — Elementor widget (theme-bundled)
   ========================================================================== */
.st-featured-post { display: grid; grid-template-columns: 1fr; background: var(--surface); overflow: hidden; }
@media (min-width: 768px) { .st-featured-post { grid-template-columns: 1fr 1fr; align-items: stretch; } }
.st-featured-post__media { position: relative; background: var(--surface); min-height: 320px; }
@media (min-width: 1024px) { .st-featured-post__media { min-height: 420px; } }
.st-featured-post__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.st-featured-post__body { padding: 40px 32px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; gap: 22px; }
@media (min-width: 640px) { .st-featured-post__body { padding: 56px 48px; } }
@media (min-width: 1280px) { .st-featured-post__body { padding: 64px; } }
.st-featured-post__cat { display: inline-flex; align-items: center; font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); background: var(--sand); padding: 8px 16px; text-decoration: none; }
a.st-featured-post__cat:hover { color: #334155; }
.st-featured-post__title { margin: 0; font-family: var(--font-heading); font-style: italic; font-weight: 900; font-size: 1.875rem; line-height: 1.2; letter-spacing: -0.01em; color: var(--accent); }
@media (min-width: 640px) { .st-featured-post__title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .st-featured-post__title { font-size: 2.75rem; line-height: 1.15; } }
.st-featured-post__title a { color: inherit; text-decoration: none; }
.st-featured-post__title a:hover { color: #334155; }
.st-featured-post__excerpt { margin: 0; font-family: var(--font-body); font-weight: 300; font-size: 15px; line-height: 1.65; color: #64748b; max-width: 46ch; }
@media (min-width: 1024px) { .st-featured-post__excerpt { font-size: 16px; } }
.st-featured-post__author { display: flex; align-items: center; gap: 12px; }
.st-featured-post__avatar { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; background: var(--sand); display: block; }
.st-featured-post__author-name { font-family: var(--font-body); font-size: 13px; font-weight: 700; color: var(--ink); }
.st-featured-post__more { margin-top: 4px; }
.st-featured-post__more { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); text-decoration: none; }
.st-featured-post__more:hover { text-decoration: underline; }

/* ==========================================================================
   Category Post Grid — Elementor widget (theme-bundled)
   Card grid reuses .st-grid / .st-card (see category.php); this only adds
   the section header row.
   ========================================================================== */
.st-cat-grid__head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding-bottom: var(--space-md); margin-bottom: var(--space-lg); }
.st-cat-grid__title { margin: 0; font-family: var(--font-heading); font-style: italic; font-weight: 900; font-size: 1.75rem; color: var(--accent); }
@media (min-width: 640px) { .st-cat-grid__title { font-size: 2rem; } }
.st-cat-grid__view-all { flex-shrink: 0; font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); text-decoration: none; white-space: nowrap; }
.st-cat-grid__view-all:hover { text-decoration: underline; }

/* ==========================================================================
   Category Feature + List — Elementor widget (theme-bundled)
   Reuses .st-cat-grid__head, .st-card__cat, .st-card__more.
   ========================================================================== */
.st-cat-feature__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
@media (min-width: 1024px) { .st-cat-feature__grid { grid-template-columns: 1fr 1fr; gap: var(--space-xl); align-items: start; } }

.st-cat-feature__main { display: flex; flex-direction: column; background: var(--surface); }
.st-cat-feature__main-media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--sand); }
.st-cat-feature__main-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.st-cat-feature__main:hover .st-cat-feature__main-media img { transform: scale(1.02); }
.st-cat-feature__main-body { padding-top: 20px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.st-cat-feature__main-title { margin: 0; font-family: var(--font-heading); font-style: italic; font-weight: 900; font-size: 1.5rem; line-height: 1.25; color: var(--accent); }
@media (min-width: 640px) { .st-cat-feature__main-title { font-size: 1.75rem; } }
.st-cat-feature__main-title a { color: inherit; }
.st-cat-feature__main:hover .st-cat-feature__main-title a { color: #64748b; }
.st-cat-feature__main-excerpt { margin: 0; font-family: var(--font-body); font-weight: 300; font-size: 14px; line-height: 1.625; color: #64748b; }
.st-cat-feature__main-foot { width: 100%; display: flex; justify-content: flex-end; margin-top: 4px; }

.st-cat-feature__list { display: flex; flex-direction: column; gap: var(--space-lg); }
.st-cat-feature__item { display: grid; grid-template-columns: 80px 1fr; gap: 16px; background: var(--surface); padding: 16px 20px; }
.st-cat-feature__item-media { width: 80px; height: 80px; overflow: hidden; background: var(--sand); display: block; }
.st-cat-feature__item-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.st-cat-feature__item-body { min-width: 0; display: flex; flex-direction: column; }
.st-cat-feature__item-cat { display: block; font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.st-cat-feature__item-title { margin: 4px 0; font-family: var(--font-heading); font-style: italic; font-weight: 700; font-size: 0.9375rem; line-height: 1.3; color: var(--accent); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.st-cat-feature__item-title a { color: inherit; }
.st-cat-feature__item:hover .st-cat-feature__item-title a { color: #64748b; }
.st-cat-feature__item-excerpt { margin: 0; font-family: var(--font-body); font-weight: 300; font-size: 12.5px; line-height: 1.5; color: #64748b; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ==========================================================================
   Hero Featured Post — Elementor widget (theme-bundled)
   ========================================================================== */
.st-hero-post { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); background: var(--surface); padding: 24px; }
@media (min-width: 1024px) { .st-hero-post { grid-template-columns: 7fr 5fr; gap: var(--space-xl); align-items: center; padding: 32px; } }
.st-hero-post__media { position: relative; display: block; aspect-ratio: 16 / 10; overflow: hidden; background: var(--sand); }
.st-hero-post__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s ease; }
.st-hero-post:hover .st-hero-post__media img { transform: scale(1.02); }
.st-hero-post__body { display: flex; flex-direction: column; align-items: flex-start; }
.st-hero-post__cat { display: inline-flex; align-items: center; font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); background: var(--sand); padding: 6px 14px; text-decoration: none; }
a.st-hero-post__cat:hover { color: #334155; }
.st-hero-post__title { margin: 16px 0 0; font-family: var(--font-heading); font-style: italic; font-weight: 900; font-size: 1.875rem; line-height: 1.15; letter-spacing: -0.01em; color: var(--accent); }
@media (min-width: 640px) { .st-hero-post__title { font-size: 2.5rem; } }
@media (min-width: 1024px) { .st-hero-post__title { font-size: 3rem; } }
.st-hero-post__title a { color: inherit; text-decoration: none; }
.st-hero-post__title a:hover { color: #334155; }
.st-hero-post__excerpt { margin: 16px 0 0; font-family: var(--font-body); font-weight: 300; font-size: 14px; line-height: 1.625; color: #64748b; }
@media (min-width: 640px) { .st-hero-post__excerpt { font-size: 15px; } }
.st-hero-post__author { margin-top: 24px; display: flex; align-items: center; gap: 12px; }
.st-hero-post__author img { width: 36px; height: 36px; object-fit: cover; background: var(--sand); display: block; }
.st-hero-post__author span { font-family: var(--font-body); font-size: 13px; font-weight: 600; color: var(--ink); }
.st-hero-post__more { margin-top: 32px; display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); text-decoration: none; }
.st-hero-post__more:hover { color: #64748b; }
.st-hero-post__more svg { transition: transform 0.2s ease; }
.st-hero-post__more:hover svg { transform: translateX(3px); }

/* ==========================================================================
   Category Spotlight — Elementor widget (theme-bundled)
   Single card reuses .st-card*; only the split feature card is new.
   ========================================================================== */
.st-cat-spotlight__grid { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
@media (min-width: 768px) { .st-cat-spotlight__grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.st-cat-spotlight__feature { grid-column: 1 / -1; display: flex; flex-direction: column; background: var(--surface); }
@media (min-width: 768px) { .st-cat-spotlight__feature { grid-column: span 2; flex-direction: row; } }
.st-cat-spotlight__feature-media { position: relative; display: block; aspect-ratio: 4 / 3; overflow: hidden; background: var(--sand); }
@media (min-width: 768px) { .st-cat-spotlight__feature-media { width: 50%; aspect-ratio: auto; } }
.st-cat-spotlight__feature-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.st-cat-spotlight__feature:hover .st-cat-spotlight__feature-media img { transform: scale(1.02); }
.st-cat-spotlight__feature-body { padding: 24px; display: flex; flex-direction: column; align-items: flex-start; flex: 1; }
@media (min-width: 768px) { .st-cat-spotlight__feature-body { width: 50%; padding: 32px; justify-content: space-between; } }
.st-cat-spotlight__feature-title { margin: 12px 0 0; font-family: var(--font-heading); font-style: italic; font-weight: 900; font-size: 1.25rem; line-height: 1.25; color: var(--accent); }
@media (min-width: 640px) { .st-cat-spotlight__feature-title { font-size: 1.5rem; } }
.st-cat-spotlight__feature-title a { color: inherit; }
.st-cat-spotlight__feature:hover .st-cat-spotlight__feature-title a { color: #64748b; }
.st-cat-spotlight__feature-excerpt { margin: 12px 0 0; font-family: var(--font-body); font-weight: 300; font-size: 13px; line-height: 1.625; color: #64748b; }
@media (min-width: 640px) { .st-cat-spotlight__feature-excerpt { font-size: 14px; } }
.st-cat-spotlight__feature-foot { margin-top: auto; padding-top: 16px; width: 100%; display: flex; justify-content: flex-end; }

/* ==========================================================================
   Search overlay (header)
   ========================================================================== */
.st-search-overlay[hidden] { display: none; }
.st-search-overlay { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: flex-start; justify-content: center; padding: 16px; overflow-y: auto; }
@media (min-width: 640px) { .st-search-overlay { padding: 40px; } }
.st-search-overlay__backdrop { position: absolute; inset: 0; background: rgba(2, 6, 23, 0.7); }
.st-search-overlay__panel { position: relative; width: 100%; max-width: 672px; margin-top: 32px; background: var(--bg); border: 1px solid var(--border); padding: 24px; }
@media (min-width: 640px) { .st-search-overlay__panel { padding: 32px; } }
.st-search-overlay__close { position: absolute; top: 12px; right: 12px; display: inline-flex; padding: 6px; background: transparent; border: none; color: #94a3b8; cursor: pointer; line-height: 0; }
.st-search-overlay__close:hover { background: var(--sand); color: var(--accent); }
.st-search-overlay__head { display: flex; align-items: center; gap: 8px; }
.st-search-overlay__head span { font-size: 1.125rem; color: var(--accent); }
.st-search-overlay__head h2 { margin: 0; font-family: var(--font-heading); font-style: italic; font-weight: 700; font-size: 1.125rem; color: var(--accent); }
.st-search-overlay__form { position: relative; margin-top: 16px; }
.st-search-overlay__form svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: #94a3b8; pointer-events: none; }
.st-search-overlay__form input { width: 100%; box-sizing: border-box; background: var(--surface); border: 1px solid var(--border); padding: 12px 16px 12px 40px; font-family: var(--font-body); font-size: 14px; font-weight: 300; color: var(--ink); }
.st-search-overlay__form input::placeholder { color: #94a3b8; }
.st-search-overlay__form input:focus { outline: none; border-color: var(--accent); }
.st-search-overlay__hint { margin: 24px 0 8px; text-align: center; font-family: var(--font-body); font-size: 12px; font-weight: 300; color: #94a3b8; }

/* ==========================================================================
   Newsletter subscribe modal (header)
   ========================================================================== */
.st-sub-modal[hidden] { display: none; }
.st-sub-modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 16px; overflow-y: auto; }
.st-sub-modal__backdrop { position: absolute; inset: 0; background: rgba(2, 6, 23, 0.7); }
.st-sub-modal__panel { position: relative; width: 100%; max-width: 448px; background: var(--bg); border: 1px solid var(--border); padding: 24px; }
@media (min-width: 640px) { .st-sub-modal__panel { padding: 32px; } }
.st-sub-modal__close { position: absolute; top: 12px; right: 12px; display: inline-flex; padding: 6px; background: transparent; border: none; color: #94a3b8; cursor: pointer; line-height: 0; }
.st-sub-modal__close:hover { background: var(--sand); color: var(--accent); }

.st-sub-modal__head { text-align: center; padding-bottom: 8px; }
.st-sub-modal__head > span { font-size: 1.875rem; line-height: 1; color: var(--accent); }
.st-sub-modal__head h2 { margin: 8px 0 0; font-family: var(--font-heading); font-style: italic; font-weight: 700; font-size: 1.5rem; color: var(--accent); }
.st-sub-modal__head p { margin: 8px auto 0; font-family: var(--font-body); font-size: 12px; font-weight: 300; line-height: 1.625; color: #64748b; }

.st-sub-modal__field { margin-top: 16px; }
.st-sub-modal__field label { display: block; font-family: var(--font-mono); font-size: 10px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); }
.st-sub-modal__field input { margin-top: 6px; width: 100%; box-sizing: border-box; background: var(--surface); border: 1px solid var(--border); padding: 10px 16px; font-family: var(--font-body); font-size: 12px; color: var(--ink); }
.st-sub-modal__field input::placeholder { color: #94a3b8; }
.st-sub-modal__field input:focus { outline: none; box-shadow: 0 0 0 1px var(--accent); border-color: var(--accent); }

.st-sub-modal__error { margin: 12px 0 0; font-family: var(--font-body); font-size: 12px; color: #b91c1c; }
.st-sub-modal__error[hidden] { display: none; }
.st-sub-modal__submit { width: 100%; margin-top: 20px; background: var(--accent); color: #fff; border: none; padding: 14px; font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer; }
.st-sub-modal__submit:hover { background: #334155; }
.st-sub-modal__submit:disabled { opacity: 0.6; cursor: default; }
.st-sub-modal__note { margin: 16px 0 0; text-align: center; font-family: var(--font-mono); font-size: 9px; line-height: 1.5; color: #94a3b8; }

.st-sub-modal__form[hidden], .st-sub-modal__success[hidden] { display: none; }
.st-sub-modal__success { text-align: center; padding: 32px 0; }
.st-sub-modal__success-flower { font-size: 2.25rem; line-height: 1; color: var(--accent); }
.st-sub-modal__success h2 { margin: 12px 0 0; font-family: var(--font-heading); font-style: italic; font-weight: 700; font-size: 1.25rem; color: var(--accent); }
.st-sub-modal__success p { margin: 12px auto 0; max-width: 20rem; font-family: var(--font-body); font-size: 12px; font-weight: 300; line-height: 1.625; color: #64748b; }

/* Inline search form (search results + 404) */
.st-search-inline { display: flex; gap: 8px; margin-top: 20px; max-width: 480px; }
.st-search-inline input { flex: 1; min-width: 0; background: var(--surface); border: 1px solid var(--border); padding: 12px 16px; font-family: var(--font-body); font-size: 14px; font-weight: 300; color: var(--ink); }
.st-search-inline input::placeholder { color: #94a3b8; }
.st-search-inline input:focus { outline: none; border-color: var(--accent); }
.st-search-inline button { flex-shrink: 0; background: var(--accent); color: #fff; border: none; padding: 12px 24px; font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; }
.st-search-inline button:hover { background: #334155; }

/* Empty / no-results state */
.st-empty { padding: var(--space-xl) 0; text-align: center; }
.st-empty__lead { margin: 0; font-family: var(--font-heading); font-style: italic; font-weight: 700; font-size: 1.25rem; color: var(--accent); }
.st-empty__hint { margin: 12px auto 0; max-width: 52ch; font-family: var(--font-body); font-size: 13px; font-weight: 300; line-height: 1.625; color: #64748b; }
.st-empty__cats { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.st-empty__cat { display: inline-flex; align-items: center; background: var(--sand); color: var(--accent); padding: 8px 16px; font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; }
.st-empty__cat:hover { background: var(--accent); color: #fff; }

/* ==========================================================================
   404 page
   ========================================================================== */
.st-404 { padding-block: var(--space-xl); }
.st-404__inner { max-width: 640px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.st-404__flower { font-size: 2rem; line-height: 1; color: var(--accent); }
.st-404__code { margin-top: 16px; font-family: var(--font-mono); font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #94a3b8; }
.st-404__title { margin: 12px 0 0; font-family: var(--font-heading); font-style: italic; font-weight: 900; font-size: 2.25rem; line-height: 1.15; color: var(--accent); }
@media (min-width: 640px) { .st-404__title { font-size: 3rem; } }
.st-404__text { margin: 16px 0 0; font-family: var(--font-body); font-size: 14px; font-weight: 300; line-height: 1.625; color: #64748b; max-width: 52ch; }
.st-404 .st-search-inline { width: 100%; margin-inline: auto; }
.st-404__actions { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.st-404__cats { margin-top: 40px; width: 100%; }
.st-404__cats-label { display: block; font-family: var(--font-mono); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #94a3b8; margin-bottom: 12px; }
.st-404__cats > div { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.st-404__recent { margin-top: var(--space-xl); padding-top: var(--space-xl); border-top: 1px solid var(--border); }