/* ============================================================
   BUILD THIS PROJECT — Design System
   Premium DIY Media Platform
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@400;500;600;700&family=DM+Mono:wght@400;500&display=swap');

/* ── Design Tokens ── */
:root {
  /* Color */
  --c-ink:        #1A1A1A;
  --c-ink-2:      #3D3D3D;
  --c-ink-3:      #6B7280;
  --c-ink-4:      #9CA3AF;
  --c-paper:      #F8F6F2;
  --c-white:      #FFFFFF;
  --c-rule:       #E5E0D8;
  --c-rule-light: #F0EDE8;

  --c-orange:     #E07020;
  --c-orange-dk:  #C05C10;
  --c-orange-lt:  #FDF0E6;
  --c-green:      #2D6A4F;
  --c-green-lt:   #E8F5EE;
  --c-blue:       #1E3A5F;
  --c-blue-lt:    #E8EFF7;

  /* Category accent colors */
  --c-cat-wood:    #92400E;
  --c-cat-elec:    #1D4ED8;
  --c-cat-plumb:   #0E7490;
  --c-cat-paint:   #6D28D9;
  --c-cat-outdoor: #166534;
  --c-cat-repair:  #B45309;
  --c-cat-floor:   #9A3412;
  --c-cat-drywall: #475569;

  /* Difficulty */
  --c-diff-easy:   #16A34A;
  --c-diff-med:    #D97706;
  --c-diff-hard:   #DC2626;

  /* Typography */
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  /* Type scale */
  --t-xs:    0.75rem;
  --t-sm:    0.875rem;
  --t-base:  1rem;
  --t-lg:    1.125rem;
  --t-xl:    1.25rem;
  --t-2xl:   1.5rem;
  --t-3xl:   1.875rem;
  --t-4xl:   2.25rem;
  --t-5xl:   3rem;
  --t-6xl:   3.75rem;
  --t-hero:  clamp(2.75rem, 5.5vw, 4.5rem);

  /* Spacing */
  --sp-1:   0.25rem;
  --sp-2:   0.5rem;
  --sp-3:   0.75rem;
  --sp-4:   1rem;
  --sp-5:   1.25rem;
  --sp-6:   1.5rem;
  --sp-7:   1.75rem;
  --sp-8:   2rem;
  --sp-10:  2.5rem;
  --sp-12:  3rem;
  --sp-16:  4rem;
  --sp-20:  5rem;
  --sp-24:  6rem;

  /* Radius */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-xl:   16px;
  --r-2xl:  20px;
  --r-pill: 999px;

  /* Shadow */
  --shadow-xs:   0 1px 2px rgba(0,0,0,0.06);
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-md:   0 2px 6px rgba(0,0,0,0.07), 0 8px 20px rgba(0,0,0,0.07);
  --shadow-lg:   0 4px 12px rgba(0,0,0,0.08), 0 16px 40px rgba(0,0,0,0.09);
  --shadow-hover:0 6px 16px rgba(0,0,0,0.10), 0 20px 48px rgba(0,0,0,0.10);

  /* Layout */
  --max-w:      1280px;
  --max-w-text: 760px;
  --gutter:     clamp(1rem, 4vw, 2rem);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur-fast: 150ms;
  --dur-med:  250ms;
  --dur-slow: 400ms;

  /* Nav */
  --nav-h: 68px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
input, textarea, select { font: inherit; }

/* ── Utilities ── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container--narrow {
  max-width: 860px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

.text-center { text-align: center; }
.text-mono { font-family: var(--font-mono); }

/* ============================================================
   NAVIGATION
   ============================================================ */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-rule);
  height: var(--nav-h);
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.site-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-shrink: 0;
  text-decoration: none;
}

.site-logo__mark {
  width: 32px;
  height: 32px;
  background: var(--c-orange);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-logo__mark svg {
  width: 18px;
  height: 18px;
  fill: white;
}

.site-logo__text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--t-lg);
  color: var(--c-ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.site-logo__text span {
  color: var(--c-orange);
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  flex: 1;
}

.nav-link {
  position: relative;
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--c-ink-3);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-md);
  transition: color var(--dur-fast) var(--ease), background var(--dur-fast) var(--ease);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

/* Blueprint corner-bracket marks on hover */
.nav-link::before,
.nav-link::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease), transform var(--dur-med) var(--ease);
  pointer-events: none;
}

/* Top-left + bottom-right corners (::before) */
.nav-link::before {
  top: 1px;
  left: 1px;
  border-top: 1.5px solid var(--c-orange);
  border-left: 1.5px solid var(--c-orange);
  border-radius: 2px 0 0 0;
  transform: translate(3px, 3px);
}

/* Top-right + bottom-left corners via box-shadow on ::after */
.nav-link::after {
  bottom: 1px;
  right: 1px;
  border-bottom: 1.5px solid var(--c-orange);
  border-right: 1.5px solid var(--c-orange);
  border-radius: 0 0 2px 0;
  transform: translate(-3px, -3px);
}

.nav-link:hover {
  color: var(--c-ink);
  background: transparent;
}

.nav-link:hover::before {
  opacity: 1;
  transform: translate(0, 0);
}

.nav-link:hover::after {
  opacity: 1;
  transform: translate(0, 0);
}

.nav-link--active {
  color: var(--c-orange);
}

.nav-link--active::before,
.nav-link--active::after {
  opacity: 0.4;
  transform: translate(0, 0);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  flex-shrink: 0;
}

.nav-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  color: var(--c-ink-3);
  transition: all var(--dur-fast) var(--ease);
}

.nav-search-btn:hover {
  background: var(--c-paper);
  color: var(--c-ink);
}

.nav-search-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--c-orange);
  color: white;
  font-size: var(--t-sm);
  font-weight: 600;
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-pill);
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
  white-space: nowrap;
}

.btn-nav-cta:hover {
  background: var(--c-orange-dk);
  transform: translateY(-1px);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  border-radius: var(--r-md);
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: all var(--dur-med) var(--ease);
}

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26,26,26,0.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease);
}

.search-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.search-overlay__inner {
  width: 100%;
  max-width: 640px;
  padding-inline: var(--gutter);
}

.search-overlay__form {
  position: relative;
  display: flex;
  align-items: stretch;
  background: white;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.search-overlay__input {
  flex: 1;
  border: none;
  outline: none;
  padding: var(--sp-5) var(--sp-6);
  font-size: var(--t-xl);
  font-weight: 400;
  background: transparent;
  color: var(--c-ink);
}

.search-overlay__input::placeholder { color: var(--c-ink-4); }

.search-overlay__submit {
  padding: var(--sp-4) var(--sp-6);
  background: var(--c-orange);
  color: white;
  font-size: var(--t-sm);
  font-weight: 600;
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease);
}

.search-overlay__submit:hover { background: var(--c-orange-dk); }

.search-overlay__close {
  position: absolute;
  top: -48px;
  right: 0;
  color: white;
  font-size: var(--t-sm);
  opacity: 0.7;
}

.search-overlay__hint {
  margin-top: var(--sp-4);
  color: rgba(255,255,255,0.6);
  font-size: var(--t-sm);
  text-align: center;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--r-pill);
  transition: all var(--dur-fast) var(--ease);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  line-height: 1;
}

.btn--primary {
  background: var(--c-orange);
  color: white;
  padding: var(--sp-4) var(--sp-8);
  font-size: var(--t-base);
}

.btn--primary:hover {
  background: var(--c-orange-dk);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(224,112,32,0.35);
}

.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--c-ink);
  padding: var(--sp-4) var(--sp-8);
  font-size: var(--t-base);
  border-color: var(--c-rule);
}

.btn--ghost:hover {
  border-color: var(--c-ink-3);
  background: var(--c-paper);
}

.btn--ghost-white {
  background: transparent;
  color: white;
  padding: var(--sp-4) var(--sp-8);
  font-size: var(--t-base);
  border-color: rgba(255,255,255,0.4);
}

.btn--ghost-white:hover {
  border-color: white;
  background: rgba(255,255,255,0.1);
}

.btn--sm {
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--t-sm);
}

.btn--lg {
  padding: var(--sp-5) var(--sp-10);
  font-size: var(--t-lg);
}

.btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */

.section {
  padding-block: var(--sp-20);
}

.section--tight {
  padding-block: var(--sp-12);
}

.section--flush-top {
  padding-top: 0;
}

.section--paper {
  background: var(--c-paper);
}

.section--dark {
  background: var(--c-ink);
  color: white;
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-4);
  margin-bottom: var(--sp-10);
}

.section-eyebrow {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-orange);
  display: block;
  margin-bottom: var(--sp-3);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--t-3xl);
  font-weight: 400;
  color: var(--c-ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section--dark .section-title { color: white; }

.section-link {
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--c-orange);
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  white-space: nowrap;
  flex-shrink: 0;
}

.section-link:hover { text-decoration: underline; }

.section-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  background: var(--c-ink);
  color: white;
  padding: var(--sp-24) 0 var(--sp-20);
  overflow: hidden;
}

/* Dot grid texture — the workshop/engineering paper signature */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Warm gradient wash */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(224,112,32,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

.hero__content {}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(224,112,32,0.2);
  color: #FFAA60;
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-pill);
  border: 1px solid rgba(224,112,32,0.3);
  margin-bottom: var(--sp-6);
}

.hero__badge::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--c-orange);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero__headline {
  font-family: var(--font-display);
  font-size: var(--t-hero);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: var(--sp-6);
}

.hero__headline em {
  font-style: italic;
  color: #FFAA60;
}

.hero__subhead {
  font-size: var(--t-lg);
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  max-width: 500px;
  margin-bottom: var(--sp-8);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.5);
}

.hero__trust-item strong {
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  font-family: var(--font-mono);
}

.hero__visual {
  position: relative;
}

.hero__cards-stack {
  display: grid;
  gap: var(--sp-4);
}

.hero__mini-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  backdrop-filter: blur(8px);
  transition: transform var(--dur-med) var(--ease);
}

.hero__mini-card:hover { transform: translateX(4px); }

.hero__mini-card--featured {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.18);
}

.hero__mini-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-lg);
  background: var(--c-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 20px;
}

.hero__mini-card__body { flex: 1; min-width: 0; }

.hero__mini-card__title {
  font-weight: 600;
  font-size: var(--t-sm);
  color: white;
  margin-bottom: var(--sp-1);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero__mini-card__meta {
  display: flex;
  gap: var(--sp-3);
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.5);
}

.hero__mini-card__badge {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: var(--r-pill);
  background: rgba(45,106,79,0.4);
  color: #6EE7A0;
  border: 1px solid rgba(45,106,79,0.4);
  flex-shrink: 0;
}

/* ============================================================
   CATEGORY GRID
   ============================================================ */

.category-nav {
  background: var(--c-paper);
  border-bottom: 1px solid var(--c-rule);
  padding-block: var(--sp-5);
}

.category-nav__list {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}

.category-nav__list::-webkit-scrollbar { display: none; }

.category-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-pill);
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--c-ink-3);
  background: white;
  border: 1.5px solid var(--c-rule);
  white-space: nowrap;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  text-decoration: none;
}

.category-pill:hover {
  border-color: var(--c-orange);
  color: var(--c-orange);
  background: var(--c-orange-lt);
}

.category-pill.is-active {
  background: var(--c-ink);
  color: white;
  border-color: var(--c-ink);
}

.category-pill__emoji {
  font-size: 15px;
  line-height: 1;
}

/* Category grid cards */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
}

.cat-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-6);
  background: white;
  border: 1.5px solid var(--c-rule);
  border-radius: var(--r-xl);
  text-decoration: none;
  transition: all var(--dur-med) var(--ease);
  position: relative;
  overflow: hidden;
}

.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: currentColor;
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease);
}

.cat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.cat-card:hover::before { opacity: 0.04; }

.cat-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.cat-card__name {
  font-weight: 700;
  font-size: var(--t-base);
  color: var(--c-ink);
  line-height: 1.2;
}

.cat-card__count {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  color: var(--c-ink-4);
}

/* Category color variants */
.cat-card--wood   { color: var(--c-cat-wood); }
.cat-card--elec   { color: var(--c-cat-elec); }
.cat-card--plumb  { color: var(--c-cat-plumb); }
.cat-card--paint  { color: var(--c-cat-paint); }
.cat-card--outdoor{ color: var(--c-cat-outdoor); }
.cat-card--repair { color: var(--c-cat-repair); }
.cat-card--floor  { color: var(--c-cat-floor); }
.cat-card--drywall{ color: var(--c-cat-drywall); }

.cat-card--wood    .cat-card__icon { background: #FEF3C7; }
.cat-card--elec    .cat-card__icon { background: #DBEAFE; }
.cat-card--plumb   .cat-card__icon { background: #CFFAFE; }
.cat-card--paint   .cat-card__icon { background: #EDE9FE; }
.cat-card--outdoor .cat-card__icon { background: #DCFCE7; }
.cat-card--repair  .cat-card__icon { background: #FEF3C7; }
.cat-card--floor   .cat-card__icon { background: #FFEDD5; }
.cat-card--drywall .cat-card__icon { background: #F1F5F9; }

/* ============================================================
   PROJECT CARDS
   ============================================================ */

/* Grid layouts */
.projects-grid {
  display: grid;
  gap: var(--sp-6);
}

.projects-grid--4col {
  grid-template-columns: repeat(4, 1fr);
}

.projects-grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

.projects-grid--featured {
  grid-template-columns: 1fr 1fr;
}

/* Base card */
.project-card {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1.5px solid var(--c-rule);
  border-radius: var(--r-xl);
  overflow: hidden;
  text-decoration: none;
  transition: all var(--dur-med) var(--ease);
  position: relative;
}

.project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.project-card__image-link {
  display: block;
}

.project-card__image {
  position: relative;
  overflow: hidden;
  background: var(--c-paper);
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease);
}

.project-card:hover .project-card__image img {
  transform: scale(1.04);
}

.project-card--tall .project-card__image { aspect-ratio: 3/4; }
.project-card--square .project-card__image { aspect-ratio: 1/1; }
.project-card--wide .project-card__image { aspect-ratio: 16/9; }
.project-card--default .project-card__image { aspect-ratio: 16/10; }

/* Image placeholder when no image */
.project-card__image-placeholder {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--c-paper) 0%, var(--c-rule-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--c-ink-4);
}
.project-card__image-placeholder--tall {
  aspect-ratio: 3/4;
  flex-direction: column;
  gap: 1rem;
  background: linear-gradient(160deg, var(--c-blue) 0%, var(--c-orange) 100%);
  color: white;
}
.project-card__image-placeholder--tall svg { width: 48px; height: 48px; opacity: 0.9; }
.project-card__category--ph {
  position: static;
  box-shadow: none;
  background: rgba(255,255,255,0.15);
  color: white;
  font-size: 11px;
}

.project-card__category {
  position: absolute;
  top: var(--sp-4);
  left: var(--sp-4);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-pill);
  background: white;
  color: var(--c-ink);
  box-shadow: var(--shadow-xs);
}

.project-card__save {
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-4);
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xs);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease);
}

.project-card__save svg {
  width: 14px;
  height: 14px;
  stroke: var(--c-ink-3);
  fill: none;
  stroke-width: 2;
}

.project-card:hover .project-card__save { opacity: 1; }

.project-card__body {
  padding: var(--sp-5) var(--sp-6) var(--sp-6);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: var(--sp-3);
}

.project-card__title {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  font-weight: 400;
  color: var(--c-ink);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.project-card--tall .project-card__title { font-size: var(--t-2xl); }

.project-card__excerpt {
  font-size: var(--t-sm);
  color: var(--c-ink-3);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Meta strip */
.project-meta-strip {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--c-rule-light);
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  color: var(--c-ink-3);
}

.meta-item svg {
  width: 13px;
  height: 13px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0;
}

/* Difficulty dots */
.difficulty-dots {
  display: flex;
  align-items: center;
  gap: 3px;
}

.difficulty-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1.5px solid var(--c-rule);
  background: transparent;
}

.difficulty-dot.filled { border-color: transparent; }
.difficulty--easy   .difficulty-dot.filled { background: var(--c-diff-easy); }
.difficulty--medium .difficulty-dot.filled { background: var(--c-diff-med); }
.difficulty--hard   .difficulty-dot.filled { background: var(--c-diff-hard); }

.difficulty-label {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  margin-left: var(--sp-2);
}

.difficulty--easy   .difficulty-label { color: var(--c-diff-easy); }
.difficulty--medium .difficulty-label { color: var(--c-diff-med); }
.difficulty--hard   .difficulty-label { color: var(--c-diff-hard); }

/* Horizontal card variant */
.project-card--horizontal {
  flex-direction: row;
}

.project-card--horizontal .project-card__image {
  width: 160px;
  flex-shrink: 0;
  aspect-ratio: auto;
}

.project-card--horizontal .project-card__image-placeholder {
  width: 160px;
  height: 100%;
  aspect-ratio: auto;
}

.project-card--horizontal .project-card__body {
  padding: var(--sp-4) var(--sp-5);
}

.project-card--horizontal .project-card__title {
  font-size: var(--t-base);
  font-family: var(--font-body);
  font-weight: 600;
}

/* ============================================================
   NEWSLETTER BLOCK
   ============================================================ */

.newsletter-band {
  background: var(--c-ink);
  padding: var(--sp-20) 0;
  position: relative;
  overflow: hidden;
}

.newsletter-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.newsletter-band::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(224,112,32,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-band__inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  text-align: center;
}

.newsletter-band__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-orange);
  display: block;
  margin-bottom: var(--sp-4);
}

.newsletter-band__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: white;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-4);
}

.newsletter-band__title em {
  font-style: italic;
  color: #FFAA60;
}

.newsletter-band__desc {
  color: rgba(255,255,255,0.6);
  font-size: var(--t-base);
  line-height: 1.6;
  margin-bottom: var(--sp-8);
}

.newsletter-band__form {
  display: flex;
  gap: var(--sp-3);
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: var(--sp-4);
}

.newsletter-band__input {
  flex: 1;
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-pill);
  border: 1.5px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: white;
  font-size: var(--t-base);
  outline: none;
  transition: border-color var(--dur-fast) var(--ease);
}

.newsletter-band__input::placeholder { color: rgba(255,255,255,0.35); }

.newsletter-band__input:focus {
  border-color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.12);
}

.newsletter-band__submit {
  padding: var(--sp-4) var(--sp-7);
  border-radius: var(--r-pill);
  background: var(--c-orange);
  color: white;
  font-weight: 700;
  font-size: var(--t-sm);
  white-space: nowrap;
  transition: background var(--dur-fast) var(--ease), transform var(--dur-fast) var(--ease);
}

.newsletter-band__submit:hover {
  background: var(--c-orange-dk);
  transform: translateY(-1px);
}

.newsletter-band__fine {
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.3);
}

.newsletter-perks {
  display: flex;
  justify-content: center;
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
  flex-wrap: wrap;
}

.newsletter-perk {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.6);
}

.newsletter-perk::before {
  content: '✓';
  display: inline-flex;
  width: 16px;
  height: 16px;
  background: rgba(45,106,79,0.4);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #6EE7A0;
  flex-shrink: 0;
}

/* Inline newsletter (within article) */
.newsletter-inline {
  background: var(--c-paper);
  border: 1.5px solid var(--c-rule);
  border-radius: var(--r-2xl);
  padding: var(--sp-8);
  margin-block: var(--sp-10);
}

.newsletter-inline__title {
  font-family: var(--font-display);
  font-size: var(--t-2xl);
  font-weight: 400;
  color: var(--c-ink);
  margin-bottom: var(--sp-2);
}

.newsletter-inline__desc {
  color: var(--c-ink-3);
  font-size: var(--t-sm);
  margin-bottom: var(--sp-5);
}

.newsletter-inline__form {
  display: flex;
  gap: var(--sp-3);
}

.newsletter-inline__input {
  flex: 1;
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-pill);
  border: 1.5px solid var(--c-rule);
  background: white;
  font-size: var(--t-sm);
  outline: none;
  transition: border-color var(--dur-fast) var(--ease);
}

.newsletter-inline__input:focus { border-color: var(--c-orange); }

.newsletter-inline__submit {
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-pill);
  background: var(--c-orange);
  color: white;
  font-weight: 600;
  font-size: var(--t-sm);
  transition: background var(--dur-fast) var(--ease);
}

.newsletter-inline__submit:hover { background: var(--c-orange-dk); }

/* ============================================================
   TOOL / BUYING GUIDE CARDS
   ============================================================ */

.tool-card {
  background: white;
  border: 1.5px solid var(--c-rule);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: all var(--dur-med) var(--ease);
  display: flex;
  flex-direction: column;
}

.tool-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.tool-card__image {
  aspect-ratio: 4/3;
  background: var(--c-paper);
  overflow: hidden;
}

.tool-card__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: var(--sp-4);
  transition: transform var(--dur-slow) var(--ease);
}

.tool-card:hover .tool-card__image img { transform: scale(1.05); }

.tool-card__body {
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  flex: 1;
}

.tool-card__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-green);
  background: var(--c-green-lt);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-pill);
  width: fit-content;
}

.tool-card__title {
  font-weight: 700;
  font-size: var(--t-base);
  color: var(--c-ink);
  line-height: 1.3;
}

.tool-card__desc {
  font-size: var(--t-sm);
  color: var(--c-ink-3);
  line-height: 1.55;
  flex: 1;
}

.tool-card__price {
  font-family: var(--font-mono);
  font-size: var(--t-lg);
  font-weight: 500;
  color: var(--c-ink);
}

.tool-card__price-note {
  font-size: var(--t-xs);
  color: var(--c-ink-4);
  display: block;
  margin-top: 2px;
}

.tool-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--c-rule-light);
}

.tool-card__buy-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--c-orange);
  color: white;
  font-size: var(--t-sm);
  font-weight: 600;
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--r-pill);
  transition: background var(--dur-fast) var(--ease);
  text-decoration: none;
}

.tool-card__buy-btn:hover { background: var(--c-orange-dk); }

.tool-card__review-link {
  font-size: var(--t-xs);
  color: var(--c-ink-4);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--dur-fast) var(--ease);
}

.tool-card__review-link:hover { color: var(--c-ink); }

/* Buying guide card */
.guide-card {
  background: white;
  border: 1.5px solid var(--c-rule);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
  transition: all var(--dur-med) var(--ease);
  text-decoration: none;
}

.guide-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.guide-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-lg);
  background: var(--c-paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.guide-card__body { flex: 1; }

.guide-card__eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-orange);
  display: block;
  margin-bottom: var(--sp-1);
}

.guide-card__title {
  font-weight: 700;
  font-size: var(--t-base);
  color: var(--c-ink);
  margin-bottom: var(--sp-2);
  line-height: 1.3;
}

.guide-card__desc {
  font-size: var(--t-sm);
  color: var(--c-ink-3);
  line-height: 1.55;
}

/* ============================================================
   STATS / TRUST BAR
   ============================================================ */

.stats-bar {
  background: var(--c-paper);
  border-top: 1px solid var(--c-rule);
  border-bottom: 1px solid var(--c-rule);
  padding-block: var(--sp-6);
}

.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-12);
}

.stat-item {
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: var(--t-3xl);
  font-weight: 400;
  color: var(--c-ink);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
}

.stat-item__label {
  font-size: var(--t-xs);
  font-weight: 500;
  color: var(--c-ink-4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-top: var(--sp-1);
}

.stats-bar__divider {
  width: 1px;
  height: 40px;
  background: var(--c-rule);
}

/* ============================================================
   ARTICLE / PROJECT PAGE
   ============================================================ */

.article-hero {
  background: var(--c-paper);
  padding: var(--sp-12) 0 0;
  border-bottom: 1px solid var(--c-rule);
}

.article-hero__inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--t-sm);
  color: var(--c-ink-4);
  margin-bottom: var(--sp-5);
}

.article-breadcrumb a {
  color: var(--c-ink-3);
  transition: color var(--dur-fast) var(--ease);
}

.article-breadcrumb a:hover { color: var(--c-orange); }

.article-breadcrumb__sep {
  color: var(--c-rule);
  font-size: 10px;
}

.article-hero__category {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: var(--sp-4);
  display: block;
}

.article-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  color: var(--c-ink);
  line-height: 1.1;
  letter-spacing: -0.03em;
  max-width: 860px;
  margin-bottom: var(--sp-6);
}

.article-hero__excerpt {
  font-size: var(--t-xl);
  color: var(--c-ink-3);
  line-height: 1.6;
  max-width: 700px;
  margin-bottom: var(--sp-8);
}

/* Project spec bar */
.project-spec-bar {
  display: flex;
  align-items: stretch;
  gap: 0;
  border: 1.5px solid var(--c-rule);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: white;
  margin-bottom: var(--sp-8);
  max-width: 700px;
}

.spec-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--sp-4) var(--sp-5);
  text-align: center;
  border-right: 1px solid var(--c-rule);
}

.spec-item:last-child { border-right: none; }

.spec-item__icon {
  font-size: 20px;
  margin-bottom: var(--sp-2);
  line-height: 1;
}

.spec-item__value {
  font-family: var(--font-mono);
  font-size: var(--t-base);
  font-weight: 500;
  color: var(--c-ink);
  line-height: 1.2;
}

.spec-item__label {
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-ink-4);
  margin-top: var(--sp-1);
}

.article-hero__image {
  margin-top: var(--sp-8);
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  overflow: hidden;
  max-height: 520px;
}

.article-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Article layout */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: var(--sp-12);
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-block: var(--sp-12);
  align-items: start;
}

.article-content { min-width: 0; }

/* Article typography */
.article-body h2 {
  font-family: var(--font-display);
  font-size: var(--t-3xl);
  font-weight: 400;
  color: var(--c-ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-top: var(--sp-12);
  margin-bottom: var(--sp-5);
  padding-top: var(--sp-12);
  border-top: 1px solid var(--c-rule-light);
}

.article-body h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }

/* Step images */
.step-figure {
  margin: var(--sp-5) 0 var(--sp-8);
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1.5px solid var(--c-rule-light);
}
.step-figure__img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* Step content callout boxes */
.step-callout {
  display: block;
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--r-md);
  margin: var(--sp-4) 0 var(--sp-6);
  border-left: 3px solid currentColor;
}
.step-callout p {
  margin-bottom: 0;
}
.step-callout--tip {
  background: #FFFBEB;
  color: #92400E;
  border-color: #D97706;
}
.step-callout--tip p { color: #78350F; }
.step-callout--alt {
  background: var(--c-blue-lt);
  color: var(--c-blue);
  border-color: var(--c-blue);
}
.step-callout--alt p { color: #1E3A5F; }
.step-callout--pro {
  background: var(--c-green-lt);
  color: var(--c-green);
  border-color: var(--c-green);
}
.step-callout--pro p { color: #1B4332; }

.article-body h3 {
  font-weight: 700;
  font-size: var(--t-xl);
  color: var(--c-ink);
  margin-top: var(--sp-8);
  margin-bottom: var(--sp-3);
  line-height: 1.3;
}

.article-body h4 {
  font-weight: 700;
  font-size: var(--t-base);
  color: var(--c-ink);
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: var(--t-sm);
  color: var(--c-orange);
}

.article-body p {
  font-size: var(--t-base);
  line-height: 1.75;
  color: var(--c-ink-2);
  margin-bottom: var(--sp-5);
}

.article-body ul, .article-body ol {
  margin-bottom: var(--sp-5);
  padding-left: var(--sp-6);
}

.article-body ul { list-style: none; padding-left: 0; }

.article-body ul li {
  padding-left: var(--sp-6);
  position: relative;
  margin-bottom: var(--sp-2);
  line-height: 1.65;
  color: var(--c-ink-2);
}

.article-body ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--c-orange);
  font-size: var(--t-sm);
  top: 2px;
}

.article-body ol {
  list-style: none;
  padding-left: 0;
  counter-reset: ol-counter;
}

.article-body ol li {
  counter-increment: ol-counter;
  padding-left: var(--sp-10);
  position: relative;
  margin-bottom: var(--sp-4);
  line-height: 1.7;
  color: var(--c-ink-2);
  font-size: var(--t-base);
}

.article-body ol li::before {
  content: counter(ol-counter, decimal-leading-zero);
  position: absolute;
  left: 0;
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  font-weight: 500;
  color: var(--c-orange);
  background: var(--c-orange-lt);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
}

.article-body a {
  color: var(--c-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color var(--dur-fast) var(--ease);
}

.article-body a:hover { color: var(--c-orange); }

.article-body blockquote {
  border-left: 4px solid var(--c-orange);
  padding-left: var(--sp-6);
  margin-left: 0;
  margin-block: var(--sp-8);
}

.article-body blockquote p {
  font-family: var(--font-display);
  font-size: var(--t-xl);
  color: var(--c-ink);
  font-style: italic;
  line-height: 1.5;
}

.article-body strong { font-weight: 700; color: var(--c-ink); }

.article-body code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: var(--c-paper);
  padding: 2px 6px;
  border-radius: var(--r-sm);
  border: 1px solid var(--c-rule);
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin-block: var(--sp-8);
  font-size: var(--t-sm);
}

.article-body table th {
  background: var(--c-paper);
  padding: var(--sp-3) var(--sp-4);
  text-align: left;
  font-weight: 700;
  font-size: var(--t-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-ink-3);
  border-bottom: 2px solid var(--c-rule);
}

.article-body table td {
  padding: var(--sp-3) var(--sp-4);
  border-bottom: 1px solid var(--c-rule-light);
  color: var(--c-ink-2);
}

.article-body table tr:last-child td { border-bottom: none; }

/* Step blocks */
.step-block {
  display: flex;
  gap: var(--sp-5);
  margin-bottom: var(--sp-8);
  padding: var(--sp-6);
  background: white;
  border: 1.5px solid var(--c-rule);
  border-radius: var(--r-xl);
}

.step-block__number {
  width: 36px;
  height: 36px;
  background: var(--c-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: var(--t-sm);
  font-weight: 500;
  flex-shrink: 0;
}

.step-block__content { flex: 1; }
.step-block__title { font-weight: 700; font-size: var(--t-lg); margin-bottom: var(--sp-3); color: var(--c-ink); }
.step-block__text { color: var(--c-ink-2); line-height: 1.65; }

/* Warning / tip blocks */
.callout-block {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  border-radius: var(--r-xl);
  margin-block: var(--sp-6);
}

.callout-block--warning {
  background: #FFF8ED;
  border: 1.5px solid #F59E0B;
}

.callout-block--tip {
  background: var(--c-green-lt);
  border: 1.5px solid var(--c-green);
}

.callout-block--danger {
  background: #FFF1F1;
  border: 1.5px solid #EF4444;
}

.callout-block__icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }

.callout-block__body {}
.callout-block__title { font-weight: 700; font-size: var(--t-sm); margin-bottom: var(--sp-2); }
.callout-block--warning .callout-block__title { color: #92400E; }
.callout-block--tip .callout-block__title { color: var(--c-green); }
.callout-block--danger .callout-block__title { color: #991B1B; }
.callout-block__text { font-size: var(--t-sm); line-height: 1.6; color: var(--c-ink-2); }

/* Shopping list */
.shopping-list {
  background: white;
  border: 1.5px solid var(--c-rule);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-block: var(--sp-8);
}

.shopping-list__header {
  background: var(--c-ink);
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.shopping-list__header h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--t-base);
  color: white;
}

.shopping-list__header-meta {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.5);
}

.shopping-list__section {
  padding: var(--sp-5) var(--sp-6);
  border-bottom: 1px solid var(--c-rule-light);
}

.shopping-list__section:last-child { border-bottom: none; }

.shopping-list__section-title {
  font-size: var(--t-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-ink-4);
  margin-bottom: var(--sp-4);
}

.shopping-item {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding-block: var(--sp-3);
  border-bottom: 1px solid var(--c-rule-light);
}

.shopping-item:last-child { border-bottom: none; }

.shopping-item__check {
  width: 20px;
  height: 20px;
  border: 2px solid var(--c-rule);
  border-radius: var(--r-sm);
  flex-shrink: 0;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.shopping-item__check.is-checked {
  background: var(--c-green);
  border-color: var(--c-green);
}

.shopping-item__check.is-checked::after {
  content: '✓';
  color: white;
  font-size: 11px;
  font-weight: 700;
}

.shopping-item__name {
  flex: 1;
  font-size: var(--t-sm);
  font-weight: 500;
  color: var(--c-ink);
}

.shopping-item.is-checked .shopping-item__name {
  text-decoration: line-through;
  color: var(--c-ink-4);
}

.shopping-item__qty {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  color: var(--c-ink-4);
  white-space: nowrap;
}

.shopping-item__buy {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--c-orange);
  text-decoration: none;
  white-space: nowrap;
  padding: var(--sp-1) var(--sp-3);
  background: var(--c-orange-lt);
  border-radius: var(--r-pill);
  transition: background var(--dur-fast) var(--ease);
}

.shopping-item__buy:hover { background: #FDDFC0; }

.shopping-item__review {
  display: inline-flex;
  align-items: center;
  font-size: var(--t-xs);
  font-weight: 600;
  color: var(--c-blue);
  text-decoration: none;
  white-space: nowrap;
  padding: var(--sp-1) var(--sp-3);
  background: #EFF6FF;
  border-radius: var(--r-pill);
  transition: background var(--dur-fast) var(--ease);
}
.shopping-item__review:hover { background: #DBEAFE; }

.shopping-item--warning {
  background: #FFFBEB;
  border-radius: var(--r-sm);
  padding: var(--sp-2) var(--sp-3);
  margin-block: var(--sp-1);
}
.shopping-item--warning .shopping-item__name {
  color: #92400E;
  font-weight: 400;
  font-size: var(--t-xs);
}
.shopping-item__warn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23D97706'%3E%3Cpath fill-rule='evenodd' d='M8.485 2.495c.673-1.167 2.357-1.167 3.03 0l6.28 10.875c.673 1.167-.17 2.625-1.516 2.625H3.72c-1.347 0-2.189-1.458-1.515-2.625L8.485 2.495zM10 5a.75.75 0 01.75.75v3.5a.75.75 0 01-1.5 0v-3.5A.75.75 0 0110 5zm0 9a1 1 0 100-2 1 1 0 000 2z' clip-rule='evenodd'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.shopping-list__footer {
  padding: var(--sp-5) var(--sp-6);
  background: var(--c-paper);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}

.shopping-list__total {
  font-family: var(--font-mono);
  font-size: var(--t-lg);
  color: var(--c-ink);
}

.shopping-list__total span {
  font-size: var(--t-xs);
  color: var(--c-ink-4);
  margin-left: var(--sp-2);
}

/* Article sidebar */
.article-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.sidebar-card {
  background: white;
  border: 1.5px solid var(--c-rule);
  border-radius: var(--r-xl);
  overflow: hidden;
}

.sidebar-card__header {
  padding: var(--sp-4) var(--sp-5);
  border-bottom: 1px solid var(--c-rule-light);
}

.sidebar-card__title {
  font-weight: 700;
  font-size: var(--t-sm);
  color: var(--c-ink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 11px;
}

.sidebar-card__body { padding: var(--sp-5); }

/* Project Overview rows */
.overview-rows {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.overview-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  font-size: var(--t-sm);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--c-rule-light);
}
.overview-row:last-of-type { border-bottom: none; padding-bottom: 0; }

.overview-row__label {
  color: var(--c-ink-3);
  flex-shrink: 0;
}

.overview-row__value {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--c-ink);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  text-align: right;
}

.overview-cta {
  margin-top: var(--sp-2);
  justify-content: center;
  width: 100%;
}

/* Table of contents */
.toc-list { display: flex; flex-direction: column; gap: var(--sp-2); }

.toc-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-md);
  font-size: var(--t-sm);
  color: var(--c-ink-3);
  text-decoration: none;
  transition: all var(--dur-fast) var(--ease);
}

.toc-item:hover { background: var(--c-paper); color: var(--c-ink); }
.toc-item.is-active { color: var(--c-orange); background: var(--c-orange-lt); }

.toc-item__num {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  color: var(--c-ink-4);
  flex-shrink: 0;
  padding-top: 2px;
}

/* ============================================================
   ARCHIVE / CATEGORY PAGES
   ============================================================ */

.archive-hero {
  background: var(--c-paper);
  padding: var(--sp-16) 0 var(--sp-12);
  border-bottom: 1px solid var(--c-rule);
}

.archive-hero__label {
  font-family: var(--font-mono);
  font-size: var(--t-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-orange);
  display: block;
  margin-bottom: var(--sp-3);
}

.archive-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 400;
  color: var(--c-ink);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: var(--sp-4);
}

.archive-hero__desc {
  font-size: var(--t-lg);
  color: var(--c-ink-3);
  max-width: 600px;
  line-height: 1.6;
}

/* Filter bar */
.filter-bar {
  background: white;
  border-bottom: 1px solid var(--c-rule);
  padding-block: var(--sp-4);
  position: sticky;
  top: var(--nav-h);
  z-index: 50;
}

.filter-bar__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.filter-label {
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--c-ink-3);
  white-space: nowrap;
}

.filter-pills {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.filter-pill {
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-pill);
  font-size: var(--t-xs);
  font-weight: 500;
  border: 1.5px solid var(--c-rule);
  color: var(--c-ink-3);
  background: white;
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}

.filter-pill:hover { border-color: var(--c-ink); color: var(--c-ink); }
.filter-pill.is-active { background: var(--c-ink); color: white; border-color: var(--c-ink); }

/* ============================================================
   SEARCH PAGE
   ============================================================ */

.search-hero {
  background: var(--c-paper);
  padding: var(--sp-16) 0 var(--sp-10);
  border-bottom: 1px solid var(--c-rule);
}

.search-hero__title {
  font-family: var(--font-display);
  font-size: var(--t-4xl);
  color: var(--c-ink);
  margin-bottom: var(--sp-6);
  letter-spacing: -0.025em;
}

.search-form-large {
  display: flex;
  gap: 0;
  max-width: 600px;
  background: white;
  border: 1.5px solid var(--c-rule);
  border-radius: var(--r-pill);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--dur-fast) var(--ease);
}

.search-form-large:focus-within {
  box-shadow: var(--shadow-md);
  border-color: var(--c-orange);
}

.search-form-large input {
  flex: 1;
  border: none;
  outline: none;
  padding: var(--sp-4) var(--sp-6);
  font-size: var(--t-lg);
  background: transparent;
  color: var(--c-ink);
}

.search-form-large input::placeholder { color: var(--c-ink-4); }

.search-form-large button {
  padding: var(--sp-4) var(--sp-7);
  background: var(--c-orange);
  color: white;
  font-weight: 700;
  font-size: var(--t-sm);
  flex-shrink: 0;
  transition: background var(--dur-fast) var(--ease);
}

.search-form-large button:hover { background: var(--c-orange-dk); }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--c-ink);
  color: rgba(255,255,255,0.7);
  padding-top: var(--sp-20);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--sp-12);
  padding-bottom: var(--sp-16);
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
  text-decoration: none;
}

.footer-logo__mark {
  width: 32px;
  height: 32px;
  background: var(--c-orange);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo__text {
  font-weight: 700;
  font-size: var(--t-base);
  color: white;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: var(--t-sm);
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--sp-6);
  max-width: 280px;
}

.footer-social {
  display: flex;
  gap: var(--sp-3);
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  font-size: var(--t-sm);
  transition: all var(--dur-fast) var(--ease);
}

.footer-social-link:hover {
  border-color: rgba(255,255,255,0.4);
  color: white;
  background: rgba(255,255,255,0.08);
}

.footer-col-title {
  font-weight: 700;
  font-size: var(--t-sm);
  color: white;
  margin-bottom: var(--sp-5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 11px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-links a {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
  line-height: 1.4;
}

.footer-links a:hover { color: white; }

.footer-newsletter-mini {}

.footer-newsletter-mini__desc {
  font-size: var(--t-sm);
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin-bottom: var(--sp-4);
}

.footer-newsletter-mini__form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer-newsletter-mini__input {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.07);
  color: white;
  font-size: var(--t-sm);
  outline: none;
  transition: border-color var(--dur-fast) var(--ease);
}

.footer-newsletter-mini__input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter-mini__input:focus { border-color: rgba(255,255,255,0.35); }

.footer-newsletter-mini__btn {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-lg);
  background: var(--c-orange);
  color: white;
  font-weight: 600;
  font-size: var(--t-sm);
  transition: background var(--dur-fast) var(--ease);
}

.footer-newsletter-mini__btn:hover { background: var(--c-orange-dk); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-block: var(--sp-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.footer-bottom__copy {
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.3);
}

.footer-bottom__links {
  display: flex;
  gap: var(--sp-5);
}

.footer-bottom__links a {
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}

.footer-bottom__links a:hover { color: rgba(255,255,255,0.6); }

.footer-disclosure {
  font-size: var(--t-xs);
  color: rgba(255,255,255,0.25);
  padding: var(--sp-5) 0 var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.05);
  line-height: 1.6;
}

/* ============================================================
   MISC COMPONENTS
   ============================================================ */

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding-block: var(--sp-12);
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--r-lg);
  border: 1.5px solid var(--c-rule);
  font-size: var(--t-sm);
  font-weight: 600;
  color: var(--c-ink-3);
  text-decoration: none;
  transition: all var(--dur-fast) var(--ease);
}

.page-numbers:hover { border-color: var(--c-ink); color: var(--c-ink); }
.page-numbers.current { background: var(--c-ink); color: white; border-color: var(--c-ink); }
.page-numbers.dots { border: none; width: auto; }
.prev.page-numbers, .next.page-numbers { width: auto; padding: 0 var(--sp-5); gap: var(--sp-2); }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: var(--sp-8);
  right: var(--sp-8);
  width: 44px;
  height: 44px;
  background: var(--c-ink);
  color: white;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--dur-med) var(--ease);
  cursor: pointer;
  z-index: 50;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.back-to-top:hover { background: var(--c-orange); }

.back-to-top svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Progress bar */
.reading-progress {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  height: 3px;
  background: var(--c-orange);
  z-index: 99;
  width: 0%;
  transition: width 100ms linear;
}

/* Tags */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: var(--sp-1) var(--sp-3);
  background: var(--c-paper);
  border: 1px solid var(--c-rule);
  border-radius: var(--r-pill);
  font-size: var(--t-xs);
  color: var(--c-ink-3);
  text-decoration: none;
  transition: all var(--dur-fast) var(--ease);
}

.tag:hover { border-color: var(--c-orange); color: var(--c-orange); background: var(--c-orange-lt); }

/* Author byline */
.byline {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-8);
}

.byline__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-paper);
  overflow: hidden;
  flex-shrink: 0;
}

.byline__avatar img { width: 100%; height: 100%; object-fit: cover; }

.byline__avatar-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-brand);
  display: flex;
  align-items: center;
  justify-content: center;
}

.byline__name {
  font-weight: 600;
  font-size: var(--t-sm);
  color: var(--c-ink);
}

.byline__meta {
  font-size: var(--t-xs);
  color: var(--c-ink-4);
  font-family: var(--font-mono);
}

/* 404 */
.error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
  padding: var(--sp-20) var(--gutter);
}

.error-page__number {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 400;
  color: var(--c-rule);
  line-height: 1;
  margin-bottom: var(--sp-4);
  letter-spacing: -0.05em;
}

.error-page__title {
  font-family: var(--font-display);
  font-size: var(--t-3xl);
  color: var(--c-ink);
  margin-bottom: var(--sp-4);
}

.error-page__desc {
  font-size: var(--t-lg);
  color: var(--c-ink-3);
  max-width: 440px;
  margin-bottom: var(--sp-8);
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .categories-grid { grid-template-columns: repeat(4, 1fr); }
  .projects-grid--4col { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-10); }
  .hero__inner { gap: var(--sp-10); }
  .article-layout { grid-template-columns: 1fr 280px; gap: var(--sp-8); }
}

@media (max-width: 900px) {
  .nav-primary { display: none; }
  .nav-toggle { display: flex; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
  .hero { padding: var(--sp-16) 0 var(--sp-12); }
  .projects-grid--featured { grid-template-columns: 1fr; }
  .projects-grid--featured .project-card:first-child { grid-row: auto; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
  .project-spec-bar { flex-wrap: wrap; }
  .spec-item { flex: 1 1 calc(50% - 1px); min-width: 0; }
  .stats-bar__inner { flex-wrap: wrap; gap: var(--sp-6); justify-content: flex-start; padding-inline: var(--gutter); }
  .stats-bar__divider { display: none; }
}

@media (max-width: 680px) {
  :root { --nav-h: 60px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid--3col, .projects-grid--4col { grid-template-columns: 1fr; }
  .hero__headline { font-size: clamp(2.25rem, 8vw, 3rem); }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .btn--lg { padding: var(--sp-4) var(--sp-8); font-size: var(--t-base); }
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .newsletter-band__form { flex-direction: column; }
  .newsletter-band__submit { border-radius: var(--r-pill); }
  .shopping-list__footer { flex-direction: column; align-items: flex-start; }
  .filter-bar__inner { gap: var(--sp-3); }
  .section { padding-block: var(--sp-12); }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
}

.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26,26,26,0.5);
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease);
}

.mobile-nav__drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 90vw);
  background: white;
  padding: var(--sp-6);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--dur-med) var(--ease);
}

.mobile-nav.is-open { pointer-events: all; }
.mobile-nav.is-open .mobile-nav__backdrop { opacity: 1; }
.mobile-nav.is-open .mobile-nav__drawer { transform: translateX(0); }

.mobile-nav__close {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  color: var(--c-ink-3);
}

.mobile-nav__links {
  margin-top: var(--sp-12);
  display: flex;
  flex-direction: column;
}

.mobile-nav__links a {
  display: block;
  padding: var(--sp-4) 0;
  font-size: var(--t-lg);
  font-weight: 600;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-rule-light);
  text-decoration: none;
}

.mobile-nav__links a:hover { color: var(--c-orange); }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero::before { background-image: none; }
}

/* ── Focus ── */
:focus-visible {
  outline: 2px solid var(--c-orange);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ── SVG icon display fixes ── */
.cat-card__icon svg,
.guide-card__icon svg,
.hero__mini-card__icon svg,
.spec-item__icon svg { display: block; }

.category-pill__icon {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.hero__mini-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.hero__mini-card__meta svg { display: inline-block; }

/* ── Hero mini-card link styles ── */
a.hero__mini-card {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.hero__mini-card:hover { transform: translateX(6px); }

/* Difficulty badge variants */
.hero__mini-card__badge--intermediate {
  background: rgba(180,83,9,0.3);
  color: #FDBA74;
  border-color: rgba(180,83,9,0.3);
}
.hero__mini-card__badge--advanced {
  background: rgba(153,27,27,0.3);
  color: #FCA5A5;
  border-color: rgba(153,27,27,0.3);
}
