/* Tiny Office Finds — product-forward design system */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Fraunces:ital,opsz,wght@0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&display=swap');

:root {
  --bg: #f4f1eb;
  --bg-elevated: #ffffff;
  --bg-muted: #ebe6de;
  --text: #141210;
  --text-muted: #5c574f;
  --text-soft: #8a847a;
  --accent: #0f766e;
  --accent-bright: #14b8a6;
  --accent-hover: #0d5f59;
  --accent-soft: rgba(15, 118, 110, 0.12);
  --cta: #ea580c;
  --cta-hover: #c2410c;
  --cta-soft: #fff7ed;
  --star: #f59e0b;
  --border: #e4dfd6;
  --shadow-sm: 0 1px 2px rgba(20, 18, 16, 0.05);
  --shadow-md: 0 12px 40px rgba(20, 18, 16, 0.1);
  --shadow-card: 0 4px 24px rgba(20, 18, 16, 0.07);
  --radius: 18px;
  --radius-sm: 12px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --max: 1120px;
  --content: 740px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; font-weight: 600; }
a:hover { color: var(--accent-hover); }

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
}
.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.site-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.site-logo:hover { color: var(--accent); text-decoration: none; }
.site-logo__mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(145deg, var(--accent-bright), var(--accent));
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.site-logo span { color: var(--accent); }
.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-nav a {
  color: var(--text-muted);
  font-weight: 600;
  padding: 0.35rem 0.15rem;
}
.site-nav a:hover { color: var(--text); text-decoration: none; }
.site-nav .nav-cta {
  background: var(--cta);
  color: #fff !important;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  font-size: 0.85rem;
}
.site-nav .nav-cta:hover { background: var(--cta-hover); }

main { max-width: var(--max); margin: 0 auto; padding: 0 1.25rem 4rem; }

/* Hero — dark/product energy */
.hero {
  margin: 1.25rem 0 0;
  padding: 2.75rem 1.75rem 2.5rem;
  border-radius: 24px;
  background:
    radial-gradient(ellipse 80% 70% at 90% 10%, rgba(20, 184, 166, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(234, 88, 12, 0.15), transparent 50%),
    linear-gradient(155deg, #0f2926 0%, #164e48 48%, #1a3a36 100%);
  color: #f5f5f4;
  position: relative;
  overflow: hidden;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #99f6e4;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 6vw, 3.4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0 0 1rem;
  max-width: 14ch;
}
.hero h1 em {
  font-style: italic;
  color: #5eead4;
}
.hero__lead {
  font-size: 1.1rem;
  color: rgba(245, 245, 244, 0.82);
  margin: 0 0 1.6rem;
  max-width: 40ch;
  font-weight: 400;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.75rem;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--cta);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  text-decoration: none !important;
  box-shadow: 0 8px 24px rgba(234, 88, 12, 0.35);
  transition: background 0.15s, transform 0.15s;
}
.btn-primary:hover {
  background: var(--cta-hover);
  color: #fff !important;
  transform: translateY(-1px);
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 0.75rem 1.2rem;
  border-radius: 999px;
  text-decoration: none !important;
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff !important;
}
.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  padding-top: 0.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.02em;
}
.hero__stat span {
  font-size: 0.78rem;
  color: rgba(245, 245, 244, 0.65);
  font-weight: 500;
}

/* Trust */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  padding: 1.25rem 0 0.5rem;
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 500;
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.trust-strip span::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
}

/* Sections */
.section-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 600;
  margin: 2rem 0 0.35rem;
  letter-spacing: -0.03em;
}
.section-lead {
  color: var(--text-muted);
  margin: 0 0 1.35rem;
  font-size: 1rem;
  max-width: 48ch;
}

/* Guide / product grid cards (homepage) */
.post-grid {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 700px) {
  .post-grid { grid-template-columns: repeat(2, 1fr); }
}

.post-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.post-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.post-card__visual {
  height: 168px;
  background: linear-gradient(135deg, #0f766e 0%, #14b8a6 50%, #fbbf24 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  position: relative;
}
.post-card__visual--alt {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f766e 55%, #fb923c 100%);
}
.post-card__badge {
  align-self: flex-start;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #0f2926;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
}
.post-card__icon {
  align-self: flex-end;
  font-size: 2.5rem;
  line-height: 1;
  opacity: 0.9;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}
.post-card__body { padding: 1.25rem 1.35rem 1.4rem; flex: 1; display: flex; flex-direction: column; }
.post-card__cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 0.35rem;
}
.post-card h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.post-card h2 a { color: inherit; text-decoration: none; font-weight: 600; }
.post-card h2 a:hover { color: var(--accent); }
.post-card p {
  margin: 0 0 1.1rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
  font-weight: 400;
}
.post-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-bottom: 1rem;
}
.post-card__stars { color: var(--star); letter-spacing: 0.05em; }
.post-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: var(--cta);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  text-decoration: none !important;
  transition: background 0.15s;
}
.post-card__cta:hover { background: var(--cta-hover); color: #fff !important; }
.post-card__cta::after { content: '→'; }

.coming-soon {
  margin-top: 1.5rem;
  padding: 1.35rem 1.4rem;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.coming-soon h3 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--text-soft);
  margin: 0 0 0.85rem;
  font-weight: 700;
}
.coming-soon ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.coming-soon li {
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  background: var(--bg-muted);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
}

/* Newsletter */
.newsletter {
  margin-top: 2.5rem;
  padding: 2rem 1.75rem;
  background: linear-gradient(135deg, #fff 0%, #fff7ed 100%);
  border: 1px solid #fed7aa;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  max-width: 640px;
}
.newsletter h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0 0 0.45rem;
  letter-spacing: -0.02em;
}
.newsletter p {
  margin: 0 0 1.15rem;
  color: var(--text-muted);
  font-size: 0.98rem;
}
.newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.newsletter__form input[type="email"] {
  flex: 1 1 200px;
  min-width: 0;
  padding: 0.8rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font: inherit;
  background: #fff;
  color: var(--text);
}
.newsletter__form input:focus {
  outline: 2px solid rgba(234, 88, 12, 0.25);
  border-color: var(--cta);
}
.newsletter__form button {
  border: none;
  cursor: pointer;
  background: var(--cta);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.8rem 1.25rem;
  border-radius: 999px;
  font-family: inherit;
}
.newsletter__form button:hover { background: var(--cta-hover); }
.newsletter__note {
  margin: 0.85rem 0 0 !important;
  font-size: 0.8rem !important;
  color: var(--text-soft) !important;
  font-weight: 400 !important;
}

.about-blurb {
  margin-top: 2.25rem;
  max-width: 560px;
  font-size: 0.95rem;
  color: var(--text-muted);
  font-weight: 400;
}
.about-blurb strong { color: var(--text); font-weight: 700; }

/* Article */
.article-wrap { max-width: var(--content); margin: 0 auto; padding: 1.5rem 0 3rem; }
.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-weight: 600;
}
.article-back:hover { color: var(--accent); }
.article-header { margin-bottom: 1.5rem; }
.article-header h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 2.55rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0 0 0.65rem;
}
.article-meta {
  font-size: 0.875rem;
  color: var(--text-soft);
  font-weight: 500;
}
.disclosure {
  font-size: 0.875rem;
  color: var(--text-muted);
  background: var(--bg-muted);
  border-left: 4px solid var(--accent);
  padding: 1rem 1.15rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 0 0 1.75rem;
  font-weight: 400;
}
.disclosure strong { color: var(--text); font-weight: 700; }

.toc {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.25rem;
  margin: 0 0 1.75rem;
  font-size: 0.9rem;
  box-shadow: var(--shadow-sm);
}
.toc strong {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-soft);
  font-weight: 700;
}
.toc ol { margin: 0; padding-left: 1.2rem; color: var(--text-muted); }
.toc li { margin: 0.3rem 0; }
.toc a { font-weight: 600; }

/* Product cards — KitchenCraft-style */
.product {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin: 1.5rem 0;
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.2s;
}
.product:hover { box-shadow: var(--shadow-md); }
.product__visual {
  height: 150px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  position: relative;
}
.product__visual--1 { background: linear-gradient(135deg, #fb923c, #f97316); }
.product__visual--2 { background: linear-gradient(135deg, #0d9488, #14b8a6); }
.product__visual--3 { background: linear-gradient(135deg, #334155, #0f766e); }
.product__visual--4 { background: linear-gradient(135deg, #64748b, #94a3b8); }
.product__visual--5 { background: linear-gradient(135deg, #0369a1, #38bdf8); }
.product__visual--6 { background: linear-gradient(135deg, #0f766e, #2dd4bf); }
.product__visual--7 { background: linear-gradient(135deg, #a16207, #fbbf24); }
.product__visual--8 { background: linear-gradient(135deg, #7c3aed, #a78bfa); }
.product__rank {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #141210;
  background: rgba(255, 255, 255, 0.95);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.product__icon {
  font-size: 2.75rem;
  line-height: 1;
  opacity: 0.95;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.12));
}
.product__body { padding: 1.25rem 1.4rem 1.45rem; }
.product__cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 0.25rem;
}
.product h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  margin: 0 0 0.45rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.product__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.65rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 500;
}
.product__stars { color: var(--star); letter-spacing: 0.04em; }
.product__score {
  font-weight: 700;
  color: var(--text);
  background: var(--bg-muted);
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  font-size: 0.8rem;
}
.product p {
  margin: 0 0 0.65rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  font-weight: 400;
}
.product .note {
  font-size: 0.88rem;
  color: var(--text-soft);
  font-style: italic;
  margin: 0 0 1rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--border);
  font-weight: 400;
}
.product__price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
  margin-bottom: 1rem;
}
.product .price {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.02em;
  font-family: var(--font-body);
}
.product .price-note {
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 500;
}
.btn-amazon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  background: var(--cta);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.15rem;
  border-radius: 999px;
  text-decoration: none !important;
  transition: background 0.15s, transform 0.15s;
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.28);
}
.btn-amazon:hover {
  background: var(--cta-hover);
  color: #fff !important;
  transform: translateY(-1px);
}
.btn-amazon::before {
  content: '🛒';
  font-size: 1rem;
}

.article-footer-note {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--text-soft);
  font-weight: 400;
}
.article-wrap h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 2rem 0 0.65rem;
  letter-spacing: -0.02em;
}
.article-wrap ul {
  color: var(--text-muted);
  padding-left: 1.2rem;
}
.article-wrap li { margin: 0.4rem 0; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
  margin-top: 2rem;
  padding: 2.25rem 1.25rem;
}
.site-footer__inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}
.site-footer p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-soft);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
  font-weight: 400;
}
.site-footer .site-logo {
  display: inline-flex;
  margin-bottom: 0.85rem;
  font-size: 1.1rem;
}
.site-footer__links {
  margin: 0.85rem 0 0;
  font-size: 0.8rem;
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  flex-wrap: wrap;
}
.site-footer__links a { color: var(--text-soft); font-weight: 600; }
.site-footer__links a:hover { color: var(--accent); }

@media (max-width: 560px) {
  .hero { padding: 2rem 1.25rem 1.85rem; border-radius: 18px; }
  .hero h1 { max-width: none; }
  .site-nav .nav-hide-sm { display: none; }
  .product__visual { height: 130px; }
  .btn-amazon { font-size: 0.9rem; }
}
